diff --git a/stage0/src/Init/Lean.lean b/stage0/src/Init/Lean.lean deleted file mode 100644 index aa64318cbd..0000000000 --- a/stage0/src/Init/Lean.lean +++ /dev/null @@ -1,27 +0,0 @@ -/- -Copyright (c) 2019 Microsoft Corporation. All rights reserved. -Released under Apache 2.0 license as described in the file LICENSE. -Authors: Leonardo de Moura --/ -prelude -import Init.Lean.Compiler -import Init.Lean.Environment -import Init.Lean.Modifiers -import Init.Lean.ProjFns -import Init.Lean.Runtime -import Init.Lean.Attributes -import Init.Lean.Parser -import Init.Lean.ReducibilityAttrs -import Init.Lean.Elab -import Init.Lean.EqnCompiler -import Init.Lean.Class -import Init.Lean.LocalContext -import Init.Lean.MetavarContext -import Init.Lean.AuxRecursor -import Init.Lean.Linter -import Init.Lean.Meta -import Init.Lean.Util -import Init.Lean.Eval -import Init.Lean.Structure -import Init.Lean.Delaborator -import Init.Lean.PrettyPrinter diff --git a/stage0/src/Init/Lean/Compiler.lean b/stage0/src/Init/Lean/Compiler.lean deleted file mode 100644 index b4e6d4fada..0000000000 --- a/stage0/src/Init/Lean/Compiler.lean +++ /dev/null @@ -1,14 +0,0 @@ -/- -Copyright (c) 2019 Microsoft Corporation. All rights reserved. -Released under Apache 2.0 license as described in the file LICENSE. -Authors: Leonardo de Moura --/ -prelude -import Init.Lean.Compiler.InlineAttrs -import Init.Lean.Compiler.Specialize -import Init.Lean.Compiler.ConstFolding -import Init.Lean.Compiler.ClosedTermCache -import Init.Lean.Compiler.ExternAttr -import Init.Lean.Compiler.ImplementedByAttr -import Init.Lean.Compiler.NeverExtractAttr -import Init.Lean.Compiler.IR diff --git a/stage0/src/Init/Lean/Elab.lean b/stage0/src/Init/Lean/Elab.lean deleted file mode 100644 index 08848508d1..0000000000 --- a/stage0/src/Init/Lean/Elab.lean +++ /dev/null @@ -1,22 +0,0 @@ -/- -Copyright (c) 2019 Microsoft Corporation. All rights reserved. -Released under Apache 2.0 license as described in the file LICENSE. -Authors: Leonardo de Moura --/ -prelude -import Init.Lean.Elab.Import -import Init.Lean.Elab.Exception -import Init.Lean.Elab.StrategyAttrs -import Init.Lean.Elab.Command -import Init.Lean.Elab.Term -import Init.Lean.Elab.App -import Init.Lean.Elab.Binders -import Init.Lean.Elab.Quotation -import Init.Lean.Elab.Frontend -import Init.Lean.Elab.BuiltinNotation -import Init.Lean.Elab.Declaration -import Init.Lean.Elab.Tactic -import Init.Lean.Elab.Syntax -import Init.Lean.Elab.Match -import Init.Lean.Elab.DoNotation -import Init.Lean.Elab.StructInst diff --git a/stage0/src/Init/Lean/Elab/Tactic.lean b/stage0/src/Init/Lean/Elab/Tactic.lean deleted file mode 100644 index 6cbb6b016e..0000000000 --- a/stage0/src/Init/Lean/Elab/Tactic.lean +++ /dev/null @@ -1,12 +0,0 @@ -/- -Copyright (c) 2020 Microsoft Corporation. All rights reserved. -Released under Apache 2.0 license as described in the file LICENSE. -Authors: Leonardo de Moura, Sebastian Ullrich --/ -prelude -import Init.Lean.Elab.Term -import Init.Lean.Elab.Tactic.Basic -import Init.Lean.Elab.Tactic.ElabTerm -import Init.Lean.Elab.Tactic.Induction -import Init.Lean.Elab.Tactic.Generalize -import Init.Lean.Elab.Tactic.Injection diff --git a/stage0/src/Init/Lean/Meta.lean b/stage0/src/Init/Lean/Meta.lean deleted file mode 100644 index 5214c9173c..0000000000 --- a/stage0/src/Init/Lean/Meta.lean +++ /dev/null @@ -1,23 +0,0 @@ -/- -Copyright (c) 2019 Microsoft Corporation. All rights reserved. -Released under Apache 2.0 license as described in the file LICENSE. -Authors: Leonardo de Moura --/ -prelude -import Init.Lean.Meta.Basic -import Init.Lean.Meta.LevelDefEq -import Init.Lean.Meta.WHNF -import Init.Lean.Meta.InferType -import Init.Lean.Meta.FunInfo -import Init.Lean.Meta.ExprDefEq -import Init.Lean.Meta.DiscrTree -import Init.Lean.Meta.Reduce -import Init.Lean.Meta.Instances -import Init.Lean.Meta.AbstractMVars -import Init.Lean.Meta.SynthInstance -import Init.Lean.Meta.AppBuilder -import Init.Lean.Meta.Tactic -import Init.Lean.Meta.Message -import Init.Lean.Meta.KAbstract -import Init.Lean.Meta.RecursorInfo -import Init.Lean.Meta.GeneralizeTelescope diff --git a/stage0/src/Init/Lean/Meta/Tactic.lean b/stage0/src/Init/Lean/Meta/Tactic.lean deleted file mode 100644 index e1ff2d4947..0000000000 --- a/stage0/src/Init/Lean/Meta/Tactic.lean +++ /dev/null @@ -1,18 +0,0 @@ -/- -Copyright (c) 2019 Microsoft Corporation. All rights reserved. -Released under Apache 2.0 license as described in the file LICENSE. -Authors: Leonardo de Moura --/ -prelude -import Init.Lean.Meta.Tactic.Intro -import Init.Lean.Meta.Tactic.Assumption -import Init.Lean.Meta.Tactic.Apply -import Init.Lean.Meta.Tactic.Revert -import Init.Lean.Meta.Tactic.Clear -import Init.Lean.Meta.Tactic.Assert -import Init.Lean.Meta.Tactic.Target -import Init.Lean.Meta.Tactic.Rewrite -import Init.Lean.Meta.Tactic.Generalize -import Init.Lean.Meta.Tactic.LocalDecl -import Init.Lean.Meta.Tactic.Induction -import Init.Lean.Meta.Tactic.Cases diff --git a/stage0/src/Init/Lean/Parser.lean b/stage0/src/Init/Lean/Parser.lean deleted file mode 100644 index 908278de22..0000000000 --- a/stage0/src/Init/Lean/Parser.lean +++ /dev/null @@ -1,13 +0,0 @@ -/- -Copyright (c) 2019 Microsoft Corporation. All rights reserved. -Released under Apache 2.0 license as described in the file LICENSE. -Authors: Leonardo de Moura, Sebastian Ullrich --/ -prelude -import Init.Lean.Parser.Parser -import Init.Lean.Parser.Level -import Init.Lean.Parser.Term -import Init.Lean.Parser.Tactic -import Init.Lean.Parser.Command -import Init.Lean.Parser.Module -import Init.Lean.Parser.Syntax diff --git a/stage0/src/Init/Lean/PrettyPrinter.lean b/stage0/src/Init/Lean/PrettyPrinter.lean deleted file mode 100644 index 64d6fcb530..0000000000 --- a/stage0/src/Init/Lean/PrettyPrinter.lean +++ /dev/null @@ -1,2 +0,0 @@ -prelude -import Init.Lean.PrettyPrinter.Parenthesizer diff --git a/stage0/src/Init/Lean/Util.lean b/stage0/src/Init/Lean/Util.lean deleted file mode 100644 index aa614b1111..0000000000 --- a/stage0/src/Init/Lean/Util.lean +++ /dev/null @@ -1,22 +0,0 @@ -/- -Copyright (c) 2020 Microsoft Corporation. All rights reserved. -Released under Apache 2.0 license as described in the file LICENSE. -Authors: Leonardo de Moura --/ -prelude -import Init.Lean.Util.CollectFVars -import Init.Lean.Util.CollectLevelParams -import Init.Lean.Util.CollectMVars -import Init.Lean.Util.FindMVar -import Init.Lean.Util.MonadCache -import Init.Lean.Util.PPExt -import Init.Lean.Util.PPGoal -import Init.Lean.Util.Path -import Init.Lean.Util.Profile -import Init.Lean.Util.RecDepth -import Init.Lean.Util.Sorry -import Init.Lean.Util.Trace -import Init.Lean.Util.WHNF -import Init.Lean.Util.FindExpr -import Init.Lean.Util.ReplaceExpr -import Init.Lean.Util.FoldConsts diff --git a/stage0/src/Lean.lean b/stage0/src/Lean.lean index 7487f955b4..f21611afef 100644 --- a/stage0/src/Lean.lean +++ b/stage0/src/Lean.lean @@ -3,25 +3,24 @@ Copyright (c) 2020 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ --- import Lean.Compiler --- import Lean.Environment --- import Lean.Modifiers --- import Lean.ProjFns --- import Lean.Runtime --- import Lean.Attributes --- import Lean.Parser --- import Lean.ReducibilityAttrs --- import Lean.Elab --- import Lean.EqnCompiler --- import Lean.Class --- import Lean.LocalContext --- import Lean.MetavarContext --- import Lean.AuxRecursor --- import Lean.Linter --- import Lean.Meta --- import Lean.Util --- import Lean.Eval --- import Lean.Structure --- import Lean.Delaborator --- import Lean.PrettyPrinter -import Init.Lean +import Lean.Compiler +import Lean.Environment +import Lean.Modifiers +import Lean.ProjFns +import Lean.Runtime +import Lean.Attributes +import Lean.Parser +import Lean.ReducibilityAttrs +import Lean.Elab +import Lean.EqnCompiler +import Lean.Class +import Lean.LocalContext +import Lean.MetavarContext +import Lean.AuxRecursor +import Lean.Linter +import Lean.Meta +import Lean.Util +import Lean.Eval +import Lean.Structure +import Lean.Delaborator +import Lean.PrettyPrinter diff --git a/stage0/src/Init/Lean/Attributes.lean b/stage0/src/Lean/Attributes.lean similarity index 99% rename from stage0/src/Init/Lean/Attributes.lean rename to stage0/src/Lean/Attributes.lean index 1716651dc6..c90c2d1410 100644 --- a/stage0/src/Init/Lean/Attributes.lean +++ b/stage0/src/Lean/Attributes.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Scopes -import Init.Lean.Syntax +import Lean.Scopes +import Lean.Syntax namespace Lean diff --git a/stage0/src/Init/Lean/AuxRecursor.lean b/stage0/src/Lean/AuxRecursor.lean similarity index 97% rename from stage0/src/Init/Lean/AuxRecursor.lean rename to stage0/src/Lean/AuxRecursor.lean index 5a822fa3c0..c082d0bf28 100644 --- a/stage0/src/Init/Lean/AuxRecursor.lean +++ b/stage0/src/Lean/AuxRecursor.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment +import Lean.Environment namespace Lean diff --git a/stage0/src/Init/Lean/Class.lean b/stage0/src/Lean/Class.lean similarity index 99% rename from stage0/src/Init/Lean/Class.lean rename to stage0/src/Lean/Class.lean index f5d8e9f7c6..f9ff07adc1 100644 --- a/stage0/src/Init/Lean/Class.lean +++ b/stage0/src/Lean/Class.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Attributes +import Lean.Attributes namespace Lean diff --git a/stage0/src/Lean/Compiler.lean b/stage0/src/Lean/Compiler.lean new file mode 100644 index 0000000000..a90ef0377f --- /dev/null +++ b/stage0/src/Lean/Compiler.lean @@ -0,0 +1,14 @@ +/- +Copyright (c) 2019 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura +-/ +prelude +import Lean.Compiler.InlineAttrs +import Lean.Compiler.Specialize +import Lean.Compiler.ConstFolding +import Lean.Compiler.ClosedTermCache +import Lean.Compiler.ExternAttr +import Lean.Compiler.ImplementedByAttr +import Lean.Compiler.NeverExtractAttr +import Lean.Compiler.IR diff --git a/stage0/src/Init/Lean/Compiler/ClosedTermCache.lean b/stage0/src/Lean/Compiler/ClosedTermCache.lean similarity index 97% rename from stage0/src/Init/Lean/Compiler/ClosedTermCache.lean rename to stage0/src/Lean/Compiler/ClosedTermCache.lean index 36d18f3517..17c1d15adc 100644 --- a/stage0/src/Init/Lean/Compiler/ClosedTermCache.lean +++ b/stage0/src/Lean/Compiler/ClosedTermCache.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment +import Lean.Environment namespace Lean diff --git a/stage0/src/Init/Lean/Compiler/ConstFolding.lean b/stage0/src/Lean/Compiler/ConstFolding.lean similarity index 99% rename from stage0/src/Init/Lean/Compiler/ConstFolding.lean rename to stage0/src/Lean/Compiler/ConstFolding.lean index 36ec5dc6e6..698223b46b 100644 --- a/stage0/src/Init/Lean/Compiler/ConstFolding.lean +++ b/stage0/src/Lean/Compiler/ConstFolding.lean @@ -5,8 +5,8 @@ Authors: Leonardo de Moura -/ prelude import Init.System.Platform -import Init.Lean.Expr -import Init.Lean.Compiler.Util +import Lean.Expr +import Lean.Compiler.Util /- Constant folding for primitives that have special runtime support. -/ diff --git a/stage0/src/Init/Lean/Compiler/ExportAttr.lean b/stage0/src/Lean/Compiler/ExportAttr.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/ExportAttr.lean rename to stage0/src/Lean/Compiler/ExportAttr.lean index c98c777471..bd2ddf0028 100644 --- a/stage0/src/Init/Lean/Compiler/ExportAttr.lean +++ b/stage0/src/Lean/Compiler/ExportAttr.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Attributes +import Lean.Attributes namespace Lean diff --git a/stage0/src/Init/Lean/Compiler/ExternAttr.lean b/stage0/src/Lean/Compiler/ExternAttr.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/ExternAttr.lean rename to stage0/src/Lean/Compiler/ExternAttr.lean index 015c4ba0dd..7c4d04d28c 100644 --- a/stage0/src/Init/Lean/Compiler/ExternAttr.lean +++ b/stage0/src/Lean/Compiler/ExternAttr.lean @@ -5,10 +5,10 @@ Authors: Leonardo de Moura -/ prelude import Init.Data.Option.Basic -import Init.Lean.Expr -import Init.Lean.Environment -import Init.Lean.Attributes -import Init.Lean.ProjFns +import Lean.Expr +import Lean.Environment +import Lean.Attributes +import Lean.ProjFns namespace Lean diff --git a/stage0/src/Init/Lean/Compiler/IR.lean b/stage0/src/Lean/Compiler/IR.lean similarity index 76% rename from stage0/src/Init/Lean/Compiler/IR.lean rename to stage0/src/Lean/Compiler/IR.lean index 043a049ffa..e4e3f82fd9 100644 --- a/stage0/src/Init/Lean/Compiler/IR.lean +++ b/stage0/src/Lean/Compiler/IR.lean @@ -4,23 +4,23 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Compiler.IR.Basic -import Init.Lean.Compiler.IR.Format -import Init.Lean.Compiler.IR.CompilerM -import Init.Lean.Compiler.IR.PushProj -import Init.Lean.Compiler.IR.ElimDeadVars -import Init.Lean.Compiler.IR.SimpCase -import Init.Lean.Compiler.IR.ResetReuse -import Init.Lean.Compiler.IR.NormIds -import Init.Lean.Compiler.IR.Checker -import Init.Lean.Compiler.IR.Borrow -import Init.Lean.Compiler.IR.Boxing -import Init.Lean.Compiler.IR.RC -import Init.Lean.Compiler.IR.ExpandResetReuse -import Init.Lean.Compiler.IR.UnboxResult -import Init.Lean.Compiler.IR.ElimDeadBranches -import Init.Lean.Compiler.IR.EmitC -import Init.Lean.Compiler.IR.CtorLayout +import Lean.Compiler.IR.Basic +import Lean.Compiler.IR.Format +import Lean.Compiler.IR.CompilerM +import Lean.Compiler.IR.PushProj +import Lean.Compiler.IR.ElimDeadVars +import Lean.Compiler.IR.SimpCase +import Lean.Compiler.IR.ResetReuse +import Lean.Compiler.IR.NormIds +import Lean.Compiler.IR.Checker +import Lean.Compiler.IR.Borrow +import Lean.Compiler.IR.Boxing +import Lean.Compiler.IR.RC +import Lean.Compiler.IR.ExpandResetReuse +import Lean.Compiler.IR.UnboxResult +import Lean.Compiler.IR.ElimDeadBranches +import Lean.Compiler.IR.EmitC +import Lean.Compiler.IR.CtorLayout namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/Basic.lean b/stage0/src/Lean/Compiler/IR/Basic.lean similarity index 99% rename from stage0/src/Init/Lean/Compiler/IR/Basic.lean rename to stage0/src/Lean/Compiler/IR/Basic.lean index cb280fb6a6..be314c1da4 100644 --- a/stage0/src/Init/Lean/Compiler/IR/Basic.lean +++ b/stage0/src/Lean/Compiler/IR/Basic.lean @@ -5,10 +5,10 @@ Authors: Leonardo de Moura -/ prelude import Init.Data.Array -import Init.Lean.Data.KVMap -import Init.Lean.Data.Name -import Init.Lean.Data.Format -import Init.Lean.Compiler.ExternAttr +import Lean.Data.KVMap +import Lean.Data.Name +import Lean.Data.Format +import Lean.Compiler.ExternAttr /- Implements (extended) λPure and λRc proposed in the article "Counting Immutable Beans", Sebastian Ullrich and Leonardo de Moura. diff --git a/stage0/src/Init/Lean/Compiler/IR/Borrow.lean b/stage0/src/Lean/Compiler/IR/Borrow.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/IR/Borrow.lean rename to stage0/src/Lean/Compiler/IR/Borrow.lean index baa8c9e602..3d29116896 100644 --- a/stage0/src/Init/Lean/Compiler/IR/Borrow.lean +++ b/stage0/src/Lean/Compiler/IR/Borrow.lean @@ -5,9 +5,9 @@ Authors: Leonardo de Moura -/ prelude import Init.Data.Nat -import Init.Lean.Compiler.ExportAttr -import Init.Lean.Compiler.IR.CompilerM -import Init.Lean.Compiler.IR.NormIds +import Lean.Compiler.ExportAttr +import Lean.Compiler.IR.CompilerM +import Lean.Compiler.IR.NormIds namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/Boxing.lean b/stage0/src/Lean/Compiler/IR/Boxing.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/IR/Boxing.lean rename to stage0/src/Lean/Compiler/IR/Boxing.lean index 87b1bb0cf5..0b8362232f 100644 --- a/stage0/src/Init/Lean/Compiler/IR/Boxing.lean +++ b/stage0/src/Lean/Compiler/IR/Boxing.lean @@ -8,13 +8,13 @@ import Init.Control.EState import Init.Control.Reader import Init.Data.AssocList import Init.Data.Nat -import Init.Lean.Runtime -import Init.Lean.Compiler.ClosedTermCache -import Init.Lean.Compiler.ExternAttr -import Init.Lean.Compiler.IR.Basic -import Init.Lean.Compiler.IR.CompilerM -import Init.Lean.Compiler.IR.FreeVars -import Init.Lean.Compiler.IR.ElimDeadVars +import Lean.Runtime +import Lean.Compiler.ClosedTermCache +import Lean.Compiler.ExternAttr +import Lean.Compiler.IR.Basic +import Lean.Compiler.IR.CompilerM +import Lean.Compiler.IR.FreeVars +import Lean.Compiler.IR.ElimDeadVars namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/Checker.lean b/stage0/src/Lean/Compiler/IR/Checker.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/IR/Checker.lean rename to stage0/src/Lean/Compiler/IR/Checker.lean index 9a763aa92d..9570c95891 100644 --- a/stage0/src/Init/Lean/Compiler/IR/Checker.lean +++ b/stage0/src/Lean/Compiler/IR/Checker.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Compiler.IR.CompilerM -import Init.Lean.Compiler.IR.Format +import Lean.Compiler.IR.CompilerM +import Lean.Compiler.IR.Format namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/CompilerM.lean b/stage0/src/Lean/Compiler/IR/CompilerM.lean similarity index 97% rename from stage0/src/Init/Lean/Compiler/IR/CompilerM.lean rename to stage0/src/Lean/Compiler/IR/CompilerM.lean index 1ff594753c..055d1746f9 100644 --- a/stage0/src/Init/Lean/Compiler/IR/CompilerM.lean +++ b/stage0/src/Lean/Compiler/IR/CompilerM.lean @@ -5,9 +5,9 @@ Authors: Leonardo de Moura -/ prelude import Init.Control.Reader -import Init.Lean.Environment -import Init.Lean.Compiler.IR.Basic -import Init.Lean.Compiler.IR.Format +import Lean.Environment +import Lean.Compiler.IR.Basic +import Lean.Compiler.IR.Format namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/CtorLayout.lean b/stage0/src/Lean/Compiler/IR/CtorLayout.lean similarity index 93% rename from stage0/src/Init/Lean/Compiler/IR/CtorLayout.lean rename to stage0/src/Lean/Compiler/IR/CtorLayout.lean index e3fe13f61a..3aa94a472b 100644 --- a/stage0/src/Init/Lean/Compiler/IR/CtorLayout.lean +++ b/stage0/src/Lean/Compiler/IR/CtorLayout.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment -import Init.Lean.Compiler.IR.Format +import Lean.Environment +import Lean.Compiler.IR.Format namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/ElimDeadBranches.lean b/stage0/src/Lean/Compiler/IR/ElimDeadBranches.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/IR/ElimDeadBranches.lean rename to stage0/src/Lean/Compiler/IR/ElimDeadBranches.lean index 357d3005ff..1e60a5290a 100644 --- a/stage0/src/Init/Lean/Compiler/IR/ElimDeadBranches.lean +++ b/stage0/src/Lean/Compiler/IR/ElimDeadBranches.lean @@ -7,9 +7,9 @@ prelude import Init.Control.Reader import Init.Data.Option import Init.Data.Nat -import Init.Lean.Compiler.IR.Format -import Init.Lean.Compiler.IR.Basic -import Init.Lean.Compiler.IR.CompilerM +import Lean.Compiler.IR.Format +import Lean.Compiler.IR.Basic +import Lean.Compiler.IR.CompilerM namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/ElimDeadVars.lean b/stage0/src/Lean/Compiler/IR/ElimDeadVars.lean similarity index 95% rename from stage0/src/Init/Lean/Compiler/IR/ElimDeadVars.lean rename to stage0/src/Lean/Compiler/IR/ElimDeadVars.lean index fe2e47f266..351c214966 100644 --- a/stage0/src/Init/Lean/Compiler/IR/ElimDeadVars.lean +++ b/stage0/src/Lean/Compiler/IR/ElimDeadVars.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Compiler.IR.Basic -import Init.Lean.Compiler.IR.FreeVars +import Lean.Compiler.IR.Basic +import Lean.Compiler.IR.FreeVars namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/EmitC.lean b/stage0/src/Lean/Compiler/IR/EmitC.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/IR/EmitC.lean rename to stage0/src/Lean/Compiler/IR/EmitC.lean index 3fec035e88..6b383e41b4 100644 --- a/stage0/src/Init/Lean/Compiler/IR/EmitC.lean +++ b/stage0/src/Lean/Compiler/IR/EmitC.lean @@ -5,15 +5,15 @@ Authors: Leonardo de Moura -/ prelude import Init.Control.Conditional -import Init.Lean.Runtime -import Init.Lean.Compiler.NameMangling -import Init.Lean.Compiler.ExportAttr -import Init.Lean.Compiler.InitAttr -import Init.Lean.Compiler.IR.CompilerM -import Init.Lean.Compiler.IR.EmitUtil -import Init.Lean.Compiler.IR.NormIds -import Init.Lean.Compiler.IR.SimpCase -import Init.Lean.Compiler.IR.Boxing +import Lean.Runtime +import Lean.Compiler.NameMangling +import Lean.Compiler.ExportAttr +import Lean.Compiler.InitAttr +import Lean.Compiler.IR.CompilerM +import Lean.Compiler.IR.EmitUtil +import Lean.Compiler.IR.NormIds +import Lean.Compiler.IR.SimpCase +import Lean.Compiler.IR.Boxing namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/EmitUtil.lean b/stage0/src/Lean/Compiler/IR/EmitUtil.lean similarity index 97% rename from stage0/src/Init/Lean/Compiler/IR/EmitUtil.lean rename to stage0/src/Lean/Compiler/IR/EmitUtil.lean index fc00b1b804..a559382b55 100644 --- a/stage0/src/Init/Lean/Compiler/IR/EmitUtil.lean +++ b/stage0/src/Lean/Compiler/IR/EmitUtil.lean @@ -5,8 +5,8 @@ Authors: Leonardo de Moura -/ prelude import Init.Control.Conditional -import Init.Lean.Compiler.InitAttr -import Init.Lean.Compiler.IR.CompilerM +import Lean.Compiler.InitAttr +import Lean.Compiler.IR.CompilerM /- Helper functions for backend code generators -/ diff --git a/stage0/src/Init/Lean/Compiler/IR/ExpandResetReuse.lean b/stage0/src/Lean/Compiler/IR/ExpandResetReuse.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/IR/ExpandResetReuse.lean rename to stage0/src/Lean/Compiler/IR/ExpandResetReuse.lean index 081f71640f..5412ac1e7b 100644 --- a/stage0/src/Init/Lean/Compiler/IR/ExpandResetReuse.lean +++ b/stage0/src/Lean/Compiler/IR/ExpandResetReuse.lean @@ -7,9 +7,9 @@ prelude import Init.Control.State import Init.Control.Reader import Init.Data.Nat -import Init.Lean.Compiler.IR.CompilerM -import Init.Lean.Compiler.IR.NormIds -import Init.Lean.Compiler.IR.FreeVars +import Lean.Compiler.IR.CompilerM +import Lean.Compiler.IR.NormIds +import Lean.Compiler.IR.FreeVars namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/Format.lean b/stage0/src/Lean/Compiler/IR/Format.lean similarity index 99% rename from stage0/src/Init/Lean/Compiler/IR/Format.lean rename to stage0/src/Lean/Compiler/IR/Format.lean index 9fe9a5ea0e..733bc86d6c 100644 --- a/stage0/src/Init/Lean/Compiler/IR/Format.lean +++ b/stage0/src/Lean/Compiler/IR/Format.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Data.Format -import Init.Lean.Compiler.IR.Basic +import Lean.Data.Format +import Lean.Compiler.IR.Basic namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/FreeVars.lean b/stage0/src/Lean/Compiler/IR/FreeVars.lean similarity index 99% rename from stage0/src/Init/Lean/Compiler/IR/FreeVars.lean rename to stage0/src/Lean/Compiler/IR/FreeVars.lean index 98c8894058..862b5bb38d 100644 --- a/stage0/src/Init/Lean/Compiler/IR/FreeVars.lean +++ b/stage0/src/Lean/Compiler/IR/FreeVars.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Compiler.IR.Basic +import Lean.Compiler.IR.Basic namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/LiveVars.lean b/stage0/src/Lean/Compiler/IR/LiveVars.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/IR/LiveVars.lean rename to stage0/src/Lean/Compiler/IR/LiveVars.lean index 915022935e..4900fdf74b 100644 --- a/stage0/src/Init/Lean/Compiler/IR/LiveVars.lean +++ b/stage0/src/Lean/Compiler/IR/LiveVars.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Compiler.IR.Basic -import Init.Lean.Compiler.IR.FreeVars +import Lean.Compiler.IR.Basic +import Lean.Compiler.IR.FreeVars import Init.Control.Reader import Init.Control.Conditional diff --git a/stage0/src/Init/Lean/Compiler/IR/NormIds.lean b/stage0/src/Lean/Compiler/IR/NormIds.lean similarity index 99% rename from stage0/src/Init/Lean/Compiler/IR/NormIds.lean rename to stage0/src/Lean/Compiler/IR/NormIds.lean index f2d2cfb435..4baf1dcbeb 100644 --- a/stage0/src/Init/Lean/Compiler/IR/NormIds.lean +++ b/stage0/src/Lean/Compiler/IR/NormIds.lean @@ -6,7 +6,7 @@ Authors: Leonardo de Moura prelude import Init.Control.Reader import Init.Control.Conditional -import Init.Lean.Compiler.IR.Basic +import Lean.Compiler.IR.Basic namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/PushProj.lean b/stage0/src/Lean/Compiler/IR/PushProj.lean similarity index 94% rename from stage0/src/Init/Lean/Compiler/IR/PushProj.lean rename to stage0/src/Lean/Compiler/IR/PushProj.lean index 1b6bfb4f94..1162290fdf 100644 --- a/stage0/src/Init/Lean/Compiler/IR/PushProj.lean +++ b/stage0/src/Lean/Compiler/IR/PushProj.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Compiler.IR.Basic -import Init.Lean.Compiler.IR.FreeVars -import Init.Lean.Compiler.IR.NormIds +import Lean.Compiler.IR.Basic +import Lean.Compiler.IR.FreeVars +import Lean.Compiler.IR.NormIds namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/RC.lean b/stage0/src/Lean/Compiler/IR/RC.lean similarity index 99% rename from stage0/src/Init/Lean/Compiler/IR/RC.lean rename to stage0/src/Lean/Compiler/IR/RC.lean index c0160eb030..e9cfd118b1 100644 --- a/stage0/src/Init/Lean/Compiler/IR/RC.lean +++ b/stage0/src/Lean/Compiler/IR/RC.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Runtime -import Init.Lean.Compiler.IR.CompilerM -import Init.Lean.Compiler.IR.LiveVars +import Lean.Runtime +import Lean.Compiler.IR.CompilerM +import Lean.Compiler.IR.LiveVars namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/ResetReuse.lean b/stage0/src/Lean/Compiler/IR/ResetReuse.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/IR/ResetReuse.lean rename to stage0/src/Lean/Compiler/IR/ResetReuse.lean index 9863a39b8d..c37ef2c0f9 100644 --- a/stage0/src/Init/Lean/Compiler/IR/ResetReuse.lean +++ b/stage0/src/Lean/Compiler/IR/ResetReuse.lean @@ -6,9 +6,9 @@ Authors: Leonardo de Moura prelude import Init.Control.State import Init.Control.Reader -import Init.Lean.Compiler.IR.Basic -import Init.Lean.Compiler.IR.LiveVars -import Init.Lean.Compiler.IR.Format +import Lean.Compiler.IR.Basic +import Lean.Compiler.IR.LiveVars +import Lean.Compiler.IR.Format namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/SimpCase.lean b/stage0/src/Lean/Compiler/IR/SimpCase.lean similarity index 96% rename from stage0/src/Init/Lean/Compiler/IR/SimpCase.lean rename to stage0/src/Lean/Compiler/IR/SimpCase.lean index bf7b018b5f..a4a3c7e292 100644 --- a/stage0/src/Init/Lean/Compiler/IR/SimpCase.lean +++ b/stage0/src/Lean/Compiler/IR/SimpCase.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Compiler.IR.Basic -import Init.Lean.Compiler.IR.Format +import Lean.Compiler.IR.Basic +import Lean.Compiler.IR.Format namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/IR/UnboxResult.lean b/stage0/src/Lean/Compiler/IR/UnboxResult.lean similarity index 93% rename from stage0/src/Init/Lean/Compiler/IR/UnboxResult.lean rename to stage0/src/Lean/Compiler/IR/UnboxResult.lean index 818008c6f8..3c67aca099 100644 --- a/stage0/src/Init/Lean/Compiler/IR/UnboxResult.lean +++ b/stage0/src/Lean/Compiler/IR/UnboxResult.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Data.Format -import Init.Lean.Compiler.IR.Basic +import Lean.Data.Format +import Lean.Compiler.IR.Basic namespace Lean namespace IR diff --git a/stage0/src/Init/Lean/Compiler/ImplementedByAttr.lean b/stage0/src/Lean/Compiler/ImplementedByAttr.lean similarity index 97% rename from stage0/src/Init/Lean/Compiler/ImplementedByAttr.lean rename to stage0/src/Lean/Compiler/ImplementedByAttr.lean index 223d80feee..9a26ea290a 100644 --- a/stage0/src/Init/Lean/Compiler/ImplementedByAttr.lean +++ b/stage0/src/Lean/Compiler/ImplementedByAttr.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Attributes +import Lean.Attributes namespace Lean namespace Compiler diff --git a/stage0/src/Init/Lean/Compiler/InitAttr.lean b/stage0/src/Lean/Compiler/InitAttr.lean similarity index 97% rename from stage0/src/Init/Lean/Compiler/InitAttr.lean rename to stage0/src/Lean/Compiler/InitAttr.lean index dee6ce9cc4..2908875be8 100644 --- a/stage0/src/Init/Lean/Compiler/InitAttr.lean +++ b/stage0/src/Lean/Compiler/InitAttr.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment -import Init.Lean.Attributes +import Lean.Environment +import Lean.Attributes namespace Lean diff --git a/stage0/src/Init/Lean/Compiler/InlineAttrs.lean b/stage0/src/Lean/Compiler/InlineAttrs.lean similarity index 97% rename from stage0/src/Init/Lean/Compiler/InlineAttrs.lean rename to stage0/src/Lean/Compiler/InlineAttrs.lean index dff9d02b41..0dfd18c8f9 100644 --- a/stage0/src/Init/Lean/Compiler/InlineAttrs.lean +++ b/stage0/src/Lean/Compiler/InlineAttrs.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Attributes -import Init.Lean.Compiler.Util +import Lean.Attributes +import Lean.Compiler.Util namespace Lean namespace Compiler diff --git a/stage0/src/Init/Lean/Compiler/NameMangling.lean b/stage0/src/Lean/Compiler/NameMangling.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/NameMangling.lean rename to stage0/src/Lean/Compiler/NameMangling.lean index 7e373c3434..760f40b201 100644 --- a/stage0/src/Init/Lean/Compiler/NameMangling.lean +++ b/stage0/src/Lean/Compiler/NameMangling.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura -/ prelude -import Init.Lean.Data.Name +import Lean.Data.Name namespace Lean private def String.mangleAux : Nat → String.Iterator → String → String diff --git a/stage0/src/Init/Lean/Compiler/NeverExtractAttr.lean b/stage0/src/Lean/Compiler/NeverExtractAttr.lean similarity index 94% rename from stage0/src/Init/Lean/Compiler/NeverExtractAttr.lean rename to stage0/src/Lean/Compiler/NeverExtractAttr.lean index 2aabdd9f4f..4b445f43b2 100644 --- a/stage0/src/Init/Lean/Compiler/NeverExtractAttr.lean +++ b/stage0/src/Lean/Compiler/NeverExtractAttr.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment -import Init.Lean.Attributes +import Lean.Environment +import Lean.Attributes namespace Lean diff --git a/stage0/src/Init/Lean/Compiler/Specialize.lean b/stage0/src/Lean/Compiler/Specialize.lean similarity index 98% rename from stage0/src/Init/Lean/Compiler/Specialize.lean rename to stage0/src/Lean/Compiler/Specialize.lean index 0a12403349..d44c92105f 100644 --- a/stage0/src/Init/Lean/Compiler/Specialize.lean +++ b/stage0/src/Lean/Compiler/Specialize.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Attributes -import Init.Lean.Compiler.Util +import Lean.Attributes +import Lean.Compiler.Util namespace Lean namespace Compiler diff --git a/stage0/src/Init/Lean/Compiler/Util.lean b/stage0/src/Lean/Compiler/Util.lean similarity index 99% rename from stage0/src/Init/Lean/Compiler/Util.lean rename to stage0/src/Lean/Compiler/Util.lean index 469fbede27..686e714b2a 100644 --- a/stage0/src/Init/Lean/Compiler/Util.lean +++ b/stage0/src/Lean/Compiler/Util.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment +import Lean.Environment namespace Lean namespace Compiler diff --git a/stage0/src/Init/Lean/Data/Format.lean b/stage0/src/Lean/Data/Format.lean similarity index 99% rename from stage0/src/Init/Lean/Data/Format.lean rename to stage0/src/Lean/Data/Format.lean index e0ae98b510..07db7c3ffb 100644 --- a/stage0/src/Init/Lean/Data/Format.lean +++ b/stage0/src/Lean/Data/Format.lean @@ -5,7 +5,7 @@ Author: Leonardo de Moura -/ prelude import Init.Data.Array -import Init.Lean.Data.Options +import Lean.Data.Options universes u v namespace Lean diff --git a/stage0/src/Init/Lean/Data/Json.lean b/stage0/src/Lean/Data/Json.lean similarity index 61% rename from stage0/src/Init/Lean/Data/Json.lean rename to stage0/src/Lean/Data/Json.lean index eb94436dbc..932bf917b3 100644 --- a/stage0/src/Init/Lean/Data/Json.lean +++ b/stage0/src/Lean/Data/Json.lean @@ -5,6 +5,6 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Gabriel Ebner, Marc Huisinga -/ prelude -import Init.Lean.Data.Json.Printer -import Init.Lean.Data.Json.Parser -import Init.Lean.Data.Json.FromToJson +import Lean.Data.Json.Printer +import Lean.Data.Json.Parser +import Lean.Data.Json.FromToJson diff --git a/stage0/src/Init/Lean/Data/Json/Basic.lean b/stage0/src/Lean/Data/Json/Basic.lean similarity index 100% rename from stage0/src/Init/Lean/Data/Json/Basic.lean rename to stage0/src/Lean/Data/Json/Basic.lean diff --git a/stage0/src/Init/Lean/Data/Json/FromToJson.lean b/stage0/src/Lean/Data/Json/FromToJson.lean similarity index 98% rename from stage0/src/Init/Lean/Data/Json/FromToJson.lean rename to stage0/src/Lean/Data/Json/FromToJson.lean index f17f0156fe..6d9c4d5d8c 100644 --- a/stage0/src/Init/Lean/Data/Json/FromToJson.lean +++ b/stage0/src/Lean/Data/Json/FromToJson.lean @@ -5,7 +5,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Gabriel Ebner, Marc Huisinga -/ prelude -import Init.Lean.Data.Json.Basic +import Lean.Data.Json.Basic import Init.Data.List.Control namespace Lean diff --git a/stage0/src/Init/Lean/Data/Json/Parser.lean b/stage0/src/Lean/Data/Json/Parser.lean similarity index 99% rename from stage0/src/Init/Lean/Data/Json/Parser.lean rename to stage0/src/Lean/Data/Json/Parser.lean index 5d6545480a..d981dbdcd7 100644 --- a/stage0/src/Init/Lean/Data/Json/Parser.lean +++ b/stage0/src/Lean/Data/Json/Parser.lean @@ -5,7 +5,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Gabriel Ebner, Marc Huisinga -/ prelude -import Init.Lean.Data.Json.Basic +import Lean.Data.Json.Basic import Init.Control.Except namespace Lean diff --git a/stage0/src/Init/Lean/Data/Json/Printer.lean b/stage0/src/Lean/Data/Json/Printer.lean similarity index 97% rename from stage0/src/Init/Lean/Data/Json/Printer.lean rename to stage0/src/Lean/Data/Json/Printer.lean index 62c92ef433..4ced109ccf 100644 --- a/stage0/src/Init/Lean/Data/Json/Printer.lean +++ b/stage0/src/Lean/Data/Json/Printer.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Gabriel Ebner, Marc Huisinga -/ prelude -import Init.Lean.Data.Format -import Init.Lean.Data.Json.Basic +import Lean.Data.Format +import Lean.Data.Json.Basic namespace Lean namespace Json diff --git a/stage0/src/Init/Lean/Data/KVMap.lean b/stage0/src/Lean/Data/KVMap.lean similarity index 99% rename from stage0/src/Init/Lean/Data/KVMap.lean rename to stage0/src/Lean/Data/KVMap.lean index 17cdbcfb8e..24f9f69c60 100644 --- a/stage0/src/Init/Lean/Data/KVMap.lean +++ b/stage0/src/Lean/Data/KVMap.lean @@ -6,7 +6,7 @@ Authors: Leonardo de Moura prelude import Init.Data.Option.Basic import Init.Data.Int -import Init.Lean.Data.Name +import Lean.Data.Name namespace Lean diff --git a/stage0/src/Init/Lean/Data/LBool.lean b/stage0/src/Lean/Data/LBool.lean similarity index 100% rename from stage0/src/Init/Lean/Data/LBool.lean rename to stage0/src/Lean/Data/LBool.lean diff --git a/stage0/src/Init/Lean/Data/LOption.lean b/stage0/src/Lean/Data/LOption.lean similarity index 100% rename from stage0/src/Init/Lean/Data/LOption.lean rename to stage0/src/Lean/Data/LOption.lean diff --git a/stage0/src/Init/Lean/Data/Name.lean b/stage0/src/Lean/Data/Name.lean similarity index 100% rename from stage0/src/Init/Lean/Data/Name.lean rename to stage0/src/Lean/Data/Name.lean diff --git a/stage0/src/Init/Lean/Data/Occurrences.lean b/stage0/src/Lean/Data/Occurrences.lean similarity index 100% rename from stage0/src/Init/Lean/Data/Occurrences.lean rename to stage0/src/Lean/Data/Occurrences.lean diff --git a/stage0/src/Init/Lean/Data/Options.lean b/stage0/src/Lean/Data/Options.lean similarity index 99% rename from stage0/src/Init/Lean/Data/Options.lean rename to stage0/src/Lean/Data/Options.lean index f0538671eb..fdff0c6180 100644 --- a/stage0/src/Init/Lean/Data/Options.lean +++ b/stage0/src/Lean/Data/Options.lean @@ -7,7 +7,7 @@ prelude import Init.System.IO import Init.Data.Array import Init.Data.ToString -import Init.Lean.Data.KVMap +import Lean.Data.KVMap namespace Lean diff --git a/stage0/src/Init/Lean/Data/Position.lean b/stage0/src/Lean/Data/Position.lean similarity index 99% rename from stage0/src/Init/Lean/Data/Position.lean rename to stage0/src/Lean/Data/Position.lean index 04a8b82024..818e984262 100644 --- a/stage0/src/Init/Lean/Data/Position.lean +++ b/stage0/src/Lean/Data/Position.lean @@ -6,7 +6,7 @@ Authors: Leonardo de Moura, Sebastian Ullrich prelude import Init.Data.Nat import Init.Data.RBMap -import Init.Lean.Data.Format +import Lean.Data.Format namespace Lean diff --git a/stage0/src/Init/Lean/Data/SMap.lean b/stage0/src/Lean/Data/SMap.lean similarity index 100% rename from stage0/src/Init/Lean/Data/SMap.lean rename to stage0/src/Lean/Data/SMap.lean diff --git a/stage0/src/Init/Lean/Data/Trie.lean b/stage0/src/Lean/Data/Trie.lean similarity index 98% rename from stage0/src/Init/Lean/Data/Trie.lean rename to stage0/src/Lean/Data/Trie.lean index 0a7d3755b3..32bb0eaa77 100644 --- a/stage0/src/Init/Lean/Data/Trie.lean +++ b/stage0/src/Lean/Data/Trie.lean @@ -7,7 +7,7 @@ Trie for tokenizing the Lean language -/ prelude import Init.Data.RBMap -import Init.Lean.Data.Format +import Lean.Data.Format namespace Lean namespace Parser diff --git a/stage0/src/Init/Lean/Declaration.lean b/stage0/src/Lean/Declaration.lean similarity index 99% rename from stage0/src/Init/Lean/Declaration.lean rename to stage0/src/Lean/Declaration.lean index 50771041c4..389dd01e21 100644 --- a/stage0/src/Init/Lean/Declaration.lean +++ b/stage0/src/Lean/Declaration.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr namespace Lean /-- diff --git a/stage0/src/Init/Lean/Delaborator.lean b/stage0/src/Lean/Delaborator.lean similarity index 99% rename from stage0/src/Init/Lean/Delaborator.lean rename to stage0/src/Lean/Delaborator.lean index 6d1e159663..e7acfc168f 100644 --- a/stage0/src/Init/Lean/Delaborator.lean +++ b/stage0/src/Lean/Delaborator.lean @@ -26,10 +26,10 @@ The delaborator is extensible via the `[delab]` attribute. -/ prelude -import Init.Lean.KeyedDeclsAttribute -import Init.Lean.ProjFns -import Init.Lean.Syntax -import Init.Lean.Elab.Term +import Lean.KeyedDeclsAttribute +import Lean.ProjFns +import Lean.Syntax +import Lean.Elab.Term namespace Lean diff --git a/stage0/src/Lean/Elab.lean b/stage0/src/Lean/Elab.lean new file mode 100644 index 0000000000..85c71b21ef --- /dev/null +++ b/stage0/src/Lean/Elab.lean @@ -0,0 +1,22 @@ +/- +Copyright (c) 2019 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura +-/ +prelude +import Lean.Elab.Import +import Lean.Elab.Exception +import Lean.Elab.StrategyAttrs +import Lean.Elab.Command +import Lean.Elab.Term +import Lean.Elab.App +import Lean.Elab.Binders +import Lean.Elab.Quotation +import Lean.Elab.Frontend +import Lean.Elab.BuiltinNotation +import Lean.Elab.Declaration +import Lean.Elab.Tactic +import Lean.Elab.Syntax +import Lean.Elab.Match +import Lean.Elab.DoNotation +import Lean.Elab.StructInst diff --git a/stage0/src/Init/Lean/Elab/Alias.lean b/stage0/src/Lean/Elab/Alias.lean similarity index 97% rename from stage0/src/Init/Lean/Elab/Alias.lean rename to stage0/src/Lean/Elab/Alias.lean index bac3ab4f0a..065a67d698 100644 --- a/stage0/src/Init/Lean/Elab/Alias.lean +++ b/stage0/src/Lean/Elab/Alias.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment +import Lean.Environment namespace Lean diff --git a/stage0/src/Init/Lean/Elab/App.lean b/stage0/src/Lean/Elab/App.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/App.lean rename to stage0/src/Lean/Elab/App.lean index e8598022d4..dba9e3be00 100644 --- a/stage0/src/Init/Lean/Elab/App.lean +++ b/stage0/src/Lean/Elab/App.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Util.FindMVar -import Init.Lean.Elab.Term -import Init.Lean.Elab.Binders +import Lean.Util.FindMVar +import Lean.Elab.Term +import Lean.Elab.Binders namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Binders.lean b/stage0/src/Lean/Elab/Binders.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/Binders.lean rename to stage0/src/Lean/Elab/Binders.lean index b2f28050f3..098fa73340 100644 --- a/stage0/src/Init/Lean/Elab/Binders.lean +++ b/stage0/src/Lean/Elab/Binders.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Elab.Term -import Init.Lean.Elab.Quotation +import Lean.Elab.Term +import Lean.Elab.Quotation namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/BuiltinNotation.lean b/stage0/src/Lean/Elab/BuiltinNotation.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/BuiltinNotation.lean rename to stage0/src/Lean/Elab/BuiltinNotation.lean index 7508912b03..93d7622c95 100644 --- a/stage0/src/Init/Lean/Elab/BuiltinNotation.lean +++ b/stage0/src/Lean/Elab/BuiltinNotation.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Elab.Term -import Init.Lean.Elab.Quotation -import Init.Lean.Elab.SyntheticMVars +import Lean.Elab.Term +import Lean.Elab.Quotation +import Lean.Elab.SyntheticMVars namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Command.lean b/stage0/src/Lean/Elab/Command.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/Command.lean rename to stage0/src/Lean/Elab/Command.lean index f817013cd6..392f6a7835 100644 --- a/stage0/src/Init/Lean/Elab/Command.lean +++ b/stage0/src/Lean/Elab/Command.lean @@ -4,12 +4,12 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Elab.Alias -import Init.Lean.Elab.Log -import Init.Lean.Elab.ResolveName -import Init.Lean.Elab.Term -import Init.Lean.Elab.Binders -import Init.Lean.Elab.SyntheticMVars +import Lean.Elab.Alias +import Lean.Elab.Log +import Lean.Elab.ResolveName +import Lean.Elab.Term +import Lean.Elab.Binders +import Lean.Elab.SyntheticMVars namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/DeclModifiers.lean b/stage0/src/Lean/Elab/DeclModifiers.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/DeclModifiers.lean rename to stage0/src/Lean/Elab/DeclModifiers.lean index cb5b01666d..aedbd65539 100644 --- a/stage0/src/Init/Lean/Elab/DeclModifiers.lean +++ b/stage0/src/Lean/Elab/DeclModifiers.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Elab.Command +import Lean.Elab.Command namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Declaration.lean b/stage0/src/Lean/Elab/Declaration.lean similarity index 98% rename from stage0/src/Init/Lean/Elab/Declaration.lean rename to stage0/src/Lean/Elab/Declaration.lean index 85c9e2e240..70e0e343a8 100644 --- a/stage0/src/Init/Lean/Elab/Declaration.lean +++ b/stage0/src/Lean/Elab/Declaration.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Util.CollectLevelParams -import Init.Lean.Elab.Definition +import Lean.Util.CollectLevelParams +import Lean.Elab.Definition namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Definition.lean b/stage0/src/Lean/Elab/Definition.lean similarity index 97% rename from stage0/src/Init/Lean/Elab/Definition.lean rename to stage0/src/Lean/Elab/Definition.lean index eeeccdf36a..31b744b061 100644 --- a/stage0/src/Init/Lean/Elab/Definition.lean +++ b/stage0/src/Lean/Elab/Definition.lean @@ -5,11 +5,11 @@ Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude import Init.ShareCommon -import Init.Lean.Util.CollectLevelParams -import Init.Lean.Util.FoldConsts -import Init.Lean.Util.CollectFVars -import Init.Lean.Elab.DeclModifiers -import Init.Lean.Elab.Binders +import Lean.Util.CollectLevelParams +import Lean.Util.FoldConsts +import Lean.Util.CollectFVars +import Lean.Elab.DeclModifiers +import Lean.Elab.Binders namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/DoNotation.lean b/stage0/src/Lean/Elab/DoNotation.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/DoNotation.lean rename to stage0/src/Lean/Elab/DoNotation.lean index 4f6095889a..3a2c41b7ba 100644 --- a/stage0/src/Init/Lean/Elab/DoNotation.lean +++ b/stage0/src/Lean/Elab/DoNotation.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Elab.Term -import Init.Lean.Elab.Binders -import Init.Lean.Elab.Quotation +import Lean.Elab.Term +import Lean.Elab.Binders +import Lean.Elab.Quotation namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Exception.lean b/stage0/src/Lean/Elab/Exception.lean similarity index 97% rename from stage0/src/Init/Lean/Elab/Exception.lean rename to stage0/src/Lean/Elab/Exception.lean index 30f35017ca..d6da76cb4d 100644 --- a/stage0/src/Init/Lean/Elab/Exception.lean +++ b/stage0/src/Lean/Elab/Exception.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Message +import Lean.Meta.Message namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Frontend.lean b/stage0/src/Lean/Elab/Frontend.lean similarity index 98% rename from stage0/src/Init/Lean/Elab/Frontend.lean rename to stage0/src/Lean/Elab/Frontend.lean index d146019cc8..66b485d39c 100644 --- a/stage0/src/Init/Lean/Elab/Frontend.lean +++ b/stage0/src/Lean/Elab/Frontend.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Elab.Import -import Init.Lean.Elab.Command +import Lean.Elab.Import +import Lean.Elab.Command namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Import.lean b/stage0/src/Lean/Elab/Import.lean similarity index 98% rename from stage0/src/Init/Lean/Elab/Import.lean rename to stage0/src/Lean/Elab/Import.lean index 0fddaade24..620987b6e0 100644 --- a/stage0/src/Init/Lean/Elab/Import.lean +++ b/stage0/src/Lean/Elab/Import.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Parser.Module +import Lean.Parser.Module namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Level.lean b/stage0/src/Lean/Elab/Level.lean similarity index 96% rename from stage0/src/Init/Lean/Elab/Level.lean rename to stage0/src/Lean/Elab/Level.lean index 23cba79426..ca8241f872 100644 --- a/stage0/src/Init/Lean/Elab/Level.lean +++ b/stage0/src/Lean/Elab/Level.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.LevelDefEq -import Init.Lean.Elab.Exception -import Init.Lean.Elab.Log +import Lean.Meta.LevelDefEq +import Lean.Elab.Exception +import Lean.Elab.Log namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Log.lean b/stage0/src/Lean/Elab/Log.lean similarity index 97% rename from stage0/src/Init/Lean/Elab/Log.lean rename to stage0/src/Lean/Elab/Log.lean index 8811ff36e6..5f6d80bd5a 100644 --- a/stage0/src/Init/Lean/Elab/Log.lean +++ b/stage0/src/Lean/Elab/Log.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Elab.Util -import Init.Lean.Elab.Exception +import Lean.Elab.Util +import Lean.Elab.Exception namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Match.lean b/stage0/src/Lean/Elab/Match.lean similarity index 98% rename from stage0/src/Init/Lean/Elab/Match.lean rename to stage0/src/Lean/Elab/Match.lean index 19e5f54bc8..639bc4318c 100644 --- a/stage0/src/Init/Lean/Elab/Match.lean +++ b/stage0/src/Lean/Elab/Match.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Elab.Term +import Lean.Elab.Term namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/Quotation.lean rename to stage0/src/Lean/Elab/Quotation.lean index 6ab00149cd..ef7e042bbf 100644 --- a/stage0/src/Init/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -7,10 +7,10 @@ Elaboration of syntax quotations as terms and patterns (in `match_syntax`). See hygiene workings and data types. -/ prelude -import Init.Lean.Syntax -import Init.Lean.Elab.ResolveName -import Init.Lean.Elab.Term -import Init.Lean.Parser -- TODO: remove after removing old elaborator +import Lean.Syntax +import Lean.Elab.ResolveName +import Lean.Elab.Term +import Lean.Parser -- TODO: remove after removing old elaborator /- TODO diff --git a/stage0/src/Init/Lean/Elab/ResolveName.lean b/stage0/src/Lean/Elab/ResolveName.lean similarity index 98% rename from stage0/src/Init/Lean/Elab/ResolveName.lean rename to stage0/src/Lean/Elab/ResolveName.lean index bf6208a7b6..cfff7fc1ed 100644 --- a/stage0/src/Init/Lean/Elab/ResolveName.lean +++ b/stage0/src/Lean/Elab/ResolveName.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Hygiene -import Init.Lean.Modifiers -import Init.Lean.Elab.Alias +import Lean.Hygiene +import Lean.Modifiers +import Lean.Elab.Alias namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/StrategyAttrs.lean b/stage0/src/Lean/Elab/StrategyAttrs.lean similarity index 98% rename from stage0/src/Init/Lean/Elab/StrategyAttrs.lean rename to stage0/src/Lean/Elab/StrategyAttrs.lean index 12709cf1d9..30c6184ef3 100644 --- a/stage0/src/Init/Lean/Elab/StrategyAttrs.lean +++ b/stage0/src/Lean/Elab/StrategyAttrs.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Attributes +import Lean.Attributes namespace Lean /- diff --git a/stage0/src/Init/Lean/Elab/StructInst.lean b/stage0/src/Lean/Elab/StructInst.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/StructInst.lean rename to stage0/src/Lean/Elab/StructInst.lean index ec1999e511..68424e2c07 100644 --- a/stage0/src/Init/Lean/Elab/StructInst.lean +++ b/stage0/src/Lean/Elab/StructInst.lean @@ -4,10 +4,10 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Util.FindExpr -import Init.Lean.Elab.App -import Init.Lean.Elab.Binders -import Init.Lean.Elab.Quotation +import Lean.Util.FindExpr +import Lean.Elab.App +import Lean.Elab.Binders +import Lean.Elab.Quotation namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Syntax.lean b/stage0/src/Lean/Elab/Syntax.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/Syntax.lean rename to stage0/src/Lean/Elab/Syntax.lean index a539d08bf6..dba38bf277 100644 --- a/stage0/src/Init/Lean/Elab/Syntax.lean +++ b/stage0/src/Lean/Elab/Syntax.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Elab.Command -import Init.Lean.Elab.Quotation +import Lean.Elab.Command +import Lean.Elab.Quotation namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/SyntheticMVars.lean b/stage0/src/Lean/Elab/SyntheticMVars.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/SyntheticMVars.lean rename to stage0/src/Lean/Elab/SyntheticMVars.lean index bb1fccdc49..741fcc099a 100644 --- a/stage0/src/Init/Lean/Elab/SyntheticMVars.lean +++ b/stage0/src/Lean/Elab/SyntheticMVars.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Elab.Term -import Init.Lean.Elab.Tactic.Basic +import Lean.Elab.Term +import Lean.Elab.Tactic.Basic namespace Lean namespace Elab diff --git a/stage0/src/Lean/Elab/Tactic.lean b/stage0/src/Lean/Elab/Tactic.lean new file mode 100644 index 0000000000..452be80003 --- /dev/null +++ b/stage0/src/Lean/Elab/Tactic.lean @@ -0,0 +1,12 @@ +/- +Copyright (c) 2020 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura, Sebastian Ullrich +-/ +prelude +import Lean.Elab.Term +import Lean.Elab.Tactic.Basic +import Lean.Elab.Tactic.ElabTerm +import Lean.Elab.Tactic.Induction +import Lean.Elab.Tactic.Generalize +import Lean.Elab.Tactic.Injection diff --git a/stage0/src/Init/Lean/Elab/Tactic/Basic.lean b/stage0/src/Lean/Elab/Tactic/Basic.lean similarity index 98% rename from stage0/src/Init/Lean/Elab/Tactic/Basic.lean rename to stage0/src/Lean/Elab/Tactic/Basic.lean index 0df895aefb..13b6ecda8b 100644 --- a/stage0/src/Init/Lean/Elab/Tactic/Basic.lean +++ b/stage0/src/Lean/Elab/Tactic/Basic.lean @@ -4,14 +4,14 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Util.CollectMVars -import Init.Lean.Meta.Tactic.Assumption -import Init.Lean.Meta.Tactic.Intro -import Init.Lean.Meta.Tactic.Clear -import Init.Lean.Meta.Tactic.Revert -import Init.Lean.Meta.Tactic.Subst -import Init.Lean.Elab.Util -import Init.Lean.Elab.Term +import Lean.Util.CollectMVars +import Lean.Meta.Tactic.Assumption +import Lean.Meta.Tactic.Intro +import Lean.Meta.Tactic.Clear +import Lean.Meta.Tactic.Revert +import Lean.Meta.Tactic.Subst +import Lean.Elab.Util +import Lean.Elab.Term namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Tactic/ElabTerm.lean b/stage0/src/Lean/Elab/Tactic/ElabTerm.lean similarity index 95% rename from stage0/src/Init/Lean/Elab/Tactic/ElabTerm.lean rename to stage0/src/Lean/Elab/Tactic/ElabTerm.lean index 38ed5d4e80..d716ae8188 100644 --- a/stage0/src/Init/Lean/Elab/Tactic/ElabTerm.lean +++ b/stage0/src/Lean/Elab/Tactic/ElabTerm.lean @@ -4,10 +4,10 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Tactic.Apply -import Init.Lean.Meta.Tactic.Assert -import Init.Lean.Elab.Tactic.Basic -import Init.Lean.Elab.SyntheticMVars +import Lean.Meta.Tactic.Apply +import Lean.Meta.Tactic.Assert +import Lean.Elab.Tactic.Basic +import Lean.Elab.SyntheticMVars namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Tactic/Generalize.lean b/stage0/src/Lean/Elab/Tactic/Generalize.lean similarity index 95% rename from stage0/src/Init/Lean/Elab/Tactic/Generalize.lean rename to stage0/src/Lean/Elab/Tactic/Generalize.lean index 1d9d36ecf8..ff1b81a7b5 100644 --- a/stage0/src/Init/Lean/Elab/Tactic/Generalize.lean +++ b/stage0/src/Lean/Elab/Tactic/Generalize.lean @@ -4,10 +4,10 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Meta.Tactic.Generalize -import Init.Lean.Meta.Check -import Init.Lean.Meta.Tactic.Intro -import Init.Lean.Elab.Tactic.ElabTerm +import Lean.Meta.Tactic.Generalize +import Lean.Meta.Check +import Lean.Meta.Tactic.Intro +import Lean.Elab.Tactic.ElabTerm namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Tactic/Induction.lean b/stage0/src/Lean/Elab/Tactic/Induction.lean similarity index 98% rename from stage0/src/Init/Lean/Elab/Tactic/Induction.lean rename to stage0/src/Lean/Elab/Tactic/Induction.lean index fabe1f136e..41ee8749a6 100644 --- a/stage0/src/Init/Lean/Elab/Tactic/Induction.lean +++ b/stage0/src/Lean/Elab/Tactic/Induction.lean @@ -4,11 +4,11 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Meta.RecursorInfo -import Init.Lean.Meta.Tactic.Induction -import Init.Lean.Meta.Tactic.Cases -import Init.Lean.Elab.Tactic.ElabTerm -import Init.Lean.Elab.Tactic.Generalize +import Lean.Meta.RecursorInfo +import Lean.Meta.Tactic.Induction +import Lean.Meta.Tactic.Cases +import Lean.Elab.Tactic.ElabTerm +import Lean.Elab.Tactic.Generalize namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Tactic/Injection.lean b/stage0/src/Lean/Elab/Tactic/Injection.lean similarity index 93% rename from stage0/src/Init/Lean/Elab/Tactic/Injection.lean rename to stage0/src/Lean/Elab/Tactic/Injection.lean index 15af6a8f6b..edecea8fdc 100644 --- a/stage0/src/Init/Lean/Elab/Tactic/Injection.lean +++ b/stage0/src/Lean/Elab/Tactic/Injection.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Tactic.Injection -import Init.Lean.Elab.Tactic.ElabTerm +import Lean.Meta.Tactic.Injection +import Lean.Elab.Tactic.ElabTerm namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Term.lean b/stage0/src/Lean/Elab/Term.lean similarity index 99% rename from stage0/src/Init/Lean/Elab/Term.lean rename to stage0/src/Lean/Elab/Term.lean index ac9390c65d..9d4665c102 100644 --- a/stage0/src/Init/Lean/Elab/Term.lean +++ b/stage0/src/Lean/Elab/Term.lean @@ -4,18 +4,18 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Util.Sorry -import Init.Lean.Structure -import Init.Lean.Meta.ExprDefEq -import Init.Lean.Meta.AppBuilder -import Init.Lean.Meta.SynthInstance -import Init.Lean.Meta.Tactic.Util -import Init.Lean.Hygiene -import Init.Lean.Util.RecDepth -import Init.Lean.Elab.Log -import Init.Lean.Elab.Alias -import Init.Lean.Elab.ResolveName -import Init.Lean.Elab.Level +import Lean.Util.Sorry +import Lean.Structure +import Lean.Meta.ExprDefEq +import Lean.Meta.AppBuilder +import Lean.Meta.SynthInstance +import Lean.Meta.Tactic.Util +import Lean.Hygiene +import Lean.Util.RecDepth +import Lean.Elab.Log +import Lean.Elab.Alias +import Lean.Elab.ResolveName +import Lean.Elab.Level namespace Lean namespace Elab diff --git a/stage0/src/Init/Lean/Elab/Util.lean b/stage0/src/Lean/Elab/Util.lean similarity index 98% rename from stage0/src/Init/Lean/Elab/Util.lean rename to stage0/src/Lean/Elab/Util.lean index 9594f77402..aef6383b6a 100644 --- a/stage0/src/Init/Lean/Elab/Util.lean +++ b/stage0/src/Lean/Elab/Util.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Util.Trace -import Init.Lean.Parser -import Init.Lean.KeyedDeclsAttribute +import Lean.Util.Trace +import Lean.Parser +import Lean.KeyedDeclsAttribute namespace Lean diff --git a/stage0/src/Init/Lean/Environment.lean b/stage0/src/Lean/Environment.lean similarity index 99% rename from stage0/src/Init/Lean/Environment.lean rename to stage0/src/Lean/Environment.lean index dcc141231e..537eb16abb 100644 --- a/stage0/src/Init/Lean/Environment.lean +++ b/stage0/src/Lean/Environment.lean @@ -7,11 +7,11 @@ prelude import Init.System.IO import Init.Util import Init.Data.ByteArray -import Init.Lean.Data.SMap -import Init.Lean.Declaration -import Init.Lean.LocalContext -import Init.Lean.Util.Path -import Init.Lean.Util.FindExpr +import Lean.Data.SMap +import Lean.Declaration +import Lean.LocalContext +import Lean.Util.Path +import Lean.Util.FindExpr namespace Lean /- Opaque environment extension state. It is essentially the Lean version of a C `void *` diff --git a/stage0/src/Init/Lean/EqnCompiler.lean b/stage0/src/Lean/EqnCompiler.lean similarity index 80% rename from stage0/src/Init/Lean/EqnCompiler.lean rename to stage0/src/Lean/EqnCompiler.lean index 6667e4f829..0781e5f8e1 100644 --- a/stage0/src/Init/Lean/EqnCompiler.lean +++ b/stage0/src/Lean/EqnCompiler.lean @@ -4,4 +4,4 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.EqnCompiler.MatchPattern +import Lean.EqnCompiler.MatchPattern diff --git a/stage0/src/Init/Lean/EqnCompiler/MatchPattern.lean b/stage0/src/Lean/EqnCompiler/MatchPattern.lean similarity index 95% rename from stage0/src/Init/Lean/EqnCompiler/MatchPattern.lean rename to stage0/src/Lean/EqnCompiler/MatchPattern.lean index c89ffd702d..c1fd8370b9 100644 --- a/stage0/src/Init/Lean/EqnCompiler/MatchPattern.lean +++ b/stage0/src/Lean/EqnCompiler/MatchPattern.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Attributes +import Lean.Attributes namespace Lean namespace EqnCompiler diff --git a/stage0/src/Init/Lean/Eval.lean b/stage0/src/Lean/Eval.lean similarity index 97% rename from stage0/src/Init/Lean/Eval.lean rename to stage0/src/Lean/Eval.lean index 508d9c52a6..3ca1a8efa8 100644 --- a/stage0/src/Init/Lean/Eval.lean +++ b/stage0/src/Lean/Eval.lean @@ -6,7 +6,7 @@ Authors: Leonardo de Moura, Sebastian Ullrich prelude import Init.Control.Reader import Init.System.IO -import Init.Lean.Environment +import Lean.Environment namespace Lean diff --git a/stage0/src/Init/Lean/Expr.lean b/stage0/src/Lean/Expr.lean similarity index 99% rename from stage0/src/Init/Lean/Expr.lean rename to stage0/src/Lean/Expr.lean index 6e075dee2c..719eb6fbfe 100644 --- a/stage0/src/Init/Lean/Expr.lean +++ b/stage0/src/Lean/Expr.lean @@ -8,8 +8,8 @@ import Init.Data.HashMap import Init.Data.HashSet import Init.Data.PersistentHashMap import Init.Data.PersistentHashSet -import Init.Lean.Data.KVMap -import Init.Lean.Level +import Lean.Data.KVMap +import Lean.Level namespace Lean diff --git a/stage0/src/Init/Lean/HeadIndex.lean b/stage0/src/Lean/HeadIndex.lean similarity index 99% rename from stage0/src/Init/Lean/HeadIndex.lean rename to stage0/src/Lean/HeadIndex.lean index 173acb64a4..aea535a464 100644 --- a/stage0/src/Init/Lean/HeadIndex.lean +++ b/stage0/src/Lean/HeadIndex.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr namespace Lean diff --git a/stage0/src/Init/Lean/Hygiene.lean b/stage0/src/Lean/Hygiene.lean similarity index 98% rename from stage0/src/Init/Lean/Hygiene.lean rename to stage0/src/Lean/Hygiene.lean index f53af9a54e..8e8946cb9c 100644 --- a/stage0/src/Init/Lean/Hygiene.lean +++ b/stage0/src/Lean/Hygiene.lean @@ -6,7 +6,7 @@ Authors: Sebastian Ullrich prelude import Init.Control import Init.LeanInit -import Init.Lean.Syntax +import Lean.Syntax namespace Lean /- Remark: `MonadQuotation` class is part of the `Init` package and loaded by default since it is used in the builtin command `macro`. -/ diff --git a/stage0/src/Init/Lean/KeyedDeclsAttribute.lean b/stage0/src/Lean/KeyedDeclsAttribute.lean similarity index 98% rename from stage0/src/Init/Lean/KeyedDeclsAttribute.lean rename to stage0/src/Lean/KeyedDeclsAttribute.lean index a452d3d4e4..c5d2d471bb 100644 --- a/stage0/src/Init/Lean/KeyedDeclsAttribute.lean +++ b/stage0/src/Lean/KeyedDeclsAttribute.lean @@ -4,10 +4,10 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Attributes -import Init.Lean.Compiler.InitAttr -import Init.Lean.ToExpr -import Init.Lean.Meta.Message +import Lean.Attributes +import Lean.Compiler.InitAttr +import Lean.ToExpr +import Lean.Meta.Message /-! A builder for attributes that are applied to declarations of a common type and diff --git a/stage0/src/Init/Lean/Level.lean b/stage0/src/Lean/Level.lean similarity index 99% rename from stage0/src/Init/Lean/Level.lean rename to stage0/src/Lean/Level.lean index 56b6d1c7df..270284493c 100644 --- a/stage0/src/Init/Lean/Level.lean +++ b/stage0/src/Lean/Level.lean @@ -9,8 +9,8 @@ import Init.Data.HashMap import Init.Data.PersistentHashMap import Init.Data.HashSet import Init.Data.PersistentHashSet -import Init.Lean.Data.Name -import Init.Lean.Data.Format +import Lean.Data.Name +import Lean.Data.Format def Nat.imax (n m : Nat) : Nat := if m = 0 then 0 else Nat.max n m diff --git a/stage0/src/Init/Lean/Linter.lean b/stage0/src/Lean/Linter.lean similarity index 90% rename from stage0/src/Init/Lean/Linter.lean rename to stage0/src/Lean/Linter.lean index 2a1c51e64e..0b8c74d0ca 100644 --- a/stage0/src/Init/Lean/Linter.lean +++ b/stage0/src/Lean/Linter.lean @@ -5,9 +5,9 @@ Authors: Sebastian Ullrich -/ prelude import Init.System.IO -import Init.Lean.Attributes -import Init.Lean.Syntax -import Init.Lean.Message +import Lean.Attributes +import Lean.Syntax +import Lean.Message namespace Lean diff --git a/stage0/src/Init/Lean/LocalContext.lean b/stage0/src/Lean/LocalContext.lean similarity index 99% rename from stage0/src/Init/Lean/LocalContext.lean rename to stage0/src/Lean/LocalContext.lean index 288d4bab32..3f61de80d1 100644 --- a/stage0/src/Init/Lean/LocalContext.lean +++ b/stage0/src/Lean/LocalContext.lean @@ -6,8 +6,8 @@ Authors: Leonardo de Moura prelude import Init.Data.PersistentArray.Basic import Init.Data.PersistentHashMap.Basic -import Init.Lean.Expr -import Init.Lean.Hygiene +import Lean.Expr +import Lean.Hygiene namespace Lean diff --git a/stage0/src/Init/Lean/Message.lean b/stage0/src/Lean/Message.lean similarity index 98% rename from stage0/src/Init/Lean/Message.lean rename to stage0/src/Lean/Message.lean index a5fa641943..e6cc4a9869 100644 --- a/stage0/src/Init/Lean/Message.lean +++ b/stage0/src/Lean/Message.lean @@ -7,12 +7,12 @@ Message Type used by the Lean frontend -/ prelude import Init.Data.ToString -import Init.Lean.Data.Position -import Init.Lean.Syntax -import Init.Lean.MetavarContext -import Init.Lean.Environment -import Init.Lean.Util.PPExt -import Init.Lean.Util.PPGoal +import Lean.Data.Position +import Lean.Syntax +import Lean.MetavarContext +import Lean.Environment +import Lean.Util.PPExt +import Lean.Util.PPGoal namespace Lean def mkErrorStringWithPos (fileName : String) (line col : Nat) (msg : String) : String := diff --git a/stage0/src/Lean/Meta.lean b/stage0/src/Lean/Meta.lean new file mode 100644 index 0000000000..9ecbde3418 --- /dev/null +++ b/stage0/src/Lean/Meta.lean @@ -0,0 +1,23 @@ +/- +Copyright (c) 2019 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura +-/ +prelude +import Lean.Meta.Basic +import Lean.Meta.LevelDefEq +import Lean.Meta.WHNF +import Lean.Meta.InferType +import Lean.Meta.FunInfo +import Lean.Meta.ExprDefEq +import Lean.Meta.DiscrTree +import Lean.Meta.Reduce +import Lean.Meta.Instances +import Lean.Meta.AbstractMVars +import Lean.Meta.SynthInstance +import Lean.Meta.AppBuilder +import Lean.Meta.Tactic +import Lean.Meta.Message +import Lean.Meta.KAbstract +import Lean.Meta.RecursorInfo +import Lean.Meta.GeneralizeTelescope diff --git a/stage0/src/Init/Lean/Meta/AbstractMVars.lean b/stage0/src/Lean/Meta/AbstractMVars.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/AbstractMVars.lean rename to stage0/src/Lean/Meta/AbstractMVars.lean index a726fd5ca3..5289ac5c5b 100644 --- a/stage0/src/Init/Lean/Meta/AbstractMVars.lean +++ b/stage0/src/Lean/Meta/AbstractMVars.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Basic +import Lean.Meta.Basic namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/AppBuilder.lean b/stage0/src/Lean/Meta/AppBuilder.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/AppBuilder.lean rename to stage0/src/Lean/Meta/AppBuilder.lean index e1855a5475..9b62393f08 100644 --- a/stage0/src/Init/Lean/Meta/AppBuilder.lean +++ b/stage0/src/Lean/Meta/AppBuilder.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Util.Recognizers -import Init.Lean.Meta.SynthInstance +import Lean.Util.Recognizers +import Lean.Meta.SynthInstance namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Basic.lean b/stage0/src/Lean/Meta/Basic.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/Basic.lean rename to stage0/src/Lean/Meta/Basic.lean index 557f89fecc..4f075d8564 100644 --- a/stage0/src/Init/Lean/Meta/Basic.lean +++ b/stage0/src/Lean/Meta/Basic.lean @@ -5,16 +5,16 @@ Authors: Leonardo de Moura -/ prelude import Init.Control.Reader -import Init.Lean.Data.LOption -import Init.Lean.Environment -import Init.Lean.Class -import Init.Lean.ReducibilityAttrs -import Init.Lean.Util.Trace -import Init.Lean.Util.RecDepth -import Init.Lean.Util.Closure -import Init.Lean.Meta.Exception -import Init.Lean.Meta.DiscrTreeTypes -import Init.Lean.Eval +import Lean.Data.LOption +import Lean.Environment +import Lean.Class +import Lean.ReducibilityAttrs +import Lean.Util.Trace +import Lean.Util.RecDepth +import Lean.Util.Closure +import Lean.Meta.Exception +import Lean.Meta.DiscrTreeTypes +import Lean.Eval /- This module provides four (mutually dependent) goodies that are needed for building the elaborator and tactic frameworks. diff --git a/stage0/src/Init/Lean/Meta/Check.lean b/stage0/src/Lean/Meta/Check.lean similarity index 98% rename from stage0/src/Init/Lean/Meta/Check.lean rename to stage0/src/Lean/Meta/Check.lean index b289c85e6a..d6d35495d9 100644 --- a/stage0/src/Init/Lean/Meta/Check.lean +++ b/stage0/src/Lean/Meta/Check.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.InferType +import Lean.Meta.InferType /- This is not the Kernel type checker, but an auxiliary method for checking diff --git a/stage0/src/Init/Lean/Meta/DiscrTree.lean b/stage0/src/Lean/Meta/DiscrTree.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/DiscrTree.lean rename to stage0/src/Lean/Meta/DiscrTree.lean index 943dabf3e8..d699e2cd8a 100644 --- a/stage0/src/Init/Lean/Meta/DiscrTree.lean +++ b/stage0/src/Lean/Meta/DiscrTree.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Basic -import Init.Lean.Meta.FunInfo -import Init.Lean.Meta.InferType +import Lean.Meta.Basic +import Lean.Meta.FunInfo +import Lean.Meta.InferType namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/DiscrTreeTypes.lean b/stage0/src/Lean/Meta/DiscrTreeTypes.lean similarity index 98% rename from stage0/src/Init/Lean/Meta/DiscrTreeTypes.lean rename to stage0/src/Lean/Meta/DiscrTreeTypes.lean index e028f62735..140452476d 100644 --- a/stage0/src/Init/Lean/Meta/DiscrTreeTypes.lean +++ b/stage0/src/Lean/Meta/DiscrTreeTypes.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Exception.lean b/stage0/src/Lean/Meta/Exception.lean similarity index 98% rename from stage0/src/Init/Lean/Meta/Exception.lean rename to stage0/src/Lean/Meta/Exception.lean index ee16a3496e..616d210b37 100644 --- a/stage0/src/Init/Lean/Meta/Exception.lean +++ b/stage0/src/Lean/Meta/Exception.lean @@ -4,10 +4,10 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment -import Init.Lean.MetavarContext -import Init.Lean.Message -import Init.Lean.Util.PPGoal +import Lean.Environment +import Lean.MetavarContext +import Lean.Message +import Lean.Util.PPGoal namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/ExprDefEq.lean b/stage0/src/Lean/Meta/ExprDefEq.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/ExprDefEq.lean rename to stage0/src/Lean/Meta/ExprDefEq.lean index bf9c3663d7..4c15dffabc 100644 --- a/stage0/src/Init/Lean/Meta/ExprDefEq.lean +++ b/stage0/src/Lean/Meta/ExprDefEq.lean @@ -4,13 +4,13 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.ProjFns -import Init.Lean.Meta.WHNF -import Init.Lean.Meta.InferType -import Init.Lean.Meta.FunInfo -import Init.Lean.Meta.LevelDefEq -import Init.Lean.Meta.Check -import Init.Lean.Meta.Offset +import Lean.ProjFns +import Lean.Meta.WHNF +import Lean.Meta.InferType +import Lean.Meta.FunInfo +import Lean.Meta.LevelDefEq +import Lean.Meta.Check +import Lean.Meta.Offset namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/FunInfo.lean b/stage0/src/Lean/Meta/FunInfo.lean similarity index 98% rename from stage0/src/Init/Lean/Meta/FunInfo.lean rename to stage0/src/Lean/Meta/FunInfo.lean index 4dfb02e78d..7012509c04 100644 --- a/stage0/src/Init/Lean/Meta/FunInfo.lean +++ b/stage0/src/Lean/Meta/FunInfo.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Basic -import Init.Lean.Meta.InferType +import Lean.Meta.Basic +import Lean.Meta.InferType namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/GeneralizeTelescope.lean b/stage0/src/Lean/Meta/GeneralizeTelescope.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/GeneralizeTelescope.lean rename to stage0/src/Lean/Meta/GeneralizeTelescope.lean index 43e64107fc..fd9814c1dd 100644 --- a/stage0/src/Init/Lean/Meta/GeneralizeTelescope.lean +++ b/stage0/src/Lean/Meta/GeneralizeTelescope.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.KAbstract +import Lean.Meta.KAbstract namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/InferType.lean b/stage0/src/Lean/Meta/InferType.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/InferType.lean rename to stage0/src/Lean/Meta/InferType.lean index f166cb0b19..9d49c02e8a 100644 --- a/stage0/src/Init/Lean/Meta/InferType.lean +++ b/stage0/src/Lean/Meta/InferType.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Data.LBool -import Init.Lean.Meta.Basic +import Lean.Data.LBool +import Lean.Meta.Basic namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Instances.lean b/stage0/src/Lean/Meta/Instances.lean similarity index 98% rename from stage0/src/Init/Lean/Meta/Instances.lean rename to stage0/src/Lean/Meta/Instances.lean index 8ff4fa7df4..bba7c80c25 100644 --- a/stage0/src/Init/Lean/Meta/Instances.lean +++ b/stage0/src/Lean/Meta/Instances.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.DiscrTree +import Lean.Meta.DiscrTree namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/KAbstract.lean b/stage0/src/Lean/Meta/KAbstract.lean similarity index 94% rename from stage0/src/Init/Lean/Meta/KAbstract.lean rename to stage0/src/Lean/Meta/KAbstract.lean index cff69caae1..30e9b85ec4 100644 --- a/stage0/src/Init/Lean/Meta/KAbstract.lean +++ b/stage0/src/Lean/Meta/KAbstract.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura -/ prelude -import Init.Lean.Data.Occurrences -import Init.Lean.HeadIndex -import Init.Lean.Meta.ExprDefEq +import Lean.Data.Occurrences +import Lean.HeadIndex +import Lean.Meta.ExprDefEq namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/LevelDefEq.lean b/stage0/src/Lean/Meta/LevelDefEq.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/LevelDefEq.lean rename to stage0/src/Lean/Meta/LevelDefEq.lean index cc0037bbfe..8e0ccf36cc 100644 --- a/stage0/src/Init/Lean/Meta/LevelDefEq.lean +++ b/stage0/src/Lean/Meta/LevelDefEq.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Basic +import Lean.Meta.Basic namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Message.lean b/stage0/src/Lean/Meta/Message.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/Message.lean rename to stage0/src/Lean/Meta/Message.lean index 5f64115aa7..71a600234e 100644 --- a/stage0/src/Init/Lean/Meta/Message.lean +++ b/stage0/src/Lean/Meta/Message.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Basic +import Lean.Meta.Basic namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Offset.lean b/stage0/src/Lean/Meta/Offset.lean similarity index 98% rename from stage0/src/Init/Lean/Meta/Offset.lean rename to stage0/src/Lean/Meta/Offset.lean index 0cef17e37b..7b3840bf40 100644 --- a/stage0/src/Init/Lean/Meta/Offset.lean +++ b/stage0/src/Lean/Meta/Offset.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Data.LBool -import Init.Lean.Meta.InferType +import Lean.Data.LBool +import Lean.Meta.InferType namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/RecursorInfo.lean b/stage0/src/Lean/Meta/RecursorInfo.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/RecursorInfo.lean rename to stage0/src/Lean/Meta/RecursorInfo.lean index 297e119216..88f5a47da1 100644 --- a/stage0/src/Init/Lean/Meta/RecursorInfo.lean +++ b/stage0/src/Lean/Meta/RecursorInfo.lean @@ -5,10 +5,10 @@ Authors: Leonardo de Moura -/ prelude import Init.Data.Nat.Control -import Init.Lean.AuxRecursor -import Init.Lean.Util.FindExpr -import Init.Lean.Meta.ExprDefEq -import Init.Lean.Meta.Message +import Lean.AuxRecursor +import Lean.Util.FindExpr +import Lean.Meta.ExprDefEq +import Lean.Meta.Message namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Reduce.lean b/stage0/src/Lean/Meta/Reduce.lean similarity index 96% rename from stage0/src/Init/Lean/Meta/Reduce.lean rename to stage0/src/Lean/Meta/Reduce.lean index 1656f0fe3a..36516e00ff 100644 --- a/stage0/src/Init/Lean/Meta/Reduce.lean +++ b/stage0/src/Lean/Meta/Reduce.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Basic -import Init.Lean.Meta.FunInfo +import Lean.Meta.Basic +import Lean.Meta.FunInfo namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/SynthInstance.lean b/stage0/src/Lean/Meta/SynthInstance.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/SynthInstance.lean rename to stage0/src/Lean/Meta/SynthInstance.lean index 80d0262fdc..75e6eca59d 100644 --- a/stage0/src/Init/Lean/Meta/SynthInstance.lean +++ b/stage0/src/Lean/Meta/SynthInstance.lean @@ -6,11 +6,11 @@ Authors: Daniel Selsam, Leonardo de Moura Type class instance synthesizer using tabled resolution. -/ prelude -import Init.Lean.Meta.Basic -import Init.Lean.Meta.Instances -import Init.Lean.Meta.LevelDefEq -import Init.Lean.Meta.AbstractMVars -import Init.Lean.Meta.WHNF +import Lean.Meta.Basic +import Lean.Meta.Instances +import Lean.Meta.LevelDefEq +import Lean.Meta.AbstractMVars +import Lean.Meta.WHNF namespace Lean namespace Meta diff --git a/stage0/src/Lean/Meta/Tactic.lean b/stage0/src/Lean/Meta/Tactic.lean new file mode 100644 index 0000000000..22a77f2575 --- /dev/null +++ b/stage0/src/Lean/Meta/Tactic.lean @@ -0,0 +1,18 @@ +/- +Copyright (c) 2019 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura +-/ +prelude +import Lean.Meta.Tactic.Intro +import Lean.Meta.Tactic.Assumption +import Lean.Meta.Tactic.Apply +import Lean.Meta.Tactic.Revert +import Lean.Meta.Tactic.Clear +import Lean.Meta.Tactic.Assert +import Lean.Meta.Tactic.Target +import Lean.Meta.Tactic.Rewrite +import Lean.Meta.Tactic.Generalize +import Lean.Meta.Tactic.LocalDecl +import Lean.Meta.Tactic.Induction +import Lean.Meta.Tactic.Cases diff --git a/stage0/src/Init/Lean/Meta/Tactic/Apply.lean b/stage0/src/Lean/Meta/Tactic/Apply.lean similarity index 95% rename from stage0/src/Init/Lean/Meta/Tactic/Apply.lean rename to stage0/src/Lean/Meta/Tactic/Apply.lean index ffbc3d22d3..9808b11c62 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Apply.lean +++ b/stage0/src/Lean/Meta/Tactic/Apply.lean @@ -4,11 +4,11 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Util.FindMVar -import Init.Lean.Meta.Message -import Init.Lean.Meta.ExprDefEq -import Init.Lean.Meta.SynthInstance -import Init.Lean.Meta.Tactic.Util +import Lean.Util.FindMVar +import Lean.Meta.Message +import Lean.Meta.ExprDefEq +import Lean.Meta.SynthInstance +import Lean.Meta.Tactic.Util namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Assert.lean b/stage0/src/Lean/Meta/Tactic/Assert.lean similarity index 97% rename from stage0/src/Init/Lean/Meta/Tactic/Assert.lean rename to stage0/src/Lean/Meta/Tactic/Assert.lean index 90f04d2182..d3ee5ce750 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Assert.lean +++ b/stage0/src/Lean/Meta/Tactic/Assert.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Tactic.Util +import Lean.Meta.Tactic.Util namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Assumption.lean b/stage0/src/Lean/Meta/Tactic/Assumption.lean similarity index 91% rename from stage0/src/Init/Lean/Meta/Tactic/Assumption.lean rename to stage0/src/Lean/Meta/Tactic/Assumption.lean index d874b4415e..b977d741fc 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Assumption.lean +++ b/stage0/src/Lean/Meta/Tactic/Assumption.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.ExprDefEq -import Init.Lean.Meta.Tactic.Util +import Lean.Meta.ExprDefEq +import Lean.Meta.Tactic.Util namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Cases.lean b/stage0/src/Lean/Meta/Tactic/Cases.lean similarity index 98% rename from stage0/src/Init/Lean/Meta/Tactic/Cases.lean rename to stage0/src/Lean/Meta/Tactic/Cases.lean index fb37d6eb2f..ec799658ae 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Cases.lean +++ b/stage0/src/Lean/Meta/Tactic/Cases.lean @@ -4,11 +4,11 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.AppBuilder -import Init.Lean.Meta.Tactic.Induction -import Init.Lean.Meta.Tactic.Injection -import Init.Lean.Meta.Tactic.Assert -import Init.Lean.Meta.Tactic.Subst +import Lean.Meta.AppBuilder +import Lean.Meta.Tactic.Induction +import Lean.Meta.Tactic.Injection +import Lean.Meta.Tactic.Assert +import Lean.Meta.Tactic.Subst namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Clear.lean b/stage0/src/Lean/Meta/Tactic/Clear.lean similarity index 97% rename from stage0/src/Init/Lean/Meta/Tactic/Clear.lean rename to stage0/src/Lean/Meta/Tactic/Clear.lean index d0f17cbcdf..3994b7f359 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Clear.lean +++ b/stage0/src/Lean/Meta/Tactic/Clear.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Tactic.Util +import Lean.Meta.Tactic.Util namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/FVarSubst.lean b/stage0/src/Lean/Meta/Tactic/FVarSubst.lean similarity index 97% rename from stage0/src/Init/Lean/Meta/Tactic/FVarSubst.lean rename to stage0/src/Lean/Meta/Tactic/FVarSubst.lean index 6e645dcba5..b7128623eb 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/FVarSubst.lean +++ b/stage0/src/Lean/Meta/Tactic/FVarSubst.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr -import Init.Lean.Util.ReplaceExpr +import Lean.Expr +import Lean.Util.ReplaceExpr namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Generalize.lean b/stage0/src/Lean/Meta/Tactic/Generalize.lean similarity index 93% rename from stage0/src/Init/Lean/Meta/Tactic/Generalize.lean rename to stage0/src/Lean/Meta/Tactic/Generalize.lean index c86a6811ec..566ca79ef2 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Generalize.lean +++ b/stage0/src/Lean/Meta/Tactic/Generalize.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.KAbstract -import Init.Lean.Meta.Tactic.Util +import Lean.Meta.KAbstract +import Lean.Meta.Tactic.Util namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Induction.lean b/stage0/src/Lean/Meta/Tactic/Induction.lean similarity index 97% rename from stage0/src/Init/Lean/Meta/Tactic/Induction.lean rename to stage0/src/Lean/Meta/Tactic/Induction.lean index 5f7712b494..5a06907251 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Induction.lean +++ b/stage0/src/Lean/Meta/Tactic/Induction.lean @@ -4,13 +4,13 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.RecursorInfo -import Init.Lean.Meta.SynthInstance -import Init.Lean.Meta.Tactic.Util -import Init.Lean.Meta.Tactic.Revert -import Init.Lean.Meta.Tactic.Intro -import Init.Lean.Meta.Tactic.Clear -import Init.Lean.Meta.Tactic.FVarSubst +import Lean.Meta.RecursorInfo +import Lean.Meta.SynthInstance +import Lean.Meta.Tactic.Util +import Lean.Meta.Tactic.Revert +import Lean.Meta.Tactic.Intro +import Lean.Meta.Tactic.Clear +import Lean.Meta.Tactic.FVarSubst namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Injection.lean b/stage0/src/Lean/Meta/Tactic/Injection.lean similarity index 96% rename from stage0/src/Init/Lean/Meta/Tactic/Injection.lean rename to stage0/src/Lean/Meta/Tactic/Injection.lean index d72d2ebac2..3c9f940edb 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Injection.lean +++ b/stage0/src/Lean/Meta/Tactic/Injection.lean @@ -4,10 +4,10 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.AppBuilder -import Init.Lean.Meta.Tactic.Clear -import Init.Lean.Meta.Tactic.Assert -import Init.Lean.Meta.Tactic.Intro +import Lean.Meta.AppBuilder +import Lean.Meta.Tactic.Clear +import Lean.Meta.Tactic.Assert +import Lean.Meta.Tactic.Intro namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Intro.lean b/stage0/src/Lean/Meta/Tactic/Intro.lean similarity index 99% rename from stage0/src/Init/Lean/Meta/Tactic/Intro.lean rename to stage0/src/Lean/Meta/Tactic/Intro.lean index 973dba8368..3e4d6943ab 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Intro.lean +++ b/stage0/src/Lean/Meta/Tactic/Intro.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Tactic.Util +import Lean.Meta.Tactic.Util namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/LocalDecl.lean b/stage0/src/Lean/Meta/Tactic/LocalDecl.lean similarity index 79% rename from stage0/src/Init/Lean/Meta/Tactic/LocalDecl.lean rename to stage0/src/Lean/Meta/Tactic/LocalDecl.lean index eb51efce3c..6a5a575b3a 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/LocalDecl.lean +++ b/stage0/src/Lean/Meta/Tactic/LocalDecl.lean @@ -4,11 +4,11 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.AppBuilder -import Init.Lean.Meta.Tactic.Util -import Init.Lean.Meta.Tactic.Assert -import Init.Lean.Meta.Tactic.Intro -import Init.Lean.Meta.Tactic.Clear +import Lean.Meta.AppBuilder +import Lean.Meta.Tactic.Util +import Lean.Meta.Tactic.Assert +import Lean.Meta.Tactic.Intro +import Lean.Meta.Tactic.Clear namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Revert.lean b/stage0/src/Lean/Meta/Tactic/Revert.lean similarity index 96% rename from stage0/src/Init/Lean/Meta/Tactic/Revert.lean rename to stage0/src/Lean/Meta/Tactic/Revert.lean index 5449347285..200de744d8 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Revert.lean +++ b/stage0/src/Lean/Meta/Tactic/Revert.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Tactic.Util +import Lean.Meta.Tactic.Util namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Rewrite.lean b/stage0/src/Lean/Meta/Tactic/Rewrite.lean similarity index 94% rename from stage0/src/Init/Lean/Meta/Tactic/Rewrite.lean rename to stage0/src/Lean/Meta/Tactic/Rewrite.lean index a5c8f7c795..527d24f686 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Rewrite.lean +++ b/stage0/src/Lean/Meta/Tactic/Rewrite.lean @@ -4,10 +4,10 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.AppBuilder -import Init.Lean.Meta.KAbstract -import Init.Lean.Meta.Check -import Init.Lean.Meta.Tactic.Apply +import Lean.Meta.AppBuilder +import Lean.Meta.KAbstract +import Lean.Meta.Check +import Lean.Meta.Tactic.Apply namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Subst.lean b/stage0/src/Lean/Meta/Tactic/Subst.lean similarity index 95% rename from stage0/src/Init/Lean/Meta/Tactic/Subst.lean rename to stage0/src/Lean/Meta/Tactic/Subst.lean index 2217307a26..985667a719 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Subst.lean +++ b/stage0/src/Lean/Meta/Tactic/Subst.lean @@ -4,13 +4,13 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.AppBuilder -import Init.Lean.Meta.Message -import Init.Lean.Meta.Tactic.Util -import Init.Lean.Meta.Tactic.Revert -import Init.Lean.Meta.Tactic.Intro -import Init.Lean.Meta.Tactic.Clear -import Init.Lean.Meta.Tactic.FVarSubst +import Lean.Meta.AppBuilder +import Lean.Meta.Message +import Lean.Meta.Tactic.Util +import Lean.Meta.Tactic.Revert +import Lean.Meta.Tactic.Intro +import Lean.Meta.Tactic.Clear +import Lean.Meta.Tactic.FVarSubst namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Target.lean b/stage0/src/Lean/Meta/Tactic/Target.lean similarity index 95% rename from stage0/src/Init/Lean/Meta/Tactic/Target.lean rename to stage0/src/Lean/Meta/Tactic/Target.lean index 14448439a5..6ea4c74946 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Target.lean +++ b/stage0/src/Lean/Meta/Tactic/Target.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.AppBuilder -import Init.Lean.Meta.Tactic.Util +import Lean.Meta.AppBuilder +import Lean.Meta.Tactic.Util namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/Tactic/Util.lean b/stage0/src/Lean/Meta/Tactic/Util.lean similarity index 96% rename from stage0/src/Init/Lean/Meta/Tactic/Util.lean rename to stage0/src/Lean/Meta/Tactic/Util.lean index 3ae2b1faff..dc79c7681c 100644 --- a/stage0/src/Init/Lean/Meta/Tactic/Util.lean +++ b/stage0/src/Lean/Meta/Tactic/Util.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Meta.Basic -import Init.Lean.Meta.LevelDefEq +import Lean.Meta.Basic +import Lean.Meta.LevelDefEq namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/Meta/WHNF.lean b/stage0/src/Lean/Meta/WHNF.lean similarity index 98% rename from stage0/src/Init/Lean/Meta/WHNF.lean rename to stage0/src/Lean/Meta/WHNF.lean index fb590464f5..22fa532005 100644 --- a/stage0/src/Init/Lean/Meta/WHNF.lean +++ b/stage0/src/Lean/Meta/WHNF.lean @@ -4,10 +4,10 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.AuxRecursor -import Init.Lean.Util.WHNF -import Init.Lean.Meta.Basic -import Init.Lean.Meta.LevelDefEq +import Lean.AuxRecursor +import Lean.Util.WHNF +import Lean.Meta.Basic +import Lean.Meta.LevelDefEq namespace Lean namespace Meta diff --git a/stage0/src/Init/Lean/MetavarContext.lean b/stage0/src/Lean/MetavarContext.lean similarity index 99% rename from stage0/src/Init/Lean/MetavarContext.lean rename to stage0/src/Lean/MetavarContext.lean index 5137709b81..c4e307a87a 100644 --- a/stage0/src/Init/Lean/MetavarContext.lean +++ b/stage0/src/Lean/MetavarContext.lean @@ -7,8 +7,8 @@ prelude import Init.Control.Reader import Init.Data.Nat import Init.Data.Option -import Init.Lean.Util.MonadCache -import Init.Lean.LocalContext +import Lean.Util.MonadCache +import Lean.LocalContext namespace Lean diff --git a/stage0/src/Init/Lean/Modifiers.lean b/stage0/src/Lean/Modifiers.lean similarity index 98% rename from stage0/src/Init/Lean/Modifiers.lean rename to stage0/src/Lean/Modifiers.lean index c370b0154a..1b234b08a2 100644 --- a/stage0/src/Init/Lean/Modifiers.lean +++ b/stage0/src/Lean/Modifiers.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment +import Lean.Environment namespace Lean diff --git a/stage0/src/Lean/Parser.lean b/stage0/src/Lean/Parser.lean new file mode 100644 index 0000000000..e256781424 --- /dev/null +++ b/stage0/src/Lean/Parser.lean @@ -0,0 +1,13 @@ +/- +Copyright (c) 2019 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura, Sebastian Ullrich +-/ +prelude +import Lean.Parser.Parser +import Lean.Parser.Level +import Lean.Parser.Term +import Lean.Parser.Tactic +import Lean.Parser.Command +import Lean.Parser.Module +import Lean.Parser.Syntax diff --git a/stage0/src/Init/Lean/Parser/Command.lean b/stage0/src/Lean/Parser/Command.lean similarity index 99% rename from stage0/src/Init/Lean/Parser/Command.lean rename to stage0/src/Lean/Parser/Command.lean index aa04e19670..d636427401 100644 --- a/stage0/src/Init/Lean/Parser/Command.lean +++ b/stage0/src/Lean/Parser/Command.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Parser.Term +import Lean.Parser.Term namespace Lean namespace Parser diff --git a/stage0/src/Init/Lean/Parser/Level.lean b/stage0/src/Lean/Parser/Level.lean similarity index 96% rename from stage0/src/Init/Lean/Parser/Level.lean rename to stage0/src/Lean/Parser/Level.lean index 3c5ccd40d8..9d12fff1a8 100644 --- a/stage0/src/Init/Lean/Parser/Level.lean +++ b/stage0/src/Lean/Parser/Level.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Parser.Parser +import Lean.Parser.Parser namespace Lean namespace Parser diff --git a/stage0/src/Init/Lean/Parser/Module.lean b/stage0/src/Lean/Parser/Module.lean similarity index 98% rename from stage0/src/Init/Lean/Parser/Module.lean rename to stage0/src/Lean/Parser/Module.lean index 653301a6be..920e5ec927 100644 --- a/stage0/src/Init/Lean/Parser/Module.lean +++ b/stage0/src/Lean/Parser/Module.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Message -import Init.Lean.Parser.Command +import Lean.Message +import Lean.Parser.Command namespace Lean namespace Parser diff --git a/stage0/src/Init/Lean/Parser/Parser.lean b/stage0/src/Lean/Parser/Parser.lean similarity index 99% rename from stage0/src/Init/Lean/Parser/Parser.lean rename to stage0/src/Lean/Parser/Parser.lean index 228040c9fb..ab53fd5f71 100644 --- a/stage0/src/Init/Lean/Parser/Parser.lean +++ b/stage0/src/Lean/Parser/Parser.lean @@ -4,14 +4,14 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Data.Trie -import Init.Lean.Data.Position -import Init.Lean.Syntax -import Init.Lean.ToExpr -import Init.Lean.Environment -import Init.Lean.Attributes -import Init.Lean.Message -import Init.Lean.Compiler.InitAttr +import Lean.Data.Trie +import Lean.Data.Position +import Lean.Syntax +import Lean.ToExpr +import Lean.Environment +import Lean.Attributes +import Lean.Message +import Lean.Compiler.InitAttr namespace Lean namespace Parser diff --git a/stage0/src/Init/Lean/Parser/Syntax.lean b/stage0/src/Lean/Parser/Syntax.lean similarity index 98% rename from stage0/src/Init/Lean/Parser/Syntax.lean rename to stage0/src/Lean/Parser/Syntax.lean index ef0462c719..aa16e738b1 100644 --- a/stage0/src/Init/Lean/Parser/Syntax.lean +++ b/stage0/src/Lean/Parser/Syntax.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Parser.Command -import Init.Lean.Parser.Tactic +import Lean.Parser.Command +import Lean.Parser.Tactic namespace Lean namespace Parser diff --git a/stage0/src/Init/Lean/Parser/Tactic.lean b/stage0/src/Lean/Parser/Tactic.lean similarity index 99% rename from stage0/src/Init/Lean/Parser/Tactic.lean rename to stage0/src/Lean/Parser/Tactic.lean index 1f377b7e55..d027c72800 100644 --- a/stage0/src/Init/Lean/Parser/Tactic.lean +++ b/stage0/src/Lean/Parser/Tactic.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Parser.Term +import Lean.Parser.Term namespace Lean namespace Parser diff --git a/stage0/src/Init/Lean/Parser/Term.lean b/stage0/src/Lean/Parser/Term.lean similarity index 99% rename from stage0/src/Init/Lean/Parser/Term.lean rename to stage0/src/Lean/Parser/Term.lean index b70db32196..a7175a1853 100644 --- a/stage0/src/Init/Lean/Parser/Term.lean +++ b/stage0/src/Lean/Parser/Term.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ prelude -import Init.Lean.Parser.Parser -import Init.Lean.Parser.Level +import Lean.Parser.Parser +import Lean.Parser.Level namespace Lean namespace Parser diff --git a/stage0/src/Init/Lean/Parser/Transform.lean b/stage0/src/Lean/Parser/Transform.lean similarity index 98% rename from stage0/src/Init/Lean/Parser/Transform.lean rename to stage0/src/Lean/Parser/Transform.lean index 126d39cc8d..0d2bdd1dc7 100644 --- a/stage0/src/Init/Lean/Parser/Transform.lean +++ b/stage0/src/Lean/Parser/Transform.lean @@ -3,7 +3,7 @@ Copyright (c) 2019 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura, Sebastian Ullrich -/ -import Init.Lean.Parser.Parser +import Lean.Parser.Parser namespace Lean namespace Syntax diff --git a/stage0/src/Lean/PrettyPrinter.lean b/stage0/src/Lean/PrettyPrinter.lean new file mode 100644 index 0000000000..644904736e --- /dev/null +++ b/stage0/src/Lean/PrettyPrinter.lean @@ -0,0 +1,2 @@ +prelude +import Lean.PrettyPrinter.Parenthesizer diff --git a/stage0/src/Init/Lean/PrettyPrinter/Parenthesizer.lean b/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean similarity index 99% rename from stage0/src/Init/Lean/PrettyPrinter/Parenthesizer.lean rename to stage0/src/Lean/PrettyPrinter/Parenthesizer.lean index 2d26f8db26..039dafc2bd 100644 --- a/stage0/src/Init/Lean/PrettyPrinter/Parenthesizer.lean +++ b/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean @@ -74,10 +74,10 @@ the left. `visitArgs x` executes `x` on the right-most child of the current node -/ prelude -import Init.Lean.Parser -import Init.Lean.Elab.Command -import Init.Lean.Elab.Quotation -import Init.Lean.Delaborator +import Lean.Parser +import Lean.Elab.Command +import Lean.Elab.Quotation +import Lean.Delaborator namespace Lean namespace Syntax diff --git a/stage0/src/Init/Lean/ProjFns.lean b/stage0/src/Lean/ProjFns.lean similarity index 98% rename from stage0/src/Init/Lean/ProjFns.lean rename to stage0/src/Lean/ProjFns.lean index 75222dec2e..e8a04896fa 100644 --- a/stage0/src/Init/Lean/ProjFns.lean +++ b/stage0/src/Lean/ProjFns.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment +import Lean.Environment namespace Lean diff --git a/stage0/src/Init/Lean/ReducibilityAttrs.lean b/stage0/src/Lean/ReducibilityAttrs.lean similarity index 98% rename from stage0/src/Init/Lean/ReducibilityAttrs.lean rename to stage0/src/Lean/ReducibilityAttrs.lean index 8c31216802..ef6761f44f 100644 --- a/stage0/src/Init/Lean/ReducibilityAttrs.lean +++ b/stage0/src/Lean/ReducibilityAttrs.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Attributes +import Lean.Attributes namespace Lean diff --git a/stage0/src/Init/Lean/Runtime.lean b/stage0/src/Lean/Runtime.lean similarity index 100% rename from stage0/src/Init/Lean/Runtime.lean rename to stage0/src/Lean/Runtime.lean diff --git a/stage0/src/Init/Lean/Scopes.lean b/stage0/src/Lean/Scopes.lean similarity index 99% rename from stage0/src/Init/Lean/Scopes.lean rename to stage0/src/Lean/Scopes.lean index 1dcb04f3b6..a6e90824d0 100644 --- a/stage0/src/Init/Lean/Scopes.lean +++ b/stage0/src/Lean/Scopes.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Environment +import Lean.Environment namespace Lean diff --git a/stage0/src/Init/Lean/Structure.lean b/stage0/src/Lean/Structure.lean similarity index 99% rename from stage0/src/Init/Lean/Structure.lean rename to stage0/src/Lean/Structure.lean index dd72de090c..5796949e1d 100644 --- a/stage0/src/Init/Lean/Structure.lean +++ b/stage0/src/Lean/Structure.lean @@ -6,8 +6,8 @@ Authors: Leonardo de Moura Helper functions for retrieving structure information. -/ prelude -import Init.Lean.Environment -import Init.Lean.ProjFns +import Lean.Environment +import Lean.ProjFns namespace Lean diff --git a/stage0/src/Init/Lean/Syntax.lean b/stage0/src/Lean/Syntax.lean similarity index 99% rename from stage0/src/Init/Lean/Syntax.lean rename to stage0/src/Lean/Syntax.lean index bb877aa91b..f997a53a60 100644 --- a/stage0/src/Init/Lean/Syntax.lean +++ b/stage0/src/Lean/Syntax.lean @@ -5,8 +5,8 @@ Author: Sebastian Ullrich, Leonardo de Moura -/ prelude import Init.Data.Array -import Init.Lean.Data.Name -import Init.Lean.Data.Format +import Lean.Data.Name +import Lean.Data.Format namespace Lean namespace SourceInfo diff --git a/stage0/src/Init/Lean/ToExpr.lean b/stage0/src/Lean/ToExpr.lean similarity index 99% rename from stage0/src/Init/Lean/ToExpr.lean rename to stage0/src/Lean/ToExpr.lean index 73fefe9d3d..9aac0593d2 100644 --- a/stage0/src/Init/Lean/ToExpr.lean +++ b/stage0/src/Lean/ToExpr.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr universe u namespace Lean diff --git a/stage0/src/Lean/Util.lean b/stage0/src/Lean/Util.lean index 495ead5dbd..3160ab8dd0 100644 --- a/stage0/src/Lean/Util.lean +++ b/stage0/src/Lean/Util.lean @@ -3,3 +3,20 @@ Copyright (c) 2020 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ +prelude +import Lean.Util.CollectFVars +import Lean.Util.CollectLevelParams +import Lean.Util.CollectMVars +import Lean.Util.FindMVar +import Lean.Util.MonadCache +import Lean.Util.PPExt +import Lean.Util.PPGoal +import Lean.Util.Path +import Lean.Util.Profile +import Lean.Util.RecDepth +import Lean.Util.Sorry +import Lean.Util.Trace +import Lean.Util.WHNF +import Lean.Util.FindExpr +import Lean.Util.ReplaceExpr +import Lean.Util.FoldConsts diff --git a/stage0/src/Init/Lean/Util/Closure.lean b/stage0/src/Lean/Util/Closure.lean similarity index 98% rename from stage0/src/Init/Lean/Util/Closure.lean rename to stage0/src/Lean/Util/Closure.lean index 0e51a8183f..3002b47bdd 100644 --- a/stage0/src/Init/Lean/Util/Closure.lean +++ b/stage0/src/Lean/Util/Closure.lean @@ -5,9 +5,9 @@ Authors: Leonardo de Moura -/ prelude import Init.ShareCommon -import Init.Lean.MetavarContext -import Init.Lean.Environment -import Init.Lean.Util.FoldConsts +import Lean.MetavarContext +import Lean.Environment +import Lean.Util.FoldConsts namespace Lean namespace Closure diff --git a/stage0/src/Init/Lean/Util/CollectFVars.lean b/stage0/src/Lean/Util/CollectFVars.lean similarity index 98% rename from stage0/src/Init/Lean/Util/CollectFVars.lean rename to stage0/src/Lean/Util/CollectFVars.lean index 040bf9a2c9..71979d1d1f 100644 --- a/stage0/src/Init/Lean/Util/CollectFVars.lean +++ b/stage0/src/Lean/Util/CollectFVars.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr namespace Lean diff --git a/stage0/src/Init/Lean/Util/CollectLevelParams.lean b/stage0/src/Lean/Util/CollectLevelParams.lean similarity index 98% rename from stage0/src/Init/Lean/Util/CollectLevelParams.lean rename to stage0/src/Lean/Util/CollectLevelParams.lean index a3e641bbc3..42cec8f458 100644 --- a/stage0/src/Init/Lean/Util/CollectLevelParams.lean +++ b/stage0/src/Lean/Util/CollectLevelParams.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr namespace Lean diff --git a/stage0/src/Init/Lean/Util/CollectMVars.lean b/stage0/src/Lean/Util/CollectMVars.lean similarity index 98% rename from stage0/src/Init/Lean/Util/CollectMVars.lean rename to stage0/src/Lean/Util/CollectMVars.lean index b9c6211a69..2dcbfb0aaf 100644 --- a/stage0/src/Init/Lean/Util/CollectMVars.lean +++ b/stage0/src/Lean/Util/CollectMVars.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr namespace Lean diff --git a/stage0/src/Init/Lean/Util/FindExpr.lean b/stage0/src/Lean/Util/FindExpr.lean similarity index 98% rename from stage0/src/Init/Lean/Util/FindExpr.lean rename to stage0/src/Lean/Util/FindExpr.lean index 1b143f8505..bc8cd7bad8 100644 --- a/stage0/src/Init/Lean/Util/FindExpr.lean +++ b/stage0/src/Lean/Util/FindExpr.lean @@ -5,7 +5,7 @@ Authors: Leonardo de Moura -/ prelude import Init.Control.Option -import Init.Lean.Expr +import Lean.Expr namespace Lean namespace Expr diff --git a/stage0/src/Init/Lean/Util/FindMVar.lean b/stage0/src/Lean/Util/FindMVar.lean similarity index 97% rename from stage0/src/Init/Lean/Util/FindMVar.lean rename to stage0/src/Lean/Util/FindMVar.lean index e685d76969..ab53f6f874 100644 --- a/stage0/src/Init/Lean/Util/FindMVar.lean +++ b/stage0/src/Lean/Util/FindMVar.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr namespace Lean diff --git a/stage0/src/Init/Lean/Util/FoldConsts.lean b/stage0/src/Lean/Util/FoldConsts.lean similarity index 97% rename from stage0/src/Init/Lean/Util/FoldConsts.lean rename to stage0/src/Lean/Util/FoldConsts.lean index a9d0c21961..fd4aa1b92f 100644 --- a/stage0/src/Init/Lean/Util/FoldConsts.lean +++ b/stage0/src/Lean/Util/FoldConsts.lean @@ -5,8 +5,8 @@ Authors: Leonardo de Moura -/ prelude import Init.Control.Option -import Init.Lean.Expr -import Init.Lean.Environment +import Lean.Expr +import Lean.Environment namespace Lean namespace Expr diff --git a/stage0/src/Init/Lean/Util/MonadCache.lean b/stage0/src/Lean/Util/MonadCache.lean similarity index 100% rename from stage0/src/Init/Lean/Util/MonadCache.lean rename to stage0/src/Lean/Util/MonadCache.lean diff --git a/stage0/src/Init/Lean/Util/PPExt.lean b/stage0/src/Lean/Util/PPExt.lean similarity index 95% rename from stage0/src/Init/Lean/Util/PPExt.lean rename to stage0/src/Lean/Util/PPExt.lean index 730bf5c55f..42e6fded49 100644 --- a/stage0/src/Init/Lean/Util/PPExt.lean +++ b/stage0/src/Lean/Util/PPExt.lean @@ -4,8 +4,8 @@ Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura -/ prelude -import Init.Lean.Environment -import Init.Lean.MetavarContext +import Lean.Environment +import Lean.MetavarContext namespace Lean diff --git a/stage0/src/Init/Lean/Util/PPGoal.lean b/stage0/src/Lean/Util/PPGoal.lean similarity index 98% rename from stage0/src/Init/Lean/Util/PPGoal.lean rename to stage0/src/Lean/Util/PPGoal.lean index 1207f044b1..33b96ef727 100644 --- a/stage0/src/Init/Lean/Util/PPGoal.lean +++ b/stage0/src/Lean/Util/PPGoal.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura -/ prelude -import Init.Lean.Util.PPExt +import Lean.Util.PPExt namespace Lean diff --git a/stage0/src/Init/Lean/Util/Path.lean b/stage0/src/Lean/Util/Path.lean similarity index 99% rename from stage0/src/Init/Lean/Util/Path.lean rename to stage0/src/Lean/Util/Path.lean index 654067345a..d3314b9683 100644 --- a/stage0/src/Init/Lean/Util/Path.lean +++ b/stage0/src/Lean/Util/Path.lean @@ -15,7 +15,7 @@ import Init.Data.Array import Init.Data.List.Control import Init.Data.HashMap import Init.Data.Nat.Control -import Init.Lean.Data.Name +import Lean.Data.Name namespace Lean open System.FilePath (pathSeparator extSeparator) diff --git a/stage0/src/Init/Lean/Util/Profile.lean b/stage0/src/Lean/Util/Profile.lean similarity index 94% rename from stage0/src/Init/Lean/Util/Profile.lean rename to stage0/src/Lean/Util/Profile.lean index 7f0585584d..a4cf3761eb 100644 --- a/stage0/src/Init/Lean/Util/Profile.lean +++ b/stage0/src/Lean/Util/Profile.lean @@ -5,7 +5,7 @@ Author: Sebastian Ullrich -/ prelude import Init.System.IO -import Init.Lean.Data.Position +import Lean.Data.Position namespace Lean diff --git a/stage0/src/Init/Lean/Util/RecDepth.lean b/stage0/src/Lean/Util/RecDepth.lean similarity index 95% rename from stage0/src/Init/Lean/Util/RecDepth.lean rename to stage0/src/Lean/Util/RecDepth.lean index 95863631e6..20594e5d29 100644 --- a/stage0/src/Init/Lean/Util/RecDepth.lean +++ b/stage0/src/Lean/Util/RecDepth.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Data.Options +import Lean.Data.Options namespace Lean diff --git a/stage0/src/Init/Lean/Util/Recognizers.lean b/stage0/src/Lean/Util/Recognizers.lean similarity index 98% rename from stage0/src/Init/Lean/Util/Recognizers.lean rename to stage0/src/Lean/Util/Recognizers.lean index cd9bd45a2a..7b6b803327 100644 --- a/stage0/src/Init/Lean/Util/Recognizers.lean +++ b/stage0/src/Lean/Util/Recognizers.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr namespace Lean namespace Expr diff --git a/stage0/src/Init/Lean/Util/ReplaceExpr.lean b/stage0/src/Lean/Util/ReplaceExpr.lean similarity index 99% rename from stage0/src/Init/Lean/Util/ReplaceExpr.lean rename to stage0/src/Lean/Util/ReplaceExpr.lean index 471f7a4cdd..3111baa87a 100644 --- a/stage0/src/Init/Lean/Util/ReplaceExpr.lean +++ b/stage0/src/Lean/Util/ReplaceExpr.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Expr +import Lean.Expr namespace Lean namespace Expr diff --git a/stage0/src/Init/Lean/Util/Sorry.lean b/stage0/src/Lean/Util/Sorry.lean similarity index 98% rename from stage0/src/Init/Lean/Util/Sorry.lean rename to stage0/src/Lean/Util/Sorry.lean index 2cb9764e3f..574bc69f81 100644 --- a/stage0/src/Init/Lean/Util/Sorry.lean +++ b/stage0/src/Lean/Util/Sorry.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.Message +import Lean.Message namespace Lean diff --git a/stage0/src/Init/Lean/Util/Trace.lean b/stage0/src/Lean/Util/Trace.lean similarity index 99% rename from stage0/src/Init/Lean/Util/Trace.lean rename to stage0/src/Lean/Util/Trace.lean index bd6cef8e01..81ac36e74c 100644 --- a/stage0/src/Init/Lean/Util/Trace.lean +++ b/stage0/src/Lean/Util/Trace.lean @@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Sebastian Ullrich, Leonardo de Moura -/ prelude -import Init.Lean.Message +import Lean.Message universe u namespace Lean diff --git a/stage0/src/Init/Lean/Util/WHNF.lean b/stage0/src/Lean/Util/WHNF.lean similarity index 99% rename from stage0/src/Init/Lean/Util/WHNF.lean rename to stage0/src/Lean/Util/WHNF.lean index 6e0bcae800..93e6daf261 100644 --- a/stage0/src/Init/Lean/Util/WHNF.lean +++ b/stage0/src/Lean/Util/WHNF.lean @@ -4,9 +4,9 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude -import Init.Lean.ToExpr -import Init.Lean.Declaration -import Init.Lean.LocalContext +import Lean.ToExpr +import Lean.Declaration +import Lean.LocalContext namespace Lean namespace WHNF diff --git a/stage0/stdlib/CMakeLists.txt b/stage0/stdlib/CMakeLists.txt index 393659d6b0..78a2b38190 100644 --- a/stage0/stdlib/CMakeLists.txt +++ b/stage0/stdlib/CMakeLists.txt @@ -1 +1 @@ -add_library (stage0 OBJECT ./Init.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Alternative.c ./Init/Control/Applicative.c ./Init/Control/Conditional.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Functor.c ./Init/Control/Id.c ./Init/Control/Lift.c ./Init/Control/Monad.c ./Init/Control/Option.c ./Init/Control/Reader.c ./Init/Control/State.c ./Init/Core.c ./Init/Data.c ./Init/Data/Array.c ./Init/Data/Array/Basic.c ./Init/Data/Array/BinSearch.c ./Init/Data/Array/QSort.c ./Init/Data/AssocList.c ./Init/Data/Basic.c ./Init/Data/ByteArray.c ./Init/Data/ByteArray/Basic.c ./Init/Data/Char.c ./Init/Data/Char/Basic.c ./Init/Data/DList.c ./Init/Data/Fin.c ./Init/Data/Fin/Basic.c ./Init/Data/Float.c ./Init/Data/FloatArray.c ./Init/Data/FloatArray/Basic.c ./Init/Data/HashMap.c ./Init/Data/HashMap/Basic.c ./Init/Data/HashSet.c ./Init/Data/Hashable.c ./Init/Data/Int.c ./Init/Data/Int/Basic.c ./Init/Data/List.c ./Init/Data/List/Basic.c ./Init/Data/List/BasicAux.c ./Init/Data/List/Control.c ./Init/Data/List/Instances.c ./Init/Data/Nat.c ./Init/Data/Nat/Basic.c ./Init/Data/Nat/Bitwise.c ./Init/Data/Nat/Control.c ./Init/Data/Nat/Div.c ./Init/Data/Option.c ./Init/Data/Option/Basic.c ./Init/Data/Option/BasicAux.c ./Init/Data/Option/Instances.c ./Init/Data/PersistentArray.c ./Init/Data/PersistentArray/Basic.c ./Init/Data/PersistentHashMap.c ./Init/Data/PersistentHashMap/Basic.c ./Init/Data/PersistentHashSet.c ./Init/Data/Queue.c ./Init/Data/Queue/Basic.c ./Init/Data/RBMap.c ./Init/Data/RBMap/Basic.c ./Init/Data/RBMap/BasicAux.c ./Init/Data/RBTree.c ./Init/Data/RBTree/Basic.c ./Init/Data/Random.c ./Init/Data/Repr.c ./Init/Data/Stack.c ./Init/Data/Stack/Basic.c ./Init/Data/String.c ./Init/Data/String/Basic.c ./Init/Data/String/Extra.c ./Init/Data/ToString.c ./Init/Data/UInt.c ./Init/Fix.c ./Init/HasCoe.c ./Init/Lean.c ./Init/Lean/Attributes.c ./Init/Lean/AuxRecursor.c ./Init/Lean/Class.c ./Init/Lean/Compiler.c ./Init/Lean/Compiler/ClosedTermCache.c ./Init/Lean/Compiler/ConstFolding.c ./Init/Lean/Compiler/ExportAttr.c ./Init/Lean/Compiler/ExternAttr.c ./Init/Lean/Compiler/IR.c ./Init/Lean/Compiler/IR/Basic.c ./Init/Lean/Compiler/IR/Borrow.c ./Init/Lean/Compiler/IR/Boxing.c ./Init/Lean/Compiler/IR/Checker.c ./Init/Lean/Compiler/IR/CompilerM.c ./Init/Lean/Compiler/IR/CtorLayout.c ./Init/Lean/Compiler/IR/ElimDeadBranches.c ./Init/Lean/Compiler/IR/ElimDeadVars.c ./Init/Lean/Compiler/IR/EmitC.c ./Init/Lean/Compiler/IR/EmitUtil.c ./Init/Lean/Compiler/IR/ExpandResetReuse.c ./Init/Lean/Compiler/IR/Format.c ./Init/Lean/Compiler/IR/FreeVars.c ./Init/Lean/Compiler/IR/LiveVars.c ./Init/Lean/Compiler/IR/NormIds.c ./Init/Lean/Compiler/IR/PushProj.c ./Init/Lean/Compiler/IR/RC.c ./Init/Lean/Compiler/IR/ResetReuse.c ./Init/Lean/Compiler/IR/SimpCase.c ./Init/Lean/Compiler/IR/UnboxResult.c ./Init/Lean/Compiler/ImplementedByAttr.c ./Init/Lean/Compiler/InitAttr.c ./Init/Lean/Compiler/InlineAttrs.c ./Init/Lean/Compiler/NameMangling.c ./Init/Lean/Compiler/NeverExtractAttr.c ./Init/Lean/Compiler/Specialize.c ./Init/Lean/Compiler/Util.c ./Init/Lean/Data/Format.c ./Init/Lean/Data/Json.c ./Init/Lean/Data/Json/Basic.c ./Init/Lean/Data/Json/FromToJson.c ./Init/Lean/Data/Json/Parser.c ./Init/Lean/Data/Json/Printer.c ./Init/Lean/Data/KVMap.c ./Init/Lean/Data/LBool.c ./Init/Lean/Data/LOption.c ./Init/Lean/Data/Name.c ./Init/Lean/Data/Occurrences.c ./Init/Lean/Data/Options.c ./Init/Lean/Data/Position.c ./Init/Lean/Data/SMap.c ./Init/Lean/Data/Trie.c ./Init/Lean/Declaration.c ./Init/Lean/Delaborator.c ./Init/Lean/Elab.c ./Init/Lean/Elab/Alias.c ./Init/Lean/Elab/App.c ./Init/Lean/Elab/Binders.c ./Init/Lean/Elab/BuiltinNotation.c ./Init/Lean/Elab/Command.c ./Init/Lean/Elab/DeclModifiers.c ./Init/Lean/Elab/Declaration.c ./Init/Lean/Elab/Definition.c ./Init/Lean/Elab/DoNotation.c ./Init/Lean/Elab/Exception.c ./Init/Lean/Elab/Frontend.c ./Init/Lean/Elab/Import.c ./Init/Lean/Elab/Level.c ./Init/Lean/Elab/Log.c ./Init/Lean/Elab/Match.c ./Init/Lean/Elab/Quotation.c ./Init/Lean/Elab/ResolveName.c ./Init/Lean/Elab/StrategyAttrs.c ./Init/Lean/Elab/StructInst.c ./Init/Lean/Elab/Syntax.c ./Init/Lean/Elab/SyntheticMVars.c ./Init/Lean/Elab/Tactic.c ./Init/Lean/Elab/Tactic/Basic.c ./Init/Lean/Elab/Tactic/ElabTerm.c ./Init/Lean/Elab/Tactic/Generalize.c ./Init/Lean/Elab/Tactic/Induction.c ./Init/Lean/Elab/Tactic/Injection.c ./Init/Lean/Elab/Term.c ./Init/Lean/Elab/Util.c ./Init/Lean/Environment.c ./Init/Lean/EqnCompiler.c ./Init/Lean/EqnCompiler/MatchPattern.c ./Init/Lean/Eval.c ./Init/Lean/Expr.c ./Init/Lean/HeadIndex.c ./Init/Lean/Hygiene.c ./Init/Lean/KeyedDeclsAttribute.c ./Init/Lean/Level.c ./Init/Lean/Linter.c ./Init/Lean/LocalContext.c ./Init/Lean/Message.c ./Init/Lean/Meta.c ./Init/Lean/Meta/AbstractMVars.c ./Init/Lean/Meta/AppBuilder.c ./Init/Lean/Meta/Basic.c ./Init/Lean/Meta/Check.c ./Init/Lean/Meta/DiscrTree.c ./Init/Lean/Meta/DiscrTreeTypes.c ./Init/Lean/Meta/Exception.c ./Init/Lean/Meta/ExprDefEq.c ./Init/Lean/Meta/FunInfo.c ./Init/Lean/Meta/GeneralizeTelescope.c ./Init/Lean/Meta/InferType.c ./Init/Lean/Meta/Instances.c ./Init/Lean/Meta/KAbstract.c ./Init/Lean/Meta/LevelDefEq.c ./Init/Lean/Meta/Message.c ./Init/Lean/Meta/Offset.c ./Init/Lean/Meta/RecursorInfo.c ./Init/Lean/Meta/Reduce.c ./Init/Lean/Meta/SynthInstance.c ./Init/Lean/Meta/Tactic.c ./Init/Lean/Meta/Tactic/Apply.c ./Init/Lean/Meta/Tactic/Assert.c ./Init/Lean/Meta/Tactic/Assumption.c ./Init/Lean/Meta/Tactic/Cases.c ./Init/Lean/Meta/Tactic/Clear.c ./Init/Lean/Meta/Tactic/FVarSubst.c ./Init/Lean/Meta/Tactic/Generalize.c ./Init/Lean/Meta/Tactic/Induction.c ./Init/Lean/Meta/Tactic/Injection.c ./Init/Lean/Meta/Tactic/Intro.c ./Init/Lean/Meta/Tactic/LocalDecl.c ./Init/Lean/Meta/Tactic/Revert.c ./Init/Lean/Meta/Tactic/Rewrite.c ./Init/Lean/Meta/Tactic/Subst.c ./Init/Lean/Meta/Tactic/Target.c ./Init/Lean/Meta/Tactic/Util.c ./Init/Lean/Meta/WHNF.c ./Init/Lean/MetavarContext.c ./Init/Lean/Modifiers.c ./Init/Lean/Parser.c ./Init/Lean/Parser/Command.c ./Init/Lean/Parser/Level.c ./Init/Lean/Parser/Module.c ./Init/Lean/Parser/Parser.c ./Init/Lean/Parser/Syntax.c ./Init/Lean/Parser/Tactic.c ./Init/Lean/Parser/Term.c ./Init/Lean/Parser/Transform.c ./Init/Lean/PrettyPrinter.c ./Init/Lean/PrettyPrinter/Parenthesizer.c ./Init/Lean/ProjFns.c ./Init/Lean/ReducibilityAttrs.c ./Init/Lean/Runtime.c ./Init/Lean/Scopes.c ./Init/Lean/Structure.c ./Init/Lean/Syntax.c ./Init/Lean/ToExpr.c ./Init/Lean/Util.c ./Init/Lean/Util/Closure.c ./Init/Lean/Util/CollectFVars.c ./Init/Lean/Util/CollectLevelParams.c ./Init/Lean/Util/CollectMVars.c ./Init/Lean/Util/FindExpr.c ./Init/Lean/Util/FindMVar.c ./Init/Lean/Util/FoldConsts.c ./Init/Lean/Util/MonadCache.c ./Init/Lean/Util/PPExt.c ./Init/Lean/Util/PPGoal.c ./Init/Lean/Util/Path.c ./Init/Lean/Util/Profile.c ./Init/Lean/Util/RecDepth.c ./Init/Lean/Util/Recognizers.c ./Init/Lean/Util/ReplaceExpr.c ./Init/Lean/Util/Sorry.c ./Init/Lean/Util/Trace.c ./Init/Lean/Util/WHNF.c ./Init/LeanInit.c ./Init/ShareCommon.c ./Init/System.c ./Init/System/FilePath.c ./Init/System/IO.c ./Init/System/IOError.c ./Init/System/Platform.c ./Init/Util.c ./Init/WF.c ./Lean.c ./Lean/Util.c ./Std.c ./Std/Data.c ./Std/Data/BinomialHeap.c ./Std/Data/BinomialHeap/Basic.c ) +add_library (stage0 OBJECT ./Init.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Alternative.c ./Init/Control/Applicative.c ./Init/Control/Conditional.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Functor.c ./Init/Control/Id.c ./Init/Control/Lift.c ./Init/Control/Monad.c ./Init/Control/Option.c ./Init/Control/Reader.c ./Init/Control/State.c ./Init/Core.c ./Init/Data.c ./Init/Data/Array.c ./Init/Data/Array/Basic.c ./Init/Data/Array/BinSearch.c ./Init/Data/Array/QSort.c ./Init/Data/AssocList.c ./Init/Data/Basic.c ./Init/Data/ByteArray.c ./Init/Data/ByteArray/Basic.c ./Init/Data/Char.c ./Init/Data/Char/Basic.c ./Init/Data/DList.c ./Init/Data/Fin.c ./Init/Data/Fin/Basic.c ./Init/Data/Float.c ./Init/Data/FloatArray.c ./Init/Data/FloatArray/Basic.c ./Init/Data/HashMap.c ./Init/Data/HashMap/Basic.c ./Init/Data/HashSet.c ./Init/Data/Hashable.c ./Init/Data/Int.c ./Init/Data/Int/Basic.c ./Init/Data/List.c ./Init/Data/List/Basic.c ./Init/Data/List/BasicAux.c ./Init/Data/List/Control.c ./Init/Data/List/Instances.c ./Init/Data/Nat.c ./Init/Data/Nat/Basic.c ./Init/Data/Nat/Bitwise.c ./Init/Data/Nat/Control.c ./Init/Data/Nat/Div.c ./Init/Data/Option.c ./Init/Data/Option/Basic.c ./Init/Data/Option/BasicAux.c ./Init/Data/Option/Instances.c ./Init/Data/PersistentArray.c ./Init/Data/PersistentArray/Basic.c ./Init/Data/PersistentHashMap.c ./Init/Data/PersistentHashMap/Basic.c ./Init/Data/PersistentHashSet.c ./Init/Data/Queue.c ./Init/Data/Queue/Basic.c ./Init/Data/RBMap.c ./Init/Data/RBMap/Basic.c ./Init/Data/RBMap/BasicAux.c ./Init/Data/RBTree.c ./Init/Data/RBTree/Basic.c ./Init/Data/Random.c ./Init/Data/Repr.c ./Init/Data/Stack.c ./Init/Data/Stack/Basic.c ./Init/Data/String.c ./Init/Data/String/Basic.c ./Init/Data/String/Extra.c ./Init/Data/ToString.c ./Init/Data/UInt.c ./Init/Fix.c ./Init/HasCoe.c ./Init/LeanInit.c ./Init/ShareCommon.c ./Init/System.c ./Init/System/FilePath.c ./Init/System/IO.c ./Init/System/IOError.c ./Init/System/Platform.c ./Init/Util.c ./Init/WF.c ./Lean.c ./Lean/Attributes.c ./Lean/AuxRecursor.c ./Lean/Class.c ./Lean/Compiler.c ./Lean/Compiler/ClosedTermCache.c ./Lean/Compiler/ConstFolding.c ./Lean/Compiler/ExportAttr.c ./Lean/Compiler/ExternAttr.c ./Lean/Compiler/IR.c ./Lean/Compiler/IR/Basic.c ./Lean/Compiler/IR/Borrow.c ./Lean/Compiler/IR/Boxing.c ./Lean/Compiler/IR/Checker.c ./Lean/Compiler/IR/CompilerM.c ./Lean/Compiler/IR/CtorLayout.c ./Lean/Compiler/IR/ElimDeadBranches.c ./Lean/Compiler/IR/ElimDeadVars.c ./Lean/Compiler/IR/EmitC.c ./Lean/Compiler/IR/EmitUtil.c ./Lean/Compiler/IR/ExpandResetReuse.c ./Lean/Compiler/IR/Format.c ./Lean/Compiler/IR/FreeVars.c ./Lean/Compiler/IR/LiveVars.c ./Lean/Compiler/IR/NormIds.c ./Lean/Compiler/IR/PushProj.c ./Lean/Compiler/IR/RC.c ./Lean/Compiler/IR/ResetReuse.c ./Lean/Compiler/IR/SimpCase.c ./Lean/Compiler/IR/UnboxResult.c ./Lean/Compiler/ImplementedByAttr.c ./Lean/Compiler/InitAttr.c ./Lean/Compiler/InlineAttrs.c ./Lean/Compiler/NameMangling.c ./Lean/Compiler/NeverExtractAttr.c ./Lean/Compiler/Specialize.c ./Lean/Compiler/Util.c ./Lean/Data/Format.c ./Lean/Data/Json.c ./Lean/Data/Json/Basic.c ./Lean/Data/Json/FromToJson.c ./Lean/Data/Json/Parser.c ./Lean/Data/Json/Printer.c ./Lean/Data/KVMap.c ./Lean/Data/LBool.c ./Lean/Data/LOption.c ./Lean/Data/Name.c ./Lean/Data/Occurrences.c ./Lean/Data/Options.c ./Lean/Data/Position.c ./Lean/Data/SMap.c ./Lean/Data/Trie.c ./Lean/Declaration.c ./Lean/Delaborator.c ./Lean/Elab.c ./Lean/Elab/Alias.c ./Lean/Elab/App.c ./Lean/Elab/Binders.c ./Lean/Elab/BuiltinNotation.c ./Lean/Elab/Command.c ./Lean/Elab/DeclModifiers.c ./Lean/Elab/Declaration.c ./Lean/Elab/Definition.c ./Lean/Elab/DoNotation.c ./Lean/Elab/Exception.c ./Lean/Elab/Frontend.c ./Lean/Elab/Import.c ./Lean/Elab/Level.c ./Lean/Elab/Log.c ./Lean/Elab/Match.c ./Lean/Elab/Quotation.c ./Lean/Elab/ResolveName.c ./Lean/Elab/StrategyAttrs.c ./Lean/Elab/StructInst.c ./Lean/Elab/Syntax.c ./Lean/Elab/SyntheticMVars.c ./Lean/Elab/Tactic.c ./Lean/Elab/Tactic/Basic.c ./Lean/Elab/Tactic/ElabTerm.c ./Lean/Elab/Tactic/Generalize.c ./Lean/Elab/Tactic/Induction.c ./Lean/Elab/Tactic/Injection.c ./Lean/Elab/Term.c ./Lean/Elab/Util.c ./Lean/Environment.c ./Lean/EqnCompiler.c ./Lean/EqnCompiler/MatchPattern.c ./Lean/Eval.c ./Lean/Expr.c ./Lean/HeadIndex.c ./Lean/Hygiene.c ./Lean/KeyedDeclsAttribute.c ./Lean/Level.c ./Lean/Linter.c ./Lean/LocalContext.c ./Lean/Message.c ./Lean/Meta.c ./Lean/Meta/AbstractMVars.c ./Lean/Meta/AppBuilder.c ./Lean/Meta/Basic.c ./Lean/Meta/Check.c ./Lean/Meta/DiscrTree.c ./Lean/Meta/DiscrTreeTypes.c ./Lean/Meta/Exception.c ./Lean/Meta/ExprDefEq.c ./Lean/Meta/FunInfo.c ./Lean/Meta/GeneralizeTelescope.c ./Lean/Meta/InferType.c ./Lean/Meta/Instances.c ./Lean/Meta/KAbstract.c ./Lean/Meta/LevelDefEq.c ./Lean/Meta/Message.c ./Lean/Meta/Offset.c ./Lean/Meta/RecursorInfo.c ./Lean/Meta/Reduce.c ./Lean/Meta/SynthInstance.c ./Lean/Meta/Tactic.c ./Lean/Meta/Tactic/Apply.c ./Lean/Meta/Tactic/Assert.c ./Lean/Meta/Tactic/Assumption.c ./Lean/Meta/Tactic/Cases.c ./Lean/Meta/Tactic/Clear.c ./Lean/Meta/Tactic/FVarSubst.c ./Lean/Meta/Tactic/Generalize.c ./Lean/Meta/Tactic/Induction.c ./Lean/Meta/Tactic/Injection.c ./Lean/Meta/Tactic/Intro.c ./Lean/Meta/Tactic/LocalDecl.c ./Lean/Meta/Tactic/Revert.c ./Lean/Meta/Tactic/Rewrite.c ./Lean/Meta/Tactic/Subst.c ./Lean/Meta/Tactic/Target.c ./Lean/Meta/Tactic/Util.c ./Lean/Meta/WHNF.c ./Lean/MetavarContext.c ./Lean/Modifiers.c ./Lean/Parser.c ./Lean/Parser/Command.c ./Lean/Parser/Level.c ./Lean/Parser/Module.c ./Lean/Parser/Parser.c ./Lean/Parser/Syntax.c ./Lean/Parser/Tactic.c ./Lean/Parser/Term.c ./Lean/Parser/Transform.c ./Lean/PrettyPrinter.c ./Lean/PrettyPrinter/Parenthesizer.c ./Lean/ProjFns.c ./Lean/ReducibilityAttrs.c ./Lean/Runtime.c ./Lean/Scopes.c ./Lean/Structure.c ./Lean/Syntax.c ./Lean/ToExpr.c ./Lean/Util.c ./Lean/Util/Closure.c ./Lean/Util/CollectFVars.c ./Lean/Util/CollectLevelParams.c ./Lean/Util/CollectMVars.c ./Lean/Util/FindExpr.c ./Lean/Util/FindMVar.c ./Lean/Util/FoldConsts.c ./Lean/Util/MonadCache.c ./Lean/Util/PPExt.c ./Lean/Util/PPGoal.c ./Lean/Util/Path.c ./Lean/Util/Profile.c ./Lean/Util/RecDepth.c ./Lean/Util/Recognizers.c ./Lean/Util/ReplaceExpr.c ./Lean/Util/Sorry.c ./Lean/Util/Trace.c ./Lean/Util/WHNF.c ./Std.c ./Std/Data.c ./Std/Data/BinomialHeap.c ./Std/Data/BinomialHeap/Basic.c ) diff --git a/stage0/stdlib/Init/Lean.c b/stage0/stdlib/Init/Lean.c deleted file mode 100644 index 0b445c76e1..0000000000 --- a/stage0/stdlib/Init/Lean.c +++ /dev/null @@ -1,109 +0,0 @@ -// Lean compiler output -// Module: Init.Lean -// Imports: Init.Lean.Compiler Init.Lean.Environment Init.Lean.Modifiers Init.Lean.ProjFns Init.Lean.Runtime Init.Lean.Attributes Init.Lean.Parser Init.Lean.ReducibilityAttrs Init.Lean.Elab Init.Lean.EqnCompiler Init.Lean.Class Init.Lean.LocalContext Init.Lean.MetavarContext Init.Lean.AuxRecursor Init.Lean.Linter Init.Lean.Meta Init.Lean.Util Init.Lean.Eval Init.Lean.Structure Init.Lean.Delaborator Init.Lean.PrettyPrinter -#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* initialize_Init_Lean_Compiler(lean_object*); -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Modifiers(lean_object*); -lean_object* initialize_Init_Lean_ProjFns(lean_object*); -lean_object* initialize_Init_Lean_Runtime(lean_object*); -lean_object* initialize_Init_Lean_Attributes(lean_object*); -lean_object* initialize_Init_Lean_Parser(lean_object*); -lean_object* initialize_Init_Lean_ReducibilityAttrs(lean_object*); -lean_object* initialize_Init_Lean_Elab(lean_object*); -lean_object* initialize_Init_Lean_EqnCompiler(lean_object*); -lean_object* initialize_Init_Lean_Class(lean_object*); -lean_object* initialize_Init_Lean_LocalContext(lean_object*); -lean_object* initialize_Init_Lean_MetavarContext(lean_object*); -lean_object* initialize_Init_Lean_AuxRecursor(lean_object*); -lean_object* initialize_Init_Lean_Linter(lean_object*); -lean_object* initialize_Init_Lean_Meta(lean_object*); -lean_object* initialize_Init_Lean_Util(lean_object*); -lean_object* initialize_Init_Lean_Eval(lean_object*); -lean_object* initialize_Init_Lean_Structure(lean_object*); -lean_object* initialize_Init_Lean_Delaborator(lean_object*); -lean_object* initialize_Init_Lean_PrettyPrinter(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Init_Lean(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_mk_io_result(lean_box(0)); -_G_initialized = true; -res = initialize_Init_Lean_Compiler(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Environment(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Modifiers(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_ProjFns(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Runtime(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Parser(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_ReducibilityAttrs(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_EqnCompiler(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Class(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_LocalContext(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_MetavarContext(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_AuxRecursor(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Linter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Eval(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Structure(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Delaborator(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_PrettyPrinter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -return lean_mk_io_result(lean_box(0)); -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Init/Lean/Compiler.c b/stage0/stdlib/Init/Lean/Compiler.c deleted file mode 100644 index 0631be8fc4..0000000000 --- a/stage0/stdlib/Init/Lean/Compiler.c +++ /dev/null @@ -1,57 +0,0 @@ -// Lean compiler output -// Module: Init.Lean.Compiler -// Imports: Init.Lean.Compiler.InlineAttrs Init.Lean.Compiler.Specialize Init.Lean.Compiler.ConstFolding Init.Lean.Compiler.ClosedTermCache Init.Lean.Compiler.ExternAttr Init.Lean.Compiler.ImplementedByAttr Init.Lean.Compiler.NeverExtractAttr Init.Lean.Compiler.IR -#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* initialize_Init_Lean_Compiler_InlineAttrs(lean_object*); -lean_object* initialize_Init_Lean_Compiler_Specialize(lean_object*); -lean_object* initialize_Init_Lean_Compiler_ConstFolding(lean_object*); -lean_object* initialize_Init_Lean_Compiler_ClosedTermCache(lean_object*); -lean_object* initialize_Init_Lean_Compiler_ExternAttr(lean_object*); -lean_object* initialize_Init_Lean_Compiler_ImplementedByAttr(lean_object*); -lean_object* initialize_Init_Lean_Compiler_NeverExtractAttr(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_mk_io_result(lean_box(0)); -_G_initialized = true; -res = initialize_Init_Lean_Compiler_InlineAttrs(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_Specialize(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_ConstFolding(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_ClosedTermCache(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_ExternAttr(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_ImplementedByAttr(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_NeverExtractAttr(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -return lean_mk_io_result(lean_box(0)); -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Init/Lean/Elab.c b/stage0/stdlib/Init/Lean/Elab.c deleted file mode 100644 index a6822d59e6..0000000000 --- a/stage0/stdlib/Init/Lean/Elab.c +++ /dev/null @@ -1,89 +0,0 @@ -// Lean compiler output -// Module: Init.Lean.Elab -// Imports: Init.Lean.Elab.Import Init.Lean.Elab.Exception Init.Lean.Elab.StrategyAttrs Init.Lean.Elab.Command Init.Lean.Elab.Term Init.Lean.Elab.App Init.Lean.Elab.Binders Init.Lean.Elab.Quotation Init.Lean.Elab.Frontend Init.Lean.Elab.BuiltinNotation Init.Lean.Elab.Declaration Init.Lean.Elab.Tactic Init.Lean.Elab.Syntax Init.Lean.Elab.Match Init.Lean.Elab.DoNotation Init.Lean.Elab.StructInst -#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* initialize_Init_Lean_Elab_Import(lean_object*); -lean_object* initialize_Init_Lean_Elab_Exception(lean_object*); -lean_object* initialize_Init_Lean_Elab_StrategyAttrs(lean_object*); -lean_object* initialize_Init_Lean_Elab_Command(lean_object*); -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); -lean_object* initialize_Init_Lean_Elab_App(lean_object*); -lean_object* initialize_Init_Lean_Elab_Binders(lean_object*); -lean_object* initialize_Init_Lean_Elab_Quotation(lean_object*); -lean_object* initialize_Init_Lean_Elab_Frontend(lean_object*); -lean_object* initialize_Init_Lean_Elab_BuiltinNotation(lean_object*); -lean_object* initialize_Init_Lean_Elab_Declaration(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic(lean_object*); -lean_object* initialize_Init_Lean_Elab_Syntax(lean_object*); -lean_object* initialize_Init_Lean_Elab_Match(lean_object*); -lean_object* initialize_Init_Lean_Elab_DoNotation(lean_object*); -lean_object* initialize_Init_Lean_Elab_StructInst(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_mk_io_result(lean_box(0)); -_G_initialized = true; -res = initialize_Init_Lean_Elab_Import(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Exception(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_StrategyAttrs(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Command(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_App(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Binders(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Quotation(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Frontend(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_BuiltinNotation(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Declaration(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Syntax(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Match(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_DoNotation(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_StructInst(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -return lean_mk_io_result(lean_box(0)); -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Init/Lean/Elab/Tactic.c b/stage0/stdlib/Init/Lean/Elab/Tactic.c deleted file mode 100644 index 71ea921f04..0000000000 --- a/stage0/stdlib/Init/Lean/Elab/Tactic.c +++ /dev/null @@ -1,49 +0,0 @@ -// Lean compiler output -// Module: Init.Lean.Elab.Tactic -// Imports: Init.Lean.Elab.Term Init.Lean.Elab.Tactic.Basic Init.Lean.Elab.Tactic.ElabTerm Init.Lean.Elab.Tactic.Induction Init.Lean.Elab.Tactic.Generalize Init.Lean.Elab.Tactic.Injection -#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* initialize_Init_Lean_Elab_Term(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_Basic(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_ElabTerm(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_Induction(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_Generalize(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_Injection(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Tactic(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_mk_io_result(lean_box(0)); -_G_initialized = true; -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_Basic(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_ElabTerm(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_Induction(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_Generalize(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_Injection(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -return lean_mk_io_result(lean_box(0)); -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Init/Lean/Meta.c b/stage0/stdlib/Init/Lean/Meta.c deleted file mode 100644 index 30efaa7ed0..0000000000 --- a/stage0/stdlib/Init/Lean/Meta.c +++ /dev/null @@ -1,93 +0,0 @@ -// Lean compiler output -// Module: Init.Lean.Meta -// Imports: Init.Lean.Meta.Basic Init.Lean.Meta.LevelDefEq Init.Lean.Meta.WHNF Init.Lean.Meta.InferType Init.Lean.Meta.FunInfo Init.Lean.Meta.ExprDefEq Init.Lean.Meta.DiscrTree Init.Lean.Meta.Reduce Init.Lean.Meta.Instances Init.Lean.Meta.AbstractMVars Init.Lean.Meta.SynthInstance Init.Lean.Meta.AppBuilder Init.Lean.Meta.Tactic Init.Lean.Meta.Message Init.Lean.Meta.KAbstract Init.Lean.Meta.RecursorInfo Init.Lean.Meta.GeneralizeTelescope -#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* initialize_Init_Lean_Meta_Basic(lean_object*); -lean_object* initialize_Init_Lean_Meta_LevelDefEq(lean_object*); -lean_object* initialize_Init_Lean_Meta_WHNF(lean_object*); -lean_object* initialize_Init_Lean_Meta_InferType(lean_object*); -lean_object* initialize_Init_Lean_Meta_FunInfo(lean_object*); -lean_object* initialize_Init_Lean_Meta_ExprDefEq(lean_object*); -lean_object* initialize_Init_Lean_Meta_DiscrTree(lean_object*); -lean_object* initialize_Init_Lean_Meta_Reduce(lean_object*); -lean_object* initialize_Init_Lean_Meta_Instances(lean_object*); -lean_object* initialize_Init_Lean_Meta_AbstractMVars(lean_object*); -lean_object* initialize_Init_Lean_Meta_SynthInstance(lean_object*); -lean_object* initialize_Init_Lean_Meta_AppBuilder(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic(lean_object*); -lean_object* initialize_Init_Lean_Meta_Message(lean_object*); -lean_object* initialize_Init_Lean_Meta_KAbstract(lean_object*); -lean_object* initialize_Init_Lean_Meta_RecursorInfo(lean_object*); -lean_object* initialize_Init_Lean_Meta_GeneralizeTelescope(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_mk_io_result(lean_box(0)); -_G_initialized = true; -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_LevelDefEq(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_WHNF(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_InferType(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_FunInfo(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_ExprDefEq(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_DiscrTree(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Reduce(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Instances(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_AbstractMVars(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_SynthInstance(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_AppBuilder(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Message(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_KAbstract(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_RecursorInfo(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_GeneralizeTelescope(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -return lean_mk_io_result(lean_box(0)); -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic.c b/stage0/stdlib/Init/Lean/Meta/Tactic.c deleted file mode 100644 index 5dba3992bf..0000000000 --- a/stage0/stdlib/Init/Lean/Meta/Tactic.c +++ /dev/null @@ -1,73 +0,0 @@ -// Lean compiler output -// Module: Init.Lean.Meta.Tactic -// Imports: Init.Lean.Meta.Tactic.Intro Init.Lean.Meta.Tactic.Assumption Init.Lean.Meta.Tactic.Apply Init.Lean.Meta.Tactic.Revert Init.Lean.Meta.Tactic.Clear Init.Lean.Meta.Tactic.Assert Init.Lean.Meta.Tactic.Target Init.Lean.Meta.Tactic.Rewrite Init.Lean.Meta.Tactic.Generalize Init.Lean.Meta.Tactic.LocalDecl Init.Lean.Meta.Tactic.Induction Init.Lean.Meta.Tactic.Cases -#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* initialize_Init_Lean_Meta_Tactic_Intro(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Assumption(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Apply(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Revert(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Clear(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Assert(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Target(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Rewrite(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Generalize(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_LocalDecl(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Induction(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Cases(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_mk_io_result(lean_box(0)); -_G_initialized = true; -res = initialize_Init_Lean_Meta_Tactic_Intro(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Assumption(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Apply(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Revert(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Clear(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Assert(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Target(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Rewrite(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Generalize(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_LocalDecl(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Induction(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Cases(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -return lean_mk_io_result(lean_box(0)); -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Init/Lean/Parser.c b/stage0/stdlib/Init/Lean/Parser.c deleted file mode 100644 index 248c3f3ce1..0000000000 --- a/stage0/stdlib/Init/Lean/Parser.c +++ /dev/null @@ -1,53 +0,0 @@ -// Lean compiler output -// Module: Init.Lean.Parser -// Imports: Init.Lean.Parser.Parser Init.Lean.Parser.Level Init.Lean.Parser.Term Init.Lean.Parser.Tactic Init.Lean.Parser.Command Init.Lean.Parser.Module Init.Lean.Parser.Syntax -#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* initialize_Init_Lean_Parser_Parser(lean_object*); -lean_object* initialize_Init_Lean_Parser_Level(lean_object*); -lean_object* initialize_Init_Lean_Parser_Term(lean_object*); -lean_object* initialize_Init_Lean_Parser_Tactic(lean_object*); -lean_object* initialize_Init_Lean_Parser_Command(lean_object*); -lean_object* initialize_Init_Lean_Parser_Module(lean_object*); -lean_object* initialize_Init_Lean_Parser_Syntax(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Parser(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_mk_io_result(lean_box(0)); -_G_initialized = true; -res = initialize_Init_Lean_Parser_Parser(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Level(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Term(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Tactic(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Command(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Module(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Syntax(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -return lean_mk_io_result(lean_box(0)); -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Init/Lean/Util.c b/stage0/stdlib/Init/Lean/Util.c deleted file mode 100644 index 93fa873069..0000000000 --- a/stage0/stdlib/Init/Lean/Util.c +++ /dev/null @@ -1,89 +0,0 @@ -// Lean compiler output -// Module: Init.Lean.Util -// Imports: Init.Lean.Util.CollectFVars Init.Lean.Util.CollectLevelParams Init.Lean.Util.CollectMVars Init.Lean.Util.FindMVar Init.Lean.Util.MonadCache Init.Lean.Util.PPExt Init.Lean.Util.PPGoal Init.Lean.Util.Path Init.Lean.Util.Profile Init.Lean.Util.RecDepth Init.Lean.Util.Sorry Init.Lean.Util.Trace Init.Lean.Util.WHNF Init.Lean.Util.FindExpr Init.Lean.Util.ReplaceExpr Init.Lean.Util.FoldConsts -#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* initialize_Init_Lean_Util_CollectFVars(lean_object*); -lean_object* initialize_Init_Lean_Util_CollectLevelParams(lean_object*); -lean_object* initialize_Init_Lean_Util_CollectMVars(lean_object*); -lean_object* initialize_Init_Lean_Util_FindMVar(lean_object*); -lean_object* initialize_Init_Lean_Util_MonadCache(lean_object*); -lean_object* initialize_Init_Lean_Util_PPExt(lean_object*); -lean_object* initialize_Init_Lean_Util_PPGoal(lean_object*); -lean_object* initialize_Init_Lean_Util_Path(lean_object*); -lean_object* initialize_Init_Lean_Util_Profile(lean_object*); -lean_object* initialize_Init_Lean_Util_RecDepth(lean_object*); -lean_object* initialize_Init_Lean_Util_Sorry(lean_object*); -lean_object* initialize_Init_Lean_Util_Trace(lean_object*); -lean_object* initialize_Init_Lean_Util_WHNF(lean_object*); -lean_object* initialize_Init_Lean_Util_FindExpr(lean_object*); -lean_object* initialize_Init_Lean_Util_ReplaceExpr(lean_object*); -lean_object* initialize_Init_Lean_Util_FoldConsts(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_mk_io_result(lean_box(0)); -_G_initialized = true; -res = initialize_Init_Lean_Util_CollectFVars(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_CollectLevelParams(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_CollectMVars(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_FindMVar(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_MonadCache(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_PPExt(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_PPGoal(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_Path(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_Profile(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_RecDepth(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_Sorry(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_Trace(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_WHNF(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_FindExpr(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_ReplaceExpr(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Lean_Util_FoldConsts(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -return lean_mk_io_result(lean_box(0)); -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Lean.c b/stage0/stdlib/Lean.c index 01ffa51b05..5881ced8e2 100644 --- a/stage0/stdlib/Lean.c +++ b/stage0/stdlib/Lean.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean -// Imports: Init Init.Lean +// Imports: Init Lean.Compiler Lean.Environment Lean.Modifiers Lean.ProjFns Lean.Runtime Lean.Attributes Lean.Parser Lean.ReducibilityAttrs Lean.Elab Lean.EqnCompiler Lean.Class Lean.LocalContext Lean.MetavarContext Lean.AuxRecursor Lean.Linter Lean.Meta Lean.Util Lean.Eval Lean.Structure Lean.Delaborator Lean.PrettyPrinter #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,7 +14,27 @@ extern "C" { #endif lean_object* initialize_Init(lean_object*); -lean_object* initialize_Init_Lean(lean_object*); +lean_object* initialize_Lean_Compiler(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Modifiers(lean_object*); +lean_object* initialize_Lean_ProjFns(lean_object*); +lean_object* initialize_Lean_Runtime(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Parser(lean_object*); +lean_object* initialize_Lean_ReducibilityAttrs(lean_object*); +lean_object* initialize_Lean_Elab(lean_object*); +lean_object* initialize_Lean_EqnCompiler(lean_object*); +lean_object* initialize_Lean_Class(lean_object*); +lean_object* initialize_Lean_LocalContext(lean_object*); +lean_object* initialize_Lean_MetavarContext(lean_object*); +lean_object* initialize_Lean_AuxRecursor(lean_object*); +lean_object* initialize_Lean_Linter(lean_object*); +lean_object* initialize_Lean_Meta(lean_object*); +lean_object* initialize_Lean_Util(lean_object*); +lean_object* initialize_Lean_Eval(lean_object*); +lean_object* initialize_Lean_Structure(lean_object*); +lean_object* initialize_Lean_Delaborator(lean_object*); +lean_object* initialize_Lean_PrettyPrinter(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean(lean_object* w) { lean_object * res; @@ -23,7 +43,67 @@ _G_initialized = true; res = initialize_Init(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean(lean_io_mk_world()); +res = initialize_Lean_Compiler(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Environment(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Modifiers(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_ProjFns(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Runtime(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Attributes(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Parser(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_ReducibilityAttrs(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_EqnCompiler(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Class(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_LocalContext(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_MetavarContext(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_AuxRecursor(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Linter(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Eval(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Structure(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Delaborator(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_PrettyPrinter(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Attributes.c b/stage0/stdlib/Lean/Attributes.c similarity index 98% rename from stage0/stdlib/Init/Lean/Attributes.c rename to stage0/stdlib/Lean/Attributes.c index 698af50d2b..88a6558cee 100644 --- a/stage0/stdlib/Init/Lean/Attributes.c +++ b/stage0/stdlib/Lean/Attributes.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Attributes -// Imports: Init.Lean.Scopes Init.Lean.Syntax +// Module: Lean.Attributes +// Imports: Lean.Scopes Lean.Syntax #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -23,7 +23,6 @@ size_t l_USize_add(size_t, size_t); lean_object* l_Lean_attrParamSyntaxToIdentifier___boxed(lean_object*); lean_object* l_Lean_registerTagAttribute___closed__3; lean_object* l_RBNode_find___main___at_Lean_ParametricAttribute_getParam___spec__1___rarg(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_mkAttributeImplOfBuilder___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); @@ -36,6 +35,7 @@ lean_object* l_Lean_registerParametricAttribute___rarg___lambda__4(lean_object*) lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_ParametricAttribute_setParam___rarg___closed__1; lean_object* l_Lean_registerBuiltinAttribute___closed__3; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_mkAttributeImplOfBuilder___spec__2(lean_object*, lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_EnumAttributes_getValue___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_binSearchAux___main___at_Lean_TagDeclarationExtension_isTagged___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -51,6 +51,7 @@ lean_object* l_Lean_mkAttributeExtension___closed__8; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_AttributeImpl_inhabited___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkTagDeclarationExtension___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___rarg___lambda__2___closed__3; lean_object* l_Lean_ParametricAttribute_setParam___rarg___closed__2; lean_object* l_Lean_attributeExtension___elambda__4___rarg(lean_object*); @@ -66,7 +67,7 @@ lean_object* l_Lean_registerTagAttribute___closed__1; lean_object* lean_io_mk_ref(lean_object*, lean_object*); lean_object* l_PersistentHashMap_foldlM___at_Lean_getBuiltinAttributeNames___spec__1(lean_object*, lean_object*); lean_object* lean_io_ref_get(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Attributes_3__AttributeExtension_addEntry(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_registerEnumAttributes___spec__8(lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_registerParametricAttribute___spec__9___rarg(lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___rarg___lambda__2(lean_object*, lean_object*); @@ -75,6 +76,7 @@ lean_object* l_Array_anyRangeMAux___main___at_Lean_registerParametricAttribute__ lean_object* l_Lean_isAttribute___boxed(lean_object*, lean_object*); lean_object* l_Lean_attributeExtension; lean_object* l_HashMapImp_insert___at_Lean_registerAttributeImplBuilder___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_popScopeCore(lean_object*); lean_object* l_Lean_EnumAttributes_Inhabited(lean_object*); lean_object* l_Lean_mkAttributeExtension___lambda__1(lean_object*); @@ -83,14 +85,12 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___rarg___lambda__1(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Attributes_2__AttributeExtension_addImported___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_ParametricAttribute_getParam___spec__1(lean_object*); extern lean_object* l_Lean_Name_inhabited; lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_registerTagAttribute___spec__2(lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_RBNode_find___main___at_Lean_EnumAttributes_getValue___spec__1___rarg(lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_getBuiltinAttributeImpl___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Attributes_1__AttributeExtension_mkInitial(lean_object*); lean_object* l_List_map___main___at_Lean_registerEnumAttributes___spec__10(lean_object*); lean_object* l_Lean_attributeMapRef; lean_object* l_Lean_attributeImplBuilderTableRef; @@ -112,12 +112,12 @@ lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_registerTagAttribute___closed__2; lean_object* l_Lean_attributeExtension___elambda__2(lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_registerParametricAttribute___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_ParametricAttribute_Inhabited___closed__3; lean_object* l_RBNode_find___main___at_Lean_EnumAttributes_setValue___spec__1(lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_registerBuiltinAttribute___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAttributeImplOfConstant___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_registerParametricAttribute___spec__4(lean_object*); -lean_object* l___private_Init_Lean_Attributes_2__AttributeExtension_addImported(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__1; lean_object* l_Lean_mkAttributeImplOfConstant___closed__1; lean_object* l_Lean_registerTagAttribute___lambda__4___closed__3; @@ -127,7 +127,6 @@ lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_ uint8_t l_Lean_AttributeApplicationTime_beq(uint8_t, uint8_t); lean_object* l_PersistentHashMap_foldlM___at_Lean_getBuiltinAttributeNames___spec__1___boxed(lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_TagAttribute_Inhabited___closed__2; lean_object* l_Lean_mkAttributeExtension___lambda__2___boxed(lean_object*); lean_object* l_Lean_registerEnumAttributes___rarg___lambda__2___closed__2; @@ -144,6 +143,7 @@ lean_object* l_RBNode_find___main___at_Lean_ParametricAttribute_getParam___spec_ lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Attributes_2__AttributeExtension_addImported(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_registerEnumAttributes___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forM___main___at_Lean_registerEnumAttributes___spec__11(lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); @@ -162,11 +162,9 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_mkAttributeImplOfBuilder___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_attributeExtension___closed__2; lean_object* l_Lean_mkAttributeMapRef(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_registerEnumAttributes___spec__3(lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___rarg___lambda__2(lean_object*); lean_object* l_Lean_registerEnumAttributes___rarg___lambda__2___boxed(lean_object*); @@ -195,7 +193,6 @@ lean_object* l_RBNode_fold___main___at_Lean_registerParametricAttribute___spec__ lean_object* l_RBNode_find___main___at_Lean_ParametricAttribute_setParam___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkAttributeExtension___lambda__2(lean_object*); lean_object* l_Lean_attributeExtension___closed__4; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_ParametricAttribute_getParam___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Environment_evalConstCheck___rarg___closed__1; lean_object* l_Lean_registerParametricAttribute___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -208,7 +205,6 @@ lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_registerTagAttribute___ lean_object* l_Lean_mkAttributeExtension___closed__7; lean_object* l_Lean_getBuiltinAttributeNames(lean_object*); size_t lean_usize_modn(size_t, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_registerTagAttribute___lambda__2(lean_object*); lean_object* l_RBNode_fold___main___at_Lean_registerEnumAttributes___spec__1(lean_object*); lean_object* l_Lean_ParametricAttribute_setParam___rarg___closed__3; @@ -243,6 +239,7 @@ lean_object* l_PersistentHashMap_insert___at_Lean_registerBuiltinAttribute___spe lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_registerParametricAttribute___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParametricAttribute_setParam___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_registerParametricAttribute___spec__6(lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_IO_ofExcept___at_Lean_mkAttributeImplOfBuilder___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_getBuiltinAttributeNames___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getAttributeImpl___boxed(lean_object*, lean_object*); @@ -316,6 +313,7 @@ lean_object* lean_push_scope(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___rarg___lambda__3___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Attributes_1__AttributeExtension_mkInitial(lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_registerParametricAttribute___spec__9___rarg___closed__1; lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_registerEnumAttributes___spec__9___rarg(lean_object*, lean_object*); @@ -382,6 +380,7 @@ lean_object* l_Lean_getAttributeImpl(lean_object*, lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_ParametricAttribute_getParam___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_registerEnumAttributes___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__1; +lean_object* l___private_Lean_Attributes_2__AttributeExtension_addImported___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAttributeExtension___closed__3; lean_object* l_RBNode_fold___main___at_Lean_registerParametricAttribute___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -393,6 +392,7 @@ lean_object* l_Lean_registerTagAttribute___lambda__3___boxed(lean_object*); lean_object* l_Lean_registerBuiltinAttribute___closed__1; lean_object* l_PersistentHashMap_find_x3f___at_Lean_getBuiltinAttributeImpl___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_EnumAttributes_getValue(lean_object*); +lean_object* l___private_Lean_Attributes_3__AttributeExtension_addEntry(lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_registerParametricAttribute___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2434,7 +2434,7 @@ x_1 = l_Lean_AttributeExtensionState_inhabited___closed__1; return x_1; } } -lean_object* l___private_Init_Lean_Attributes_1__AttributeExtension_mkInitial(lean_object* x_1) { +lean_object* l___private_Lean_Attributes_1__AttributeExtension_mkInitial(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -2728,7 +2728,7 @@ return x_9; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -2798,7 +2798,7 @@ return x_22; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -2824,7 +2824,7 @@ x_12 = lean_nat_add(x_4, x_11); lean_dec(x_4); x_13 = lean_unsigned_to_nat(0u); lean_inc(x_1); -x_14 = l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__1(x_1, x_10, x_10, x_13, x_5, x_6); +x_14 = l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__1(x_1, x_10, x_10, x_13, x_5, x_6); lean_dec(x_10); if (lean_obj_tag(x_14) == 0) { @@ -2866,7 +2866,7 @@ return x_21; } } } -lean_object* l___private_Init_Lean_Attributes_2__AttributeExtension_addImported(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Attributes_2__AttributeExtension_addImported(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -2881,7 +2881,7 @@ x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__2(x_1, x_2, x_2, x_8, x_6, x_7); +x_9 = l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__2(x_1, x_2, x_2, x_8, x_6, x_7); if (lean_obj_tag(x_9) == 0) { uint8_t x_10; @@ -2963,36 +2963,36 @@ return x_26; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___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_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_7; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___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* l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Attributes_2__AttributeExtension_addImported___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Attributes_2__AttributeExtension_addImported___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_7; } } -lean_object* l___private_Init_Lean_Attributes_2__AttributeExtension_addImported___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Attributes_2__AttributeExtension_addImported___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Attributes_2__AttributeExtension_addImported(x_1, x_2, x_3); +x_4 = l___private_Lean_Attributes_2__AttributeExtension_addImported(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Attributes_3__AttributeExtension_addEntry(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Attributes_3__AttributeExtension_addEntry(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; @@ -3115,7 +3115,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -3303,7 +3303,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkAttributeEx _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -3824,7 +3824,7 @@ lean_object* _init_l_Lean_mkAttributeExtension___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Attributes_1__AttributeExtension_mkInitial), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Attributes_1__AttributeExtension_mkInitial), 1, 0); return x_1; } } @@ -3832,7 +3832,7 @@ lean_object* _init_l_Lean_mkAttributeExtension___closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Attributes_2__AttributeExtension_addImported___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Attributes_2__AttributeExtension_addImported___boxed), 3, 0); return x_1; } } @@ -3840,7 +3840,7 @@ lean_object* _init_l_Lean_mkAttributeExtension___closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Attributes_3__AttributeExtension_addEntry), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Attributes_3__AttributeExtension_addEntry), 2, 0); return x_1; } } @@ -5223,7 +5223,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -5411,7 +5411,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_registerTagAt _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -7084,7 +7084,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -7280,7 +7280,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_registerParam _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -9390,7 +9390,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -9586,7 +9586,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_registerEnumA _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -11148,17 +11148,17 @@ lean_dec(x_1); return x_2; } } -lean_object* initialize_Init_Lean_Scopes(lean_object*); -lean_object* initialize_Init_Lean_Syntax(lean_object*); +lean_object* initialize_Lean_Scopes(lean_object*); +lean_object* initialize_Lean_Syntax(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Attributes(lean_object* w) { +lean_object* initialize_Lean_Attributes(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Scopes(lean_io_mk_world()); +res = initialize_Lean_Scopes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Syntax(lean_io_mk_world()); +res = initialize_Lean_Syntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_AttributeApplicationTime_hasBeq___closed__1 = _init_l_Lean_AttributeApplicationTime_hasBeq___closed__1(); diff --git a/stage0/stdlib/Init/Lean/AuxRecursor.c b/stage0/stdlib/Lean/AuxRecursor.c similarity index 98% rename from stage0/stdlib/Init/Lean/AuxRecursor.c rename to stage0/stdlib/Lean/AuxRecursor.c index c67cfc7c1a..2346d0e6a5 100644 --- a/stage0/stdlib/Init/Lean/AuxRecursor.c +++ b/stage0/stdlib/Lean/AuxRecursor.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.AuxRecursor -// Imports: Init.Lean.Environment +// Module: Lean.AuxRecursor +// Imports: Lean.Environment #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -438,13 +438,13 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_AuxRecursor(lean_object* w) { +lean_object* initialize_Lean_AuxRecursor(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_mkAuxRecursorExtension___closed__1 = _init_l_Lean_mkAuxRecursorExtension___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Class.c b/stage0/stdlib/Lean/Class.c similarity index 96% rename from stage0/stdlib/Init/Lean/Class.c rename to stage0/stdlib/Lean/Class.c index ed67c63138..0003467181 100644 --- a/stage0/stdlib/Init/Lean/Class.c +++ b/stage0/stdlib/Lean/Class.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Class -// Imports: Init.Lean.Attributes +// Module: Lean.Class +// Imports: Lean.Attributes #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,6 +15,7 @@ extern "C" { #endif uint8_t l_AssocList_contains___main___at_Lean_ClassState_addEntry___spec__35(lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___at_Lean_mkClassExtension___spec__4(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3(lean_object*, lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_PersistentHashMap_findAux___main___at_Lean_hasOutParams___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_ClassState_addEntry___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -23,9 +24,10 @@ lean_object* l_PersistentHashMap_containsAux___main___at_Lean_isClass___spec__4_ size_t l_USize_add(size_t, size_t); lean_object* l_Lean_SMap_empty___at_Lean_ClassState_Inhabited___spec__1___closed__1; uint8_t lean_is_out_param(lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_ClassState_Inhabited___spec__1___closed__2; lean_object* l_unreachable_x21___rarg(lean_object*); +lean_object* l___private_Lean_Class_1__checkOutParam(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ClassState_switch(lean_object*); lean_object* l_Lean_classExtension___closed__3; lean_object* l_PersistentHashMap_insertAux___main___at_Lean_ClassState_addEntry___spec__3(lean_object*, size_t, size_t, lean_object*, uint8_t); @@ -51,8 +53,6 @@ lean_object* l_PersistentHashMap_empty___at_Lean_ClassState_Inhabited___spec__9; lean_object* l_mkHashMap___at_Lean_ClassState_Inhabited___spec__5(lean_object*); lean_object* l_Lean_classExtension; lean_object* l_AssocList_replace___main___at_Lean_ClassState_addEntry___spec__39(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3___boxed(lean_object*, lean_object*); uint8_t l_PersistentHashMap_containsAux___main___at_Lean_isClass___spec__4(lean_object*, size_t, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_ClassState_addEntry___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_sub(size_t, size_t); @@ -61,6 +61,7 @@ lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_SMap_insert___at_Lean_ClassState_addEntry___spec__18(lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_hasOutParams___spec__6___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_ClassState_addEntry___spec__19(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Class_2__consumeNLambdas___main(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_ClassState_addEntry___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_expand___at_Lean_ClassState_addEntry___spec__8(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkClassExtension___spec__7___closed__2; @@ -92,6 +93,7 @@ lean_object* l_HashMapImp_insert___at_Lean_ClassState_addEntry___spec__23(lean_o lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_ClassEntry_lt___boxed(lean_object*, lean_object*); lean_object* l_IO_ofExcept___at_Lean_registerClassAttr___spec__1(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_PersistentHashMap_insertAux___main___at_Lean_ClassState_addEntry___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkClassExtension___spec__7(lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_ClassState_Inhabited___spec__7; @@ -107,7 +109,6 @@ lean_object* l_HashMapImp_moveEntries___main___at_Lean_ClassState_addEntry___spe lean_object* l_Lean_classExtension___closed__6; lean_object* l_Lean_registerClassAttr___lambda__1___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); -uint8_t l_Array_contains___at___private_Init_Lean_Class_1__checkOutParam___main___spec__1(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_hasOutParams___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_classExtension___closed__2; @@ -121,7 +122,6 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_ClassState_addEntry___spec__17(lean_object*, lean_object*); lean_object* l_Lean_registerClassAttr___lambda__1___closed__4; lean_object* l_HashMapImp_find_x3f___at_Lean_ClassState_addEntry___spec__16(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3(lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__3(lean_object*, lean_object*); lean_object* l_Lean_registerClassAttr___lambda__1___closed__2; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); @@ -144,7 +144,6 @@ lean_object* l_HashMapImp_contains___at_Lean_isInstance___spec__2___boxed(lean_o lean_object* l_PersistentHashMap_empty___at_Lean_ClassState_Inhabited___spec__6; uint8_t l_PersistentHashMap_containsAux___main___at_Lean_isInstance___spec__4(lean_object*, size_t, lean_object*); lean_object* l_AssocList_replace___main___at_Lean_ClassState_addEntry___spec__11(lean_object*, uint8_t, lean_object*); -lean_object* l___private_Init_Lean_Class_2__consumeNLambdas(lean_object*, lean_object*); lean_object* l_Lean_ClassState_Inhabited; lean_object* l_Lean_addClass(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_ClassState_addEntry___spec__4(lean_object*, lean_object*, lean_object*, uint8_t); @@ -156,17 +155,15 @@ lean_object* l_Lean_classExtension___elambda__4___boxed(lean_object*, lean_objec uint8_t l_AssocList_contains___main___at_Lean_ClassState_addEntry___spec__24(lean_object*, lean_object*); extern lean_object* l_IO_Error_Inhabited___closed__1; size_t lean_usize_modn(size_t, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_classExtension___closed__1; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_ClassState_addEntry___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_ClassState_addEntry___spec__13___boxed(lean_object*, lean_object*); size_t l_USize_mul(size_t, size_t); -lean_object* l_Array_contains___at___private_Init_Lean_Class_1__checkOutParam___main___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Class_1__checkOutParam___main___closed__3; lean_object* l_mkHashMapImp___rarg(lean_object*); uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Environment_contains___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_ClassState_addEntry___spec__5(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_contains___at___private_Lean_Class_1__checkOutParam___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); uint8_t l_Lean_Expr_isAppOfArity___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerClassAttr___closed__2; @@ -187,16 +184,17 @@ size_t l_USize_land(size_t, size_t); lean_object* l_Lean_mkClassExtension___closed__4; lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l_HashMapImp_moveEntries___main___at_Lean_ClassState_addEntry___spec__37(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; +lean_object* l___private_Lean_Class_1__checkOutParam___main___closed__1; lean_object* l_Lean_registerClassAttr___closed__1; lean_object* l_Lean_mkClassExtension___closed__2; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; -lean_object* l___private_Init_Lean_Class_1__checkOutParam(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Class_1__checkOutParam___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Class_1__checkOutParam___main___closed__3; +uint8_t l_Array_contains___at___private_Lean_Class_1__checkOutParam___main___spec__1(lean_object*, lean_object*); lean_object* l_HashMapImp_moveEntries___main___at_Lean_ClassState_addEntry___spec__9(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Class_2__consumeNLambdas___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Class_1__checkOutParam___main(lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_contains___at_Lean_isClass___spec__2___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_IO_ofExcept___at_Lean_registerClassAttr___spec__1___boxed(lean_object*, lean_object*); uint8_t l_HashMapImp_contains___at_Lean_isInstance___spec__2(lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -232,7 +230,9 @@ lean_object* l_Lean_classExtension___elambda__2___boxed(lean_object*); lean_object* l_AssocList_foldlM___main___at_Lean_ClassState_addEntry___spec__27(lean_object*, lean_object*); lean_object* l_Lean_SMap_switch___at_Lean_ClassState_switch___spec__3(lean_object*); lean_object* l_Lean_classExtension___elambda__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Class_1__checkOutParam___main___closed__2; lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_mkClassExtension___spec__1___boxed(lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_ClassState_addEntry___spec__16___boxed(lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_ClassState_Inhabited___spec__4___closed__2; @@ -248,12 +248,10 @@ uint8_t l_PersistentHashMap_contains___at_Lean_isInstance___spec__3(lean_object* lean_object* lean_io_initializing(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Lean_SMap_empty___at_Lean_ClassState_Inhabited___spec__7___closed__2; -lean_object* l___private_Init_Lean_Class_1__checkOutParam___main___closed__4; lean_object* l_Lean_registerClassAttr___closed__5; -lean_object* l___private_Init_Lean_Class_1__checkOutParam___main___closed__1; -lean_object* l___private_Init_Lean_Class_1__checkOutParam___main___closed__2; lean_object* l_Lean_SMap_find_x3f___at_Lean_hasOutParams___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_addGlobalInstanceOld___closed__2; +lean_object* l___private_Lean_Class_1__checkOutParam___main___closed__4; lean_object* l_Lean_isInstance___boxed(lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_hasOutParams___spec__1(lean_object*, lean_object*); lean_object* l_Lean_addClass___closed__2; @@ -268,6 +266,7 @@ lean_object* l_Lean_addClass___closed__1; lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); lean_object* l_HashMapImp_insert___at_Lean_ClassState_addEntry___spec__34(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasFVar(lean_object*); +lean_object* l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_SMap_switch___at_Lean_ClassState_switch___spec__2(lean_object*); lean_object* l_mkHashMap___at_Lean_ClassState_Inhabited___spec__2(lean_object*); lean_object* l_Lean_SMap_insert___at_Lean_ClassState_addEntry___spec__29(lean_object*, lean_object*, lean_object*); @@ -286,6 +285,7 @@ lean_object* l_Lean_classExtension___elambda__1(lean_object*); lean_object* l_HashMapImp_expand___at_Lean_ClassState_addEntry___spec__25(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_ClassState_addEntry___spec__22(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_ClassState_addEntry___spec__21(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Class_2__consumeNLambdas(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_ClassEntry_getName(lean_object* x_1) { _start: @@ -3957,7 +3957,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -4145,7 +4145,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkClassExtens _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -5690,7 +5690,7 @@ x_3 = lean_box(x_2); return x_3; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__2(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; @@ -5725,18 +5725,18 @@ return x_9; } } } -uint8_t l_Array_contains___at___private_Init_Lean_Class_1__checkOutParam___main___spec__1(lean_object* x_1, lean_object* x_2) { +uint8_t l_Array_contains___at___private_Lean_Class_1__checkOutParam___main___spec__1(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_1); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__2(x_1, x_2, x_1, x_3, x_4); +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__2(x_1, x_2, x_1, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -5755,7 +5755,7 @@ case 1: { lean_object* x_6; uint8_t x_7; lean_object* x_8; x_6 = lean_ctor_get(x_2, 0); -x_7 = l_Array_contains___at___private_Init_Lean_Class_1__checkOutParam___main___spec__1(x_1, x_6); +x_7 = l_Array_contains___at___private_Lean_Class_1__checkOutParam___main___spec__1(x_1, x_6); x_8 = lean_box(x_7); return x_8; } @@ -5764,7 +5764,7 @@ case 5: lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_ctor_get(x_2, 0); x_10 = lean_ctor_get(x_2, 1); -x_11 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_9); +x_11 = l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_9); x_12 = lean_unbox(x_11); lean_dec(x_11); if (x_12 == 0) @@ -5785,7 +5785,7 @@ case 6: lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; x_16 = lean_ctor_get(x_2, 1); x_17 = lean_ctor_get(x_2, 2); -x_18 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_16); +x_18 = l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_16); x_19 = lean_unbox(x_18); lean_dec(x_18); if (x_19 == 0) @@ -5806,7 +5806,7 @@ case 7: lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; x_23 = lean_ctor_get(x_2, 1); x_24 = lean_ctor_get(x_2, 2); -x_25 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_23); +x_25 = l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_23); x_26 = lean_unbox(x_25); lean_dec(x_25); if (x_26 == 0) @@ -5828,13 +5828,13 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint x_30 = lean_ctor_get(x_2, 1); x_31 = lean_ctor_get(x_2, 2); x_32 = lean_ctor_get(x_2, 3); -x_33 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_30); +x_33 = l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_30); x_34 = lean_unbox(x_33); lean_dec(x_33); if (x_34 == 0) { lean_object* x_35; uint8_t x_36; -x_35 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_31); +x_35 = l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_31); x_36 = lean_unbox(x_35); lean_dec(x_35); if (x_36 == 0) @@ -5891,7 +5891,7 @@ return x_50; } } } -lean_object* _init_l___private_Init_Lean_Class_1__checkOutParam___main___closed__1() { +lean_object* _init_l___private_Lean_Class_1__checkOutParam___main___closed__1() { _start: { lean_object* x_1; @@ -5899,7 +5899,7 @@ x_1 = lean_mk_string("invalid class, parameter #"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Class_1__checkOutParam___main___closed__2() { +lean_object* _init_l___private_Lean_Class_1__checkOutParam___main___closed__2() { _start: { lean_object* x_1; @@ -5907,7 +5907,7 @@ x_1 = lean_mk_string(" depends on `outParam`, but it is not an `outParam`"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Class_1__checkOutParam___main___closed__3() { +lean_object* _init_l___private_Lean_Class_1__checkOutParam___main___closed__3() { _start: { lean_object* x_1; @@ -5915,17 +5915,17 @@ x_1 = lean_mk_string("_fvar"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Class_1__checkOutParam___main___closed__4() { +lean_object* _init_l___private_Lean_Class_1__checkOutParam___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Class_1__checkOutParam___main___closed__3; +x_2 = l___private_Lean_Class_1__checkOutParam___main___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Class_1__checkOutParam___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Class_1__checkOutParam___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -5942,7 +5942,7 @@ x_13 = lean_is_out_param(x_11); if (x_13 == 0) { lean_object* x_14; uint8_t x_15; -x_14 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3(x_2, x_11); +x_14 = l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3(x_2, x_11); lean_dec(x_11); x_15 = lean_unbox(x_14); lean_dec(x_14); @@ -5962,10 +5962,10 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean lean_dec(x_12); lean_dec(x_2); x_19 = l_Nat_repr(x_1); -x_20 = l___private_Init_Lean_Class_1__checkOutParam___main___closed__1; +x_20 = l___private_Lean_Class_1__checkOutParam___main___closed__1; x_21 = lean_string_append(x_20, x_19); lean_dec(x_19); -x_22 = l___private_Init_Lean_Class_1__checkOutParam___main___closed__2; +x_22 = l___private_Lean_Class_1__checkOutParam___main___closed__2; x_23 = lean_string_append(x_21, x_22); x_24 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_24, 0, x_23); @@ -5977,7 +5977,7 @@ 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_dec(x_11); x_25 = lean_array_get_size(x_2); -x_26 = l___private_Init_Lean_Class_1__checkOutParam___main___closed__4; +x_26 = l___private_Lean_Class_1__checkOutParam___main___closed__4; x_27 = lean_name_mk_numeral(x_26, x_25); lean_inc(x_27); x_28 = lean_array_push(x_2, x_27); @@ -6019,11 +6019,11 @@ return x_9; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___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* l_Array_anyRangeMAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -6032,32 +6032,32 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_contains___at___private_Init_Lean_Class_1__checkOutParam___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_contains___at___private_Lean_Class_1__checkOutParam___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Array_contains___at___private_Init_Lean_Class_1__checkOutParam___main___spec__1(x_1, x_2); +x_3 = l_Array_contains___at___private_Lean_Class_1__checkOutParam___main___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main___at___private_Init_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_2); +x_3 = l___private_Lean_Expr_10__hasAnyFVarAux___main___at___private_Lean_Class_1__checkOutParam___main___spec__3(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Class_1__checkOutParam(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Class_1__checkOutParam(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Class_1__checkOutParam___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Class_1__checkOutParam___main(x_1, x_2, x_3); return x_4; } } @@ -6134,7 +6134,7 @@ x_13 = l_Lean_ConstantInfo_type(x_12); lean_dec(x_12); x_14 = lean_unsigned_to_nat(1u); x_15 = l_Array_empty___closed__1; -x_16 = l___private_Init_Lean_Class_1__checkOutParam___main(x_14, x_15, x_13); +x_16 = l___private_Lean_Class_1__checkOutParam___main(x_14, x_15, x_13); if (lean_obj_tag(x_16) == 0) { uint8_t x_17; @@ -6228,7 +6228,7 @@ return x_45; } } } -lean_object* l___private_Init_Lean_Class_2__consumeNLambdas___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Class_2__consumeNLambdas___main(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -6268,11 +6268,11 @@ return x_10; } } } -lean_object* l___private_Init_Lean_Class_2__consumeNLambdas(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Class_2__consumeNLambdas(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Class_2__consumeNLambdas___main(x_1, x_2); +x_3 = l___private_Lean_Class_2__consumeNLambdas___main(x_1, x_2); return x_3; } } @@ -6351,7 +6351,7 @@ lean_dec(x_11); x_15 = lean_unsigned_to_nat(0u); x_16 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_15); lean_dec(x_2); -x_17 = l___private_Init_Lean_Class_2__consumeNLambdas___main(x_16, x_14); +x_17 = l___private_Lean_Class_2__consumeNLambdas___main(x_16, x_14); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; @@ -6409,7 +6409,7 @@ lean_dec(x_22); x_27 = lean_unsigned_to_nat(0u); x_28 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_27); lean_dec(x_2); -x_29 = l___private_Init_Lean_Class_2__consumeNLambdas___main(x_28, x_26); +x_29 = l___private_Lean_Class_2__consumeNLambdas___main(x_28, x_26); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; @@ -6713,13 +6713,13 @@ return x_25; } } } -lean_object* initialize_Init_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Class(lean_object* w) { +lean_object* initialize_Lean_Class(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_PersistentHashMap_empty___at_Lean_ClassState_Inhabited___spec__3 = _init_l_PersistentHashMap_empty___at_Lean_ClassState_Inhabited___spec__3(); @@ -6785,14 +6785,14 @@ l_Lean_isOutParam___closed__1 = _init_l_Lean_isOutParam___closed__1(); lean_mark_persistent(l_Lean_isOutParam___closed__1); l_Lean_isOutParam___closed__2 = _init_l_Lean_isOutParam___closed__2(); lean_mark_persistent(l_Lean_isOutParam___closed__2); -l___private_Init_Lean_Class_1__checkOutParam___main___closed__1 = _init_l___private_Init_Lean_Class_1__checkOutParam___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Class_1__checkOutParam___main___closed__1); -l___private_Init_Lean_Class_1__checkOutParam___main___closed__2 = _init_l___private_Init_Lean_Class_1__checkOutParam___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Class_1__checkOutParam___main___closed__2); -l___private_Init_Lean_Class_1__checkOutParam___main___closed__3 = _init_l___private_Init_Lean_Class_1__checkOutParam___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Class_1__checkOutParam___main___closed__3); -l___private_Init_Lean_Class_1__checkOutParam___main___closed__4 = _init_l___private_Init_Lean_Class_1__checkOutParam___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Class_1__checkOutParam___main___closed__4); +l___private_Lean_Class_1__checkOutParam___main___closed__1 = _init_l___private_Lean_Class_1__checkOutParam___main___closed__1(); +lean_mark_persistent(l___private_Lean_Class_1__checkOutParam___main___closed__1); +l___private_Lean_Class_1__checkOutParam___main___closed__2 = _init_l___private_Lean_Class_1__checkOutParam___main___closed__2(); +lean_mark_persistent(l___private_Lean_Class_1__checkOutParam___main___closed__2); +l___private_Lean_Class_1__checkOutParam___main___closed__3 = _init_l___private_Lean_Class_1__checkOutParam___main___closed__3(); +lean_mark_persistent(l___private_Lean_Class_1__checkOutParam___main___closed__3); +l___private_Lean_Class_1__checkOutParam___main___closed__4 = _init_l___private_Lean_Class_1__checkOutParam___main___closed__4(); +lean_mark_persistent(l___private_Lean_Class_1__checkOutParam___main___closed__4); l_Lean_addClass___closed__1 = _init_l_Lean_addClass___closed__1(); lean_mark_persistent(l_Lean_addClass___closed__1); l_Lean_addClass___closed__2 = _init_l_Lean_addClass___closed__2(); diff --git a/stage0/stdlib/Lean/Compiler.c b/stage0/stdlib/Lean/Compiler.c new file mode 100644 index 0000000000..445978c42f --- /dev/null +++ b/stage0/stdlib/Lean/Compiler.c @@ -0,0 +1,57 @@ +// Lean compiler output +// Module: Lean.Compiler +// Imports: Lean.Compiler.InlineAttrs Lean.Compiler.Specialize Lean.Compiler.ConstFolding Lean.Compiler.ClosedTermCache Lean.Compiler.ExternAttr Lean.Compiler.ImplementedByAttr Lean.Compiler.NeverExtractAttr Lean.Compiler.IR +#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* initialize_Lean_Compiler_InlineAttrs(lean_object*); +lean_object* initialize_Lean_Compiler_Specialize(lean_object*); +lean_object* initialize_Lean_Compiler_ConstFolding(lean_object*); +lean_object* initialize_Lean_Compiler_ClosedTermCache(lean_object*); +lean_object* initialize_Lean_Compiler_ExternAttr(lean_object*); +lean_object* initialize_Lean_Compiler_ImplementedByAttr(lean_object*); +lean_object* initialize_Lean_Compiler_NeverExtractAttr(lean_object*); +lean_object* initialize_Lean_Compiler_IR(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Lean_Compiler(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_mk_io_result(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Compiler_InlineAttrs(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_Specialize(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_ConstFolding(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_ClosedTermCache(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_ExternAttr(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_ImplementedByAttr(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_NeverExtractAttr(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_IR(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_mk_io_result(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Lean/Compiler/ClosedTermCache.c b/stage0/stdlib/Lean/Compiler/ClosedTermCache.c similarity index 99% rename from stage0/stdlib/Init/Lean/Compiler/ClosedTermCache.c rename to stage0/stdlib/Lean/Compiler/ClosedTermCache.c index 0f781580d3..07328ced7a 100644 --- a/stage0/stdlib/Init/Lean/Compiler/ClosedTermCache.c +++ b/stage0/stdlib/Lean/Compiler/ClosedTermCache.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.ClosedTermCache -// Imports: Init.Lean.Environment +// Module: Lean.Compiler.ClosedTermCache +// Imports: Lean.Environment #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,7 +17,6 @@ extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_mkClosedTermCacheExtension___closed__3; size_t l_USize_add(size_t, size_t); lean_object* l_Array_iterateMAux___main___at_Lean_mkClosedTermCacheExtension___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_closedTermCacheExt___closed__3; lean_object* l_Lean_SMap_empty___at_Lean_mkClosedTermCacheExtension___spec__12___closed__2; lean_object* l_Lean_SMap_insert___at_Lean_mkClosedTermCacheExtension___spec__1(lean_object*, lean_object*, lean_object*); @@ -42,6 +41,7 @@ lean_object* l_Lean_mkClosedTermCacheExtension___lambda__2___boxed(lean_object*) lean_object* l_PersistentHashMap_find_x3f___at_Lean_getClosedTermName_x3f___spec__2(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkClosedTermCacheExtension___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_mkClosedTermCacheExtension___lambda__1(lean_object*, lean_object*); lean_object* l_AssocList_foldlM___main___at_Lean_mkClosedTermCacheExtension___spec__10(lean_object*, lean_object*); lean_object* l_Lean_closedTermCacheExt___elambda__4___rarg(lean_object*); @@ -71,7 +71,6 @@ lean_object* l_PersistentHashMap_findAux___main___at_Lean_getClosedTermName_x3f_ lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkClosedTermCacheExtension___spec__22(lean_object*, lean_object*); extern lean_object* l_IO_Error_Inhabited___closed__1; size_t lean_usize_modn(size_t, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_closedTermCacheExt; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkClosedTermCacheExtension___spec__22___closed__1; extern lean_object* l_PersistentHashMap_empty___rarg___closed__2; @@ -85,6 +84,7 @@ lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_ob size_t l_USize_land(size_t, size_t); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_mkClosedTermCacheExtension___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1272,7 +1272,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -1460,7 +1460,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkClosedTermC _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -2618,13 +2618,13 @@ lean_dec(x_2); return x_3; } } -lean_object* initialize_Init_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_ClosedTermCache(lean_object* w) { +lean_object* initialize_Lean_Compiler_ClosedTermCache(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_PersistentHashMap_empty___at_Lean_mkClosedTermCacheExtension___spec__14___closed__1 = _init_l_PersistentHashMap_empty___at_Lean_mkClosedTermCacheExtension___spec__14___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/ConstFolding.c b/stage0/stdlib/Lean/Compiler/ConstFolding.c similarity index 99% rename from stage0/stdlib/Init/Lean/Compiler/ConstFolding.c rename to stage0/stdlib/Lean/Compiler/ConstFolding.c index d6567fa4dd..1bb6cb476b 100644 --- a/stage0/stdlib/Init/Lean/Compiler/ConstFolding.c +++ b/stage0/stdlib/Lean/Compiler/ConstFolding.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.ConstFolding -// Imports: Init.System.Platform Init.Lean.Expr Init.Lean.Compiler.Util +// Module: Lean.Compiler.ConstFolding +// Imports: Init.System.Platform Lean.Expr Lean.Compiler.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -4382,20 +4382,20 @@ return x_5; } } lean_object* initialize_Init_System_Platform(lean_object*); -lean_object* initialize_Init_Lean_Expr(lean_object*); -lean_object* initialize_Init_Lean_Compiler_Util(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Compiler_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_ConstFolding(lean_object* w) { +lean_object* initialize_Lean_Compiler_ConstFolding(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_System_Platform(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_Util(lean_io_mk_world()); +res = initialize_Lean_Compiler_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Compiler_mkUIntTypeName___closed__1 = _init_l_Lean_Compiler_mkUIntTypeName___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/ExportAttr.c b/stage0/stdlib/Lean/Compiler/ExportAttr.c similarity index 92% rename from stage0/stdlib/Init/Lean/Compiler/ExportAttr.c rename to stage0/stdlib/Lean/Compiler/ExportAttr.c index e4769f7060..4b505ba002 100644 --- a/stage0/stdlib/Init/Lean/Compiler/ExportAttr.c +++ b/stage0/stdlib/Lean/Compiler/ExportAttr.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.ExportAttr -// Imports: Init.Lean.Attributes +// Module: Lean.Compiler.ExportAttr +// Imports: Lean.Attributes #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,9 +17,10 @@ lean_object* l_RBNode_find___main___at_Lean_getExportNameFor___spec__2___boxed(l lean_object* l_Lean_mkExportAttr(lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExportAttr___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExportAttr_2__isValidCppName___boxed(lean_object*); +lean_object* l___private_Lean_Compiler_ExportAttr_1__isValidCppId___boxed(lean_object*); lean_object* l_Lean_isExport___closed__1; lean_object* l_Lean_isExport___boxed(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParametricAttribute_getParam___at_Lean_getExportNameFor___spec__1(lean_object*, lean_object*, lean_object*); @@ -32,7 +33,7 @@ extern lean_object* l_Array_empty___closed__1; uint8_t l_Char_isDigit(uint32_t); lean_object* lean_io_ref_get(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkExportAttr___spec__7(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId(lean_object*); +uint8_t l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___lambda__1___closed__3; lean_object* l_Lean_mkExportAttr___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); @@ -43,12 +44,11 @@ lean_object* l_Array_binSearchAux___main___at_Lean_getExportNameFor___spec__3___ extern lean_object* l_Lean_Name_inhabited; extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExportAttr___spec__1___closed__1; -lean_object* l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName___main___boxed(lean_object*); lean_object* l_Lean_ParametricAttribute_getParam___at_Lean_getExportNameFor___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_mkExportAttr___lambda__1___closed__2; lean_object* lean_nat_add(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName___main(lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExportAttr___spec__1___lambda__1(lean_object*); extern lean_object* l_Lean_ParametricAttribute_Inhabited___closed__3; lean_object* lean_string_utf8_next(lean_object*, lean_object*); @@ -61,29 +61,27 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___lambda__1___closed__1; +uint8_t l___private_Lean_Compiler_ExportAttr_2__isValidCppName(lean_object*); lean_object* l_Lean_isExport___closed__2; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___lambda__1___closed__4; -lean_object* l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_mkExportAttr___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_attrParamSyntaxToIdentifier(lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__1; uint8_t l_Array_anyRangeMAux___main___at_Lean_mkExportAttr___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__2; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_getExportNameFor___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___boxed(lean_object*); -uint8_t l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(uint8_t, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__4; uint8_t l_Lean_isExport(lean_object*, lean_object*); uint8_t l_Char_isAlpha(uint32_t); -uint8_t l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName(lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_exportAttr; extern lean_object* l_Substring_drop___closed__1; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; @@ -94,6 +92,8 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__3; lean_object* lean_io_ref_reset(lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; +lean_object* l___private_Lean_Compiler_ExportAttr_2__isValidCppName___main___boxed(lean_object*); +uint8_t l___private_Lean_Compiler_ExportAttr_1__isValidCppId(lean_object*); lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___lambda__2(lean_object*, lean_object*, lean_object*); @@ -106,17 +106,17 @@ lean_object* lean_io_initializing(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExportAttr___spec__1___lambda__1___boxed(lean_object*); lean_object* l_RBNode_fold___main___at_Lean_mkExportAttr___spec__2(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName___boxed(lean_object*); +lean_object* l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -uint8_t l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___closed__5; lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExportAttr___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_ExportAttr_2__isValidCppName___main(lean_object*); +uint8_t l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExportAttr___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExportAttr___closed__3; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -uint8_t l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -212,7 +212,7 @@ return x_24; } } } -uint8_t l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -308,7 +308,7 @@ return x_24; } } } -uint8_t l___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId(lean_object* x_1) { +uint8_t l___private_Lean_Compiler_ExportAttr_1__isValidCppId(lean_object* x_1) { _start: { lean_object* x_2; uint32_t x_3; uint8_t x_4; @@ -330,7 +330,7 @@ x_8 = lean_nat_dec_le(x_6, x_7); if (x_8 == 0) { uint8_t x_9; -x_9 = l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(x_4, x_1, x_6, x_7); +x_9 = l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(x_4, x_1, x_6, x_7); lean_dec(x_6); if (x_9 == 0) { @@ -351,7 +351,7 @@ lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_dec(x_6); x_12 = l_String_splitAux___main___closed__1; x_13 = l_Substring_drop___closed__1; -x_14 = l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(x_4, x_12, x_13, x_2); +x_14 = l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(x_4, x_12, x_13, x_2); if (x_14 == 0) { uint8_t x_15; @@ -368,43 +368,43 @@ return x_16; } } } -lean_object* l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; uint8_t x_6; lean_object* x_7; x_5 = lean_unbox(x_1); lean_dec(x_1); -x_6 = l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(x_5, x_2, x_3, x_4); +x_6 = l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__1(x_5, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); x_7 = lean_box(x_6); return x_7; } } -lean_object* l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; uint8_t x_6; lean_object* x_7; x_5 = lean_unbox(x_1); lean_dec(x_1); -x_6 = l_String_anyAux___main___at___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(x_5, x_2, x_3, x_4); +x_6 = l_String_anyAux___main___at___private_Lean_Compiler_ExportAttr_1__isValidCppId___spec__2(x_5, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); x_7 = lean_box(x_6); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_ExportAttr_1__isValidCppId___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId(x_1); +x_2 = l___private_Lean_Compiler_ExportAttr_1__isValidCppId(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName___main(lean_object* x_1) { +uint8_t l___private_Lean_Compiler_ExportAttr_2__isValidCppName___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -415,7 +415,7 @@ x_3 = lean_ctor_get(x_1, 1); if (lean_obj_tag(x_2) == 0) { uint8_t x_9; -x_9 = l___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId(x_3); +x_9 = l___private_Lean_Compiler_ExportAttr_1__isValidCppId(x_3); return x_9; } else @@ -429,7 +429,7 @@ block_8: { uint8_t x_5; lean_dec(x_4); -x_5 = l___private_Init_Lean_Compiler_ExportAttr_1__isValidCppId(x_3); +x_5 = l___private_Lean_Compiler_ExportAttr_1__isValidCppId(x_3); if (x_5 == 0) { uint8_t x_6; @@ -451,29 +451,29 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_ExportAttr_2__isValidCppName___main___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName___main(x_1); +x_2 = l___private_Lean_Compiler_ExportAttr_2__isValidCppName___main(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName(lean_object* x_1) { +uint8_t l___private_Lean_Compiler_ExportAttr_2__isValidCppName(lean_object* x_1) { _start: { uint8_t x_2; -x_2 = l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName___main(x_1); +x_2 = l___private_Lean_Compiler_ExportAttr_2__isValidCppName___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_ExportAttr_2__isValidCppName___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName(x_1); +x_2 = l___private_Lean_Compiler_ExportAttr_2__isValidCppName(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; @@ -813,7 +813,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -1001,7 +1001,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkExportAttr_ _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -1662,7 +1662,7 @@ lean_object* x_6; uint8_t x_7; x_6 = lean_ctor_get(x_4, 0); lean_inc(x_6); lean_dec(x_4); -x_7 = l___private_Init_Lean_Compiler_ExportAttr_2__isValidCppName___main(x_6); +x_7 = l___private_Lean_Compiler_ExportAttr_2__isValidCppName___main(x_6); if (x_7 == 0) { lean_object* x_8; @@ -2115,13 +2115,13 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_ExportAttr(lean_object* w) { +lean_object* initialize_Lean_Compiler_ExportAttr(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExportAttr___spec__4___closed__1 = _init_l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExportAttr___spec__4___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/ExternAttr.c b/stage0/stdlib/Lean/Compiler/ExternAttr.c similarity index 83% rename from stage0/stdlib/Init/Lean/Compiler/ExternAttr.c rename to stage0/stdlib/Lean/Compiler/ExternAttr.c index 72b550a0d3..e799153dfa 100644 --- a/stage0/stdlib/Init/Lean/Compiler/ExternAttr.c +++ b/stage0/stdlib/Lean/Compiler/ExternAttr.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.ExternAttr -// Imports: Init.Data.Option.Basic Init.Lean.Expr Init.Lean.Environment Init.Lean.Attributes Init.Lean.ProjFns +// Module: Lean.Compiler.ExternAttr +// Imports: Init.Data.Option.Basic Lean.Expr Lean.Environment Lean.Attributes Lean.ProjFns #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,13 +15,11 @@ extern "C" { #endif lean_object* lean_string_push(lean_object*, uint32_t); lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_getExternEntryForAux(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* l_List_getD___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExternAttr(lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6; lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExternAttr___spec__1___lambda__1___boxed(lean_object*); lean_object* l_Lean_getExternNameFor___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); @@ -30,11 +28,11 @@ extern lean_object* l_Lean_mkProjectionFnInfoExtension___closed__3; extern lean_object* l_Prod_HasRepr___rarg___closed__1; lean_object* l_Lean_ExternAttrData_inhabited___closed__1; extern lean_object* l_Array_empty___closed__1; +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7; lean_object* l_Lean_expandExternPattern(lean_object*, lean_object*); lean_object* l_Lean_ParametricAttribute_getParam___at_Lean_getExternAttrData___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_get(lean_object*, lean_object*); lean_object* l_Lean_mkExternAttr___lambda__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_List_intersperse___main___rarg(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -43,25 +41,22 @@ lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_ExternEntry_backend___boxed(lean_object*); extern lean_object* l_Lean_Name_inhabited; extern lean_object* l_String_splitAux___main___closed__1; -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2; lean_object* l_Lean_getExternNameFor(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2; lean_object* l_RBNode_fold___main___at_Lean_mkExternAttr___spec__2___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExternAttr___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4; uint8_t l_Lean_Environment_isProjectionFn(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7; -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9; +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; extern lean_object* l_Lean_ParametricAttribute_Inhabited___closed__3; uint8_t l_Lean_Environment_isConstructor(lean_object*, lean_object*); uint8_t l_Not_Decidable___rarg(uint8_t); lean_object* l_Lean_expandExternPattern___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExternAttr___spec__4___closed__1; lean_object* l_Lean_ExternEntry_backend(lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isExternC(lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1; +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10; lean_object* l_Lean_ExternAttrData_inhabited; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); uint8_t l_Lean_isExtern(lean_object*, lean_object*); @@ -74,39 +69,41 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExternAttr___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_expandExternPatternAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7; lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); lean_object* l_Lean_expandExternPatternAux___main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5; +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6; +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_3__parseOptNum___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3; +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3; lean_object* l_Lean_registerParametricAttribute___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___boxed(lean_object*); lean_object* l_Lean_expandExternPatternAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExternAttr___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_3__parseOptNum___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkExternAttr___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_mkExternAttr___spec__3___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_List_reprAux___main___rarg___closed__1; lean_object* l_Lean_mkExternAttr___closed__1; -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6; extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__1; lean_object* l_Lean_isExtern___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_3__parseOptNum(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__2; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); lean_object* l_Lean_mkExternAttr___lambda__2___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_mkExternAttr___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(lean_object*, lean_object*, lean_object*); lean_object* l_String_Iterator_next(lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3; extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__4; lean_object* l_List_foldl___main___at_Lean_mkSimpleFnCall___spec__1___boxed(lean_object*, lean_object*); uint8_t l_String_Iterator_hasNext(lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData(lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; lean_object* l_Lean_isExternC___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_isIdOrAtom_x3f(lean_object*); extern lean_object* l_Option_HasRepr___rarg___closed__3; -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData(lean_object*); lean_object* lean_get_extern_attr_data(lean_object*, lean_object*); uint8_t l_UInt32_decEq(uint32_t, uint32_t); extern lean_object* l_Lean_Syntax_inhabited; @@ -119,50 +116,53 @@ lean_object* l_Array_binSearchAux___main___at_Lean_getExternAttrData___spec__3(l lean_object* l_Lean_mkExternAttr___closed__5; lean_object* l_Lean_addExtern___boxed(lean_object*, lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_getExternAttrData___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkExternAttr___spec__7(lean_object*, lean_object*); lean_object* l_Lean_getExternEntryFor(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2; lean_object* lean_io_ref_reset(lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1; lean_object* l_Lean_expandExternPatternAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getExternEntryForAux___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9; +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4; extern lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_registerParametricAttribute___spec__9___rarg___closed__1; +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8; lean_object* l_Lean_mkExternAttr___closed__4; lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* lean_io_initializing(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4; lean_object* l_Array_anyRangeMAux___main___at_Lean_mkExternAttr___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8; lean_object* lean_string_length(lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10; -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7; +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___boxed(lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_3__parseOptNum(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getExternEntryForAux___main___boxed(lean_object*, lean_object*); lean_object* l_String_Iterator_remainingBytes(lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1; lean_object* l_Lean_getExternEntryForAux___main(lean_object*, lean_object*); extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExternAttr___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3; -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_UInt32_decLe(uint32_t, uint32_t); lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExternAttr___spec__1___closed__1; lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExternAttr___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_mkSimpleFnCall(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getExternEntryFor___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5; -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8; lean_object* l_Lean_externAttr; lean_object* l_Lean_mkExternAttr___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1; +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5; lean_object* lean_uint32_to_nat(uint32_t); lean_object* l_RBNode_fold___main___at_Lean_mkExternAttr___spec__2(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8; lean_object* l_Lean_registerParametricAttribute___at_Lean_mkExternAttr___spec__1___lambda__1(lean_object*); -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4; +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries(lean_object*, lean_object*, lean_object*); lean_object* l_List_foldl___main___at_Lean_mkSimpleFnCall___spec__1(lean_object*, lean_object*); lean_object* l_Lean_ParametricAttribute_getParam___at_Lean_getExternAttrData___spec__1(lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); @@ -187,7 +187,7 @@ x_1 = l_Lean_ExternAttrData_inhabited___closed__1; return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1() { _start: { lean_object* x_1; @@ -195,17 +195,17 @@ x_1 = lean_mk_string("identifier expected"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1; +x_1 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3() { _start: { lean_object* x_1; @@ -213,17 +213,17 @@ x_1 = lean_mk_string("string literal expected"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3; +x_1 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5() { _start: { lean_object* x_1; @@ -231,7 +231,7 @@ x_1 = lean_mk_string("adhoc"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6() { _start: { lean_object* x_1; @@ -239,7 +239,7 @@ x_1 = lean_mk_string("inline"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7() { _start: { lean_object* x_1; @@ -247,17 +247,17 @@ x_1 = lean_mk_string("string or identifier expected"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7; +x_1 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -295,7 +295,7 @@ lean_object* x_15; lean_dec(x_10); lean_dec(x_8); lean_dec(x_3); -x_15 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4; +x_15 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4; return x_15; } else @@ -323,12 +323,12 @@ lean_object* x_21; lean_object* x_22; uint8_t x_23; x_21 = lean_ctor_get(x_13, 0); lean_inc(x_21); lean_dec(x_13); -x_22 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5; +x_22 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5; x_23 = lean_string_dec_eq(x_21, x_22); if (x_23 == 0) { lean_object* x_24; uint8_t x_25; -x_24 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6; +x_24 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6; x_25 = lean_string_dec_eq(x_21, x_24); lean_dec(x_21); if (x_25 == 0) @@ -342,7 +342,7 @@ lean_object* x_27; lean_dec(x_10); lean_dec(x_8); lean_dec(x_3); -x_27 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4; +x_27 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4; return x_27; } else @@ -379,7 +379,7 @@ lean_object* x_36; lean_dec(x_33); lean_dec(x_8); lean_dec(x_3); -x_36 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4; +x_36 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4; return x_36; } else @@ -426,7 +426,7 @@ lean_object* x_46; lean_dec(x_10); lean_dec(x_8); lean_dec(x_3); -x_46 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8; +x_46 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8; return x_46; } } @@ -437,7 +437,7 @@ lean_dec(x_7); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_47 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2; +x_47 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2; return x_47; } } @@ -452,33 +452,33 @@ return x_48; } } } -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1() { _start: { lean_object* x_1; @@ -486,61 +486,61 @@ x_1 = lean_mk_string("all"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___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_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1; +x_2 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2; +x_1 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3; +x_2 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3; 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* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4; +x_2 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4; 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_object* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5; +x_1 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7() { _start: { lean_object* x_1; @@ -548,17 +548,17 @@ x_1 = lean_mk_string("invalid extern attribute"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7; +x_1 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9() { _start: { lean_object* x_1; @@ -566,24 +566,24 @@ x_1 = lean_mk_string("unexpected kind of argument"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10() { +lean_object* _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9; +x_1 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { case 0: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6; +x_2 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6; return x_2; } case 1: @@ -637,7 +637,7 @@ if (lean_obj_tag(x_12) == 0) lean_object* x_13; lean_object* x_14; lean_dec(x_4); x_13 = lean_box(0); -x_14 = l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(x_3, x_9, x_13); +x_14 = l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main(x_3, x_9, x_13); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; @@ -704,13 +704,13 @@ if (x_27 == 0) lean_object* x_28; lean_dec(x_24); lean_dec(x_8); -x_28 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8; +x_28 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8; return x_28; } else { lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_29 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2; +x_29 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2; x_30 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_24); @@ -732,24 +732,24 @@ else { lean_object* x_43; lean_dec(x_4); -x_43 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10; +x_43 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10; return x_43; } } default: { lean_object* x_44; -x_44 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10; +x_44 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10; return x_44; } } } } -lean_object* l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData(x_1); +x_2 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData(x_1); lean_dec(x_1); return x_2; } @@ -1097,7 +1097,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -1285,7 +1285,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkExternAttr_ _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -1897,7 +1897,7 @@ lean_object* l_Lean_mkExternAttr___lambda__1(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData(x_3); +x_4 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData(x_3); return x_4; } } @@ -2308,7 +2308,7 @@ lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_ExternAttr_3__parseOptNum___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_ExternAttr_3__parseOptNum___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2392,11 +2392,11 @@ return x_25; } } } -lean_object* l___private_Init_Lean_Compiler_ExternAttr_3__parseOptNum(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_ExternAttr_3__parseOptNum(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_ExternAttr_3__parseOptNum___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_ExternAttr_3__parseOptNum___main(x_1, x_2, x_3); return x_4; } } @@ -2452,7 +2452,7 @@ else lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; x_18 = l_String_Iterator_next(x_3); x_19 = l_String_Iterator_remainingBytes(x_18); -x_20 = l___private_Init_Lean_Compiler_ExternAttr_3__parseOptNum___main(x_19, x_18, x_5); +x_20 = l___private_Lean_Compiler_ExternAttr_3__parseOptNum___main(x_19, x_18, x_5); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); x_22 = lean_ctor_get(x_20, 1); @@ -2614,7 +2614,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_4 = lean_ctor_get(x_2, 0); x_5 = lean_ctor_get(x_2, 1); x_6 = l_Lean_ExternEntry_backend(x_4); -x_7 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2; +x_7 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2; x_8 = lean_name_eq(x_6, x_7); if (x_8 == 0) { @@ -2777,7 +2777,7 @@ lean_dec(x_7); x_13 = lean_ctor_get(x_10, 1); lean_inc(x_13); lean_dec(x_10); -x_14 = l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1; +x_14 = l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1; x_15 = lean_string_dec_eq(x_13, x_14); lean_dec(x_13); if (x_15 == 0) @@ -2959,70 +2959,70 @@ return x_4; } } lean_object* initialize_Init_Data_Option_Basic(lean_object*); -lean_object* initialize_Init_Lean_Expr(lean_object*); -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Attributes(lean_object*); -lean_object* initialize_Init_Lean_ProjFns(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_ProjFns(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_ExternAttr(lean_object* w) { +lean_object* initialize_Lean_Compiler_ExternAttr(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Data_Option_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_ProjFns(lean_io_mk_world()); +res = initialize_Lean_ProjFns(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_ExternAttrData_inhabited___closed__1 = _init_l_Lean_ExternAttrData_inhabited___closed__1(); lean_mark_persistent(l_Lean_ExternAttrData_inhabited___closed__1); l_Lean_ExternAttrData_inhabited = _init_l_Lean_ExternAttrData_inhabited(); lean_mark_persistent(l_Lean_ExternAttrData_inhabited); -l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1 = _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1); -l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2 = _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2); -l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3 = _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3); -l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4 = _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4); -l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5 = _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5); -l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6 = _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6); -l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7 = _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7); -l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8 = _init_l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9); -l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10 = _init_l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10); +l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1 = _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__1); +l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2 = _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__2); +l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3 = _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__3); +l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4 = _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__4); +l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5 = _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__5); +l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6 = _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__6); +l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7 = _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__7); +l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8 = _init_l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_1__syntaxToExternEntries___main___closed__8); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__1); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__2); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__3); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__4); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__5); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__6); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__7); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__8); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__9); +l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10 = _init_l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10(); +lean_mark_persistent(l___private_Lean_Compiler_ExternAttr_2__syntaxToExternAttrData___closed__10); l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExternAttr___spec__4___closed__1 = _init_l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExternAttr___spec__4___closed__1(); lean_mark_persistent(l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkExternAttr___spec__4___closed__1); l_Lean_registerParametricAttribute___at_Lean_mkExternAttr___spec__1___closed__1 = _init_l_Lean_registerParametricAttribute___at_Lean_mkExternAttr___spec__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR.c b/stage0/stdlib/Lean/Compiler/IR.c similarity index 53% rename from stage0/stdlib/Init/Lean/Compiler/IR.c rename to stage0/stdlib/Lean/Compiler/IR.c index fdd38232c9..d77f63c36f 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR.c +++ b/stage0/stdlib/Lean/Compiler/IR.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR -// Imports: Init.Lean.Compiler.IR.Basic Init.Lean.Compiler.IR.Format Init.Lean.Compiler.IR.CompilerM Init.Lean.Compiler.IR.PushProj Init.Lean.Compiler.IR.ElimDeadVars Init.Lean.Compiler.IR.SimpCase Init.Lean.Compiler.IR.ResetReuse Init.Lean.Compiler.IR.NormIds Init.Lean.Compiler.IR.Checker Init.Lean.Compiler.IR.Borrow Init.Lean.Compiler.IR.Boxing Init.Lean.Compiler.IR.RC Init.Lean.Compiler.IR.ExpandResetReuse Init.Lean.Compiler.IR.UnboxResult Init.Lean.Compiler.IR.ElimDeadBranches Init.Lean.Compiler.IR.EmitC Init.Lean.Compiler.IR.CtorLayout +// Module: Lean.Compiler.IR +// Imports: Lean.Compiler.IR.Basic Lean.Compiler.IR.Format Lean.Compiler.IR.CompilerM Lean.Compiler.IR.PushProj Lean.Compiler.IR.ElimDeadVars Lean.Compiler.IR.SimpCase Lean.Compiler.IR.ResetReuse Lean.Compiler.IR.NormIds Lean.Compiler.IR.Checker Lean.Compiler.IR.Borrow Lean.Compiler.IR.Boxing Lean.Compiler.IR.RC Lean.Compiler.IR.ExpandResetReuse Lean.Compiler.IR.UnboxResult Lean.Compiler.IR.ElimDeadBranches Lean.Compiler.IR.EmitC Lean.Compiler.IR.CtorLayout #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,83 +14,83 @@ extern "C" { #endif uint8_t l_Lean_IR_ExplicitBoxing_requiresBoxedVersion(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__12; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__5(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__11; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__29; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__14; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__28; +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__3(lean_object*, lean_object*); lean_object* lean_ir_add_boxed_version(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__26; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__25; extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_IR_addBoxedVersionAux(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__31; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__1; lean_object* l_Lean_IR_getEnv___rarg(lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__6; lean_object* l_Lean_IR_explicitRC(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__13; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__23; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__21; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__24; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__9; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__27; lean_object* l_Lean_IR_Decl_insertResetReuse(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__10; lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__8; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__17; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__4; lean_object* l_Array_forMAux___main___at_Lean_IR_addDecls___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__16; lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__30; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__18; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__15; lean_object* lean_ir_compile(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__5; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__20; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__31; lean_object* l_Array_forMAux___main___at_Lean_IR_addBoxedVersionAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__6(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__4(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__3; +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__19; lean_object* l_Lean_IR_explicitBoxing(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Options_empty; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__25; lean_object* l_Lean_IR_addBoxedVersionAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_Lean_IR_checkDecls___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__28; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__14; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__7; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__12; +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__11; lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__29; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__26; extern lean_object* l_Lean_IR_tracePrefixOptionName; lean_object* l_Lean_IR_Decl_elimDead(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__21; lean_object* l_Lean_IR_Decl_simpCase(lean_object*); lean_object* l_Lean_IR_Decl_expandResetReuse(lean_object*); lean_object* l_Lean_IR_elimDeadBranches(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__6; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__22; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__20; +lean_object* l___private_Lean_Compiler_IR_1__compileAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__10; +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__5(lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_mkBoxedVersion(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__23; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__13; lean_object* l_Lean_IR_inferBorrow(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__27; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__4; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__9; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Decl_pushProj(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__8; lean_object* l_Lean_IR_Decl_normalizeIds(lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__16; extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__2(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__17; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_IR_declMapExt; extern lean_object* l_Lean_mkInitAttr___closed__2; -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__2; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__22; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__5; lean_object* l_Array_forMAux___main___at_Lean_IR_addBoxedVersionAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__6(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__7; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__24; +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__4(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__3; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___closed__19; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__15; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__18; +lean_object* l___private_Lean_Compiler_IR_1__compileAux___closed__30; +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -123,7 +123,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -156,7 +156,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -189,7 +189,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__4(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__4(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -222,7 +222,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__5(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -255,7 +255,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__6(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__6(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -288,7 +288,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__1() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -298,7 +298,7 @@ x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__2() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__2() { _start: { lean_object* x_1; @@ -306,17 +306,17 @@ x_1 = lean_mk_string("elim_dead_branches"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__3() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___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_Lean_Compiler_IR_1__compileAux___closed__2; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__4() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__4() { _start: { lean_object* x_1; @@ -324,17 +324,17 @@ x_1 = lean_mk_string("push_proj"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__5() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__4; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__6() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__6() { _start: { lean_object* x_1; @@ -342,17 +342,17 @@ x_1 = lean_mk_string("reset_reuse"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__7() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__6; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__8() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__8() { _start: { lean_object* x_1; @@ -360,17 +360,17 @@ x_1 = lean_mk_string("elim_dead"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__9() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__8; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__10() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__10() { _start: { lean_object* x_1; @@ -378,67 +378,67 @@ x_1 = lean_mk_string("simp_case"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__11() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__10; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__12() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__3; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__3; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__13() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__5; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__5; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__14() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__7; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__7; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__15() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__9; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__9; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__16() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__11; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__11; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__17() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__17() { _start: { lean_object* x_1; @@ -446,27 +446,27 @@ x_1 = lean_mk_string("borrow"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__18() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__17; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__17; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__19() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__18; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__18; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__20() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__20() { _start: { lean_object* x_1; @@ -474,27 +474,27 @@ x_1 = lean_mk_string("boxing"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__21() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__20; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__22() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__21; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__21; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__23() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__23() { _start: { lean_object* x_1; @@ -502,17 +502,17 @@ x_1 = lean_mk_string("rc"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__24() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__23; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__23; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__25() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__25() { _start: { lean_object* x_1; @@ -520,17 +520,17 @@ x_1 = lean_mk_string("expand_reset_reuse"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__26() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__25; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__25; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__27() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__27() { _start: { lean_object* x_1; @@ -538,54 +538,54 @@ x_1 = lean_mk_string("result"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__28() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__27; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__27; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__29() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__24; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__24; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__30() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__26; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__26; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__31() { +lean_object* _init_l___private_Lean_Compiler_IR_1__compileAux___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_IR_tracePrefixOptionName; -x_2 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__28; +x_2 = l___private_Lean_Compiler_IR_1__compileAux___closed__28; x_3 = l_Lean_Name_append___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_1__compileAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_4 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__1; +x_4 = l___private_Lean_Compiler_IR_1__compileAux___closed__1; x_5 = l_Lean_mkInitAttr___closed__2; lean_inc(x_1); -x_6 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_4, x_5, x_1, x_2, x_3); +x_6 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_4, x_5, x_1, x_2, x_3); x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_dec(x_6); @@ -606,51 +606,51 @@ lean_inc(x_13); lean_dec(x_11); lean_inc(x_12); x_14 = x_12; -x_15 = l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__1(x_8, x_14); +x_15 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__1(x_8, x_14); x_16 = x_15; lean_inc(x_16); x_17 = x_16; -x_18 = l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__2(x_8, x_17); +x_18 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__2(x_8, x_17); x_19 = x_18; lean_inc(x_19); x_20 = x_19; -x_21 = l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__3(x_8, x_20); +x_21 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__3(x_8, x_20); x_22 = x_21; lean_inc(x_22); x_23 = x_22; -x_24 = l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__4(x_8, x_23); +x_24 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__4(x_8, x_23); x_25 = x_24; lean_inc(x_25); x_26 = x_25; -x_27 = l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__5(x_8, x_26); +x_27 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__5(x_8, x_26); x_28 = x_27; -x_29 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__12; -x_30 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__3; -x_31 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_29, x_30, x_12, x_2, x_13); +x_29 = l___private_Lean_Compiler_IR_1__compileAux___closed__12; +x_30 = l___private_Lean_Compiler_IR_1__compileAux___closed__3; +x_31 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_29, x_30, x_12, x_2, x_13); x_32 = lean_ctor_get(x_31, 1); lean_inc(x_32); lean_dec(x_31); -x_33 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__13; -x_34 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__5; -x_35 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_33, x_34, x_16, x_2, x_32); +x_33 = l___private_Lean_Compiler_IR_1__compileAux___closed__13; +x_34 = l___private_Lean_Compiler_IR_1__compileAux___closed__5; +x_35 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_33, x_34, x_16, x_2, x_32); x_36 = lean_ctor_get(x_35, 1); lean_inc(x_36); lean_dec(x_35); -x_37 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__14; -x_38 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__7; -x_39 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_37, x_38, x_19, x_2, x_36); +x_37 = l___private_Lean_Compiler_IR_1__compileAux___closed__14; +x_38 = l___private_Lean_Compiler_IR_1__compileAux___closed__7; +x_39 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_37, x_38, x_19, x_2, x_36); x_40 = lean_ctor_get(x_39, 1); lean_inc(x_40); lean_dec(x_39); -x_41 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__15; -x_42 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__9; -x_43 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_41, x_42, x_22, x_2, x_40); +x_41 = l___private_Lean_Compiler_IR_1__compileAux___closed__15; +x_42 = l___private_Lean_Compiler_IR_1__compileAux___closed__9; +x_43 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_41, x_42, x_22, x_2, x_40); x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec(x_43); -x_45 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__16; -x_46 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__11; -x_47 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_45, x_46, x_25, x_2, x_44); +x_45 = l___private_Lean_Compiler_IR_1__compileAux___closed__16; +x_46 = l___private_Lean_Compiler_IR_1__compileAux___closed__11; +x_47 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_45, x_46, x_25, x_2, x_44); x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); @@ -660,10 +660,10 @@ lean_inc(x_50); x_51 = lean_ctor_get(x_49, 1); lean_inc(x_51); lean_dec(x_49); -x_52 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__19; -x_53 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__18; +x_52 = l___private_Lean_Compiler_IR_1__compileAux___closed__19; +x_53 = l___private_Lean_Compiler_IR_1__compileAux___closed__18; lean_inc(x_50); -x_54 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_52, x_53, x_50, x_2, x_51); +x_54 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_52, x_53, x_50, x_2, x_51); x_55 = lean_ctor_get(x_54, 1); lean_inc(x_55); lean_dec(x_54); @@ -673,10 +673,10 @@ lean_inc(x_57); x_58 = lean_ctor_get(x_56, 1); lean_inc(x_58); lean_dec(x_56); -x_59 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__22; -x_60 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__21; +x_59 = l___private_Lean_Compiler_IR_1__compileAux___closed__22; +x_60 = l___private_Lean_Compiler_IR_1__compileAux___closed__21; lean_inc(x_57); -x_61 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_59, x_60, x_57, x_2, x_58); +x_61 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_59, x_60, x_57, x_2, x_58); x_62 = lean_ctor_get(x_61, 1); lean_inc(x_62); lean_dec(x_61); @@ -688,33 +688,33 @@ lean_inc(x_65); lean_dec(x_63); lean_inc(x_64); x_66 = x_64; -x_67 = l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__6(x_8, x_66); +x_67 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__6(x_8, x_66); x_68 = x_67; lean_inc(x_68); x_69 = x_68; -x_70 = l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_1__compileAux___spec__1(x_8, x_69); +x_70 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_1__compileAux___spec__1(x_8, x_69); x_71 = x_70; -x_72 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__29; -x_73 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__24; -x_74 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_72, x_73, x_64, x_2, x_65); +x_72 = l___private_Lean_Compiler_IR_1__compileAux___closed__29; +x_73 = l___private_Lean_Compiler_IR_1__compileAux___closed__24; +x_74 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_72, x_73, x_64, x_2, x_65); x_75 = lean_ctor_get(x_74, 1); lean_inc(x_75); lean_dec(x_74); -x_76 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__30; -x_77 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__26; -x_78 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_76, x_77, x_68, x_2, x_75); +x_76 = l___private_Lean_Compiler_IR_1__compileAux___closed__30; +x_77 = l___private_Lean_Compiler_IR_1__compileAux___closed__26; +x_78 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_76, x_77, x_68, x_2, x_75); x_79 = lean_ctor_get(x_78, 1); lean_inc(x_79); lean_dec(x_78); lean_inc(x_71); -x_80 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_33, x_34, x_71, x_2, x_79); +x_80 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_33, x_34, x_71, x_2, x_79); x_81 = lean_ctor_get(x_80, 1); lean_inc(x_81); lean_dec(x_80); -x_82 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__31; -x_83 = l___private_Init_Lean_Compiler_IR_1__compileAux___closed__28; +x_82 = l___private_Lean_Compiler_IR_1__compileAux___closed__31; +x_83 = l___private_Lean_Compiler_IR_1__compileAux___closed__28; lean_inc(x_71); -x_84 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_82, x_83, x_71, x_2, x_81); +x_84 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_82, x_83, x_71, x_2, x_81); x_85 = lean_ctor_get(x_84, 1); lean_inc(x_85); lean_dec(x_84); @@ -800,11 +800,11 @@ return x_102; } } } -lean_object* l___private_Init_Lean_Compiler_IR_1__compileAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_1__compileAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_1__compileAux(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_1__compileAux(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -817,7 +817,7 @@ x_4 = l_Array_empty___closed__1; x_5 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_4); -x_6 = l___private_Init_Lean_Compiler_IR_1__compileAux(x_3, x_2, x_5); +x_6 = l___private_Lean_Compiler_IR_1__compileAux(x_3, x_2, x_5); lean_dec(x_2); if (lean_obj_tag(x_6) == 0) { @@ -1071,141 +1071,141 @@ lean_ctor_set(x_9, 0, x_8); return x_9; } } -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Format(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_PushProj(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_ElimDeadVars(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_SimpCase(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_ResetReuse(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_NormIds(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Checker(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Borrow(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Boxing(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_RC(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_ExpandResetReuse(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_UnboxResult(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_ElimDeadBranches(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_EmitC(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_CtorLayout(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Format(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object*); +lean_object* initialize_Lean_Compiler_IR_PushProj(lean_object*); +lean_object* initialize_Lean_Compiler_IR_ElimDeadVars(lean_object*); +lean_object* initialize_Lean_Compiler_IR_SimpCase(lean_object*); +lean_object* initialize_Lean_Compiler_IR_ResetReuse(lean_object*); +lean_object* initialize_Lean_Compiler_IR_NormIds(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Checker(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Borrow(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Boxing(lean_object*); +lean_object* initialize_Lean_Compiler_IR_RC(lean_object*); +lean_object* initialize_Lean_Compiler_IR_ExpandResetReuse(lean_object*); +lean_object* initialize_Lean_Compiler_IR_UnboxResult(lean_object*); +lean_object* initialize_Lean_Compiler_IR_ElimDeadBranches(lean_object*); +lean_object* initialize_Lean_Compiler_IR_EmitC(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CtorLayout(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Format(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_PushProj(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_PushProj(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_ElimDeadVars(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_ElimDeadVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_SimpCase(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_SimpCase(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_ResetReuse(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_ResetReuse(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_NormIds(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_NormIds(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Checker(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Checker(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Borrow(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Borrow(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Boxing(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Boxing(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_RC(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_RC(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_ExpandResetReuse(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_ExpandResetReuse(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_UnboxResult(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_UnboxResult(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_ElimDeadBranches(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_ElimDeadBranches(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_EmitC(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_EmitC(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_CtorLayout(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CtorLayout(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__1 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__1); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__2 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__2); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__3 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__3); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__4 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__4); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__5 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__5); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__6 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__6); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__7 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__7); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__8 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__8); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__9 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__9); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__10 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__10); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__11 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__11); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__12 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__12); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__13 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__13); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__14 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__14); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__15 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__15); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__16 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__16); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__17 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__17); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__18 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__18); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__19 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__19); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__20 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__20); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__21 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__21); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__22 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__22); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__23 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__23); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__24 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__24); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__25 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__25); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__26 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__26); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__27 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__27); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__28 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__28); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__29 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__29(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__29); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__30 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__30(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__30); -l___private_Init_Lean_Compiler_IR_1__compileAux___closed__31 = _init_l___private_Init_Lean_Compiler_IR_1__compileAux___closed__31(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_1__compileAux___closed__31); +l___private_Lean_Compiler_IR_1__compileAux___closed__1 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__1); +l___private_Lean_Compiler_IR_1__compileAux___closed__2 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__2(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__2); +l___private_Lean_Compiler_IR_1__compileAux___closed__3 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__3(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__3); +l___private_Lean_Compiler_IR_1__compileAux___closed__4 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__4(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__4); +l___private_Lean_Compiler_IR_1__compileAux___closed__5 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__5(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__5); +l___private_Lean_Compiler_IR_1__compileAux___closed__6 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__6(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__6); +l___private_Lean_Compiler_IR_1__compileAux___closed__7 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__7(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__7); +l___private_Lean_Compiler_IR_1__compileAux___closed__8 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__8(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__8); +l___private_Lean_Compiler_IR_1__compileAux___closed__9 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__9(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__9); +l___private_Lean_Compiler_IR_1__compileAux___closed__10 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__10(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__10); +l___private_Lean_Compiler_IR_1__compileAux___closed__11 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__11(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__11); +l___private_Lean_Compiler_IR_1__compileAux___closed__12 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__12(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__12); +l___private_Lean_Compiler_IR_1__compileAux___closed__13 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__13(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__13); +l___private_Lean_Compiler_IR_1__compileAux___closed__14 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__14(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__14); +l___private_Lean_Compiler_IR_1__compileAux___closed__15 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__15(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__15); +l___private_Lean_Compiler_IR_1__compileAux___closed__16 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__16(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__16); +l___private_Lean_Compiler_IR_1__compileAux___closed__17 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__17(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__17); +l___private_Lean_Compiler_IR_1__compileAux___closed__18 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__18(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__18); +l___private_Lean_Compiler_IR_1__compileAux___closed__19 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__19(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__19); +l___private_Lean_Compiler_IR_1__compileAux___closed__20 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__20(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__20); +l___private_Lean_Compiler_IR_1__compileAux___closed__21 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__21(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__21); +l___private_Lean_Compiler_IR_1__compileAux___closed__22 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__22(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__22); +l___private_Lean_Compiler_IR_1__compileAux___closed__23 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__23(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__23); +l___private_Lean_Compiler_IR_1__compileAux___closed__24 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__24(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__24); +l___private_Lean_Compiler_IR_1__compileAux___closed__25 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__25(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__25); +l___private_Lean_Compiler_IR_1__compileAux___closed__26 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__26(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__26); +l___private_Lean_Compiler_IR_1__compileAux___closed__27 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__27(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__27); +l___private_Lean_Compiler_IR_1__compileAux___closed__28 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__28(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__28); +l___private_Lean_Compiler_IR_1__compileAux___closed__29 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__29(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__29); +l___private_Lean_Compiler_IR_1__compileAux___closed__30 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__30(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__30); +l___private_Lean_Compiler_IR_1__compileAux___closed__31 = _init_l___private_Lean_Compiler_IR_1__compileAux___closed__31(); +lean_mark_persistent(l___private_Lean_Compiler_IR_1__compileAux___closed__31); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/Basic.c b/stage0/stdlib/Lean/Compiler/IR/Basic.c similarity index 99% rename from stage0/stdlib/Init/Lean/Compiler/IR/Basic.c rename to stage0/stdlib/Lean/Compiler/IR/Basic.c index cecb7e55dd..ca4bbe1fcb 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/Basic.c +++ b/stage0/stdlib/Lean/Compiler/IR/Basic.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.Basic -// Imports: Init.Data.Array Init.Lean.Data.KVMap Init.Lean.Data.Name Init.Lean.Data.Format Init.Lean.Compiler.ExternAttr +// Module: Lean.Compiler.IR.Basic +// Imports: Init.Data.Array Lean.Data.KVMap Lean.Data.Name Lean.Data.Format Lean.Compiler.ExternAttr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13269,28 +13269,28 @@ return x_13; } } lean_object* initialize_Init_Data_Array(lean_object*); -lean_object* initialize_Init_Lean_Data_KVMap(lean_object*); -lean_object* initialize_Init_Lean_Data_Name(lean_object*); -lean_object* initialize_Init_Lean_Data_Format(lean_object*); -lean_object* initialize_Init_Lean_Compiler_ExternAttr(lean_object*); +lean_object* initialize_Lean_Data_KVMap(lean_object*); +lean_object* initialize_Lean_Data_Name(lean_object*); +lean_object* initialize_Lean_Data_Format(lean_object*); +lean_object* initialize_Lean_Compiler_ExternAttr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Data_Array(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_KVMap(lean_io_mk_world()); +res = initialize_Lean_Data_KVMap(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Name(lean_io_mk_world()); +res = initialize_Lean_Data_Name(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Format(lean_io_mk_world()); +res = initialize_Lean_Data_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_ExternAttr(lean_io_mk_world()); +res = initialize_Lean_Compiler_ExternAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_VarId_HasToString___closed__1 = _init_l_Lean_IR_VarId_HasToString___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/Borrow.c b/stage0/stdlib/Lean/Compiler/IR/Borrow.c similarity index 99% rename from stage0/stdlib/Init/Lean/Compiler/IR/Borrow.c rename to stage0/stdlib/Lean/Compiler/IR/Borrow.c index 009f0f2cd9..1119210623 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/Borrow.c +++ b/stage0/stdlib/Lean/Compiler/IR/Borrow.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.Borrow -// Imports: Init.Data.Nat Init.Lean.Compiler.ExportAttr Init.Lean.Compiler.IR.CompilerM Init.Lean.Compiler.IR.NormIds +// Module: Lean.Compiler.IR.Borrow +// Imports: Init.Data.Nat Lean.Compiler.ExportAttr Lean.Compiler.IR.CompilerM Lean.Compiler.IR.NormIds #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -21,7 +21,6 @@ lean_object* l_Lean_IR_Borrow_mkInitParamMap___closed__1; lean_object* l_Lean_IR_inferBorrow___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_HasToString___boxed(lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); -extern lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_IR_Borrow_isOwned(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_mkInitParamMap(lean_object*, lean_object*); @@ -44,6 +43,7 @@ lean_object* l_Lean_IR_Borrow_OwnedSet_contains___boxed(lean_object*, lean_objec lean_object* l_ReaderT_Monad___rarg(lean_object*); lean_object* l_Lean_IR_Borrow_whileModifingAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_OwnedSet_Hashable___closed__1; +extern lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; extern lean_object* l_Lean_IR_Inhabited; lean_object* lean_array_get_size(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); @@ -84,6 +84,7 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_getCurrFn(lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_IR_Borrow_ApplyParamMap_visitFnBody___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_ApplyParamMap_visitFnBody(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Syntax_6__formatInfo___closed__1; lean_object* l_Lean_IR_Borrow_whileModifingAux___main___at_Lean_IR_Borrow_collectDecls___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_Lean_HasFormat___closed__1; size_t l_Lean_IR_Borrow_ParamMap_getHash(lean_object*); @@ -132,7 +133,6 @@ lean_object* l_Lean_IR_Borrow_ownParamsUsingArgs(lean_object*, lean_object*, lea lean_object* l_Array_forMAux___main___at_Lean_IR_Borrow_collectFnBody___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_Lean_IR_Borrow_ownArgsIfParam___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isExport(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; extern lean_object* l_Lean_IR_Decl_Inhabited; lean_object* l_Lean_IR_Borrow_markModified(lean_object*); size_t l_Lean_IR_Borrow_OwnedSet_getHash(lean_object*); @@ -192,13 +192,13 @@ lean_object* l_Lean_IR_Borrow_ParamMap_Hashable___closed__1; lean_object* l_Lean_IR_Decl_params(lean_object*); uint8_t l_HashMapImp_contains___at_Lean_IR_Borrow_OwnedSet_contains___spec__1(lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_applyParamMap___boxed(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Syntax_6__formatInfo___closed__1; lean_object* l_Lean_IR_Borrow_OwnedSet_getHash___boxed(lean_object*); lean_object* l_Lean_IR_Borrow_collectDecls(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_getParamInfo(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_getCurrFn___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_ownVar(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Borrow_ParamMap_fmt___boxed(lean_object*); +extern lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; lean_object* l_Lean_IR_Borrow_OwnedSet_HasBeq___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_IR_Borrow_InitParamMap_initBorrow___spec__1(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -878,7 +878,7 @@ x_23 = l_Lean_Name_toString___closed__1; x_24 = l_Lean_Name_toStringWithSep___main(x_23, x_21); x_25 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_25, 0, x_24); -x_26 = l___private_Init_Lean_Syntax_6__formatInfo___closed__1; +x_26 = l___private_Lean_Syntax_6__formatInfo___closed__1; x_27 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -952,12 +952,12 @@ x_7 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); x_8 = 0; -x_9 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; +x_9 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; x_10 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_7); lean_ctor_set_uint8(x_10, sizeof(void*)*2, x_8); -x_11 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; +x_11 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; x_12 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -4495,24 +4495,24 @@ return x_4; } } lean_object* initialize_Init_Data_Nat(lean_object*); -lean_object* initialize_Init_Lean_Compiler_ExportAttr(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_NormIds(lean_object*); +lean_object* initialize_Lean_Compiler_ExportAttr(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object*); +lean_object* initialize_Lean_Compiler_IR_NormIds(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_Borrow(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_Borrow(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Data_Nat(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_ExportAttr(lean_io_mk_world()); +res = initialize_Lean_Compiler_ExportAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_NormIds(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_NormIds(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_Borrow_OwnedSet_HasBeq___closed__1 = _init_l_Lean_IR_Borrow_OwnedSet_HasBeq___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/Boxing.c b/stage0/stdlib/Lean/Compiler/IR/Boxing.c similarity index 98% rename from stage0/stdlib/Init/Lean/Compiler/IR/Boxing.c rename to stage0/stdlib/Lean/Compiler/IR/Boxing.c index 5363cea23d..581600ea1c 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/Boxing.c +++ b/stage0/stdlib/Lean/Compiler/IR/Boxing.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.Boxing -// Imports: Init.Control.EState Init.Control.Reader Init.Data.AssocList Init.Data.Nat Init.Lean.Runtime Init.Lean.Compiler.ClosedTermCache Init.Lean.Compiler.ExternAttr Init.Lean.Compiler.IR.Basic Init.Lean.Compiler.IR.CompilerM Init.Lean.Compiler.IR.FreeVars Init.Lean.Compiler.IR.ElimDeadVars +// Module: Lean.Compiler.IR.Boxing +// Imports: Init.Control.EState Init.Control.Reader Init.Data.AssocList Init.Data.Nat Lean.Runtime Lean.Compiler.ClosedTermCache Lean.Compiler.ExternAttr Lean.Compiler.IR.Basic Lean.Compiler.IR.CompilerM Lean.Compiler.IR.FreeVars Lean.Compiler.IR.ElimDeadVars #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,7 +14,6 @@ extern "C" { #endif uint8_t l_Lean_IR_ExplicitBoxing_requiresBoxedVersion(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_ExplicitBoxing_eqvTypes(lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_castResultIfNeeded___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_addBoxedVersions(lean_object*, lean_object*); @@ -24,6 +23,7 @@ lean_object* l_Lean_IR_ExplicitBoxing_visitFnBody___main(lean_object*, lean_obje lean_object* l_Lean_IR_ExplicitBoxing_mkBoxedName___closed__1; lean_object* l_Lean_IR_ExplicitBoxing_mkBoxedName(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_ExplicitBoxing_boxArgsIfNeeded___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Boxing_1__mkFresh(lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_castArgsIfNeededAux___at_Lean_IR_ExplicitBoxing_boxArgsIfNeeded___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_castArgsIfNeededAux___at_Lean_IR_ExplicitBoxing_visitFnBody___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_getVarType___boxed(lean_object*, lean_object*, lean_object*); @@ -32,7 +32,6 @@ lean_object* l_Lean_IR_ExplicitBoxing_withJDecl(lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_IR_ExplicitBoxing_getScrutineeType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_closureMaxArgs; lean_object* l_Lean_IR_ExplicitBoxing_withParams(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Boxing_1__mkFresh(lean_object*); lean_object* l_ReaderT_Monad___rarg(lean_object*); lean_object* l_Lean_IR_LocalContext_getJPParams(lean_object*, lean_object*); uint8_t l_Lean_IR_CtorInfo_isScalar(lean_object*); @@ -42,6 +41,7 @@ lean_object* l_Lean_IR_ExplicitBoxing_mkCast(lean_object*, lean_object*, lean_ob lean_object* l_Lean_IR_getEnv___rarg(lean_object*); lean_object* l_Nat_foldMAux___main___at_Lean_IR_ExplicitBoxing_mkBoxedVersionAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Id_monad; +lean_object* l___private_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_explicitBoxing___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_mkFresh(lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_boxArgsIfNeeded___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -50,8 +50,8 @@ lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_castArgIfNeeded(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_addBoxedVersions___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_Decl_resultType(lean_object*); +lean_object* l___private_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Decl_name(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitBoxing_getLocalContext(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_IR_ExplicitBoxing_getScrutineeType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_IR_ExplicitBoxing_requiresBoxedVersion___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -200,7 +200,7 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_Boxing_1__mkFresh(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Boxing_1__mkFresh(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -388,7 +388,7 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; x_8 = lean_unsigned_to_nat(0u); x_9 = lean_array_fset(x_2, x_1, x_8); -x_10 = l___private_Init_Lean_Compiler_IR_Boxing_1__mkFresh(x_3); +x_10 = l___private_Lean_Compiler_IR_Boxing_1__mkFresh(x_3); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); @@ -459,7 +459,7 @@ else { lean_object* x_25; uint8_t x_26; lean_free_object(x_5); -x_25 = l___private_Init_Lean_Compiler_IR_Boxing_1__mkFresh(x_6); +x_25 = l___private_Lean_Compiler_IR_Boxing_1__mkFresh(x_6); x_26 = !lean_is_exclusive(x_25); if (x_26 == 0) { @@ -559,7 +559,7 @@ goto _start; else { lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_60 = l___private_Init_Lean_Compiler_IR_Boxing_1__mkFresh(x_6); +x_60 = l___private_Lean_Compiler_IR_Boxing_1__mkFresh(x_6); x_61 = lean_ctor_get(x_60, 0); lean_inc(x_61); x_62 = lean_ctor_get(x_60, 1); @@ -658,7 +658,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_14, 1); lean_inc(x_17); lean_dec(x_14); -x_18 = l___private_Init_Lean_Compiler_IR_Boxing_1__mkFresh(x_15); +x_18 = l___private_Lean_Compiler_IR_Boxing_1__mkFresh(x_15); x_19 = !lean_is_exclusive(x_18); if (x_19 == 0) { @@ -705,7 +705,7 @@ else { lean_object* x_36; uint8_t x_37; lean_free_object(x_18); -x_36 = l___private_Init_Lean_Compiler_IR_Boxing_1__mkFresh(x_21); +x_36 = l___private_Lean_Compiler_IR_Boxing_1__mkFresh(x_21); x_37 = !lean_is_exclusive(x_36); if (x_37 == 0) { @@ -824,7 +824,7 @@ return x_78; else { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_79 = l___private_Init_Lean_Compiler_IR_Boxing_1__mkFresh(x_63); +x_79 = l___private_Lean_Compiler_IR_Boxing_1__mkFresh(x_63); x_80 = lean_ctor_get(x_79, 0); lean_inc(x_80); x_81 = lean_ctor_get(x_79, 1); @@ -1684,7 +1684,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_IR_ExplicitBoxing_withJDecl___rarg), 6, return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -1866,11 +1866,11 @@ return x_37; } } } -lean_object* l___private_Init_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing___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___private_Init_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -1959,7 +1959,7 @@ lean_object* l_Lean_IR_ExplicitBoxing_mkCast(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_6; lean_object* x_7; -x_6 = l___private_Init_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing(x_1, x_2, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_Boxing_2__isExpensiveConstantValueBoxing(x_1, x_2, x_4, x_5); x_7 = lean_ctor_get(x_6, 0); lean_inc(x_7); if (lean_obj_tag(x_7) == 0) @@ -7384,15 +7384,15 @@ lean_object* initialize_Init_Control_EState(lean_object*); lean_object* initialize_Init_Control_Reader(lean_object*); lean_object* initialize_Init_Data_AssocList(lean_object*); lean_object* initialize_Init_Data_Nat(lean_object*); -lean_object* initialize_Init_Lean_Runtime(lean_object*); -lean_object* initialize_Init_Lean_Compiler_ClosedTermCache(lean_object*); -lean_object* initialize_Init_Lean_Compiler_ExternAttr(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_FreeVars(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_ElimDeadVars(lean_object*); +lean_object* initialize_Lean_Runtime(lean_object*); +lean_object* initialize_Lean_Compiler_ClosedTermCache(lean_object*); +lean_object* initialize_Lean_Compiler_ExternAttr(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object*); +lean_object* initialize_Lean_Compiler_IR_FreeVars(lean_object*); +lean_object* initialize_Lean_Compiler_IR_ElimDeadVars(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_Boxing(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_Boxing(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -7408,25 +7408,25 @@ lean_dec_ref(res); res = initialize_Init_Data_Nat(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Runtime(lean_io_mk_world()); +res = initialize_Lean_Runtime(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_ClosedTermCache(lean_io_mk_world()); +res = initialize_Lean_Compiler_ClosedTermCache(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_ExternAttr(lean_io_mk_world()); +res = initialize_Lean_Compiler_ExternAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_ElimDeadVars(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_ElimDeadVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_ExplicitBoxing_mkBoxedName___closed__1 = _init_l_Lean_IR_ExplicitBoxing_mkBoxedName___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/Checker.c b/stage0/stdlib/Lean/Compiler/IR/Checker.c similarity index 98% rename from stage0/stdlib/Init/Lean/Compiler/IR/Checker.c rename to stage0/stdlib/Lean/Compiler/IR/Checker.c index 3bd6a11352..7db7c85048 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/Checker.c +++ b/stage0/stdlib/Lean/Compiler/IR/Checker.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.Checker -// Imports: Init.Lean.Compiler.IR.CompilerM Init.Lean.Compiler.IR.Format +// Module: Lean.Compiler.IR.Checker +// Imports: Lean.Compiler.IR.CompilerM Lean.Compiler.IR.Format #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -90,6 +90,7 @@ lean_object* l_Lean_IR_Checker_checkScalarType___boxed(lean_object*, lean_object lean_object* l_Lean_IR_checkDecl___closed__2; lean_object* l_Lean_IR_checkDecl(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Checker_checkObjVar(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main(lean_object*); lean_object* l_Lean_IR_Checker_markIndex___closed__2; lean_object* l_Lean_IR_Checker_checkExpr___closed__2; lean_object* l_Lean_IR_Checker_markIndex___closed__1; @@ -121,7 +122,6 @@ lean_object* l_Lean_IR_Checker_checkFnBody(lean_object*, lean_object*, lean_obje lean_object* l_Lean_IR_Checker_checkFullApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Checker_checkJP___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Checker_withParams(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_IR_Checker_checkScalarVar___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_Checker_withParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -699,7 +699,7 @@ lean_dec(x_5); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_7 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_7 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); lean_dec(x_1); x_8 = l_Lean_Options_empty; x_9 = l_Lean_Format_pretty(x_7, x_8); @@ -744,7 +744,7 @@ x_4 = l_Lean_IR_IRType_isObj(x_1); 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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_5 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_5 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); x_6 = l_Lean_Options_empty; x_7 = l_Lean_Format_pretty(x_5, x_6); x_8 = l_Lean_IR_Checker_checkType___closed__1; @@ -788,7 +788,7 @@ x_4 = l_Lean_IR_IRType_isScalar(x_1); 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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_5 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_5 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); x_6 = l_Lean_Options_empty; x_7 = l_Lean_Format_pretty(x_5, x_6); x_8 = l_Lean_IR_Checker_checkType___closed__1; @@ -956,7 +956,7 @@ lean_dec(x_21); if (x_22 == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_23 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_20); +x_23 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_20); lean_dec(x_20); x_24 = l_Lean_Options_empty; x_25 = l_Lean_Format_pretty(x_23, x_24); @@ -992,7 +992,7 @@ lean_dec(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; -x_34 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_31); +x_34 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_31); lean_dec(x_31); x_35 = l_Lean_Options_empty; x_36 = l_Lean_Format_pretty(x_34, x_35); @@ -1038,7 +1038,7 @@ lean_dec(x_46); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_48 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_44); +x_48 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_44); lean_dec(x_44); x_49 = l_Lean_Options_empty; x_50 = l_Lean_Format_pretty(x_48, x_49); @@ -1161,7 +1161,7 @@ x_20 = l_Lean_IR_IRType_isObj(x_19); 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; -x_21 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_19); +x_21 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_19); lean_dec(x_19); x_22 = l_Lean_Options_empty; x_23 = l_Lean_Format_pretty(x_21, x_22); @@ -1194,7 +1194,7 @@ x_30 = l_Lean_IR_IRType_isObj(x_29); if (x_30 == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_31 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_29); +x_31 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_29); lean_dec(x_29); x_32 = l_Lean_Options_empty; x_33 = l_Lean_Format_pretty(x_31, x_32); @@ -1237,7 +1237,7 @@ x_43 = l_Lean_IR_IRType_isObj(x_41); if (x_43 == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_44 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_41); +x_44 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_41); lean_dec(x_41); x_45 = l_Lean_Options_empty; x_46 = l_Lean_Format_pretty(x_44, x_45); @@ -1360,7 +1360,7 @@ x_20 = l_Lean_IR_IRType_isScalar(x_19); 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; -x_21 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_19); +x_21 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_19); lean_dec(x_19); x_22 = l_Lean_Options_empty; x_23 = l_Lean_Format_pretty(x_21, x_22); @@ -1393,7 +1393,7 @@ x_30 = l_Lean_IR_IRType_isScalar(x_29); if (x_30 == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_31 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_29); +x_31 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_29); lean_dec(x_29); x_32 = l_Lean_Options_empty; x_33 = l_Lean_Format_pretty(x_31, x_32); @@ -1436,7 +1436,7 @@ x_43 = l_Lean_IR_IRType_isScalar(x_41); if (x_43 == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_44 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_41); +x_44 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_41); lean_dec(x_41); x_45 = l_Lean_Options_empty; x_46 = l_Lean_Format_pretty(x_44, x_45); @@ -2692,7 +2692,7 @@ block_104: { 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_dec(x_94); -x_95 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_92); +x_95 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_92); lean_dec(x_92); x_96 = l_Lean_Options_empty; x_97 = l_Lean_Format_pretty(x_95, x_96); @@ -2801,7 +2801,7 @@ x_148 = l_Lean_IR_IRType_beq___main(x_1, x_147); if (x_148 == 0) { lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; -x_149 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_149 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); x_150 = l_Lean_Options_empty; x_151 = l_Lean_Format_pretty(x_149, x_150); x_152 = l_Lean_IR_Checker_checkType___closed__1; @@ -2833,7 +2833,7 @@ x_159 = l_Lean_IR_IRType_beq___main(x_1, x_158); if (x_159 == 0) { lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -x_160 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_160 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); x_161 = l_Lean_Options_empty; x_162 = l_Lean_Format_pretty(x_160, x_161); x_163 = l_Lean_IR_Checker_checkType___closed__1; @@ -2879,7 +2879,7 @@ x_173 = l_Lean_IR_IRType_beq___main(x_1, x_172); if (x_173 == 0) { lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; -x_174 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_174 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); x_175 = l_Lean_Options_empty; x_176 = l_Lean_Format_pretty(x_174, x_175); x_177 = l_Lean_IR_Checker_checkType___closed__1; @@ -3368,7 +3368,7 @@ lean_dec(x_236); if (x_280 == 0) { 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; -x_281 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_279); +x_281 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_279); lean_dec(x_279); x_282 = l_Lean_Options_empty; x_283 = l_Lean_Format_pretty(x_281, x_282); @@ -3402,7 +3402,7 @@ lean_dec(x_236); if (x_290 == 0) { 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; -x_291 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_289); +x_291 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_289); lean_dec(x_289); x_292 = l_Lean_Options_empty; x_293 = l_Lean_Format_pretty(x_291, x_292); @@ -3446,7 +3446,7 @@ lean_dec(x_236); if (x_303 == 0) { lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; -x_304 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_301); +x_304 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_301); lean_dec(x_301); x_305 = l_Lean_Options_empty; x_306 = l_Lean_Format_pretty(x_304, x_305); @@ -3663,7 +3663,7 @@ x_352 = l_Lean_IR_IRType_beq___main(x_1, x_351); if (x_352 == 0) { 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; -x_353 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_353 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); x_354 = l_Lean_Options_empty; x_355 = l_Lean_Format_pretty(x_353, x_354); x_356 = l_Lean_IR_Checker_checkType___closed__1; @@ -3695,7 +3695,7 @@ x_363 = l_Lean_IR_IRType_beq___main(x_1, x_362); if (x_363 == 0) { 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; -x_364 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_364 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); x_365 = l_Lean_Options_empty; x_366 = l_Lean_Format_pretty(x_364, x_365); x_367 = l_Lean_IR_Checker_checkType___closed__1; @@ -3741,7 +3741,7 @@ x_377 = l_Lean_IR_IRType_beq___main(x_1, x_376); if (x_377 == 0) { lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; -x_378 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_378 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); x_379 = l_Lean_Options_empty; x_380 = l_Lean_Format_pretty(x_378, x_379); x_381 = l_Lean_IR_Checker_checkType___closed__1; @@ -6379,17 +6379,17 @@ lean_dec(x_2); return x_4; } } -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Format(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Format(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_Checker(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_Checker(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Format(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_Checker_markIndex___closed__1 = _init_l_Lean_IR_Checker_markIndex___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/CompilerM.c b/stage0/stdlib/Lean/Compiler/IR/CompilerM.c similarity index 91% rename from stage0/stdlib/Init/Lean/Compiler/IR/CompilerM.c rename to stage0/stdlib/Lean/Compiler/IR/CompilerM.c index c49ad1ba76..d5b9ff06ef 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/CompilerM.c +++ b/stage0/stdlib/Lean/Compiler/IR/CompilerM.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.CompilerM -// Imports: Init.Control.Reader Init.Lean.Environment Init.Lean.Compiler.IR.Basic Init.Lean.Compiler.IR.Format +// Module: Lean.Compiler.IR.CompilerM +// Imports: Init.Control.Reader Lean.Environment Lean.Compiler.IR.Basic Lean.Compiler.IR.Format #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,18 +13,16 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux(lean_object*); -lean_object* l_AssocList_replace___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; size_t l_USize_add(size_t, size_t); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; -lean_object* l_mkHashMap___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__1(lean_object*); +uint8_t l_AssocList_contains___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_IR_findEnvDecl___spec__6(lean_object*, lean_object*); +lean_object* l_HashMapImp_insert___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_IR_containsDecl_x27___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_getEnv___boxed(lean_object*); 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_3__logMessageIfAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_IR_findEnvDecl___spec__2___boxed(lean_object*, lean_object*); @@ -38,15 +36,17 @@ lean_object* l_Lean_SMap_empty___at_Lean_IR_mkDeclMapExtension___spec__6; lean_object* l_Lean_IR_findDecl_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_findCore___main(lean_object*, lean_object*); lean_object* lean_io_ref_get(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_contains___at_Lean_IR_containsDecl___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_log___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_mkDeclMapExtension(lean_object*); lean_object* l_PersistentHashMap_containsAux___main___at_Lean_IR_containsDecl___spec__4___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10___boxed(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_object* l_List_foldl___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__8(lean_object*, lean_object*); lean_object* l_Lean_IR_declMapExt___elambda__4___rarg(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_insert___at_Lean_IR_mkDeclMapExtension___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_IR_mkDeclMapExtension___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_containsDecl(lean_object*, lean_object*, lean_object*); @@ -56,12 +56,14 @@ lean_object* l_Lean_IR_LogEntry_fmt(lean_object*); size_t l_USize_shiftRight(size_t, size_t); uint8_t l_PersistentHashMap_contains___at_Lean_IR_containsDecl___spec__3(lean_object*, lean_object*); lean_object* l_Lean_IR_LogEntry_Lean_HasFormat; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_IR_findEnvDecl___spec__3(lean_object*, size_t, lean_object*); lean_object* l_Array_forMAux___main___at_Lean_IR_addDecls___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; -lean_object* l_HashMapImp_moveEntries___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_IR_declMapExt___elambda__1___boxed(lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; extern lean_object* l_Lean_Format_sbracket___closed__2; lean_object* l_Lean_IR_Decl_name(lean_object*); lean_object* l_Lean_IR_getDecls___boxed(lean_object*); @@ -73,12 +75,9 @@ lean_object* l_Array_iterateMAux___main___at_Lean_IR_mkDeclMapExtension___spec__ lean_object* l_Lean_IR_log(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_IR_findEnvDecl___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_mkDeclMapExtension___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_EnvExtension_Inhabited___rarg___closed__1; -lean_object* l_List_foldl___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__8(lean_object*, lean_object*); uint8_t l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1(lean_object*, lean_object*); lean_object* l_Lean_IR_getDecls(lean_object*); lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); @@ -87,21 +86,19 @@ lean_object* l_Lean_IR_logDecls___boxed(lean_object*, lean_object*, lean_object* lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_IR_findEnvDecl___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_declMapExt___elambda__3___boxed(lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_Lean_IR_addDecls___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashMapImp_expand___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__4(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); uint8_t l_Lean_KVMap_getBool(lean_object*, lean_object*, uint8_t); -lean_object* l_AssocList_contains___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3___boxed(lean_object*, lean_object*); -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__6(lean_object*, lean_object*); lean_object* l_Lean_IR_mkDeclMapExtension___lambda__2(lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__3(lean_object*, lean_object*); -uint8_t l_AssocList_contains___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* lean_ir_log_to_string(lean_object*); -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__9(lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +lean_object* l_HashMapImp_expand___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__4(lean_object*, lean_object*); lean_object* l_Lean_IR_containsDecl___boxed(lean_object*, lean_object*, lean_object*); size_t l_Lean_Name_hash(lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_IR_containsDecl_x27___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_AssocList_replace___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(lean_object*, lean_object*, lean_object*); extern lean_object* l_Char_HasRepr___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_IR_mkDeclMapExtension___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_declMapExt___closed__3; @@ -119,20 +116,20 @@ lean_object* l_Lean_IR_declMapExt___elambda__2(lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_getEntries___rarg(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_LogEntry_fmt___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_findDecl_x27(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_empty___at_Lean_IR_mkDeclMapExtension___spec__7; extern lean_object* l_Lean_Options_empty; extern lean_object* l_IO_Error_Inhabited___closed__1; lean_object* l_Lean_IR_getEnv(lean_object*); +lean_object* l___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray(lean_object*); lean_object* l_Lean_IR_getDecl(lean_object*, lean_object*, lean_object*); size_t lean_usize_modn(size_t, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_IR_declMapExt___elambda__4___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_mkDeclMapExtension___closed__3; size_t l_USize_mul(size_t, size_t); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_IR_mkDeclMapExtension___spec__15___closed__1; lean_object* l_mkHashMapImp___rarg(lean_object*); uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Environment_contains___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_CompilerM_3__logMessageIfAux(lean_object*); lean_object* l_Lean_IR_getDecl_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_IR_mkDeclMapExtension___spec__15___closed__2; lean_object* l_HashMapImp_contains___at_Lean_IR_containsDecl___spec__2___boxed(lean_object*, lean_object*); @@ -148,24 +145,25 @@ lean_object* l_Lean_IR_tracePrefixOptionName___closed__6; lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*); uint8_t l_PersistentHashMap_containsAux___main___at_Lean_IR_containsDecl___spec__4(lean_object*, size_t, lean_object*); lean_object* l_Lean_IR_tracePrefixOptionName___closed__3; +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_SMap_switch___at_Lean_IR_mkDeclMapExtension___spec__11(lean_object*); extern lean_object* l_Lean_Format_sbracket___closed__3; lean_object* l_Lean_IR_addDecls(lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_IR_mkDeclMapExtension___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_tracePrefixOptionName; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; +uint8_t l___private_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; lean_object* l_Lean_IR_declMapExt___closed__2; lean_object* l_Lean_IR_Log_format(lean_object*); lean_object* l_Lean_IR_declMapExt___closed__1; lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashMapImp_insert___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_AssocList_foldlM___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__9(lean_object*, lean_object*); 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 l_USize_decLe(size_t, size_t); lean_object* l_Lean_IR_formatDecl(lean_object*, lean_object*); lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_IR_mkDeclMapExtension___spec__8(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_logMessageIf___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___closed__1; extern lean_object* l_Lean_Format_sbracket___closed__1; @@ -173,6 +171,7 @@ lean_object* l_AssocList_find_x3f___main___at_Lean_IR_findEnvDecl___spec__6___bo lean_object* l_Lean_IR_addDecls___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_logMessage___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_mkDeclMapExtension___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_mkHashMap___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__1(lean_object*); lean_object* lean_io_ref_reset(lean_object*, lean_object*); lean_object* lean_format_group(lean_object*); lean_object* l_Lean_IR_tracePrefixOptionName___closed__4; @@ -184,9 +183,9 @@ lean_object* l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1___boxed(le lean_object* l_Lean_IR_tracePrefixOptionName___closed__1; lean_object* l_Lean_IR_findEnvDecl_x27___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_mkDeclMapExtension___closed__1; +lean_object* l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_addDecl(lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_LogEntry_Lean_HasFormat___closed__1; lean_object* l_Lean_IR_Log_format___boxed(lean_object*); lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); @@ -211,28 +210,29 @@ lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_IR_declMapExt___elambda__3(lean_object*, lean_object*); lean_object* l_Lean_IR_declMapExt; lean_object* lean_usize_to_nat(size_t); -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_IR_mkDeclMapExtension___spec__15(lean_object*, lean_object*); lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_IR_findEnvDecl___spec__3___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_HashMap_Inhabited___closed__1; lean_object* l_Lean_IR_tracePrefixOptionName___closed__2; lean_object* l_Lean_IR_addDecl___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1; lean_object* l_Array_findMAux___main___at_Lean_IR_findEnvDecl_x27___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_mkDeclMapExtension___closed__4; +lean_object* l_AssocList_contains___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_IR_mkDeclMapExtension___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_IR_logMessageIf(lean_object*); lean_object* l_Lean_IR_getDecl_x27(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_IR_findEnvDecl___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor___boxed(lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_IR_mkDeclMapExtension___spec__6___closed__1; lean_object* l_Lean_registerSimplePersistentEnvExtension___at_Lean_IR_mkDeclMapExtension___spec__12(lean_object*, lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_mkDeclMapExtension___closed__2; lean_object* l_Lean_IR_findDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_Log_format___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_AssocList_foldlM___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__6(lean_object*, lean_object*); +lean_object* l_HashMapImp_moveEntries___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__5(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_containsDecl_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_LogEntry_fmt___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: @@ -534,7 +534,7 @@ x_1 = l_Lean_IR_tracePrefixOptionName___closed__6; return x_1; } } -uint8_t l___private_Init_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -572,22 +572,22 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; -x_6 = l___private_Init_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(x_4, x_1); +x_6 = l___private_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(x_4, x_1); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; @@ -610,11 +610,11 @@ return x_10; } } } -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_1); return x_6; @@ -627,7 +627,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = l_Lean_IR_tracePrefixOptionName; lean_inc(x_1); x_6 = l_Lean_Name_append___main(x_5, x_1); -x_7 = l___private_Init_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_6, x_1, x_2, x_3, x_4); +x_7 = l___private_Lean_Compiler_IR_CompilerM_2__logDeclsAux(x_6, x_1, x_2, x_3, x_4); lean_dec(x_6); return x_7; } @@ -641,11 +641,11 @@ lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; -x_6 = l___private_Init_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(x_4, x_2); +x_6 = l___private_Lean_Compiler_IR_CompilerM_1__isLogEnabledFor(x_4, x_2); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; @@ -668,19 +668,19 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_CompilerM_3__logMessageIfAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg___boxed), 5, 0); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_2); return x_6; @@ -692,7 +692,7 @@ _start: lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_IR_tracePrefixOptionName; x_7 = l_Lean_Name_append___main(x_6, x_2); -x_8 = l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg(x_1, x_7, x_3, x_4, x_5); +x_8 = l___private_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg(x_1, x_7, x_3, x_4, x_5); lean_dec(x_7); return x_8; } @@ -719,7 +719,7 @@ _start: { lean_object* x_6; lean_object* x_7; x_6 = l_Lean_IR_tracePrefixOptionName; -x_7 = l___private_Init_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg(x_1, x_6, x_3, x_4, x_5); +x_7 = l___private_Lean_Compiler_IR_CompilerM_3__logMessageIfAux___rarg(x_1, x_6, x_3, x_4, x_5); return x_7; } } @@ -787,7 +787,7 @@ lean_dec(x_2); return x_4; } } -lean_object* l_mkHashMap___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__1(lean_object* x_1) { +lean_object* l_mkHashMap___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__1(lean_object* x_1) { _start: { lean_object* x_2; @@ -795,7 +795,7 @@ x_2 = l_mkHashMapImp___rarg(x_1); return x_2; } } -uint8_t l_AssocList_contains___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(lean_object* x_1, lean_object* x_2) { +uint8_t l_AssocList_contains___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -824,7 +824,7 @@ return x_8; } } } -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__6(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_foldlM___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__6(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -878,7 +878,7 @@ goto _start; } } } -lean_object* l_HashMapImp_moveEntries___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_HashMapImp_moveEntries___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -897,7 +897,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj 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_AssocList_foldlM___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__6(x_3, x_6); +x_9 = l_AssocList_foldlM___main___at___private_Lean_Compiler_IR_CompilerM_4__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); @@ -908,7 +908,7 @@ goto _start; } } } -lean_object* l_HashMapImp_expand___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__4(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_expand___at___private_Lean_Compiler_IR_CompilerM_4__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; @@ -919,14 +919,14 @@ 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_HashMapImp_moveEntries___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__5(x_8, x_2, x_7); +x_9 = l_HashMapImp_moveEntries___main___at___private_Lean_Compiler_IR_CompilerM_4__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; } } -lean_object* l_AssocList_replace___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_AssocList_replace___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -949,7 +949,7 @@ x_8 = lean_name_eq(x_5, x_1); if (x_8 == 0) { lean_object* x_9; -x_9 = l_AssocList_replace___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(x_1, x_2, x_7); +x_9 = l_AssocList_replace___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(x_1, x_2, x_7); lean_ctor_set(x_3, 2, x_9); return x_3; } @@ -976,7 +976,7 @@ x_13 = lean_name_eq(x_10, x_1); if (x_13 == 0) { lean_object* x_14; lean_object* x_15; -x_14 = l_AssocList_replace___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(x_1, x_2, x_12); +x_14 = l_AssocList_replace___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(x_1, x_2, x_12); x_15 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_15, 0, x_10); lean_ctor_set(x_15, 1, x_11); @@ -998,7 +998,7 @@ return x_16; } } } -lean_object* l_HashMapImp_insert___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_HashMapImp_insert___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -1012,7 +1012,7 @@ x_7 = lean_array_get_size(x_6); x_8 = l_Lean_Name_hash(x_2); x_9 = lean_usize_modn(x_8, x_7); x_10 = lean_array_uget(x_6, x_9); -x_11 = l_AssocList_contains___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(x_2, x_10); +x_11 = l_AssocList_contains___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(x_2, x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -1030,7 +1030,7 @@ if (x_16 == 0) { lean_object* x_17; lean_free_object(x_1); -x_17 = l_HashMapImp_expand___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__4(x_13, x_15); +x_17 = l_HashMapImp_expand___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__4(x_13, x_15); return x_17; } else @@ -1044,7 +1044,7 @@ else { lean_object* x_18; lean_object* x_19; lean_dec(x_7); -x_18 = l_AssocList_replace___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(x_2, x_3, x_10); +x_18 = l_AssocList_replace___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(x_2, x_3, x_10); x_19 = lean_array_uset(x_6, x_9, x_18); lean_ctor_set(x_1, 1, x_19); return x_1; @@ -1062,7 +1062,7 @@ x_22 = lean_array_get_size(x_21); x_23 = l_Lean_Name_hash(x_2); x_24 = lean_usize_modn(x_23, x_22); x_25 = lean_array_uget(x_21, x_24); -x_26 = l_AssocList_contains___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(x_2, x_25); +x_26 = l_AssocList_contains___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(x_2, x_25); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; @@ -1079,7 +1079,7 @@ lean_dec(x_22); if (x_31 == 0) { lean_object* x_32; -x_32 = l_HashMapImp_expand___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__4(x_28, x_30); +x_32 = l_HashMapImp_expand___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__4(x_28, x_30); return x_32; } else @@ -1095,7 +1095,7 @@ else { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_22); -x_34 = l_AssocList_replace___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(x_2, x_3, x_25); +x_34 = l_AssocList_replace___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__7(x_2, x_3, x_25); x_35 = lean_array_uset(x_21, x_24, x_34); x_36 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_36, 0, x_20); @@ -1105,7 +1105,7 @@ return x_36; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__8(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__8(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -1121,14 +1121,14 @@ 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_HashMapImp_insert___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(x_1, x_5, x_3); +x_6 = l_HashMapImp_insert___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(x_1, x_5, x_3); x_1 = x_6; x_2 = x_4; goto _start; } } } -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__9(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_foldlM___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__9(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -1150,7 +1150,7 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -1166,7 +1166,7 @@ else { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = lean_array_fget(x_2, x_3); -x_8 = l_AssocList_foldlM___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__9(x_4, x_7); +x_8 = l_AssocList_foldlM___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__9(x_4, x_7); x_9 = lean_unsigned_to_nat(1u); x_10 = lean_nat_add(x_3, x_9); lean_dec(x_3); @@ -1176,7 +1176,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1() { +lean_object* _init_l___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -1185,38 +1185,38 @@ x_2 = l_mkHashMapImp___rarg(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_CompilerM_4__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; lean_object* x_7; -x_2 = l___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1; -x_3 = l_List_foldl___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__8(x_2, x_1); +x_2 = l___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1; +x_3 = l_List_foldl___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__8(x_2, x_1); x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); x_5 = lean_unsigned_to_nat(0u); x_6 = l_Array_empty___closed__1; -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10(x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10(x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); return x_7; } } -lean_object* l_AssocList_contains___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_contains___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_AssocList_contains___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(x_1, x_2); +x_3 = l_AssocList_contains___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10___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_iterateMAux___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__10(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; @@ -1742,7 +1742,7 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_1, 0); -x_14 = l_HashMapImp_insert___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(x_13, x_2, x_3); +x_14 = l_HashMapImp_insert___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(x_13, x_2, x_3); lean_ctor_set(x_1, 0, x_14); return x_1; } @@ -1754,7 +1754,7 @@ x_16 = lean_ctor_get(x_1, 1); lean_inc(x_16); lean_inc(x_15); lean_dec(x_1); -x_17 = l_HashMapImp_insert___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(x_15, x_2, x_3); +x_17 = l_HashMapImp_insert___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__2(x_15, x_2, x_3); x_18 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); @@ -2005,7 +2005,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -2193,7 +2193,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_IR_mkDeclMapE _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -2753,7 +2753,7 @@ lean_object* _init_l_Lean_IR_mkDeclMapExtension___closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray), 1, 0); return x_1; } } @@ -3326,7 +3326,7 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_AssocList_contains___main___at___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(x_2, x_7); +x_8 = l_AssocList_contains___main___at___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___spec__3(x_2, x_7); lean_dec(x_7); return x_8; } @@ -4072,24 +4072,24 @@ return x_5; } } lean_object* initialize_Init_Control_Reader(lean_object*); -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Format(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Format(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Control_Reader(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Format(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_LogEntry_Lean_HasFormat___closed__1 = _init_l_Lean_IR_LogEntry_Lean_HasFormat___closed__1(); @@ -4110,8 +4110,8 @@ l_Lean_IR_tracePrefixOptionName___closed__6 = _init_l_Lean_IR_tracePrefixOptionN lean_mark_persistent(l_Lean_IR_tracePrefixOptionName___closed__6); l_Lean_IR_tracePrefixOptionName = _init_l_Lean_IR_tracePrefixOptionName(); lean_mark_persistent(l_Lean_IR_tracePrefixOptionName); -l___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1 = _init_l___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1); +l___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1 = _init_l___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_IR_CompilerM_4__mkEntryArray___closed__1); l_PersistentHashMap_empty___at_Lean_IR_mkDeclMapExtension___spec__7 = _init_l_PersistentHashMap_empty___at_Lean_IR_mkDeclMapExtension___spec__7(); lean_mark_persistent(l_PersistentHashMap_empty___at_Lean_IR_mkDeclMapExtension___spec__7); l_Lean_SMap_empty___at_Lean_IR_mkDeclMapExtension___spec__6___closed__1 = _init_l_Lean_SMap_empty___at_Lean_IR_mkDeclMapExtension___spec__6___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/CtorLayout.c b/stage0/stdlib/Lean/Compiler/IR/CtorLayout.c similarity index 89% rename from stage0/stdlib/Init/Lean/Compiler/IR/CtorLayout.c rename to stage0/stdlib/Lean/Compiler/IR/CtorLayout.c index 333d33eff5..f9a3fd7860 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/CtorLayout.c +++ b/stage0/stdlib/Lean/Compiler/IR/CtorLayout.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.CtorLayout -// Imports: Init.Lean.Environment Init.Lean.Compiler.IR.Format +// Module: Lean.Compiler.IR.CtorLayout +// Imports: Lean.Environment Lean.Compiler.IR.Format #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,29 +14,29 @@ extern "C" { #endif lean_object* l_Lean_IR_CtorFieldInfo_format___closed__7; +extern lean_object* l___private_Lean_Compiler_IR_Format_1__formatArg___closed__2; lean_object* l_Lean_IR_CtorFieldInfo_format___closed__6; lean_object* l_Lean_fmt___at_Lean_IR_CtorFieldInfo_format___spec__1(lean_object*); +extern lean_object* l___private_Lean_Syntax_6__formatInfo___closed__1; lean_object* l_Lean_IR_CtorFieldInfo_format___closed__5; lean_object* l_Lean_fmt___at_Lean_Level_LevelToFormat_Result_format___main___spec__1(lean_object*); lean_object* l_Lean_IR_CtorFieldInfo_Lean_HasFormat___closed__1; lean_object* l_Lean_IR_CtorFieldInfo_format(lean_object*); lean_object* l_Lean_IR_CtorFieldInfo_format___closed__3; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main(lean_object*); lean_object* l_Lean_IR_CtorFieldInfo_format___closed__1; lean_object* l_Lean_IR_CtorFieldInfo_format___closed__8; lean_object* l_Lean_fmt___at_Lean_IR_CtorFieldInfo_format___spec__1___boxed(lean_object*); lean_object* l_Lean_IR_CtorFieldInfo_format___closed__4; lean_object* l_Lean_IR_CtorFieldInfo_format___closed__2; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(lean_object*); lean_object* l_Lean_IR_getCtorLayout___boxed(lean_object*, lean_object*); lean_object* lean_ir_get_ctor_layout(lean_object*, lean_object*); lean_object* l_Lean_IR_CtorFieldInfo_Lean_HasFormat; -extern lean_object* l___private_Init_Lean_Syntax_6__formatInfo___closed__1; -extern lean_object* l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__2; lean_object* l_Lean_fmt___at_Lean_IR_CtorFieldInfo_format___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_2 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); return x_2; } } @@ -119,7 +119,7 @@ switch (lean_obj_tag(x_1)) { case 0: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__2; +x_2 = l___private_Lean_Compiler_IR_Format_1__formatArg___closed__2; return x_2; } case 1: @@ -179,12 +179,12 @@ x_23 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_23, 0, x_21); lean_ctor_set(x_23, 1, x_22); lean_ctor_set_uint8(x_23, sizeof(void*)*2, x_17); -x_24 = l___private_Init_Lean_Syntax_6__formatInfo___closed__1; +x_24 = l___private_Lean_Syntax_6__formatInfo___closed__1; x_25 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_25, 0, x_23); lean_ctor_set(x_25, 1, x_24); lean_ctor_set_uint8(x_25, sizeof(void*)*2, x_17); -x_26 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_15); +x_26 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_15); lean_dec(x_15); x_27 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_27, 0, x_25); @@ -230,17 +230,17 @@ lean_dec(x_1); return x_3; } } -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Format(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Format(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_CtorLayout(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_CtorLayout(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Format(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_CtorFieldInfo_format___closed__1 = _init_l_Lean_IR_CtorFieldInfo_format___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/ElimDeadBranches.c b/stage0/stdlib/Lean/Compiler/IR/ElimDeadBranches.c similarity index 99% rename from stage0/stdlib/Init/Lean/Compiler/IR/ElimDeadBranches.c rename to stage0/stdlib/Lean/Compiler/IR/ElimDeadBranches.c index 4352125822..39dc59168e 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/ElimDeadBranches.c +++ b/stage0/stdlib/Lean/Compiler/IR/ElimDeadBranches.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.ElimDeadBranches -// Imports: Init.Control.Reader Init.Data.Option Init.Data.Nat Init.Lean.Compiler.IR.Format Init.Lean.Compiler.IR.Basic Init.Lean.Compiler.IR.CompilerM +// Module: Lean.Compiler.IR.ElimDeadBranches +// Imports: Init.Control.Reader Init.Data.Option Init.Data.Nat Lean.Compiler.IR.Format Lean.Compiler.IR.Basic Lean.Compiler.IR.CompilerM #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -26,7 +26,6 @@ lean_object* l_Lean_IR_UnreachableBranches_functionSummariesExt___closed__5; lean_object* l_Nat_foldAux___main___at_Lean_IR_UnreachableBranches_Value_merge___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_foldr___main___at_Lean_IR_UnreachableBranches_containsCtor___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_List_foldr___main___at_Lean_IR_UnreachableBranches_Value_beq___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; extern lean_object* l_Lean_List_format___rarg___closed__4; lean_object* l_Array_getD___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_UnreachableBranches_Value_beq___main(lean_object*, lean_object*); @@ -94,6 +93,7 @@ lean_object* l_Lean_IR_UnreachableBranches_Value_format___main___closed__6; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_Lean_IR_UnreachableBranches_interpFnBody___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_UnreachableBranches_Value_format___main(lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; extern lean_object* l_Lean_Format_sbracket___closed__2; lean_object* l_Lean_IR_Decl_name(lean_object*); lean_object* l_List_foldr___main___at_Lean_IR_UnreachableBranches_Value_beq___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); @@ -169,7 +169,6 @@ lean_object* l_Lean_IR_UnreachableBranches_interpFnBody___main(lean_object*, lea lean_object* l_Lean_IR_UnreachableBranches_Value_format___main___closed__7; extern lean_object* l_IO_Error_Inhabited___closed__1; size_t lean_usize_modn(size_t, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; uint8_t l_Array_isEmpty___rarg(lean_object*); lean_object* l_PersistentArray_modify___at_Lean_IR_UnreachableBranches_updateCurrFnSummary___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_mkHashMap___at_Lean_IR_UnreachableBranches_updateVarAssignment___spec__1(lean_object*); @@ -199,6 +198,7 @@ lean_object* l_Array_iterateMAux___main___at_Lean_IR_UnreachableBranches_mkFunct lean_object* l_Nat_foldAux___main___at_Lean_IR_UnreachableBranches_Value_merge___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_IR_Decl_Inhabited; +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; extern lean_object* l_Lean_Format_sbracket___closed__3; lean_object* l_Lean_IR_UnreachableBranches_updateJPParamsAssignment(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_List_format___at_Lean_IR_UnreachableBranches_Value_format___main___spec__4(lean_object*); @@ -725,7 +725,7 @@ lean_object* _init_l_Lean_IR_UnreachableBranches_Value_addChoice___main___closed _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Compiler.IR.ElimDeadBranches"); +x_1 = lean_mk_string("Lean.Compiler.IR.ElimDeadBranches"); return x_1; } } @@ -2931,7 +2931,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -3119,7 +3119,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_IR_Unreachabl _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -7512,11 +7512,11 @@ return x_4; lean_object* initialize_Init_Control_Reader(lean_object*); lean_object* initialize_Init_Data_Option(lean_object*); lean_object* initialize_Init_Data_Nat(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Format(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Format(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_ElimDeadBranches(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_ElimDeadBranches(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -7529,13 +7529,13 @@ lean_dec_ref(res); res = initialize_Init_Data_Nat(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Format(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_UnreachableBranches_Value_Inhabited = _init_l_Lean_IR_UnreachableBranches_Value_Inhabited(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/ElimDeadVars.c b/stage0/stdlib/Lean/Compiler/IR/ElimDeadVars.c similarity index 94% rename from stage0/stdlib/Init/Lean/Compiler/IR/ElimDeadVars.c rename to stage0/stdlib/Lean/Compiler/IR/ElimDeadVars.c index 0acc15a702..c6459dc97e 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/ElimDeadVars.c +++ b/stage0/stdlib/Lean/Compiler/IR/ElimDeadVars.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.ElimDeadVars -// Imports: Init.Lean.Compiler.IR.Basic Init.Lean.Compiler.IR.FreeVars +// Module: Lean.Compiler.IR.ElimDeadVars +// Imports: Lean.Compiler.IR.Basic Lean.Compiler.IR.FreeVars #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,7 +14,7 @@ extern "C" { #endif lean_object* l_Lean_IR_FnBody_elimDead(lean_object*); -lean_object* l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(lean_object*, lean_object*); +lean_object* l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_IR_Inhabited; lean_object* lean_array_get_size(lean_object*); lean_object* l_Array_back___at_Lean_IR_reshapeWithoutDeadAux___main___spec__1___boxed(lean_object*); @@ -103,7 +103,7 @@ goto _start; block_16: { lean_object* x_13; -x_13 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_3, x_12); +x_13 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_3, x_12); lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { @@ -440,17 +440,17 @@ return x_1; } } } -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_FreeVars(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_FreeVars(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_ElimDeadVars(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_ElimDeadVars(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/EmitC.c b/stage0/stdlib/Lean/Compiler/IR/EmitC.c similarity index 99% rename from stage0/stdlib/Init/Lean/Compiler/IR/EmitC.c rename to stage0/stdlib/Lean/Compiler/IR/EmitC.c index aaf97c0e8c..8b176f779a 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/EmitC.c +++ b/stage0/stdlib/Lean/Compiler/IR/EmitC.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.EmitC -// Imports: Init.Control.Conditional Init.Lean.Runtime Init.Lean.Compiler.NameMangling Init.Lean.Compiler.ExportAttr Init.Lean.Compiler.InitAttr Init.Lean.Compiler.IR.CompilerM Init.Lean.Compiler.IR.EmitUtil Init.Lean.Compiler.IR.NormIds Init.Lean.Compiler.IR.SimpCase Init.Lean.Compiler.IR.Boxing +// Module: Lean.Compiler.IR.EmitC +// Imports: Init.Control.Conditional Lean.Runtime Lean.Compiler.NameMangling Lean.Compiler.ExportAttr Lean.Compiler.InitAttr Lean.Compiler.IR.CompilerM Lean.Compiler.IR.EmitUtil Lean.Compiler.IR.NormIds Lean.Compiler.IR.SimpCase Lean.Compiler.IR.Boxing #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -949,7 +949,7 @@ lean_object* _init_l_Lean_IR_EmitC_toCType___closed__8() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Compiler.IR.EmitC"); +x_1 = lean_mk_string("Lean.Compiler.IR.EmitC"); return x_1; } } @@ -12832,48 +12832,48 @@ return x_12; } } lean_object* initialize_Init_Control_Conditional(lean_object*); -lean_object* initialize_Init_Lean_Runtime(lean_object*); -lean_object* initialize_Init_Lean_Compiler_NameMangling(lean_object*); -lean_object* initialize_Init_Lean_Compiler_ExportAttr(lean_object*); -lean_object* initialize_Init_Lean_Compiler_InitAttr(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_EmitUtil(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_NormIds(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_SimpCase(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Boxing(lean_object*); +lean_object* initialize_Lean_Runtime(lean_object*); +lean_object* initialize_Lean_Compiler_NameMangling(lean_object*); +lean_object* initialize_Lean_Compiler_ExportAttr(lean_object*); +lean_object* initialize_Lean_Compiler_InitAttr(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object*); +lean_object* initialize_Lean_Compiler_IR_EmitUtil(lean_object*); +lean_object* initialize_Lean_Compiler_IR_NormIds(lean_object*); +lean_object* initialize_Lean_Compiler_IR_SimpCase(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Boxing(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_EmitC(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_EmitC(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Control_Conditional(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Runtime(lean_io_mk_world()); +res = initialize_Lean_Runtime(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_NameMangling(lean_io_mk_world()); +res = initialize_Lean_Compiler_NameMangling(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_ExportAttr(lean_io_mk_world()); +res = initialize_Lean_Compiler_ExportAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_InitAttr(lean_io_mk_world()); +res = initialize_Lean_Compiler_InitAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_EmitUtil(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_EmitUtil(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_NormIds(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_NormIds(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_SimpCase(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_SimpCase(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Boxing(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Boxing(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_EmitC_leanMainFn___closed__1 = _init_l_Lean_IR_EmitC_leanMainFn___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/EmitUtil.c b/stage0/stdlib/Lean/Compiler/IR/EmitUtil.c similarity index 98% rename from stage0/stdlib/Init/Lean/Compiler/IR/EmitUtil.c rename to stage0/stdlib/Lean/Compiler/IR/EmitUtil.c index 6c52010acf..27c1f0cdcd 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/EmitUtil.c +++ b/stage0/stdlib/Lean/Compiler/IR/EmitUtil.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.EmitUtil -// Imports: Init.Control.Conditional Init.Lean.Compiler.InitAttr Init.Lean.Compiler.IR.CompilerM +// Module: Lean.Compiler.IR.EmitUtil +// Imports: Init.Control.Conditional Lean.Compiler.InitAttr Lean.Compiler.IR.CompilerM #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1626,20 +1626,20 @@ return x_3; } } lean_object* initialize_Init_Control_Conditional(lean_object*); -lean_object* initialize_Init_Lean_Compiler_InitAttr(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object*); +lean_object* initialize_Lean_Compiler_InitAttr(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_EmitUtil(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_EmitUtil(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Control_Conditional(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_InitAttr(lean_io_mk_world()); +res = initialize_Lean_Compiler_InitAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_mkVarJPMaps___closed__1 = _init_l_Lean_IR_mkVarJPMaps___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/ExpandResetReuse.c b/stage0/stdlib/Lean/Compiler/IR/ExpandResetReuse.c similarity index 99% rename from stage0/stdlib/Init/Lean/Compiler/IR/ExpandResetReuse.c rename to stage0/stdlib/Lean/Compiler/IR/ExpandResetReuse.c index 9342fd59cb..f97f48cdb5 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/ExpandResetReuse.c +++ b/stage0/stdlib/Lean/Compiler/IR/ExpandResetReuse.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.ExpandResetReuse -// Imports: Init.Control.State Init.Control.Reader Init.Data.Nat Init.Lean.Compiler.IR.CompilerM Init.Lean.Compiler.IR.NormIds Init.Lean.Compiler.IR.FreeVars +// Module: Lean.Compiler.IR.ExpandResetReuse +// Imports: Init.Control.State Init.Control.Reader Init.Data.Nat Lean.Compiler.IR.CompilerM Lean.Compiler.IR.NormIds Lean.Compiler.IR.FreeVars #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -3698,11 +3698,11 @@ return x_3; lean_object* initialize_Init_Control_State(lean_object*); lean_object* initialize_Init_Control_Reader(lean_object*); lean_object* initialize_Init_Data_Nat(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_NormIds(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_FreeVars(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object*); +lean_object* initialize_Lean_Compiler_IR_NormIds(lean_object*); +lean_object* initialize_Lean_Compiler_IR_FreeVars(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_ExpandResetReuse(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_ExpandResetReuse(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -3715,13 +3715,13 @@ lean_dec_ref(res); res = initialize_Init_Data_Nat(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_NormIds(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_NormIds(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_ExpandResetReuse_mkProjMap___closed__1 = _init_l_Lean_IR_ExpandResetReuse_mkProjMap___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/Format.c b/stage0/stdlib/Lean/Compiler/IR/Format.c similarity index 75% rename from stage0/stdlib/Init/Lean/Compiler/IR/Format.c rename to stage0/stdlib/Lean/Compiler/IR/Format.c index f119761a55..32860be0ea 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/Format.c +++ b/stage0/stdlib/Lean/Compiler/IR/Format.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.Format -// Imports: Init.Lean.Data.Format Init.Lean.Compiler.IR.Basic +// Module: Lean.Compiler.IR.Format +// Imports: Lean.Data.Format Lean.Compiler.IR.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,196 +14,197 @@ extern "C" { #endif lean_object* l_Lean_IR_litValHasFormat___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__18; +lean_object* l___private_Lean_Compiler_IR_Format_1__formatArg___closed__1; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__15; lean_object* l_Lean_IR_typeHasToString; extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_IR_formatFnBodyHead___closed__15; lean_object* l_Lean_IR_formatFnBody___main___closed__6; lean_object* l_Lean_IR_formatFnBodyHead___closed__3; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__5; lean_object* l_Lean_IR_fnBodyHasFormat; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__30; lean_object* l_Lean_IR_formatFnBodyHead___closed__29; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__6; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6; lean_object* l_Lean_IR_formatFnBodyHead___closed__33; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__11; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10; lean_object* l_Lean_IR_formatFnBodyHead___closed__22; lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16; uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_formatParams___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__26; lean_object* l_Lean_IR_formatFnBodyHead___closed__7; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__29; lean_object* l_Lean_IR_formatAlt___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3; +lean_object* l___private_Lean_Compiler_IR_Format_3__formatCtorInfo(lean_object*); lean_object* l_Lean_IR_formatFnBodyHead___closed__24; extern lean_object* l_Lean_Format_flatten___main___closed__1; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__16; +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_formatFnBody___main___closed__3; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22; -lean_object* l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__1; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr(lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__14; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__28; lean_object* l_Lean_IR_formatFnBody___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__20; -lean_object* l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__10; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__32; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__22; lean_object* l_Lean_IR_formatAlt___closed__4; lean_object* l_Lean_IR_formatFnBody___main___closed__5; lean_object* lean_array_get_size(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__12; -lean_object* l___private_Init_Lean_Compiler_IR_Format_6__formatParam(lean_object*); extern lean_object* l_Lean_formatKVMap___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo(lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__10; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__32; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18; +lean_object* l___private_Lean_Compiler_IR_Format_1__formatArg___closed__2; lean_object* l_Lean_IR_formatArray___at_Lean_IR_formatParams___spec__1(lean_object*); lean_object* l_Lean_IR_formatAlt___closed__2; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__19; lean_object* l_Lean_IR_formatFnBodyHead___closed__11; -lean_object* l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__4; lean_object* l_Lean_IR_formatFnBodyHead___closed__8; lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___boxed(lean_object*); lean_object* l_Lean_IR_argHasFormat___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4; lean_object* l_Lean_IR_formatArray___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Format_sbracket___closed__2; lean_object* l_Lean_IR_declHasFormat___closed__1; lean_object* l_Lean_IR_formatFnBodyHead___closed__23; lean_object* l_Lean_IR_formatFnBody___main___closed__4; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10; lean_object* l_Lean_IR_formatFnBodyHead___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6; -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__7; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__24; lean_object* l_Lean_IR_formatFnBodyHead___closed__17; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__21; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11; lean_object* l_Array_iterateMAux___main___at_Lean_IR_formatArray___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__8; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__17; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12; +lean_object* l_Lean_IR_formatArray___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__1___boxed(lean_object*); lean_object* l_Lean_IR_formatFnBodyHead___closed__6; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19; lean_object* l_Lean_IR_litValHasFormat; +lean_object* l_Lean_IR_formatArray___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__1(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_formatParams___boxed(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15; -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_6__formatParam___closed__4; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType(lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2; +lean_object* l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3; lean_object* l_Lean_IR_formatFnBodyHead___closed__16; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__12; +lean_object* l___private_Lean_Compiler_IR_Format_6__formatParam___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_IR_formatFnBody___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_formatEntry___closed__2; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5; -lean_object* l___private_Init_Lean_Compiler_IR_Format_1__formatArg(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__31; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__20; extern lean_object* l_Lean_Format_join___closed__1; lean_object* l_Lean_IR_formatDecl___closed__3; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__27; lean_object* l_Lean_IR_formatArray(lean_object*); lean_object* l_Nat_repr(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__9; lean_object* l_Lean_IR_formatFnBodyHead___closed__37; lean_object* l_Lean_IR_formatFnBody___main___closed__2; lean_object* l_Lean_IR_formatFnBody___main___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__19; lean_object* l_Lean_IR_formatDecl___closed__1; lean_object* l_Lean_IR_formatDecl___closed__2; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3; lean_object* l_Lean_formatKVMap(lean_object*); lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__23; lean_object* l_Lean_IR_declHasFormat; lean_object* l_Lean_IR_formatFnBodyHead___closed__20; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___boxed(lean_object*); extern lean_object* l_Lean_Options_empty; lean_object* l_Lean_IR_exprHasFormat___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ctorInfoHasFormat___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___boxed(lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_2__formatLitVal(lean_object*); lean_object* l_Lean_IR_formatFnBodyHead___closed__26; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__30; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__5; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__14; lean_object* l_Lean_IR_typeHasFormat___closed__1; lean_object* l_Lean_IR_formatFnBodyHead___closed__31; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__29; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__28; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4; lean_object* lean_ir_decl_to_string(lean_object*); lean_object* l_Lean_IR_formatFnBodyHead___closed__27; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1; extern lean_object* l_Lean_Format_sbracket___closed__3; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__25; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23; +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__26; extern lean_object* l_Lean_HasRepr___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__1; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main(lean_object*); lean_object* l_Lean_IR_fnBodyHasToString(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13; lean_object* l_Lean_IR_formatFnBodyHead___closed__25; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__4; lean_object* lean_ir_format_fn_body_head(lean_object*); extern lean_object* l_PersistentArray_Stats_toString___closed__4; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__2; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__9; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__27; lean_object* l_Lean_IR_formatAlt___closed__3; lean_object* l_Array_iterateMAux___main___at_Lean_IR_formatParams___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_formatFnBodyHead___closed__34; -lean_object* l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__11; lean_object* l_Lean_IR_ctorInfoHasFormat; lean_object* l_Array_iterateMAux___main___at_Lean_IR_formatArray___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__31; lean_object* l_Lean_IR_formatDecl(lean_object*, lean_object*); lean_object* l_String_quote(lean_object*); lean_object* l_Lean_IR_formatFnBodyHead___closed__13; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__4; lean_object* l_Lean_IR_argHasFormat; -lean_object* l_Lean_IR_formatArray___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__1___boxed(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__6; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9; extern lean_object* l_Lean_Format_sbracket___closed__1; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__1; lean_object* l_Lean_IR_formatFnBodyHead___closed__18; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__13; extern lean_object* l_Lean_Format_paren___closed__2; lean_object* l_Lean_IR_formatFnBodyHead___closed__5; lean_object* l_Lean_IR_formatFnBodyHead___closed__30; extern lean_object* l_Lean_IR_JoinPointId_HasToString___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__23; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17; lean_object* l_Lean_IR_paramHasFormat; lean_object* l_Lean_IR_formatFnBodyHead___closed__28; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__3; lean_object* l_Lean_IR_formatFnBodyHead___closed__14; lean_object* lean_format_group(lean_object*); lean_object* l_Lean_IR_paramHasFormat___closed__1; lean_object* l_Lean_IR_declHasToString; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__8; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__21; lean_object* l_Array_iterateMAux___main___at_Lean_IR_formatFnBody___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__7; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1; lean_object* l_Lean_IR_formatDecl___closed__4; lean_object* l_Lean_IR_typeHasToString___closed__1; lean_object* l_Lean_IR_formatArray___at_Lean_IR_formatParams___spec__1___boxed(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__3; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___boxed(lean_object*); extern lean_object* l_Lean_IR_VarId_HasToString___closed__1; lean_object* l_Array_toList___rarg(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__15; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__2; lean_object* l_Lean_IR_formatParams(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_2__formatLitVal(lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5; lean_object* l_Lean_IR_formatFnBodyHead___closed__10; lean_object* l_Lean_IR_formatFnBodyHead___closed__32; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11; +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14; lean_object* lean_string_length(lean_object*); lean_object* l_Lean_IR_typeHasFormat; +lean_object* l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2; lean_object* l_Lean_IR_formatFnBodyHead___closed__12; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__16; extern lean_object* l_Lean_Format_paren___closed__3; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__17; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__13; lean_object* l_Lean_IR_formatFnBodyHead___closed__4; +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__25; lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_IR_exprHasFormat; lean_object* l_Lean_IR_fnBodyHasFormat___closed__1; lean_object* l_Lean_IR_formatFnBodyHead___closed__9; -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19; lean_object* l_Lean_IR_declHasToString___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__22; -lean_object* l_Lean_IR_formatArray___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__1(lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_1__formatArg(lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22; +lean_object* l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1; lean_object* l_Lean_IR_formatFnBodyHead___closed__19; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__18; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1; lean_object* l_Lean_IR_formatFnBodyHead___closed__36; -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__24; +lean_object* l___private_Lean_Compiler_IR_Format_6__formatParam___closed__3; lean_object* l_Lean_IR_exprHasToString(lean_object*); lean_object* l_Lean_IR_formatFnBody(lean_object*, lean_object*); lean_object* l_Lean_IR_formatFnBodyHead___closed__35; @@ -212,13 +213,12 @@ lean_object* l_Array_iterateMAux___main___at_Lean_IR_formatArray___spec__1(lean_ lean_object* l_Lean_IR_formatFnBodyHead___closed__21; lean_object* l_Lean_IR_formatFnBodyHead___closed__38; lean_object* l_Lean_IR_formatArray___rarg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; lean_object* l_Lean_IR_formatAlt(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__3; -lean_object* l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__2; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__1; lean_object* l_Lean_IR_formatFnBodyHead___closed__2; -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__1() { +lean_object* l___private_Lean_Compiler_IR_Format_6__formatParam(lean_object*); +lean_object* _init_l___private_Lean_Compiler_IR_Format_1__formatArg___closed__1() { _start: { lean_object* x_1; @@ -226,17 +226,17 @@ x_1 = lean_mk_string("◾"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__2() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_1__formatArg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__1; +x_1 = l___private_Lean_Compiler_IR_Format_1__formatArg___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_Format_1__formatArg(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Format_1__formatArg(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -256,7 +256,7 @@ return x_6; else { lean_object* x_7; -x_7 = l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__2; +x_7 = l___private_Lean_Compiler_IR_Format_1__formatArg___closed__2; return x_7; } } @@ -265,7 +265,7 @@ lean_object* _init_l_Lean_IR_argHasFormat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_Format_1__formatArg), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_Format_1__formatArg), 1, 0); return x_1; } } @@ -360,7 +360,7 @@ lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_Format_2__formatLitVal(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Format_2__formatLitVal(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -391,7 +391,7 @@ lean_object* _init_l_Lean_IR_litValHasFormat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_Format_2__formatLitVal), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_Format_2__formatLitVal), 1, 0); return x_1; } } @@ -403,7 +403,7 @@ x_1 = l_Lean_IR_litValHasFormat___closed__1; return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1() { _start: { lean_object* x_1; @@ -411,17 +411,17 @@ x_1 = lean_mk_string("ctor_"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1; +x_1 = l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -431,7 +431,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Format_3__formatCtorInfo(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; uint8_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; uint8_t x_14; @@ -448,7 +448,7 @@ x_6 = l_Nat_repr(x_3); x_7 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_7, 0, x_6); x_8 = 0; -x_9 = l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2; +x_9 = l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2; x_10 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_7); @@ -497,7 +497,7 @@ return x_10; else { lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_24 = l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3; +x_24 = l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3; x_25 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_25, 0, x_10); lean_ctor_set(x_25, 1, x_24); @@ -553,7 +553,7 @@ return x_32; else { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_41 = l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3; +x_41 = l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3; x_42 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_42, 0, x_10); lean_ctor_set(x_42, 1, x_41); @@ -611,7 +611,7 @@ lean_object* _init_l_Lean_IR_ctorInfoHasFormat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_Format_3__formatCtorInfo), 1, 0); return x_1; } } @@ -623,7 +623,7 @@ x_1 = l_Lean_IR_ctorInfoHasFormat___closed__1; return x_1; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___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_6; @@ -645,7 +645,7 @@ x_10 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_10, 0, x_4); lean_ctor_set(x_10, 1, x_9); lean_ctor_set_uint8(x_10, sizeof(void*)*2, x_8); -x_11 = l___private_Init_Lean_Compiler_IR_Format_1__formatArg(x_7); +x_11 = l___private_Lean_Compiler_IR_Format_1__formatArg(x_7); x_12 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -659,17 +659,17 @@ goto _start; } } } -lean_object* l_Lean_IR_formatArray___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__1(lean_object* x_1) { +lean_object* l_Lean_IR_formatArray___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_box(0); -x_4 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_1, x_1, x_2, x_3); +x_4 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_1, x_1, x_2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__1() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__1() { _start: { lean_object* x_1; @@ -677,17 +677,17 @@ x_1 = lean_mk_string("reset["); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__2() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__1; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__3() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__3() { _start: { lean_object* x_1; @@ -695,17 +695,17 @@ x_1 = lean_mk_string("] "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__4() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__3; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__3; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__5() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__5() { _start: { lean_object* x_1; @@ -713,17 +713,17 @@ x_1 = lean_mk_string("reuse"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__6() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__5; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__5; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__7() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__7() { _start: { lean_object* x_1; @@ -731,22 +731,22 @@ x_1 = lean_mk_string(" in "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__8() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__7; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__9() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__9() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = 0; -x_2 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__6; +x_2 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__6; x_3 = l_Lean_Format_join___closed__1; x_4 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_4, 0, x_2); @@ -755,12 +755,12 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_1); return x_4; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__10() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__10() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = 0; -x_2 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__9; +x_2 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__9; x_3 = l_Lean_Format_flatten___main___closed__1; x_4 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_4, 0, x_2); @@ -769,7 +769,7 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_1); return x_4; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__11() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__11() { _start: { lean_object* x_1; @@ -777,23 +777,23 @@ x_1 = lean_mk_string("!"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__12() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__11; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__11; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__13() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__13() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = 0; -x_2 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__6; -x_3 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__12; +x_2 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__6; +x_3 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__12; x_4 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_4, 0, x_2); lean_ctor_set(x_4, 1, x_3); @@ -801,12 +801,12 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_1); return x_4; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__14() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__14() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = 0; -x_2 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__13; +x_2 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__13; x_3 = l_Lean_Format_flatten___main___closed__1; x_4 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_4, 0, x_2); @@ -815,7 +815,7 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_1); return x_4; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__15() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__15() { _start: { lean_object* x_1; @@ -823,17 +823,17 @@ x_1 = lean_mk_string("proj["); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__16() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__15; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__15; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__17() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__17() { _start: { lean_object* x_1; @@ -841,17 +841,17 @@ x_1 = lean_mk_string("uproj["); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__18() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__17; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__17; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__19() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__19() { _start: { lean_object* x_1; @@ -859,17 +859,17 @@ x_1 = lean_mk_string("sproj["); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__20() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__19; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__19; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__21() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__21() { _start: { lean_object* x_1; @@ -877,17 +877,17 @@ x_1 = lean_mk_string("pap "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__22() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__21; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__21; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__23() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__23() { _start: { lean_object* x_1; @@ -895,17 +895,17 @@ x_1 = lean_mk_string("app "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__24() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__23; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__23; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__25() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__25() { _start: { lean_object* x_1; @@ -913,17 +913,17 @@ x_1 = lean_mk_string("box "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__26() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__26() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__25; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__25; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__27() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__27() { _start: { lean_object* x_1; @@ -931,17 +931,17 @@ x_1 = lean_mk_string("unbox "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__28() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__28() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__27; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__27; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__29() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__29() { _start: { lean_object* x_1; @@ -949,17 +949,17 @@ x_1 = lean_mk_string("isShared "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__30() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__30() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__29; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__29; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__31() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__31() { _start: { lean_object* x_1; @@ -967,17 +967,17 @@ x_1 = lean_mk_string("isTaggedPtr "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__32() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__32() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__31; +x_1 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__31; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_Format_4__formatExpr(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Format_4__formatExpr(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { @@ -989,10 +989,10 @@ lean_inc(x_2); x_3 = lean_ctor_get(x_1, 1); lean_inc(x_3); lean_dec(x_1); -x_4 = l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo(x_2); +x_4 = l___private_Lean_Compiler_IR_Format_3__formatCtorInfo(x_2); x_5 = lean_unsigned_to_nat(0u); x_6 = lean_box(0); -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_3, x_3, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_3, x_3, x_5, x_6); lean_dec(x_3); x_8 = 0; x_9 = lean_alloc_ctor(4, 2, 1); @@ -1013,12 +1013,12 @@ x_12 = l_Nat_repr(x_10); x_13 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_13, 0, x_12); x_14 = 0; -x_15 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__2; +x_15 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__2; x_16 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_13); lean_ctor_set_uint8(x_16, sizeof(void*)*2, x_14); -x_17 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__4; +x_17 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__4; x_18 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_18, 0, x_16); lean_ctor_set(x_18, 1, x_17); @@ -1052,21 +1052,21 @@ x_30 = lean_string_append(x_29, x_28); lean_dec(x_28); x_31 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_31, 0, x_30); -x_32 = l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo(x_25); +x_32 = l___private_Lean_Compiler_IR_Format_3__formatCtorInfo(x_25); x_33 = lean_unsigned_to_nat(0u); x_34 = lean_box(0); -x_35 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_27, x_27, x_33, x_34); +x_35 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_27, x_27, x_33, x_34); lean_dec(x_27); if (x_26 == 0) { uint8_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; x_36 = 0; -x_37 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__10; +x_37 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__10; x_38 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_31); lean_ctor_set_uint8(x_38, sizeof(void*)*2, x_36); -x_39 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__8; +x_39 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__8; x_40 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_40, 0, x_38); lean_ctor_set(x_40, 1, x_39); @@ -1085,12 +1085,12 @@ else { uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; x_43 = 0; -x_44 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__14; +x_44 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__14; x_45 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_31); lean_ctor_set_uint8(x_45, sizeof(void*)*2, x_43); -x_46 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__8; +x_46 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__8; x_47 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_47, 0, x_45); lean_ctor_set(x_47, 1, x_46); @@ -1118,12 +1118,12 @@ x_52 = l_Nat_repr(x_50); x_53 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_53, 0, x_52); x_54 = 0; -x_55 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__16; +x_55 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__16; x_56 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_53); lean_ctor_set_uint8(x_56, sizeof(void*)*2, x_54); -x_57 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__4; +x_57 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__4; x_58 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_57); @@ -1152,12 +1152,12 @@ x_66 = l_Nat_repr(x_64); x_67 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_67, 0, x_66); x_68 = 0; -x_69 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__18; +x_69 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__18; x_70 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_67); lean_ctor_set_uint8(x_70, sizeof(void*)*2, x_68); -x_71 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__4; +x_71 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__4; x_72 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_72, 0, x_70); lean_ctor_set(x_72, 1, x_71); @@ -1188,7 +1188,7 @@ x_81 = l_Nat_repr(x_78); x_82 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_82, 0, x_81); x_83 = 0; -x_84 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__20; +x_84 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__20; x_85 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_82); @@ -1205,7 +1205,7 @@ x_90 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_90, 0, x_87); lean_ctor_set(x_90, 1, x_89); lean_ctor_set_uint8(x_90, sizeof(void*)*2, x_83); -x_91 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__4; +x_91 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__4; x_92 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_92, 0, x_90); lean_ctor_set(x_92, 1, x_91); @@ -1236,7 +1236,7 @@ x_102 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_102, 0, x_101); x_103 = lean_unsigned_to_nat(0u); x_104 = lean_box(0); -x_105 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_99, x_99, x_103, x_104); +x_105 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_99, x_99, x_103, x_104); lean_dec(x_99); x_106 = 0; x_107 = lean_alloc_ctor(4, 2, 1); @@ -1258,14 +1258,14 @@ x_111 = l_Lean_Name_toStringWithSep___main(x_110, x_108); x_112 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_112, 0, x_111); x_113 = 0; -x_114 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__22; +x_114 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__22; x_115 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_115, 0, x_114); lean_ctor_set(x_115, 1, x_112); lean_ctor_set_uint8(x_115, sizeof(void*)*2, x_113); x_116 = lean_unsigned_to_nat(0u); x_117 = lean_box(0); -x_118 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_109, x_109, x_116, x_117); +x_118 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_109, x_109, x_116, x_117); lean_dec(x_109); x_119 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_119, 0, x_115); @@ -1288,14 +1288,14 @@ lean_dec(x_122); x_125 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_125, 0, x_124); x_126 = 0; -x_127 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__24; +x_127 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__24; x_128 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_128, 0, x_127); lean_ctor_set(x_128, 1, x_125); lean_ctor_set_uint8(x_128, sizeof(void*)*2, x_126); x_129 = lean_unsigned_to_nat(0u); x_130 = lean_box(0); -x_131 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_121, x_121, x_129, x_130); +x_131 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_121, x_121, x_129, x_130); lean_dec(x_121); x_132 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_132, 0, x_128); @@ -1316,7 +1316,7 @@ lean_dec(x_134); x_137 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_137, 0, x_136); x_138 = 0; -x_139 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__26; +x_139 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__26; x_140 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_140, 0, x_139); lean_ctor_set(x_140, 1, x_137); @@ -1336,7 +1336,7 @@ lean_dec(x_142); x_145 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_145, 0, x_144); x_146 = 0; -x_147 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__28; +x_147 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__28; x_148 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_148, 0, x_147); lean_ctor_set(x_148, 1, x_145); @@ -1349,7 +1349,7 @@ lean_object* x_149; lean_object* x_150; x_149 = lean_ctor_get(x_1, 0); lean_inc(x_149); lean_dec(x_1); -x_150 = l___private_Init_Lean_Compiler_IR_Format_2__formatLitVal(x_149); +x_150 = l___private_Lean_Compiler_IR_Format_2__formatLitVal(x_149); return x_150; } case 12: @@ -1365,7 +1365,7 @@ lean_dec(x_152); x_155 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_155, 0, x_154); x_156 = 0; -x_157 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__30; +x_157 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__30; x_158 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_155); @@ -1385,7 +1385,7 @@ lean_dec(x_160); x_163 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_163, 0, x_162); x_164 = 0; -x_165 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__32; +x_165 = l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__32; x_166 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_166, 0, x_165); lean_ctor_set(x_166, 1, x_163); @@ -1395,21 +1395,21 @@ return x_166; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___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_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Lean_IR_formatArray___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__1___boxed(lean_object* x_1) { +lean_object* l_Lean_IR_formatArray___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_IR_formatArray___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__1(x_1); +x_2 = l_Lean_IR_formatArray___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__1(x_1); lean_dec(x_1); return x_2; } @@ -1418,7 +1418,7 @@ lean_object* _init_l_Lean_IR_exprHasFormat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_Format_4__formatExpr), 1, 0); return x_1; } } @@ -1434,13 +1434,13 @@ lean_object* l_Lean_IR_exprHasToString(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr(x_1); +x_2 = l___private_Lean_Compiler_IR_Format_4__formatExpr(x_1); x_3 = l_Lean_Options_empty; x_4 = l_Lean_Format_pretty(x_2, x_3); return x_4; } } -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1459,21 +1459,21 @@ if (lean_obj_tag(x_4) == 0) lean_object* x_5; lean_object* x_6; lean_dec(x_2); x_5 = lean_ctor_get(x_1, 0); -x_6 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_5); +x_6 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_5); return x_6; } else { lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; x_7 = lean_ctor_get(x_1, 0); -x_8 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_7); +x_8 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_7); x_9 = 0; lean_inc(x_2); x_10 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_10, 0, x_8); lean_ctor_set(x_10, 1, x_2); lean_ctor_set_uint8(x_10, sizeof(void*)*2, x_9); -x_11 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(x_4, x_2); +x_11 = l_Lean_Format_joinSep___main___at___private_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(x_4, x_2); x_12 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -1483,7 +1483,7 @@ return x_12; } } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1() { _start: { lean_object* x_1; @@ -1491,17 +1491,17 @@ x_1 = lean_mk_string("float"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3() { _start: { lean_object* x_1; @@ -1509,17 +1509,17 @@ x_1 = lean_mk_string("u8"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5() { _start: { lean_object* x_1; @@ -1527,17 +1527,17 @@ x_1 = lean_mk_string("u16"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7() { _start: { lean_object* x_1; @@ -1545,17 +1545,17 @@ x_1 = lean_mk_string("u32"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9() { _start: { lean_object* x_1; @@ -1563,17 +1563,17 @@ x_1 = lean_mk_string("u64"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11() { _start: { lean_object* x_1; @@ -1581,17 +1581,17 @@ x_1 = lean_mk_string("usize"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13() { _start: { lean_object* x_1; @@ -1599,17 +1599,17 @@ x_1 = lean_mk_string("obj"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15() { _start: { lean_object* x_1; @@ -1617,17 +1617,17 @@ x_1 = lean_mk_string("tobj"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17() { _start: { lean_object* x_1; @@ -1635,17 +1635,17 @@ x_1 = lean_mk_string("struct "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -1654,7 +1654,7 @@ x_2 = lean_string_length(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -1664,7 +1664,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21() { _start: { lean_object* x_1; lean_object* x_2; @@ -1674,7 +1674,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22() { _start: { lean_object* x_1; @@ -1682,72 +1682,72 @@ x_1 = lean_mk_string("union "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22; +x_1 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { case 0: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2; +x_2 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2; return x_2; } case 1: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4; +x_3 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4; return x_3; } case 2: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6; +x_4 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6; return x_4; } case 3: { lean_object* x_5; -x_5 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8; +x_5 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8; return x_5; } case 4: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10; +x_6 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10; return x_6; } case 5: { lean_object* x_7; -x_7 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12; +x_7 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12; return x_7; } case 6: { lean_object* x_8; -x_8 = l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__2; +x_8 = l___private_Lean_Compiler_IR_Format_1__formatArg___closed__2; return x_8; } case 7: { lean_object* x_9; -x_9 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14; +x_9 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14; return x_9; } case 8: { lean_object* x_10; -x_10 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16; +x_10 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16; return x_10; } case 9: @@ -1756,25 +1756,25 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint x_11 = lean_ctor_get(x_1, 1); x_12 = l_Array_toList___rarg(x_11); x_13 = l_Lean_formatKVMap___closed__1; -x_14 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(x_12, x_13); +x_14 = l_Lean_Format_joinSep___main___at___private_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(x_12, x_13); lean_dec(x_12); x_15 = 0; -x_16 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; +x_16 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; x_17 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_14); lean_ctor_set_uint8(x_17, sizeof(void*)*2, x_15); -x_18 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; +x_18 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; x_19 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); lean_ctor_set_uint8(x_19, sizeof(void*)*2, x_15); -x_20 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19; +x_20 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19; x_21 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); x_22 = lean_format_group(x_21); -x_23 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18; +x_23 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18; x_24 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -1787,25 +1787,25 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint x_25 = lean_ctor_get(x_1, 1); x_26 = l_Array_toList___rarg(x_25); x_27 = l_Lean_formatKVMap___closed__1; -x_28 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(x_26, x_27); +x_28 = l_Lean_Format_joinSep___main___at___private_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(x_26, x_27); lean_dec(x_26); x_29 = 0; -x_30 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; +x_30 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20; x_31 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_28); lean_ctor_set_uint8(x_31, sizeof(void*)*2, x_29); -x_32 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; +x_32 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21; x_33 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_33, 0, x_31); lean_ctor_set(x_33, 1, x_32); lean_ctor_set_uint8(x_33, sizeof(void*)*2, x_29); -x_34 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19; +x_34 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19; x_35 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); x_36 = lean_format_group(x_35); -x_37 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23; +x_37 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23; x_38 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); @@ -1815,37 +1815,37 @@ return x_38; } } } -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(x_1, x_2); +x_3 = l_Lean_Format_joinSep___main___at___private_Lean_Compiler_IR_Format_5__formatIRType___main___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___main___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_2 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); +x_2 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Format_5__formatIRType___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType(x_1); +x_2 = l___private_Lean_Compiler_IR_Format_5__formatIRType(x_1); lean_dec(x_1); return x_2; } @@ -1854,7 +1854,7 @@ lean_object* _init_l_Lean_IR_typeHasFormat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_Format_5__formatIRType___boxed), 1, 0); return x_1; } } @@ -1886,7 +1886,7 @@ x_1 = l_Lean_IR_typeHasToString___closed__1; return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__1() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_6__formatParam___closed__1() { _start: { lean_object* x_1; @@ -1894,17 +1894,17 @@ x_1 = lean_mk_string(" : "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__1; +x_1 = l___private_Lean_Compiler_IR_Format_6__formatParam___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__3() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_6__formatParam___closed__3() { _start: { lean_object* x_1; @@ -1912,17 +1912,17 @@ x_1 = lean_mk_string("@& "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__4() { +lean_object* _init_l___private_Lean_Compiler_IR_Format_6__formatParam___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__3; +x_1 = l___private_Lean_Compiler_IR_Format_6__formatParam___closed__3; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_Format_6__formatParam(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_Format_6__formatParam(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -1944,12 +1944,12 @@ x_11 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_8); lean_ctor_set_uint8(x_11, sizeof(void*)*2, x_9); -x_12 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2; +x_12 = l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2; x_13 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); lean_ctor_set_uint8(x_13, sizeof(void*)*2, x_9); -x_14 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_4); +x_14 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_4); lean_dec(x_4); if (x_3 == 0) { @@ -1973,7 +1973,7 @@ return x_19; else { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_20 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__4; +x_20 = l___private_Lean_Compiler_IR_Format_6__formatParam___closed__4; x_21 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_21, 0, x_13); lean_ctor_set(x_21, 1, x_20); @@ -1995,7 +1995,7 @@ lean_object* _init_l_Lean_IR_paramHasFormat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_Format_6__formatParam), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_Format_6__formatParam), 1, 0); return x_1; } } @@ -2129,7 +2129,7 @@ x_10 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_10, 0, x_4); lean_ctor_set(x_10, 1, x_9); lean_ctor_set_uint8(x_10, sizeof(void*)*2, x_8); -x_11 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam(x_7); +x_11 = l___private_Lean_Compiler_IR_Format_6__formatParam(x_7); x_12 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -2579,12 +2579,12 @@ x_11 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_8); lean_ctor_set_uint8(x_11, sizeof(void*)*2, x_9); -x_12 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2; +x_12 = l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2; x_13 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); lean_ctor_set_uint8(x_13, sizeof(void*)*2, x_9); -x_14 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_3); +x_14 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_3); lean_dec(x_3); x_15 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_15, 0, x_13); @@ -2595,7 +2595,7 @@ x_17 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); lean_ctor_set_uint8(x_17, sizeof(void*)*2, x_9); -x_18 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr(x_4); +x_18 = l___private_Lean_Compiler_IR_Format_4__formatExpr(x_4); x_19 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); @@ -2671,7 +2671,7 @@ x_49 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_49, 0, x_47); lean_ctor_set(x_49, 1, x_48); lean_ctor_set_uint8(x_49, sizeof(void*)*2, x_40); -x_50 = l___private_Init_Lean_Compiler_IR_Format_1__formatArg(x_35); +x_50 = l___private_Lean_Compiler_IR_Format_1__formatArg(x_35); x_51 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_51, 0, x_49); lean_ctor_set(x_51, 1, x_50); @@ -2817,7 +2817,7 @@ x_110 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_110, 0, x_108); lean_ctor_set(x_110, 1, x_109); lean_ctor_set_uint8(x_110, sizeof(void*)*2, x_96); -x_111 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_91); +x_111 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_91); lean_dec(x_91); x_112 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_112, 0, x_110); @@ -3039,7 +3039,7 @@ lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; lean_ x_194 = lean_ctor_get(x_1, 0); lean_inc(x_194); lean_dec(x_1); -x_195 = l___private_Init_Lean_Compiler_IR_Format_1__formatArg(x_194); +x_195 = l___private_Lean_Compiler_IR_Format_1__formatArg(x_194); x_196 = 0; x_197 = l_Lean_IR_formatFnBodyHead___closed__34; x_198 = lean_alloc_ctor(4, 2, 1); @@ -3070,7 +3070,7 @@ lean_ctor_set(x_207, 1, x_204); lean_ctor_set_uint8(x_207, sizeof(void*)*2, x_205); x_208 = lean_unsigned_to_nat(0u); x_209 = lean_box(0); -x_210 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_200, x_200, x_208, x_209); +x_210 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_200, x_200, x_208, x_209); lean_dec(x_200); x_211 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_211, 0, x_207); @@ -3210,12 +3210,12 @@ x_13 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_10); lean_ctor_set_uint8(x_13, sizeof(void*)*2, x_11); -x_14 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2; +x_14 = l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2; x_15 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); lean_ctor_set_uint8(x_15, sizeof(void*)*2, x_11); -x_16 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_4); +x_16 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_4); lean_dec(x_4); x_17 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_17, 0, x_15); @@ -3226,7 +3226,7 @@ x_19 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); lean_ctor_set_uint8(x_19, sizeof(void*)*2, x_11); -x_20 = l___private_Init_Lean_Compiler_IR_Format_4__formatExpr(x_5); +x_20 = l___private_Lean_Compiler_IR_Format_4__formatExpr(x_5); x_21 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); @@ -3352,7 +3352,7 @@ x_70 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_70, 0, x_68); lean_ctor_set(x_70, 1, x_69); lean_ctor_set_uint8(x_70, sizeof(void*)*2, x_61); -x_71 = l___private_Init_Lean_Compiler_IR_Format_1__formatArg(x_55); +x_71 = l___private_Lean_Compiler_IR_Format_1__formatArg(x_55); x_72 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_72, 0, x_70); lean_ctor_set(x_72, 1, x_71); @@ -3549,7 +3549,7 @@ x_152 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_152, 0, x_150); lean_ctor_set(x_152, 1, x_151); lean_ctor_set_uint8(x_152, sizeof(void*)*2, x_138); -x_153 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_132); +x_153 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_132); lean_dec(x_132); x_154 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_154, 0, x_152); @@ -3873,12 +3873,12 @@ x_279 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_279, 0, x_278); lean_ctor_set(x_279, 1, x_276); lean_ctor_set_uint8(x_279, sizeof(void*)*2, x_277); -x_280 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2; +x_280 = l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2; x_281 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_281, 0, x_279); lean_ctor_set(x_281, 1, x_280); lean_ctor_set_uint8(x_281, sizeof(void*)*2, x_277); -x_282 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_271); +x_282 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_271); lean_dec(x_271); x_283 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_283, 0, x_281); @@ -3906,7 +3906,7 @@ lean_dec(x_1); x_290 = lean_ctor_get(x_2, 0); lean_inc(x_290); lean_dec(x_2); -x_291 = l___private_Init_Lean_Compiler_IR_Format_1__formatArg(x_290); +x_291 = l___private_Lean_Compiler_IR_Format_1__formatArg(x_290); x_292 = 0; x_293 = l_Lean_IR_formatFnBodyHead___closed__34; x_294 = lean_alloc_ctor(4, 2, 1); @@ -3938,7 +3938,7 @@ lean_ctor_set(x_303, 1, x_300); lean_ctor_set_uint8(x_303, sizeof(void*)*2, x_301); x_304 = lean_unsigned_to_nat(0u); x_305 = lean_box(0); -x_306 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_296, x_296, x_304, x_305); +x_306 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_Format_4__formatExpr___spec__2(x_296, x_296, x_304, x_305); lean_dec(x_296); x_307 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_307, 0, x_303); @@ -4072,12 +4072,12 @@ x_16 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); lean_ctor_set_uint8(x_16, sizeof(void*)*2, x_10); -x_17 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2; +x_17 = l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2; x_18 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_18, 0, x_16); lean_ctor_set(x_18, 1, x_17); lean_ctor_set_uint8(x_18, sizeof(void*)*2, x_10); -x_19 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_5); +x_19 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_5); lean_dec(x_5); x_20 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_20, 0, x_18); @@ -4133,12 +4133,12 @@ x_40 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_40, 0, x_36); lean_ctor_set(x_40, 1, x_39); lean_ctor_set_uint8(x_40, sizeof(void*)*2, x_34); -x_41 = l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2; +x_41 = l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2; x_42 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_42, 0, x_40); lean_ctor_set(x_42, 1, x_41); lean_ctor_set_uint8(x_42, sizeof(void*)*2, x_34); -x_43 = l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main(x_30); +x_43 = l___private_Lean_Compiler_IR_Format_5__formatIRType___main(x_30); lean_dec(x_30); x_44 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_44, 0, x_42); @@ -4193,23 +4193,23 @@ x_1 = l_Lean_IR_declHasToString___closed__1; return x_1; } } -lean_object* initialize_Init_Lean_Data_Format(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Data_Format(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_Format(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_Format(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Format(lean_io_mk_world()); +res = initialize_Lean_Data_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__1 = _init_l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__1); -l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__2 = _init_l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_1__formatArg___closed__2); +l___private_Lean_Compiler_IR_Format_1__formatArg___closed__1 = _init_l___private_Lean_Compiler_IR_Format_1__formatArg___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_1__formatArg___closed__1); +l___private_Lean_Compiler_IR_Format_1__formatArg___closed__2 = _init_l___private_Lean_Compiler_IR_Format_1__formatArg___closed__2(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_1__formatArg___closed__2); l_Lean_IR_argHasFormat___closed__1 = _init_l_Lean_IR_argHasFormat___closed__1(); lean_mark_persistent(l_Lean_IR_argHasFormat___closed__1); l_Lean_IR_argHasFormat = _init_l_Lean_IR_argHasFormat(); @@ -4218,130 +4218,130 @@ l_Lean_IR_litValHasFormat___closed__1 = _init_l_Lean_IR_litValHasFormat___closed lean_mark_persistent(l_Lean_IR_litValHasFormat___closed__1); l_Lean_IR_litValHasFormat = _init_l_Lean_IR_litValHasFormat(); lean_mark_persistent(l_Lean_IR_litValHasFormat); -l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1 = _init_l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1); -l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2 = _init_l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2); -l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3 = _init_l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3); +l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1 = _init_l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__1); +l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2 = _init_l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__2); +l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3 = _init_l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_3__formatCtorInfo___closed__3); l_Lean_IR_ctorInfoHasFormat___closed__1 = _init_l_Lean_IR_ctorInfoHasFormat___closed__1(); lean_mark_persistent(l_Lean_IR_ctorInfoHasFormat___closed__1); l_Lean_IR_ctorInfoHasFormat = _init_l_Lean_IR_ctorInfoHasFormat(); lean_mark_persistent(l_Lean_IR_ctorInfoHasFormat); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__1 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__1); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__2 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__2); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__3 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__3); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__4 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__4); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__5 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__5); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__6 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__6); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__7 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__7); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__8 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__8); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__9 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__9); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__10 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__10); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__11 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__11); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__12 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__12); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__13 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__13); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__14 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__14); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__15 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__15); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__16 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__16); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__17 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__17); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__18 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__18); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__19 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__19); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__20 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__20); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__21 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__21); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__22 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__22); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__23 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__23); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__24 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__24); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__25 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__25); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__26 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__26); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__27 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__27); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__28 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__28); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__29 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__29(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__29); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__30 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__30(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__30); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__31 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__31(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__31); -l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__32 = _init_l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__32(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_4__formatExpr___closed__32); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__1 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__1); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__2 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__2(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__2); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__3 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__3(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__3); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__4 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__4(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__4); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__5 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__5(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__5); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__6 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__6(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__6); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__7 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__7(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__7); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__8 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__8(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__8); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__9 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__9(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__9); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__10 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__10(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__10); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__11 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__11(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__11); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__12 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__12(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__12); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__13 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__13(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__13); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__14 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__14(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__14); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__15 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__15(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__15); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__16 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__16(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__16); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__17 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__17(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__17); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__18 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__18(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__18); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__19 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__19(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__19); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__20 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__20(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__20); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__21 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__21(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__21); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__22 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__22(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__22); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__23 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__23(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__23); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__24 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__24(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__24); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__25 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__25(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__25); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__26 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__26(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__26); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__27 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__27(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__27); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__28 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__28(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__28); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__29 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__29(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__29); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__30 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__30(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__30); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__31 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__31(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__31); +l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__32 = _init_l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__32(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_4__formatExpr___closed__32); l_Lean_IR_exprHasFormat___closed__1 = _init_l_Lean_IR_exprHasFormat___closed__1(); lean_mark_persistent(l_Lean_IR_exprHasFormat___closed__1); l_Lean_IR_exprHasFormat = _init_l_Lean_IR_exprHasFormat(); lean_mark_persistent(l_Lean_IR_exprHasFormat); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22); -l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23 = _init_l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__1); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__2); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__3); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__4); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__5); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__6); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__7); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__8); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__9); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__10); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__11); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__12); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__13); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__14); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__15); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__16); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__17); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__18); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__19); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__20); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__21); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__22); +l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23 = _init_l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_5__formatIRType___main___closed__23); l_Lean_IR_typeHasFormat___closed__1 = _init_l_Lean_IR_typeHasFormat___closed__1(); lean_mark_persistent(l_Lean_IR_typeHasFormat___closed__1); l_Lean_IR_typeHasFormat = _init_l_Lean_IR_typeHasFormat(); @@ -4350,14 +4350,14 @@ l_Lean_IR_typeHasToString___closed__1 = _init_l_Lean_IR_typeHasToString___closed lean_mark_persistent(l_Lean_IR_typeHasToString___closed__1); l_Lean_IR_typeHasToString = _init_l_Lean_IR_typeHasToString(); lean_mark_persistent(l_Lean_IR_typeHasToString); -l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__1 = _init_l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__1); -l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2 = _init_l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__2); -l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__3 = _init_l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__3); -l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__4 = _init_l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_Format_6__formatParam___closed__4); +l___private_Lean_Compiler_IR_Format_6__formatParam___closed__1 = _init_l___private_Lean_Compiler_IR_Format_6__formatParam___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_6__formatParam___closed__1); +l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2 = _init_l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_6__formatParam___closed__2); +l___private_Lean_Compiler_IR_Format_6__formatParam___closed__3 = _init_l___private_Lean_Compiler_IR_Format_6__formatParam___closed__3(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_6__formatParam___closed__3); +l___private_Lean_Compiler_IR_Format_6__formatParam___closed__4 = _init_l___private_Lean_Compiler_IR_Format_6__formatParam___closed__4(); +lean_mark_persistent(l___private_Lean_Compiler_IR_Format_6__formatParam___closed__4); l_Lean_IR_paramHasFormat___closed__1 = _init_l_Lean_IR_paramHasFormat___closed__1(); lean_mark_persistent(l_Lean_IR_paramHasFormat___closed__1); l_Lean_IR_paramHasFormat = _init_l_Lean_IR_paramHasFormat(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/FreeVars.c b/stage0/stdlib/Lean/Compiler/IR/FreeVars.c similarity index 62% rename from stage0/stdlib/Init/Lean/Compiler/IR/FreeVars.c rename to stage0/stdlib/Lean/Compiler/IR/FreeVars.c index 3324ae814e..eb7f2361d8 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/FreeVars.c +++ b/stage0/stdlib/Lean/Compiler/IR/FreeVars.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.FreeVars -// Imports: Init.Lean.Compiler.IR.Basic +// Module: Lean.Compiler.IR.FreeVars +// Imports: Lean.Compiler.IR.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,152 +13,152 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_1__skip___boxed(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_FreeIndices_collectFnBody___main(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitJP(lean_object*, lean_object*); lean_object* l_Lean_IR_Expr_hasFreeVar___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_14__collectIndex(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray(lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_25__collectExpr___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_HasIndex_visitFnBody___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_HasIndex_visitFnBody___boxed(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_4__collectJP(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray(lean_object*); -lean_object* l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_10__collectParams___boxed(lean_object*, lean_object*); +lean_object* l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_FreeIndices_insertParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_15__collectVar(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_22__collectArg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1(lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitFnBody___main(lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitExpr(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_MaxIndex_collectFnBody(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_13__skip(lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_MaxIndex_HasAndthen; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_19__withJP(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Id_monad; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_2__collect(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_IR_HasIndex_visitArgs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_HasIndex_visitExpr___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_17__withIndex(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_9__collectParam___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_4__collectJP___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_15__collectVar(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray(lean_object*); lean_object* l_Lean_IR_FreeIndices_insertParams___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_20__withParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_6__collectArg(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_IR_HasIndex_visitParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_22__collectArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_AltCore_body(lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_3__collectVar(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_13__skip___rarg___boxed(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_16__collectJP(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_24__collectArgs(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_8__collectArgs(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_forM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_6__collectArg___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray(lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_4__collectJP___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_MaxIndex_HasAndthen___closed__1; +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_MaxIndex_collectFnBody___main(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_IR_HasIndex_visitFnBody___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_2__collect(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitParams(lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_freeIndices(lean_object*); lean_object* l_Array_iterateMAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_Expr_hasFreeVar(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_16__collectJP___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_15__collectVar___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_13__skip___rarg(lean_object*); +lean_object* l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_FreeIndices_collectFnBody___main___closed__1; +lean_object* l___private_Lean_Compiler_IR_FreeVars_3__collectVar(lean_object*, lean_object*); lean_object* l_Lean_IR_FreeIndices_collectFnBody(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_8__collectArgs___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_12__collectAlts___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_16__collectJP(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_22__collectArg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_24__collectArgs___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_14__collectIndex___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_26__collectAlts___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_hasFreeVar___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_HasIndex_visitVar___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_21__seq(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_Arg_hasFreeVar(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_21__seq(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_HasIndex_visitJP___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_18__withVar(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Arg_hasFreeVar___boxed(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_IR_HasIndex_visitFnBody___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_HasIndex_visitArg___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_FreeIndices_insertParams(lean_object*, lean_object*); lean_object* l_Lean_IR_FreeIndices_HasAndthen; lean_object* l_Array_anyRangeMAux___main___at_Lean_IR_HasIndex_visitArgs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_13__skip___boxed(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_HasIndex_visitArgs___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_25__collectExpr___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_20__withParams(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_9__collectParam___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_18__withVar(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_2__collect___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_1__skip(lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_10__collectParams(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_13__skip(lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_3__collectVar___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_4__collectJP(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_6__collectArg(lean_object*, lean_object*); lean_object* l_Lean_IR_FreeIndices_HasAndthen___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_3__collectVar___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_20__withParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_1__skip___boxed(lean_object*); uint8_t l_Lean_IR_HasIndex_visitArg(lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitArgs(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_MaxIndex_collectFnBody___main___closed__1; uint8_t l_Lean_IR_HasIndex_visitFnBody(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_6__collectArg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_16__collectJP___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_maxIndex(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_19__withJP(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_15__collectVar___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_26__collectAlts(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_5__seq(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_FreeIndices_insertParams___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_IR_HasIndex_visitParams___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_22__collectArg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_13__skip___boxed(lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_9__collectParam(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_20__withParams(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitVar(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_1__skip(lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_Decl_maxIndex(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_5__seq(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_2__collect___boxed(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_25__collectExpr(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_13__skip___rarg___boxed(lean_object*); uint8_t l_Lean_IR_FnBody_hasFreeVar(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_9__collectParam(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_11__collectExpr(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_17__withIndex(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_12__collectAlts(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_HasIndex_visitParams___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_MaxIndex_collectDecl(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_25__collectExpr(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_13__skip___rarg(lean_object*); +lean_object* l___private_Lean_Compiler_IR_FreeVars_11__collectExpr(lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_collectFreeIndices(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_1__skip(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_1__skip(lean_object* x_1) { _start: { lean_inc(x_1); return x_1; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_1__skip___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_1__skip___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_FreeVars_1__skip(x_1); +x_2 = l___private_Lean_Compiler_IR_FreeVars_1__skip(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_2__collect(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_2__collect(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -175,17 +175,17 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_2__collect___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_2__collect___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_FreeVars_2__collect(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_FreeVars_2__collect(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_3__collectVar(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_3__collectVar(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -202,17 +202,17 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_3__collectVar___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_3__collectVar___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_FreeVars_3__collectVar(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_FreeVars_3__collectVar(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_4__collectJP(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_4__collectJP(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -229,17 +229,17 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_4__collectJP___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_4__collectJP___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_FreeVars_4__collectJP(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_FreeVars_4__collectJP(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_5__seq(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_5__seq(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -252,7 +252,7 @@ lean_object* _init_l_Lean_IR_MaxIndex_HasAndthen___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_FreeVars_5__seq), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_FreeVars_5__seq), 3, 0); return x_1; } } @@ -264,7 +264,7 @@ x_1 = l_Lean_IR_MaxIndex_HasAndthen___closed__1; return x_1; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_6__collectArg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_6__collectArg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -290,17 +290,17 @@ return x_2; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_6__collectArg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_6__collectArg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_FreeVars_6__collectArg(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_FreeVars_6__collectArg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___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; @@ -312,15 +312,15 @@ x_7 = l_Array_iterateMAux___main___rarg(x_5, lean_box(0), x_1, x_4, x_6, x_3); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_FreeVars_7__collectArray___rarg), 3, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___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_6; @@ -336,7 +336,7 @@ else { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = lean_array_fget(x_2, x_3); -x_8 = l___private_Init_Lean_Compiler_IR_FreeVars_6__collectArg(x_7, x_4); +x_8 = l___private_Lean_Compiler_IR_FreeVars_6__collectArg(x_7, x_4); lean_dec(x_4); lean_dec(x_7); x_9 = lean_unsigned_to_nat(1u); @@ -348,53 +348,53 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_1, x_1, x_3, x_2); +x_4 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_1, x_1, x_3, x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_8__collectArgs(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_1, x_1, x_3, x_2); +x_4 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_1, x_1, x_3, x_2); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___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_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_8__collectArgs___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_FreeVars_8__collectArgs(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_9__collectParam(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_9__collectParam(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -412,17 +412,17 @@ return x_3; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_9__collectParam___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_9__collectParam___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_FreeVars_9__collectParam(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_FreeVars_9__collectParam(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___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_6; @@ -438,7 +438,7 @@ else { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = lean_array_fget(x_2, x_3); -x_8 = l___private_Init_Lean_Compiler_IR_FreeVars_9__collectParam(x_7, x_4); +x_8 = l___private_Lean_Compiler_IR_FreeVars_9__collectParam(x_7, x_4); lean_dec(x_4); lean_dec(x_7); x_9 = lean_unsigned_to_nat(1u); @@ -450,53 +450,53 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_1, x_1, x_3, x_2); +x_4 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_1, x_1, x_3, x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_10__collectParams(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_1, x_1, x_3, x_2); +x_4 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_1, x_1, x_3, x_2); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___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_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_10__collectParams___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_FreeVars_10__collectParams(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_11__collectExpr(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_11__collectExpr(lean_object* x_1, lean_object* x_2) { _start: { switch (lean_obj_tag(x_1)) { @@ -507,7 +507,7 @@ x_3 = lean_ctor_get(x_1, 1); lean_inc(x_3); lean_dec(x_1); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_3, x_3, x_4, x_2); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_3, x_3, x_4, x_2); lean_dec(x_3); return x_5; } @@ -525,7 +525,7 @@ if (x_8 == 0) lean_object* x_9; lean_object* x_10; lean_dec(x_6); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_7, x_7, x_9, x_2); +x_10 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_7, x_7, x_9, x_2); lean_dec(x_7); return x_10; } @@ -534,7 +534,7 @@ else lean_object* x_11; lean_object* x_12; lean_dec(x_2); x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_7, x_7, x_11, x_6); +x_12 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_7, x_7, x_11, x_6); lean_dec(x_7); return x_12; } @@ -564,7 +564,7 @@ x_15 = lean_ctor_get(x_1, 1); lean_inc(x_15); lean_dec(x_1); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_15, x_15, x_16, x_2); +x_17 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_15, x_15, x_16, x_2); lean_dec(x_15); return x_17; } @@ -575,7 +575,7 @@ x_18 = lean_ctor_get(x_1, 1); lean_inc(x_18); lean_dec(x_1); x_19 = lean_unsigned_to_nat(0u); -x_20 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_18, x_18, x_19, x_2); +x_20 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_18, x_18, x_19, x_2); lean_dec(x_18); return x_20; } @@ -593,7 +593,7 @@ if (x_23 == 0) lean_object* x_24; lean_object* x_25; lean_dec(x_21); x_24 = lean_unsigned_to_nat(0u); -x_25 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_22, x_22, x_24, x_2); +x_25 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_22, x_22, x_24, x_2); lean_dec(x_22); return x_25; } @@ -602,7 +602,7 @@ else lean_object* x_26; lean_object* x_27; lean_dec(x_2); x_26 = lean_unsigned_to_nat(0u); -x_27 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_22, x_22, x_26, x_21); +x_27 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_22, x_22, x_26, x_21); lean_dec(x_22); return x_27; } @@ -687,7 +687,7 @@ return x_34; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -717,48 +717,48 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_1, x_2, x_2, x_4, x_3); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_1, x_2, x_2, x_4, x_3); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_12__collectAlts(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_1, x_2, x_2, x_4, x_3); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_1, x_2, x_2, x_4, x_3); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___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* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_FreeVars_7__collectArray___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_12__collectAlts___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_FreeVars_12__collectAlts(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -790,7 +790,7 @@ if (x_6 == 0) { lean_object* x_7; lean_dec(x_3); -x_7 = l___private_Init_Lean_Compiler_IR_FreeVars_11__collectExpr(x_4, x_2); +x_7 = l___private_Lean_Compiler_IR_FreeVars_11__collectExpr(x_4, x_2); x_1 = x_5; x_2 = x_7; goto _start; @@ -799,7 +799,7 @@ else { lean_object* x_9; lean_dec(x_2); -x_9 = l___private_Init_Lean_Compiler_IR_FreeVars_11__collectExpr(x_4, x_3); +x_9 = l___private_Lean_Compiler_IR_FreeVars_11__collectExpr(x_4, x_3); x_1 = x_5; x_2 = x_9; goto _start; @@ -824,7 +824,7 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_dec(x_11); x_16 = l_Lean_IR_MaxIndex_collectFnBody___main(x_13, x_2); x_17 = lean_unsigned_to_nat(0u); -x_18 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_12, x_12, x_17, x_16); +x_18 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_12, x_12, x_17, x_16); lean_dec(x_12); x_1 = x_14; x_2 = x_18; @@ -836,7 +836,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_dec(x_2); x_20 = l_Lean_IR_MaxIndex_collectFnBody___main(x_13, x_11); x_21 = lean_unsigned_to_nat(0u); -x_22 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_12, x_12, x_21, x_20); +x_22 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_12, x_12, x_21, x_20); lean_dec(x_12); x_1 = x_14; x_2 = x_22; @@ -858,7 +858,7 @@ if (x_27 == 0) { lean_object* x_28; lean_dec(x_24); -x_28 = l___private_Init_Lean_Compiler_IR_FreeVars_6__collectArg(x_25, x_2); +x_28 = l___private_Lean_Compiler_IR_FreeVars_6__collectArg(x_25, x_2); lean_dec(x_2); lean_dec(x_25); x_1 = x_26; @@ -869,7 +869,7 @@ else { lean_object* x_30; lean_dec(x_2); -x_30 = l___private_Init_Lean_Compiler_IR_FreeVars_6__collectArg(x_25, x_24); +x_30 = l___private_Lean_Compiler_IR_FreeVars_6__collectArg(x_25, x_24); lean_dec(x_24); lean_dec(x_25); x_1 = x_26; @@ -1026,7 +1026,7 @@ lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_dec(x_59); x_62 = l_Lean_IR_MaxIndex_collectFnBody___main___closed__1; x_63 = lean_unsigned_to_nat(0u); -x_64 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_62, x_60, x_60, x_63, x_2); +x_64 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_62, x_60, x_60, x_63, x_2); lean_dec(x_60); return x_64; } @@ -1036,7 +1036,7 @@ lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_dec(x_2); x_65 = l_Lean_IR_MaxIndex_collectFnBody___main___closed__1; x_66 = lean_unsigned_to_nat(0u); -x_67 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_65, x_60, x_60, x_66, x_59); +x_67 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_12__collectAlts___spec__2(x_65, x_60, x_60, x_66, x_59); lean_dec(x_60); return x_67; } @@ -1047,7 +1047,7 @@ lean_object* x_68; lean_object* x_69; x_68 = lean_ctor_get(x_1, 0); lean_inc(x_68); lean_dec(x_1); -x_69 = l___private_Init_Lean_Compiler_IR_FreeVars_6__collectArg(x_68, x_2); +x_69 = l___private_Lean_Compiler_IR_FreeVars_6__collectArg(x_68, x_2); lean_dec(x_2); lean_dec(x_68); return x_69; @@ -1066,7 +1066,7 @@ if (x_72 == 0) lean_object* x_73; lean_object* x_74; lean_dec(x_70); x_73 = lean_unsigned_to_nat(0u); -x_74 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_71, x_71, x_73, x_2); +x_74 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_71, x_71, x_73, x_2); lean_dec(x_71); return x_74; } @@ -1075,7 +1075,7 @@ else lean_object* x_75; lean_object* x_76; lean_dec(x_2); x_75 = lean_unsigned_to_nat(0u); -x_76 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_71, x_71, x_75, x_70); +x_76 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_8__collectArgs___spec__2(x_71, x_71, x_75, x_70); lean_dec(x_71); return x_76; } @@ -1130,7 +1130,7 @@ x_4 = lean_ctor_get(x_1, 3); lean_inc(x_4); lean_dec(x_1); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_3, x_3, x_5, x_2); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_3, x_3, x_5, x_2); lean_dec(x_3); x_7 = l_Lean_IR_MaxIndex_collectFnBody___main(x_4, x_6); return x_7; @@ -1142,7 +1142,7 @@ x_8 = lean_ctor_get(x_1, 1); lean_inc(x_8); lean_dec(x_1); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_8, x_8, x_9, x_2); +x_10 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_10__collectParams___spec__2(x_8, x_8, x_9, x_2); lean_dec(x_8); return x_10; } @@ -1166,40 +1166,40 @@ x_3 = l_Lean_IR_MaxIndex_collectDecl(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_13__skip___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_13__skip___rarg(lean_object* x_1) { _start: { lean_inc(x_1); return x_1; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_13__skip(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_13__skip(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_FreeVars_13__skip___rarg___boxed), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_FreeVars_13__skip___rarg___boxed), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_13__skip___rarg___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_13__skip___rarg___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_FreeVars_13__skip___rarg(x_1); +x_2 = l___private_Lean_Compiler_IR_FreeVars_13__skip___rarg(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_13__skip___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_13__skip___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_FreeVars_13__skip(x_1); +x_2 = l___private_Lean_Compiler_IR_FreeVars_13__skip(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1246,11 +1246,11 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_14__collectIndex(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_1); +x_4 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_1); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -1266,30 +1266,30 @@ return x_3; } } } -lean_object* l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_1, x_2); +x_3 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_14__collectIndex___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_FreeVars_14__collectIndex(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_15__collectVar(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_15__collectVar(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_1); +x_4 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_1); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -1305,20 +1305,20 @@ return x_3; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_15__collectVar___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_15__collectVar___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_FreeVars_15__collectVar(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_FreeVars_15__collectVar(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_16__collectJP(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_16__collectJP(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_1); +x_4 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_1); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -1334,16 +1334,16 @@ return x_3; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_16__collectJP___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_16__collectJP___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_FreeVars_16__collectJP(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_FreeVars_16__collectJP(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_17__withIndex(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_17__withIndex(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; @@ -1353,7 +1353,7 @@ x_7 = lean_apply_2(x_2, x_6, x_4); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_18__withVar(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_18__withVar(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; @@ -1363,7 +1363,7 @@ x_7 = lean_apply_2(x_2, x_6, x_4); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_19__withJP(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_19__withJP(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; @@ -1431,7 +1431,7 @@ lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_20__withParams(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_20__withParams(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; @@ -1441,16 +1441,16 @@ x_7 = lean_apply_2(x_2, x_6, x_4); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_20__withParams___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_20__withParams___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___private_Init_Lean_Compiler_IR_FreeVars_20__withParams(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_FreeVars_20__withParams(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_21__seq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_21__seq(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; @@ -1464,7 +1464,7 @@ lean_object* _init_l_Lean_IR_FreeIndices_HasAndthen___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_FreeVars_21__seq), 4, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_FreeVars_21__seq), 4, 0); return x_1; } } @@ -1476,7 +1476,7 @@ x_1 = l_Lean_IR_FreeIndices_HasAndthen___closed__1; return x_1; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_22__collectArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_22__collectArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1485,7 +1485,7 @@ lean_object* x_4; lean_object* x_5; x_4 = lean_ctor_get(x_1, 0); lean_inc(x_4); lean_dec(x_1); -x_5 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_4); +x_5 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; @@ -1506,16 +1506,16 @@ return x_3; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_22__collectArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_22__collectArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_FreeVars_22__collectArg(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_FreeVars_22__collectArg(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___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; @@ -1523,11 +1523,11 @@ x_6 = lean_apply_3(x_1, x_4, x_2, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___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; -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___lambda__1___boxed), 5, 2); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___lambda__1___boxed), 5, 2); lean_closure_set(x_5, 0, x_2); lean_closure_set(x_5, 1, x_3); x_6 = l_Id_monad; @@ -1536,24 +1536,24 @@ x_8 = l_Array_iterateMAux___main___rarg(x_6, lean_box(0), x_1, x_5, x_7, x_4); return x_8; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___rarg), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_FreeVars_23__collectArray___rarg), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___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* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___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___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_FreeVars_23__collectArray___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -1569,7 +1569,7 @@ else { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_8 = lean_array_fget(x_3, x_4); -x_9 = l___private_Init_Lean_Compiler_IR_FreeVars_22__collectArg(x_8, x_2, x_5); +x_9 = l___private_Lean_Compiler_IR_FreeVars_22__collectArg(x_8, x_2, x_5); x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_4, x_10); lean_dec(x_4); @@ -1579,56 +1579,56 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_1, x_2, x_1, x_4, x_3); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_1, x_2, x_1, x_4, x_3); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_24__collectArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_1, x_2, x_1, x_4, x_3); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_1, x_2, x_1, x_4, x_3); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___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* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_24__collectArgs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_FreeVars_24__collectArgs(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_25__collectExpr(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_25__collectExpr(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_1)) { @@ -1639,7 +1639,7 @@ x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_4, x_2, x_4, x_5, x_3); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_4, x_2, x_4, x_5, x_3); lean_dec(x_4); return x_6; } @@ -1651,14 +1651,14 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_1, 2); lean_inc(x_8); lean_dec(x_1); -x_9 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_7); +x_9 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_7); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_10 = lean_box(0); x_11 = l_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(x_3, x_7, x_10); x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_8, x_2, x_8, x_12, x_11); +x_13 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_8, x_2, x_8, x_12, x_11); lean_dec(x_8); return x_13; } @@ -1668,7 +1668,7 @@ lean_object* x_14; lean_object* x_15; lean_dec(x_9); lean_dec(x_7); x_14 = lean_unsigned_to_nat(0u); -x_15 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_8, x_2, x_8, x_14, x_3); +x_15 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_8, x_2, x_8, x_14, x_3); lean_dec(x_8); return x_15; } @@ -1679,7 +1679,7 @@ lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_1, 2); lean_inc(x_16); lean_dec(x_1); -x_17 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_16); +x_17 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_16); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; @@ -1701,7 +1701,7 @@ x_20 = lean_ctor_get(x_1, 1); lean_inc(x_20); lean_dec(x_1); x_21 = lean_unsigned_to_nat(0u); -x_22 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_20, x_2, x_20, x_21, x_3); +x_22 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_20, x_2, x_20, x_21, x_3); lean_dec(x_20); return x_22; } @@ -1712,7 +1712,7 @@ x_23 = lean_ctor_get(x_1, 1); lean_inc(x_23); lean_dec(x_1); x_24 = lean_unsigned_to_nat(0u); -x_25 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_23, x_2, x_23, x_24, x_3); +x_25 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_23, x_2, x_23, x_24, x_3); lean_dec(x_23); return x_25; } @@ -1724,14 +1724,14 @@ lean_inc(x_26); x_27 = lean_ctor_get(x_1, 1); lean_inc(x_27); lean_dec(x_1); -x_28 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_26); +x_28 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_26); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_29 = lean_box(0); x_30 = l_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(x_3, x_26, x_29); x_31 = lean_unsigned_to_nat(0u); -x_32 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_27, x_2, x_27, x_31, x_30); +x_32 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_27, x_2, x_27, x_31, x_30); lean_dec(x_27); return x_32; } @@ -1741,7 +1741,7 @@ lean_object* x_33; lean_object* x_34; lean_dec(x_28); lean_dec(x_26); x_33 = lean_unsigned_to_nat(0u); -x_34 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_27, x_2, x_27, x_33, x_3); +x_34 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_27, x_2, x_27, x_33, x_3); lean_dec(x_27); return x_34; } @@ -1752,7 +1752,7 @@ lean_object* x_35; lean_object* x_36; x_35 = lean_ctor_get(x_1, 0); lean_inc(x_35); lean_dec(x_1); -x_36 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_35); +x_36 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_35); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; @@ -1778,7 +1778,7 @@ lean_object* x_39; lean_object* x_40; x_39 = lean_ctor_get(x_1, 0); lean_inc(x_39); lean_dec(x_1); -x_40 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_39); +x_40 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_39); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; @@ -1799,7 +1799,7 @@ lean_object* x_43; lean_object* x_44; x_43 = lean_ctor_get(x_1, 0); lean_inc(x_43); lean_dec(x_1); -x_44 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_43); +x_44 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_43); if (lean_obj_tag(x_44) == 0) { lean_object* x_45; lean_object* x_46; @@ -1820,7 +1820,7 @@ lean_object* x_47; lean_object* x_48; x_47 = lean_ctor_get(x_1, 1); lean_inc(x_47); lean_dec(x_1); -x_48 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_47); +x_48 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_47); if (lean_obj_tag(x_48) == 0) { lean_object* x_49; lean_object* x_50; @@ -1838,16 +1838,16 @@ return x_3; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_25__collectExpr___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_25__collectExpr___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_FreeVars_25__collectExpr(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_FreeVars_25__collectExpr(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -1879,48 +1879,48 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_1, x_2, x_3, x_2, x_5, x_4); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_1, x_2, x_3, x_2, x_5, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_26__collectAlts(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 = lean_unsigned_to_nat(0u); -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_1, x_2, x_3, x_2, x_5, x_4); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_1, x_2, x_3, x_2, x_5, x_4); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___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* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_2); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___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___private_Init_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_FreeVars_23__collectArray___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_FreeVars_26__collectAlts___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___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_FreeVars_26__collectAlts(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } @@ -1947,7 +1947,7 @@ lean_inc(x_5); x_6 = lean_ctor_get(x_1, 3); lean_inc(x_6); lean_dec(x_1); -x_7 = l___private_Init_Lean_Compiler_IR_FreeVars_25__collectExpr(x_5, x_2, x_3); +x_7 = l___private_Lean_Compiler_IR_FreeVars_25__collectExpr(x_5, x_2, x_3); x_8 = lean_box(0); x_9 = l_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(x_2, x_4, x_8); x_1 = x_6; @@ -1989,13 +1989,13 @@ lean_inc(x_22); x_23 = lean_ctor_get(x_1, 3); lean_inc(x_23); lean_dec(x_1); -x_24 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_21); +x_24 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_21); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; lean_object* x_26; lean_object* x_27; x_25 = lean_box(0); x_26 = l_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(x_3, x_21, x_25); -x_27 = l___private_Init_Lean_Compiler_IR_FreeVars_22__collectArg(x_22, x_2, x_26); +x_27 = l___private_Lean_Compiler_IR_FreeVars_22__collectArg(x_22, x_2, x_26); x_1 = x_23; x_3 = x_27; goto _start; @@ -2005,7 +2005,7 @@ else lean_object* x_29; lean_dec(x_24); lean_dec(x_21); -x_29 = l___private_Init_Lean_Compiler_IR_FreeVars_22__collectArg(x_22, x_2, x_3); +x_29 = l___private_Lean_Compiler_IR_FreeVars_22__collectArg(x_22, x_2, x_3); x_1 = x_23; x_3 = x_29; goto _start; @@ -2021,13 +2021,13 @@ lean_inc(x_32); x_33 = lean_ctor_get(x_1, 3); lean_inc(x_33); lean_dec(x_1); -x_34 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_31); +x_34 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_31); if (lean_obj_tag(x_34) == 0) { lean_object* x_35; lean_object* x_36; lean_object* x_37; x_35 = lean_box(0); x_36 = l_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(x_3, x_31, x_35); -x_37 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_32); +x_37 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_32); if (lean_obj_tag(x_37) == 0) { lean_object* x_38; @@ -2050,7 +2050,7 @@ else lean_object* x_41; lean_dec(x_34); lean_dec(x_31); -x_41 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_32); +x_41 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_32); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; lean_object* x_43; @@ -2079,13 +2079,13 @@ lean_inc(x_47); x_48 = lean_ctor_get(x_1, 5); lean_inc(x_48); lean_dec(x_1); -x_49 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_46); +x_49 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_46); if (lean_obj_tag(x_49) == 0) { lean_object* x_50; lean_object* x_51; lean_object* x_52; x_50 = lean_box(0); x_51 = l_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(x_3, x_46, x_50); -x_52 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_47); +x_52 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_47); if (lean_obj_tag(x_52) == 0) { lean_object* x_53; @@ -2108,7 +2108,7 @@ else lean_object* x_56; lean_dec(x_49); lean_dec(x_46); -x_56 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_47); +x_56 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_47); if (lean_obj_tag(x_56) == 0) { lean_object* x_57; lean_object* x_58; @@ -2135,7 +2135,7 @@ lean_inc(x_61); x_62 = lean_ctor_get(x_1, 1); lean_inc(x_62); lean_dec(x_1); -x_63 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_61); +x_63 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_61); if (lean_obj_tag(x_63) == 0) { lean_object* x_64; lean_object* x_65; @@ -2170,7 +2170,7 @@ lean_inc(x_70); x_71 = lean_ctor_get(x_1, 3); lean_inc(x_71); lean_dec(x_1); -x_72 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_70); +x_72 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_70); if (lean_obj_tag(x_72) == 0) { lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; @@ -2178,7 +2178,7 @@ x_73 = lean_box(0); x_74 = l_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(x_3, x_70, x_73); x_75 = l_Lean_IR_FreeIndices_collectFnBody___main___closed__1; x_76 = lean_unsigned_to_nat(0u); -x_77 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_75, x_71, x_2, x_71, x_76, x_74); +x_77 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_75, x_71, x_2, x_71, x_76, x_74); lean_dec(x_71); return x_77; } @@ -2189,7 +2189,7 @@ lean_dec(x_72); lean_dec(x_70); x_78 = l_Lean_IR_FreeIndices_collectFnBody___main___closed__1; x_79 = lean_unsigned_to_nat(0u); -x_80 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_78, x_71, x_2, x_71, x_79, x_3); +x_80 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_26__collectAlts___spec__2(x_78, x_71, x_2, x_71, x_79, x_3); lean_dec(x_71); return x_80; } @@ -2200,7 +2200,7 @@ lean_object* x_81; lean_object* x_82; x_81 = lean_ctor_get(x_1, 0); lean_inc(x_81); lean_dec(x_1); -x_82 = l___private_Init_Lean_Compiler_IR_FreeVars_22__collectArg(x_81, x_2, x_3); +x_82 = l___private_Lean_Compiler_IR_FreeVars_22__collectArg(x_81, x_2, x_3); lean_dec(x_2); return x_82; } @@ -2212,14 +2212,14 @@ lean_inc(x_83); x_84 = lean_ctor_get(x_1, 1); lean_inc(x_84); lean_dec(x_1); -x_85 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_83); +x_85 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_83); if (lean_obj_tag(x_85) == 0) { lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; x_86 = lean_box(0); x_87 = l_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(x_3, x_83, x_86); x_88 = lean_unsigned_to_nat(0u); -x_89 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_84, x_2, x_84, x_88, x_87); +x_89 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_84, x_2, x_84, x_88, x_87); lean_dec(x_2); lean_dec(x_84); return x_89; @@ -2230,7 +2230,7 @@ lean_object* x_90; lean_object* x_91; lean_dec(x_85); lean_dec(x_83); x_90 = lean_unsigned_to_nat(0u); -x_91 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_84, x_2, x_84, x_90, x_3); +x_91 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_FreeVars_24__collectArgs___spec__2(x_84, x_2, x_84, x_90, x_3); lean_dec(x_2); lean_dec(x_84); return x_91; @@ -2249,7 +2249,7 @@ lean_inc(x_92); x_93 = lean_ctor_get(x_1, 2); lean_inc(x_93); lean_dec(x_1); -x_94 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_92); +x_94 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_FreeVars_14__collectIndex___spec__1(x_2, x_92); if (lean_obj_tag(x_94) == 0) { lean_object* x_95; lean_object* x_96; @@ -2991,13 +2991,13 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_FreeVars(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_FreeVars(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_MaxIndex_HasAndthen___closed__1 = _init_l_Lean_IR_MaxIndex_HasAndthen___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/LiveVars.c b/stage0/stdlib/Lean/Compiler/IR/LiveVars.c similarity index 91% rename from stage0/stdlib/Init/Lean/Compiler/IR/LiveVars.c rename to stage0/stdlib/Lean/Compiler/IR/LiveVars.c index 51ab9d3de6..0585bb8c91 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/LiveVars.c +++ b/stage0/stdlib/Lean/Compiler/IR/LiveVars.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.LiveVars -// Imports: Init.Lean.Compiler.IR.Basic Init.Lean.Compiler.IR.FreeVars Init.Control.Reader Init.Control.Conditional +// Module: Lean.Compiler.IR.LiveVars +// Imports: Lean.Compiler.IR.Basic Lean.Compiler.IR.FreeVars Init.Control.Reader Init.Control.Conditional #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,92 +13,92 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1___boxed(lean_object*, lean_object*); uint8_t l_RBNode_isRed___rarg(lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_1__skip___boxed(lean_object*); lean_object* l_RBNode_insert___at_Lean_IR_mkLiveVarSet___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; lean_object* l_Lean_IR_IsLive_visitArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitFnBody___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_LiveVars_collectExpr(lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitExpr___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1(lean_object*, lean_object*); lean_object* l_Lean_IR_LiveVars_collectFnBody(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_decLt___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitJP(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitExpr(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_8__bindVar___boxed(lean_object*, lean_object*); extern lean_object* l_Id_monad; lean_object* l_RBNode_balRight___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_8__bindVar(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_5__collectArgs___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitExpr(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_1__skip(lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_IR_IsLive_visitFnBody___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_2__collectVar(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_5__collectArgs(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_LiveVars_collectFnBody___main___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_AltCore_body(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_7__collectJP___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_RBNode_erase___at_Lean_IR_LocalContext_eraseJoinPointDecl___spec__1(lean_object*, lean_object*); lean_object* l_Lean_IR_collectLiveVars(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitArg(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_forM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams(lean_object*, lean_object*); lean_object* l_Lean_IR_LiveVars_collectFnBody___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_9__bindParams(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_1__skip(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitJP___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___boxed(lean_object*, lean_object*); -lean_object* l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_2__collectVar(lean_object*, lean_object*); +lean_object* l_RBNode_fold___main___at___private_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_LiveVars_updateJPLiveVarMap___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_IR_IsLive_visitFnBody___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_3__collectArg(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_LiveVars_collectFnBody___main___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_ins___main___at_Lean_IR_mkLiveVarSet___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitFnBody___main___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(lean_object*, lean_object*); +lean_object* l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_3__collectArg(lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitFnBody(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1___boxed(lean_object*, lean_object*); lean_object* l_RBNode_ins___main___at_Lean_IR_LiveVars_collectFnBody___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitArgs___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(lean_object*, lean_object*); lean_object* l_RBNode_appendTrees___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitArgs(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(lean_object*, lean_object*); lean_object* l_Lean_IR_updateLiveVars(lean_object*, lean_object*); lean_object* l_RBNode_balLeft___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_hasLiveVar(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitArg(lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitArgs(lean_object*, lean_object*); lean_object* l_Lean_IR_LiveVarSet_inhabited; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_setBlack___rarg(lean_object*); lean_object* l_Lean_IR_mkLiveVarSet(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_1__skip___boxed(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_LocalContext_getJPBody(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_7__collectJP(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitVar___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_9__bindParams___boxed(lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_IR_LiveVars_collectFnBody___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_hasLiveVar___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray(lean_object*); lean_object* l_Lean_IR_IsLive_visitVar(lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_fold___main___at___private_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitFnBody___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray(lean_object*); uint8_t l_RBNode_isBlack___rarg(lean_object*); +lean_object* l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_LiveVars_6__accumulate(lean_object*, lean_object*); lean_object* l_Lean_IR_LiveVars_updateJPLiveVarMap(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_IsLive_visitVar(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -3137,23 +3137,23 @@ x_4 = l_RBNode_insert___at_Lean_IR_mkLiveVarSet___spec__1(x_2, x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_1__skip(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_1__skip(lean_object* x_1) { _start: { lean_inc(x_1); return x_1; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_1__skip___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_1__skip___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_LiveVars_1__skip(x_1); +x_2 = l___private_Lean_Compiler_IR_LiveVars_1__skip(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_2__collectVar(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_2__collectVar(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -3162,7 +3162,7 @@ x_4 = l_RBNode_insert___at_Lean_IR_mkLiveVarSet___spec__1(x_2, x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_3__collectArg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_3__collectArg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3181,7 +3181,7 @@ return x_2; } } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___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; @@ -3193,15 +3193,15 @@ x_7 = l_Array_iterateMAux___main___rarg(x_5, lean_box(0), x_1, x_4, x_6, x_3); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_LiveVars_4__collectArray___rarg), 3, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___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_6; @@ -3217,7 +3217,7 @@ else { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = lean_array_fget(x_2, x_3); -x_8 = l___private_Init_Lean_Compiler_IR_LiveVars_3__collectArg(x_7, x_4); +x_8 = l___private_Lean_Compiler_IR_LiveVars_3__collectArg(x_7, x_4); x_9 = lean_unsigned_to_nat(1u); x_10 = lean_nat_add(x_3, x_9); lean_dec(x_3); @@ -3227,53 +3227,53 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_1, x_1, x_3, x_2); +x_4 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_1, x_1, x_3, x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_5__collectArgs(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_1, x_1, x_3, x_2); +x_4 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_1, x_1, x_3, x_2); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___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_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_5__collectArgs___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_LiveVars_5__collectArgs(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_fold___main___at___private_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -3290,7 +3290,7 @@ lean_inc(x_5); x_6 = lean_ctor_get(x_3, 3); lean_inc(x_6); lean_dec(x_3); -x_7 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(x_1, x_2, x_4); +x_7 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(x_1, x_2, x_4); x_8 = lean_box(0); x_9 = l_RBNode_insert___at_Lean_IR_mkLiveVarSet___spec__1(x_7, x_5, x_8); x_2 = x_9; @@ -3299,7 +3299,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1() { +lean_object* _init_l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1() { _start: { lean_object* x_1; @@ -3307,25 +3307,25 @@ x_1 = lean_alloc_closure((void*)(l_Nat_decLt___boxed), 2, 0); return x_1; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_6__accumulate(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; -x_4 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(x_3, x_2, x_1); +x_3 = l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; +x_4 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(x_3, x_2, x_1); return x_4; } } -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_fold___main___at___private_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(x_1, x_2, x_3); +x_4 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3368,11 +3368,11 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_7__collectJP(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_RBNode_find___main___at___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(x_1, x_2); +x_4 = l_RBNode_find___main___at___private_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(x_1, x_2); if (lean_obj_tag(x_4) == 0) { return x_3; @@ -3383,33 +3383,33 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); lean_dec(x_4); -x_6 = l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; -x_7 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(x_6, x_3, x_5); +x_6 = l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; +x_7 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_LiveVars_6__accumulate___spec__1(x_6, x_3, x_5); return x_7; } } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_RBNode_find___main___at___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(x_1, x_2); +x_3 = l_RBNode_find___main___at___private_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_7__collectJP___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_LiveVars_7__collectJP(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -3448,7 +3448,7 @@ x_11 = l_RBNode_isBlack___rarg(x_7); if (x_11 == 0) { lean_object* x_12; uint8_t x_13; -x_12 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_7); +x_12 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_7); x_13 = 0; lean_ctor_set(x_2, 3, x_12); lean_ctor_set_uint8(x_2, sizeof(void*)*4, x_13); @@ -3458,7 +3458,7 @@ else { lean_object* x_14; lean_object* x_15; lean_free_object(x_2); -x_14 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_7); +x_14 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_7); x_15 = l_RBNode_balRight___rarg(x_4, x_5, x_6, x_14); return x_15; } @@ -3471,7 +3471,7 @@ x_16 = l_RBNode_isBlack___rarg(x_4); if (x_16 == 0) { lean_object* x_17; uint8_t x_18; -x_17 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_4); +x_17 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_4); x_18 = 0; lean_ctor_set(x_2, 0, x_17); lean_ctor_set_uint8(x_2, sizeof(void*)*4, x_18); @@ -3481,7 +3481,7 @@ else { lean_object* x_19; lean_object* x_20; lean_free_object(x_2); -x_19 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_4); +x_19 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_4); x_20 = l_RBNode_balLeft___rarg(x_19, x_5, x_6, x_7); return x_20; } @@ -3519,7 +3519,7 @@ x_28 = l_RBNode_isBlack___rarg(x_24); if (x_28 == 0) { lean_object* x_29; uint8_t x_30; lean_object* x_31; -x_29 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_24); +x_29 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_24); x_30 = 0; x_31 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_31, 0, x_21); @@ -3532,7 +3532,7 @@ return x_31; else { lean_object* x_32; lean_object* x_33; -x_32 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_24); +x_32 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_24); x_33 = l_RBNode_balRight___rarg(x_21, x_22, x_23, x_32); return x_33; } @@ -3545,7 +3545,7 @@ x_34 = l_RBNode_isBlack___rarg(x_21); if (x_34 == 0) { lean_object* x_35; uint8_t x_36; lean_object* x_37; -x_35 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_21); +x_35 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_21); x_36 = 0; x_37 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_37, 0, x_35); @@ -3558,7 +3558,7 @@ return x_37; else { lean_object* x_38; lean_object* x_39; -x_38 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_21); +x_38 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_21); x_39 = l_RBNode_balLeft___rarg(x_38, x_22, x_23, x_24); return x_39; } @@ -3567,51 +3567,51 @@ return x_39; } } } -lean_object* l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_2); +x_3 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_2); x_4 = l_RBNode_setBlack___rarg(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_8__bindVar(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_1, x_2); +x_3 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_1, x_2); return x_3; } } -lean_object* l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_RBNode_del___main___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_2); +x_3 = l_RBNode_del___main___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__2(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_1, x_2); +x_3 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_8__bindVar___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_LiveVars_8__bindVar(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_9__bindParams___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_6; @@ -3633,7 +3633,7 @@ lean_dec(x_7); x_9 = lean_unsigned_to_nat(1u); x_10 = lean_nat_add(x_3, x_9); lean_dec(x_3); -x_11 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_8, x_4); +x_11 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_8, x_4); lean_dec(x_8); x_3 = x_10; x_4 = x_11; @@ -3641,30 +3641,30 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_9__bindParams(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(x_1, x_1, x_3, x_2); +x_4 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(x_1, x_1, x_3, x_2); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_9__bindParams___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_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_9__bindParams___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_LiveVars_9__bindParams(x_1, x_2); lean_dec(x_1); return x_3; } @@ -3680,7 +3680,7 @@ x_3 = lean_ctor_get(x_1, 1); lean_inc(x_3); lean_dec(x_1); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_3, x_3, x_4, x_2); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_3, x_3, x_4, x_2); lean_dec(x_3); return x_5; } @@ -3693,7 +3693,7 @@ x_7 = lean_ctor_get(x_1, 2); lean_inc(x_7); lean_dec(x_1); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_7, x_7, x_8, x_2); +x_9 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_7, x_7, x_8, x_2); lean_dec(x_7); x_10 = lean_box(0); x_11 = l_RBNode_insert___at_Lean_IR_mkLiveVarSet___spec__1(x_9, x_6, x_10); @@ -3716,7 +3716,7 @@ x_15 = lean_ctor_get(x_1, 1); lean_inc(x_15); lean_dec(x_1); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_15, x_15, x_16, x_2); +x_17 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_15, x_15, x_16, x_2); lean_dec(x_15); return x_17; } @@ -3727,7 +3727,7 @@ x_18 = lean_ctor_get(x_1, 1); lean_inc(x_18); lean_dec(x_1); x_19 = lean_unsigned_to_nat(0u); -x_20 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_18, x_18, x_19, x_2); +x_20 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_18, x_18, x_19, x_2); lean_dec(x_18); return x_20; } @@ -3740,7 +3740,7 @@ x_22 = lean_ctor_get(x_1, 1); lean_inc(x_22); lean_dec(x_1); x_23 = lean_unsigned_to_nat(0u); -x_24 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_22, x_22, x_23, x_2); +x_24 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_22, x_22, x_23, x_2); lean_dec(x_22); x_25 = lean_box(0); x_26 = l_RBNode_insert___at_Lean_IR_mkLiveVarSet___spec__1(x_24, x_21, x_25); @@ -6229,7 +6229,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -6253,7 +6253,7 @@ x_6 = lean_ctor_get(x_1, 3); lean_inc(x_6); lean_dec(x_1); x_7 = l_Lean_IR_LiveVars_collectFnBody___main(x_6, x_2, x_3); -x_8 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_4, x_7); +x_8 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_4, x_7); lean_dec(x_4); x_9 = l_Lean_IR_LiveVars_collectExpr(x_5, x_8); return x_9; @@ -6274,7 +6274,7 @@ x_14 = lean_box(0); lean_inc(x_2); x_15 = l_Lean_IR_LiveVars_collectFnBody___main(x_12, x_2, x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(x_11, x_11, x_16, x_15); +x_17 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(x_11, x_11, x_16, x_15); lean_dec(x_11); x_18 = l_RBNode_insert___at_Lean_IR_LiveVars_collectFnBody___main___spec__1(x_2, x_10, x_17); x_1 = x_13; @@ -6292,7 +6292,7 @@ x_22 = lean_ctor_get(x_1, 3); lean_inc(x_22); lean_dec(x_1); x_23 = l_Lean_IR_LiveVars_collectFnBody___main(x_22, x_2, x_3); -x_24 = l___private_Init_Lean_Compiler_IR_LiveVars_3__collectArg(x_21, x_23); +x_24 = l___private_Lean_Compiler_IR_LiveVars_3__collectArg(x_21, x_23); x_25 = lean_box(0); x_26 = l_RBNode_insert___at_Lean_IR_mkLiveVarSet___spec__1(x_24, x_20, x_25); return x_26; @@ -6373,7 +6373,7 @@ lean_dec(x_2); x_54 = lean_ctor_get(x_1, 0); lean_inc(x_54); lean_dec(x_1); -x_55 = l___private_Init_Lean_Compiler_IR_LiveVars_3__collectArg(x_54, x_3); +x_55 = l___private_Lean_Compiler_IR_LiveVars_3__collectArg(x_54, x_3); return x_55; } case 12: @@ -6385,9 +6385,9 @@ x_57 = lean_ctor_get(x_1, 1); lean_inc(x_57); lean_dec(x_1); x_58 = lean_unsigned_to_nat(0u); -x_59 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_57, x_57, x_58, x_3); +x_59 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_5__collectArgs___spec__2(x_57, x_57, x_58, x_3); lean_dec(x_57); -x_60 = l___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP(x_2, x_56, x_59); +x_60 = l___private_Lean_Compiler_IR_LiveVars_7__collectJP(x_2, x_56, x_59); lean_dec(x_56); lean_dec(x_2); return x_60; @@ -6423,11 +6423,11 @@ lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_LiveVars_4__collectArray___at_Lean_IR_LiveVars_collectFnBody___main___spec__3(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -6448,7 +6448,7 @@ x_5 = lean_box(0); lean_inc(x_4); x_6 = l_Lean_IR_LiveVars_collectFnBody___main(x_3, x_4, x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(x_2, x_2, x_7, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_LiveVars_9__bindParams___spec__1(x_2, x_2, x_7, x_6); x_9 = l_RBNode_insert___at_Lean_IR_LiveVars_collectFnBody___main___spec__1(x_4, x_1, x_8); return x_9; } @@ -6478,19 +6478,19 @@ x_4 = l_Lean_IR_LiveVars_collectFnBody___main(x_1, x_2, x_3); return x_4; } } -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_FreeVars(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_FreeVars(lean_object*); lean_object* initialize_Init_Control_Reader(lean_object*); lean_object* initialize_Init_Control_Conditional(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_LiveVars(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_LiveVars(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Init_Control_Reader(lean_io_mk_world()); @@ -6501,8 +6501,8 @@ if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_LiveVarSet_inhabited = _init_l_Lean_IR_LiveVarSet_inhabited(); lean_mark_persistent(l_Lean_IR_LiveVarSet_inhabited); -l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1 = _init_l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1); +l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1 = _init_l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/NormIds.c b/stage0/stdlib/Lean/Compiler/IR/NormIds.c similarity index 99% rename from stage0/stdlib/Init/Lean/Compiler/IR/NormIds.c rename to stage0/stdlib/Lean/Compiler/IR/NormIds.c index d9265f2f71..e3fc54ab87 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/NormIds.c +++ b/stage0/stdlib/Lean/Compiler/IR/NormIds.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.NormIds -// Imports: Init.Control.Reader Init.Control.Conditional Init.Lean.Compiler.IR.Basic +// Module: Lean.Compiler.IR.NormIds +// Imports: Init.Control.Reader Init.Control.Conditional Lean.Compiler.IR.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -6951,9 +6951,9 @@ return x_4; } lean_object* initialize_Init_Control_Reader(lean_object*); lean_object* initialize_Init_Control_Conditional(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_NormIds(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_NormIds(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -6963,7 +6963,7 @@ lean_dec_ref(res); res = initialize_Init_Control_Conditional(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/PushProj.c b/stage0/stdlib/Lean/Compiler/IR/PushProj.c similarity index 97% rename from stage0/stdlib/Init/Lean/Compiler/IR/PushProj.c rename to stage0/stdlib/Lean/Compiler/IR/PushProj.c index b948b32c27..23f06b231f 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/PushProj.c +++ b/stage0/stdlib/Lean/Compiler/IR/PushProj.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.PushProj -// Imports: Init.Lean.Compiler.IR.Basic Init.Lean.Compiler.IR.FreeVars Init.Lean.Compiler.IR.NormIds +// Module: Lean.Compiler.IR.PushProj +// Imports: Lean.Compiler.IR.Basic Lean.Compiler.IR.FreeVars Lean.Compiler.IR.NormIds #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -848,21 +848,21 @@ return x_1; } } } -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_FreeVars(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_NormIds(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_FreeVars(lean_object*); +lean_object* initialize_Lean_Compiler_IR_NormIds(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_PushProj(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_PushProj(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_FreeVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_NormIds(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_NormIds(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/RC.c b/stage0/stdlib/Lean/Compiler/IR/RC.c similarity index 77% rename from stage0/stdlib/Init/Lean/Compiler/IR/RC.c rename to stage0/stdlib/Lean/Compiler/IR/RC.c index faa84ea202..0198c7b775 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/RC.c +++ b/stage0/stdlib/Lean/Compiler/IR/RC.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.RC -// Imports: Init.Lean.Runtime Init.Lean.Compiler.IR.CompilerM Init.Lean.Compiler.IR.LiveVars +// Module: Lean.Compiler.IR.RC +// Imports: Lean.Runtime Lean.Compiler.IR.CompilerM Lean.Compiler.IR.LiveVars #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,152 +13,152 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_RBNode_isRed___rarg(lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_getDecl___boxed(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam(lean_object*, lean_object*, lean_object*); +uint8_t l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__2(lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(lean_object*); lean_object* l_RBNode_insert___at_Lean_IR_mkLiveVarSet___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2___boxed(lean_object*, lean_object*); uint8_t l_Lean_IR_Arg_beq(lean_object*, lean_object*); +lean_object* l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_getJPLiveVars(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_getJPParams___boxed(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg___boxed(lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_12__isPersistent(lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_visitDecl(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_IR_ExplicitRC_visitFnBody___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr___boxed(lean_object*); lean_object* l_Lean_IR_LiveVars_collectExpr(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg___boxed(lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_3__isFirstOcc(lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_RC_15__updateVarInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_ExplicitRC_updateVarInfoWithParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_13__consumeExpr(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_15__updateVarInfo(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_addDec(lean_object*, lean_object*, lean_object*); +uint8_t l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_LocalContext_getJPParams(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr___boxed(lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_13__consumeExpr___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_3__isFirstOcc___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__1___boxed(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_object* l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_foldAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_getEnv___rarg(lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_explicitRC(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_IR_ExplicitRC_getVarInfo___spec__1(lean_object*, lean_object*); uint8_t l_Lean_IR_IRType_isObj(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2___boxed(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_RBNode_findCore___main___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc___boxed(lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_IR_Arg_Inhabited; lean_object* l_Lean_IR_ExplicitRC_getVarInfo___closed__1; -lean_object* l___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_updateVarInfoWithParams___boxed(lean_object*, lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_13__consumeExpr___boxed(lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_12__isPersistent(lean_object*); lean_object* l_Lean_IR_ExplicitRC_getVarInfo___boxed(lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_16__addDecIfNeeded(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_CtorInfo_isRef(lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_getJPParams(lean_object*, lean_object*); +lean_object* l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_16__addDecIfNeeded___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_LiveVars_collectFnBody___main(lean_object*, lean_object*, lean_object*); -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__2___boxed(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg(lean_object*); -lean_object* l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(lean_object*, lean_object*); +lean_object* l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_IR_paramInh; -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_12__isPersistent___boxed(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2(lean_object*, lean_object*); uint8_t l_Nat_anyAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_findEnvDecl_x27(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_15__updateVarInfo(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4(lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_addInc(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_2__addDecForAlt(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___boxed(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_17__processVDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_maxSmallNat; lean_object* l_Array_umapMAux___main___at_Lean_IR_explicitRC___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_getJPLiveVars___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_8__addIncBefore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg(lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___boxed(lean_object*); +lean_object* l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_11__addDecForDeadParams(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_17__processVDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_8__addIncBefore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_16__addDecIfNeeded(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_15__updateVarInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_17__processVDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_addInc___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(lean_object*, lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_12__isPersistent___boxed(lean_object*); lean_object* l_Lean_IR_ExplicitRC_getDecl(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_IR_ExplicitRC_updateVarInfoWithParams___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__4___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_16__addDecIfNeeded___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_setBlack___rarg(lean_object*); uint8_t l_Lean_IR_ExplicitRC_mustConsume(lean_object*, lean_object*); lean_object* l_Lean_IR_mkLiveVarSet(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__2(lean_object*, lean_object*, lean_object*); -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_5__isBorrowParam(lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_RC_13__consumeExpr(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_getVarInfo(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_updateVarInfoWithParams(lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_visitFnBody___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc(lean_object*, lean_object*); -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_8__addIncBefore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_5__isBorrowParam___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2(lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_IR_ExplicitRC_getVarInfo___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_2__addDecForAlt___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_visitFnBody(lean_object*, lean_object*); extern lean_object* l_Lean_IR_Decl_Inhabited___closed__1; lean_object* l_Lean_IR_explicitRC___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_17__processVDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_addDec___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Decl_params(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_IR_ExplicitRC_visitFnBody___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_mustConsume___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_LiveVars_updateJPLiveVarMap(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ExplicitRC_getDecl(lean_object* x_1, lean_object* x_2) { _start: { @@ -327,7 +327,7 @@ _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_ctor_get(x_1, 3); -x_4 = l_RBNode_find___main___at___private_Init_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(x_3, x_2); +x_4 = l_RBNode_find___main___at___private_Lean_Compiler_IR_LiveVars_7__collectJP___spec__1(x_3, x_2); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; @@ -453,7 +453,7 @@ lean_dec(x_1); return x_4; } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -499,7 +499,7 @@ return x_1; else { lean_object* x_14; -x_14 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_11, x_2, x_3); +x_14 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_11, x_2, x_3); lean_ctor_set(x_1, 3, x_14); return x_1; } @@ -507,7 +507,7 @@ return x_1; else { lean_object* x_15; -x_15 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_8, x_2, x_3); +x_15 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_8, x_2, x_3); lean_ctor_set(x_1, 0, x_15); return x_1; } @@ -545,7 +545,7 @@ return x_22; else { lean_object* x_23; lean_object* x_24; -x_23 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_19, x_2, x_3); +x_23 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_19, x_2, x_3); x_24 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_24, 0, x_16); lean_ctor_set(x_24, 1, x_17); @@ -558,7 +558,7 @@ return x_24; else { lean_object* x_25; lean_object* x_26; -x_25 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_16, x_2, x_3); +x_25 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_16, x_2, x_3); x_26 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_17); @@ -600,14 +600,14 @@ x_34 = l_RBNode_isRed___rarg(x_31); if (x_34 == 0) { lean_object* x_35; -x_35 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_31, x_2, x_3); +x_35 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_31, x_2, x_3); lean_ctor_set(x_1, 3, x_35); return x_1; } else { lean_object* x_36; lean_object* x_37; -x_36 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_31, x_2, x_3); +x_36 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_31, x_2, x_3); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); if (lean_obj_tag(x_37) == 0) @@ -1268,14 +1268,14 @@ x_174 = l_RBNode_isRed___rarg(x_28); if (x_174 == 0) { lean_object* x_175; -x_175 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_28, x_2, x_3); +x_175 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_28, x_2, x_3); lean_ctor_set(x_1, 0, x_175); return x_1; } else { lean_object* x_176; lean_object* x_177; -x_176 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_28, x_2, x_3); +x_176 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_28, x_2, x_3); x_177 = lean_ctor_get(x_176, 0); lean_inc(x_177); if (lean_obj_tag(x_177) == 0) @@ -1975,7 +1975,7 @@ x_322 = l_RBNode_isRed___rarg(x_318); if (x_322 == 0) { lean_object* x_323; lean_object* x_324; -x_323 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_318, x_2, x_3); +x_323 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_318, x_2, x_3); x_324 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_324, 0, x_315); lean_ctor_set(x_324, 1, x_316); @@ -1987,7 +1987,7 @@ return x_324; else { lean_object* x_325; lean_object* x_326; -x_325 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_318, x_2, x_3); +x_325 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_318, x_2, x_3); x_326 = lean_ctor_get(x_325, 0); lean_inc(x_326); if (lean_obj_tag(x_326) == 0) @@ -2408,7 +2408,7 @@ x_400 = l_RBNode_isRed___rarg(x_315); if (x_400 == 0) { lean_object* x_401; lean_object* x_402; -x_401 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_315, x_2, x_3); +x_401 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_315, x_2, x_3); x_402 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_402, 0, x_401); lean_ctor_set(x_402, 1, x_316); @@ -2420,7 +2420,7 @@ return x_402; else { lean_object* x_403; lean_object* x_404; -x_403 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_315, x_2, x_3); +x_403 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_315, x_2, x_3); x_404 = lean_ctor_get(x_403, 0); lean_inc(x_404); if (lean_obj_tag(x_404) == 0) @@ -2838,7 +2838,7 @@ return x_477; } } } -lean_object* l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -2846,19 +2846,19 @@ x_4 = l_RBNode_isRed___rarg(x_1); if (x_4 == 0) { lean_object* x_5; -x_5 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_1, x_2, x_3); +x_5 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_1, x_2, x_3); return x_5; } else { lean_object* x_6; lean_object* x_7; -x_6 = l_RBNode_ins___main___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_1, x_2, x_3); +x_6 = l_RBNode_ins___main___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__2(x_1, x_2, x_3); x_7 = l_RBNode_setBlack___rarg(x_6); return x_7; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -2889,7 +2889,7 @@ if (x_9 == 0) uint8_t x_10; lean_object* x_11; x_10 = 0; lean_ctor_set_uint8(x_8, 0, x_10); -x_11 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_8); +x_11 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_8); lean_ctor_set(x_1, 2, x_11); return x_1; } @@ -2904,7 +2904,7 @@ x_15 = lean_alloc_ctor(0, 0, 3); lean_ctor_set_uint8(x_15, 0, x_14); lean_ctor_set_uint8(x_15, 1, x_12); lean_ctor_set_uint8(x_15, 2, x_13); -x_16 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_15); +x_16 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_15); lean_ctor_set(x_1, 2, x_16); return x_1; } @@ -2960,7 +2960,7 @@ if (lean_is_scalar(x_27)) { lean_ctor_set_uint8(x_29, 0, x_28); lean_ctor_set_uint8(x_29, 1, x_25); lean_ctor_set_uint8(x_29, 2, x_26); -x_30 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_19, x_2, x_29); +x_30 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_19, x_2, x_29); x_31 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_31, 0, x_17); lean_ctor_set(x_31, 1, x_18); @@ -2978,16 +2978,16 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -lean_object* l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3034,7 +3034,7 @@ goto _start; } } } -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_5) == 0) @@ -3047,8 +3047,8 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj x_6 = lean_ctor_get(x_5, 0); x_7 = lean_ctor_get(x_5, 1); x_8 = lean_ctor_get(x_5, 3); -x_9 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_2, x_3, x_4, x_6); -x_10 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_2, x_7); +x_9 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_2, x_3, x_4, x_6); +x_10 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_2, x_7); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -3089,30 +3089,30 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_2__addDecForAlt(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___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; -x_6 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_3, x_5, x_4, x_2); +x_5 = l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; +x_6 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_3, x_5, x_4, x_2); return x_6; } } -lean_object* l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_1, x_2); +x_3 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___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* l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); @@ -3120,18 +3120,18 @@ lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_2__addDecForAlt___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___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_RC_2__addDecForAlt(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_3__isFirstOcc___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_6; @@ -3171,14 +3171,14 @@ return x_15; } } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Compiler_IR_RC_3__isFirstOcc(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; x_3 = l_Lean_IR_Arg_Inhabited; x_4 = lean_array_get(x_3, x_1, x_2); lean_inc(x_2); -x_5 = l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1(x_1, x_4, x_2, x_2); +x_5 = l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1(x_1, x_4, x_2, x_2); lean_dec(x_2); lean_dec(x_4); if (x_5 == 0) @@ -3195,11 +3195,11 @@ return x_7; } } } -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_3__isFirstOcc___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -3207,17 +3207,17 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_RC_3__isFirstOcc___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_RC_3__isFirstOcc(x_1, x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___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; @@ -3267,12 +3267,12 @@ return x_13; } } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_inc(x_2); -x_4 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1___boxed), 4, 3); +x_4 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1___boxed), 4, 3); lean_closure_set(x_4, 0, x_2); lean_closure_set(x_4, 1, x_1); lean_closure_set(x_4, 2, x_3); @@ -3284,27 +3284,27 @@ lean_dec(x_5); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux(x_1, x_2, x_3); x_5 = lean_box(x_4); return x_5; } } -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -3371,30 +3371,30 @@ return x_22; } } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(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_3); lean_inc(x_4); -x_5 = l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2(x_1, x_2, x_3, x_4, x_4); +x_5 = l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2(x_1, x_2, x_3, x_4, x_4); lean_dec(x_4); return x_5; } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +uint8_t l___private_Lean_Compiler_IR_RC_5__isBorrowParam(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; -x_4 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(x_3, x_1, x_2); +x_4 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(x_3, x_1, x_2); return x_4; } } -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___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* l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -3403,11 +3403,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -3415,11 +3415,11 @@ x_5 = lean_box(x_4); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_RC_5__isBorrowParam___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_RC_5__isBorrowParam(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -3427,7 +3427,7 @@ x_5 = lean_box(x_4); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___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; lean_object* x_7; @@ -3477,12 +3477,12 @@ return x_5; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions(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_inc(x_2); -x_4 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___lambda__1___boxed), 5, 3); +x_4 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___lambda__1___boxed), 5, 3); lean_closure_set(x_4, 0, x_2); lean_closure_set(x_4, 1, x_1); lean_closure_set(x_4, 2, x_3); @@ -3495,18 +3495,18 @@ lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___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* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___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___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___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* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___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) { _start: { lean_object* x_7; lean_object* x_8; @@ -3533,7 +3533,7 @@ return x_6; else { uint8_t x_12; -x_12 = l___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc(x_1, x_5); +x_12 = l___private_Lean_Compiler_IR_RC_3__isFirstOcc(x_1, x_5); if (x_12 == 0) { lean_dec(x_10); @@ -3549,7 +3549,7 @@ lean_object* x_13; uint8_t x_14; lean_inc(x_3); lean_inc(x_1); lean_inc(x_9); -x_13 = l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions(x_9, x_1, x_3); +x_13 = l___private_Lean_Compiler_IR_RC_6__getNumConsumptions(x_9, x_1, x_3); x_14 = lean_ctor_get_uint8(x_10, 2); if (x_14 == 0) { @@ -3584,14 +3584,14 @@ return x_6; else { lean_object* x_20; lean_object* x_21; -x_20 = l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; +x_20 = l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; lean_inc(x_9); x_21 = l_RBNode_findCore___main___rarg(x_20, x_4, x_9); if (lean_obj_tag(x_21) == 0) { uint8_t x_22; lean_inc(x_9); -x_22 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux(x_9, x_1, x_3); +x_22 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux(x_9, x_1, x_3); if (x_22 == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; @@ -3694,12 +3694,12 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux(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_inc(x_2); -x_6 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___lambda__1___boxed), 6, 4); +x_6 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___lambda__1___boxed), 6, 4); lean_closure_set(x_6, 0, x_2); lean_closure_set(x_6, 1, x_1); lean_closure_set(x_6, 2, x_3); @@ -3712,16 +3712,16 @@ lean_dec(x_7); return x_8; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___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* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___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) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); return x_7; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -3788,19 +3788,19 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_array_get_size(x_3); x_5 = lean_unsigned_to_nat(0u); lean_inc(x_4); -x_6 = l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__3(x_1, x_2, x_3, x_4, x_4, x_5); +x_6 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__3(x_1, x_2, x_3, x_4, x_4, x_5); lean_dec(x_4); return x_6; } } -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -3867,18 +3867,18 @@ return x_22; } } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; x_4 = lean_array_get_size(x_3); lean_inc(x_4); -x_5 = l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__5(x_1, x_2, x_3, x_4, x_4); +x_5 = l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__5(x_1, x_2, x_3, x_4, x_4); lean_dec(x_4); return x_5; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -3912,7 +3912,7 @@ goto _start; else { uint8_t x_19; -x_19 = l___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc(x_3, x_12); +x_19 = l___private_Lean_Compiler_IR_RC_3__isFirstOcc(x_3, x_12); if (x_19 == 0) { lean_dec(x_16); @@ -3923,7 +3923,7 @@ goto _start; else { lean_object* x_21; uint8_t x_22; -x_21 = l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__2(x_1, x_15, x_3); +x_21 = l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__2(x_1, x_15, x_3); x_22 = lean_ctor_get_uint8(x_16, 2); if (x_22 == 0) { @@ -3957,11 +3957,11 @@ goto _start; else { lean_object* x_29; -x_29 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_4, x_15); +x_29 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_4, x_15); if (lean_obj_tag(x_29) == 0) { uint8_t x_30; -x_30 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__4(x_1, x_15, x_3); +x_30 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__4(x_1, x_15, x_3); if (x_30 == 0) { lean_object* x_31; uint8_t x_32; @@ -4071,30 +4071,30 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; x_6 = lean_array_get_size(x_3); lean_inc(x_6); -x_7 = l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__6(x_1, x_2, x_3, x_5, x_6, x_6, x_4); +x_7 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__6(x_1, x_2, x_3, x_5, x_6, x_6, x_4); lean_dec(x_6); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_8__addIncBefore(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_RC_8__addIncBefore(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(x_3, x_1, x_2, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(x_3, x_1, x_2, x_4, x_5); return x_6; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___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* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___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: { lean_object* x_7; -x_7 = l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -4102,22 +4102,22 @@ lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__2(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__2(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___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* l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___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_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__5(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__5(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -4126,11 +4126,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__4(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__4(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -4138,11 +4138,11 @@ x_5 = lean_box(x_4); return x_5; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -4151,11 +4151,11 @@ lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___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* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); @@ -4163,11 +4163,11 @@ lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_RC_8__addIncBefore___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_RC_8__addIncBefore(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_RC_8__addIncBefore(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); @@ -4175,7 +4175,7 @@ lean_dec(x_1); return x_6; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -4207,7 +4207,7 @@ goto _start; else { uint8_t x_18; -x_18 = l___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc(x_2, x_12); +x_18 = l___private_Lean_Compiler_IR_RC_3__isFirstOcc(x_2, x_12); if (x_18 == 0) { lean_dec(x_15); @@ -4217,7 +4217,7 @@ goto _start; else { uint8_t x_20; -x_20 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(x_3, x_15, x_2); +x_20 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_5__isBorrowParam___spec__1(x_3, x_15, x_2); if (x_20 == 0) { lean_dec(x_15); @@ -4227,7 +4227,7 @@ goto _start; else { lean_object* x_22; -x_22 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_4, x_15); +x_22 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_4, x_15); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; uint8_t x_24; uint8_t x_25; lean_object* x_26; @@ -4270,22 +4270,22 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp(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 = lean_array_get_size(x_2); lean_inc(x_6); -x_7 = l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1(x_1, x_2, x_3, x_5, x_6, x_6, x_4); +x_7 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1(x_1, x_2, x_3, x_5, x_6, x_6, x_4); lean_dec(x_6); return x_7; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp___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* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -4294,11 +4294,11 @@ lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); @@ -4306,7 +4306,7 @@ lean_dec(x_1); return x_6; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___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; @@ -4358,19 +4358,19 @@ return x_5; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; x_3 = lean_array_get_size(x_2); x_4 = lean_unsigned_to_nat(0u); lean_inc(x_3); -x_5 = l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__3(x_1, x_2, x_3, x_3, x_4); +x_5 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__3(x_1, x_2, x_3, x_3, x_4); lean_dec(x_3); return x_5; } } -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5(lean_object* x_1, lean_object* x_2) { +uint8_t l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -4394,26 +4394,26 @@ return x_8; } } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg(lean_object* x_1) { +uint8_t l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; x_2 = lean_array_get_size(x_1); lean_inc(x_2); -x_3 = l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5(x_2, x_2); +x_3 = l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5(x_2, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg___boxed), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg___boxed), 1, 0); return x_2; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -4447,7 +4447,7 @@ goto _start; else { uint8_t x_18; -x_18 = l___private_Init_Lean_Compiler_IR_RC_3__isFirstOcc(x_2, x_11); +x_18 = l___private_Lean_Compiler_IR_RC_3__isFirstOcc(x_2, x_11); if (x_18 == 0) { lean_dec(x_15); @@ -4458,7 +4458,7 @@ goto _start; else { lean_object* x_20; uint8_t x_21; -x_20 = l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2(x_14, x_2); +x_20 = l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2(x_14, x_2); x_21 = lean_ctor_get_uint8(x_15, 2); if (x_21 == 0) { @@ -4492,11 +4492,11 @@ goto _start; else { lean_object* x_28; -x_28 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_3, x_14); +x_28 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_3, x_14); if (lean_obj_tag(x_28) == 0) { uint8_t x_29; -x_29 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg(x_2); +x_29 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg(x_2); if (x_29 == 0) { lean_object* x_30; uint8_t x_31; @@ -4606,80 +4606,80 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; x_5 = lean_array_get_size(x_2); lean_inc(x_5); -x_6 = l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6(x_1, x_2, x_4, x_5, x_5, x_3); +x_6 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6(x_1, x_2, x_4, x_5, x_5, x_3); lean_dec(x_5); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___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* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___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_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__3(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_RC_6__getNumConsumptions___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__2(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Nat_anyAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5(x_1, x_2); +x_3 = l_Nat_anyAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__5(x_1, x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg(x_1); +x_2 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___rarg(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4(x_1); +x_2 = l___private_Lean_Compiler_IR_RC_4__isBorrowParamAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__4(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Nat_foldAux___main___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Nat_foldAux___main___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__6(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -4687,29 +4687,29 @@ lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___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___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___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___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -4748,7 +4748,7 @@ goto _start; else { lean_object* x_17; -x_17 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_3, x_10); +x_17 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_3, x_10); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; uint8_t x_19; uint8_t x_20; lean_object* x_21; @@ -4785,20 +4785,20 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_11__addDecForDeadParams(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 = lean_unsigned_to_nat(0u); -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_1, x_2, x_4, x_2, x_5, x_3); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_1, x_2, x_4, x_2, x_5, x_3); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___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_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___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); @@ -4806,18 +4806,18 @@ lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___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___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_RC_11__addDecForDeadParams(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_12__isPersistent(lean_object* x_1) { +uint8_t l___private_Lean_Compiler_IR_RC_12__isPersistent(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 6) @@ -4835,17 +4835,17 @@ return x_4; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_12__isPersistent___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_RC_12__isPersistent___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Compiler_IR_RC_12__isPersistent(x_1); +x_2 = l___private_Lean_Compiler_IR_RC_12__isPersistent(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_13__consumeExpr(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Compiler_IR_RC_13__consumeExpr(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 3) @@ -4878,18 +4878,18 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_13__consumeExpr___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_RC_13__consumeExpr___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_IR_RC_13__consumeExpr(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_RC_13__consumeExpr(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(lean_object* x_1) { +uint8_t l___private_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { @@ -4954,17 +4954,17 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(x_1); +x_2 = l___private_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_15__updateVarInfo(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_15__updateVarInfo(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -4974,8 +4974,8 @@ if (x_5 == 0) lean_object* x_6; uint8_t x_7; uint8_t x_8; uint8_t x_9; x_6 = lean_ctor_get(x_1, 2); x_7 = l_Lean_IR_IRType_isObj(x_3); -x_8 = l___private_Init_Lean_Compiler_IR_RC_12__isPersistent(x_4); -x_9 = l___private_Init_Lean_Compiler_IR_RC_13__consumeExpr(x_6, x_4); +x_8 = l___private_Lean_Compiler_IR_RC_12__isPersistent(x_4); +x_9 = l___private_Lean_Compiler_IR_RC_13__consumeExpr(x_6, x_4); if (x_7 == 0) { uint8_t x_10; lean_object* x_11; lean_object* x_12; @@ -4984,14 +4984,14 @@ x_11 = lean_alloc_ctor(0, 0, 3); lean_ctor_set_uint8(x_11, 0, x_10); lean_ctor_set_uint8(x_11, 1, x_8); lean_ctor_set_uint8(x_11, 2, x_9); -x_12 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_11); +x_12 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_11); lean_ctor_set(x_1, 2, x_12); return x_1; } else { uint8_t x_13; -x_13 = l___private_Init_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(x_4); +x_13 = l___private_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(x_4); if (x_13 == 0) { lean_object* x_14; lean_object* x_15; @@ -4999,7 +4999,7 @@ x_14 = lean_alloc_ctor(0, 0, 3); lean_ctor_set_uint8(x_14, 0, x_7); lean_ctor_set_uint8(x_14, 1, x_8); lean_ctor_set_uint8(x_14, 2, x_9); -x_15 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_14); +x_15 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_14); lean_ctor_set(x_1, 2, x_15); return x_1; } @@ -5011,7 +5011,7 @@ x_17 = lean_alloc_ctor(0, 0, 3); lean_ctor_set_uint8(x_17, 0, x_16); lean_ctor_set_uint8(x_17, 1, x_8); lean_ctor_set_uint8(x_17, 2, x_9); -x_18 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_17); +x_18 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_6, x_2, x_17); lean_ctor_set(x_1, 2, x_18); return x_1; } @@ -5032,8 +5032,8 @@ lean_inc(x_20); lean_inc(x_19); lean_dec(x_1); x_24 = l_Lean_IR_IRType_isObj(x_3); -x_25 = l___private_Init_Lean_Compiler_IR_RC_12__isPersistent(x_4); -x_26 = l___private_Init_Lean_Compiler_IR_RC_13__consumeExpr(x_21, x_4); +x_25 = l___private_Lean_Compiler_IR_RC_12__isPersistent(x_4); +x_26 = l___private_Lean_Compiler_IR_RC_13__consumeExpr(x_21, x_4); if (x_24 == 0) { uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; @@ -5042,7 +5042,7 @@ x_28 = lean_alloc_ctor(0, 0, 3); lean_ctor_set_uint8(x_28, 0, x_27); lean_ctor_set_uint8(x_28, 1, x_25); lean_ctor_set_uint8(x_28, 2, x_26); -x_29 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_21, x_2, x_28); +x_29 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_21, x_2, x_28); x_30 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_30, 0, x_19); lean_ctor_set(x_30, 1, x_20); @@ -5054,7 +5054,7 @@ return x_30; else { uint8_t x_31; -x_31 = l___private_Init_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(x_4); +x_31 = l___private_Lean_Compiler_IR_RC_14__isScalarBoxedInTaggedPtr(x_4); if (x_31 == 0) { lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -5062,7 +5062,7 @@ x_32 = lean_alloc_ctor(0, 0, 3); lean_ctor_set_uint8(x_32, 0, x_24); lean_ctor_set_uint8(x_32, 1, x_25); lean_ctor_set_uint8(x_32, 2, x_26); -x_33 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_21, x_2, x_32); +x_33 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_21, x_2, x_32); x_34 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_34, 0, x_19); lean_ctor_set(x_34, 1, x_20); @@ -5079,7 +5079,7 @@ x_36 = lean_alloc_ctor(0, 0, 3); lean_ctor_set_uint8(x_36, 0, x_35); lean_ctor_set_uint8(x_36, 1, x_25); lean_ctor_set_uint8(x_36, 2, x_26); -x_37 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_21, x_2, x_36); +x_37 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_21, x_2, x_36); x_38 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_38, 0, x_19); lean_ctor_set(x_38, 1, x_20); @@ -5092,17 +5092,17 @@ return x_38; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_15__updateVarInfo___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_15__updateVarInfo___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___private_Init_Lean_Compiler_IR_RC_15__updateVarInfo(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_RC_15__updateVarInfo(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_16__addDecIfNeeded(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_16__addDecIfNeeded(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -5115,7 +5115,7 @@ return x_3; else { lean_object* x_6; -x_6 = l_RBNode_findCore___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_4, x_2); +x_6 = l_RBNode_findCore___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__1(x_4, x_2); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; uint8_t x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; @@ -5141,17 +5141,17 @@ return x_3; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_16__addDecIfNeeded___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_RC_16__addDecIfNeeded___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___private_Init_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_17__processVDecl(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Compiler_IR_RC_17__processVDecl(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; @@ -5170,10 +5170,10 @@ lean_ctor_set(x_9, 0, x_2); lean_ctor_set(x_9, 1, x_3); lean_ctor_set(x_9, 2, x_4); lean_ctor_set(x_9, 3, x_5); -x_10 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_8, x_9, x_6); +x_10 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_8, x_9, x_6); lean_dec(x_6); lean_dec(x_8); -x_11 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_11 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_12 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_12, 0, x_10); @@ -5191,10 +5191,10 @@ lean_ctor_set(x_14, 0, x_2); lean_ctor_set(x_14, 1, x_3); lean_ctor_set(x_14, 2, x_4); lean_ctor_set(x_14, 3, x_5); -x_15 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_13, x_14, x_6); +x_15 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_13, x_14, x_6); lean_dec(x_6); lean_dec(x_13); -x_16 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_16 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_15); @@ -5207,7 +5207,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; x_18 = lean_ctor_get(x_4, 1); lean_inc(x_18); lean_inc(x_18); -x_19 = l___private_Init_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_18, x_5, x_6); +x_19 = l___private_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_18, x_5, x_6); lean_dec(x_6); x_20 = l_Lean_IR_ExplicitRC_getVarInfo(x_1, x_18); lean_dec(x_18); @@ -5222,7 +5222,7 @@ lean_ctor_set(x_22, 0, x_2); lean_ctor_set(x_22, 1, x_3); lean_ctor_set(x_22, 2, x_4); lean_ctor_set(x_22, 3, x_19); -x_23 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_23 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_22); @@ -5250,7 +5250,7 @@ lean_ctor_set(x_30, 0, x_2); lean_ctor_set(x_30, 1, x_3); lean_ctor_set(x_30, 2, x_4); lean_ctor_set(x_30, 3, x_29); -x_31 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_31 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_30); @@ -5263,7 +5263,7 @@ case 4: lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; x_33 = lean_ctor_get(x_4, 1); lean_inc(x_33); -x_34 = l___private_Init_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_33, x_5, x_6); +x_34 = l___private_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_33, x_5, x_6); lean_dec(x_6); lean_inc(x_2); x_35 = lean_alloc_ctor(0, 4, 0); @@ -5271,7 +5271,7 @@ lean_ctor_set(x_35, 0, x_2); lean_ctor_set(x_35, 1, x_3); lean_ctor_set(x_35, 2, x_4); lean_ctor_set(x_35, 3, x_34); -x_36 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_36 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_37 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_37, 0, x_35); @@ -5283,7 +5283,7 @@ case 5: lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; x_38 = lean_ctor_get(x_4, 2); lean_inc(x_38); -x_39 = l___private_Init_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_38, x_5, x_6); +x_39 = l___private_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_38, x_5, x_6); lean_dec(x_6); lean_inc(x_2); x_40 = lean_alloc_ctor(0, 4, 0); @@ -5291,7 +5291,7 @@ lean_ctor_set(x_40, 0, x_2); lean_ctor_set(x_40, 1, x_3); lean_ctor_set(x_40, 2, x_4); lean_ctor_set(x_40, 3, x_39); -x_41 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_41 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_42 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_42, 0, x_40); @@ -5309,18 +5309,18 @@ x_45 = l_Lean_IR_ExplicitRC_getDecl(x_1, x_43); lean_dec(x_43); x_46 = l_Lean_IR_Decl_params(x_45); lean_dec(x_45); -x_47 = l___private_Init_Lean_Compiler_IR_RC_9__addDecAfterFullApp(x_1, x_44, x_46, x_5, x_6); +x_47 = l___private_Lean_Compiler_IR_RC_9__addDecAfterFullApp(x_1, x_44, x_46, x_5, x_6); lean_inc(x_2); x_48 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_48, 0, x_2); lean_ctor_set(x_48, 1, x_3); lean_ctor_set(x_48, 2, x_4); lean_ctor_set(x_48, 3, x_47); -x_49 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(x_46, x_1, x_44, x_48, x_6); +x_49 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(x_46, x_1, x_44, x_48, x_6); lean_dec(x_6); lean_dec(x_44); lean_dec(x_46); -x_50 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_50 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_51 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_51, 0, x_49); @@ -5338,10 +5338,10 @@ lean_ctor_set(x_53, 0, x_2); lean_ctor_set(x_53, 1, x_3); lean_ctor_set(x_53, 2, x_4); lean_ctor_set(x_53, 3, x_5); -x_54 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_52, x_53, x_6); +x_54 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_52, x_53, x_6); lean_dec(x_6); lean_dec(x_52); -x_55 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_55 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_56 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_56, 0, x_54); @@ -5364,10 +5364,10 @@ lean_ctor_set(x_61, 0, x_2); lean_ctor_set(x_61, 1, x_3); lean_ctor_set(x_61, 2, x_4); lean_ctor_set(x_61, 3, x_5); -x_62 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_60, x_61, x_6); +x_62 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_10__addIncBeforeConsumeAll___spec__1(x_1, x_60, x_61, x_6); lean_dec(x_6); lean_dec(x_60); -x_63 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_63 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_64 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_64, 0, x_62); @@ -5379,7 +5379,7 @@ case 10: lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; x_65 = lean_ctor_get(x_4, 0); lean_inc(x_65); -x_66 = l___private_Init_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_65, x_5, x_6); +x_66 = l___private_Lean_Compiler_IR_RC_16__addDecIfNeeded(x_1, x_65, x_5, x_6); lean_dec(x_6); lean_inc(x_2); x_67 = lean_alloc_ctor(0, 4, 0); @@ -5387,7 +5387,7 @@ lean_ctor_set(x_67, 0, x_2); lean_ctor_set(x_67, 1, x_3); lean_ctor_set(x_67, 2, x_4); lean_ctor_set(x_67, 3, x_66); -x_68 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_68 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_69 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_69, 0, x_67); @@ -5404,7 +5404,7 @@ lean_ctor_set(x_70, 0, x_2); lean_ctor_set(x_70, 1, x_3); lean_ctor_set(x_70, 2, x_4); lean_ctor_set(x_70, 3, x_5); -x_71 = l_RBNode_erase___at___private_Init_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); +x_71 = l_RBNode_erase___at___private_Lean_Compiler_IR_LiveVars_8__bindVar___spec__1(x_2, x_7); lean_dec(x_2); x_72 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_72, 0, x_70); @@ -5414,11 +5414,11 @@ return x_72; } } } -lean_object* l___private_Init_Lean_Compiler_IR_RC_17__processVDecl___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Compiler_IR_RC_17__processVDecl___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Compiler_IR_RC_17__processVDecl(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Compiler_IR_RC_17__processVDecl(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); return x_7; } @@ -5459,7 +5459,7 @@ x_16 = lean_alloc_ctor(0, 0, 3); lean_ctor_set_uint8(x_16, 0, x_10); lean_ctor_set_uint8(x_16, 1, x_14); lean_ctor_set_uint8(x_16, 2, x_15); -x_17 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_4, x_8, x_16); +x_17 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_4, x_8, x_16); x_3 = x_13; x_4 = x_17; goto _start; @@ -5472,7 +5472,7 @@ x_20 = lean_alloc_ctor(0, 0, 3); lean_ctor_set_uint8(x_20, 0, x_10); lean_ctor_set_uint8(x_20, 1, x_19); lean_ctor_set_uint8(x_20, 2, x_19); -x_21 = l_RBNode_insert___at___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_4, x_8, x_20); +x_21 = l_RBNode_insert___at___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo___spec__1(x_4, x_8, x_20); x_3 = x_13; x_4 = x_21; goto _start; @@ -5575,7 +5575,7 @@ x_16 = lean_ctor_get(x_12, 0); x_17 = lean_ctor_get(x_12, 1); lean_inc(x_2); lean_inc(x_1); -x_18 = l___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(x_1, x_2, x_16); +x_18 = l___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(x_1, x_2, x_16); lean_inc(x_18); x_19 = l_Lean_IR_ExplicitRC_visitFnBody___main(x_17, x_18); x_20 = lean_ctor_get(x_19, 0); @@ -5583,8 +5583,8 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; -x_23 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_18, x_21, x_22, x_20, x_3); +x_22 = l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; +x_23 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_18, x_21, x_22, x_20, x_3); lean_dec(x_21); lean_dec(x_18); lean_ctor_set(x_12, 1, x_23); @@ -5605,7 +5605,7 @@ lean_inc(x_27); lean_dec(x_12); lean_inc(x_2); lean_inc(x_1); -x_29 = l___private_Init_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(x_1, x_2, x_27); +x_29 = l___private_Lean_Compiler_IR_RC_1__updateRefUsingCtorInfo(x_1, x_2, x_27); lean_inc(x_29); x_30 = l_Lean_IR_ExplicitRC_visitFnBody___main(x_28, x_29); x_31 = lean_ctor_get(x_30, 0); @@ -5613,8 +5613,8 @@ lean_inc(x_31); x_32 = lean_ctor_get(x_30, 1); lean_inc(x_32); lean_dec(x_30); -x_33 = l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; -x_34 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_29, x_32, x_33, x_31, x_3); +x_33 = l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; +x_34 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_29, x_32, x_33, x_31, x_3); lean_dec(x_32); lean_dec(x_29); x_35 = lean_alloc_ctor(0, 2, 0); @@ -5643,8 +5643,8 @@ lean_inc(x_42); x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); lean_dec(x_41); -x_44 = l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; -x_45 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_43, x_44, x_42, x_3); +x_44 = l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; +x_45 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_43, x_44, x_42, x_3); lean_dec(x_43); lean_ctor_set(x_12, 0, x_45); x_46 = x_12; @@ -5667,8 +5667,8 @@ lean_inc(x_51); x_52 = lean_ctor_get(x_50, 1); lean_inc(x_52); lean_dec(x_50); -x_53 = l___private_Init_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; -x_54 = l_RBNode_fold___main___at___private_Init_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_52, x_53, x_51, x_3); +x_53 = l___private_Lean_Compiler_IR_LiveVars_6__accumulate___closed__1; +x_54 = l_RBNode_fold___main___at___private_Lean_Compiler_IR_RC_2__addDecForAlt___spec__2(x_1, x_52, x_53, x_51, x_3); lean_dec(x_52); x_55 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_55, 0, x_54); @@ -5700,7 +5700,7 @@ x_6 = lean_ctor_get(x_1, 3); lean_inc(x_6); lean_dec(x_1); lean_inc(x_3); -x_7 = l___private_Init_Lean_Compiler_IR_RC_15__updateVarInfo(x_2, x_3, x_4, x_5); +x_7 = l___private_Lean_Compiler_IR_RC_15__updateVarInfo(x_2, x_3, x_4, x_5); lean_inc(x_7); x_8 = l_Lean_IR_ExplicitRC_visitFnBody___main(x_6, x_7); x_9 = lean_ctor_get(x_8, 0); @@ -5708,7 +5708,7 @@ lean_inc(x_9); x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); lean_dec(x_8); -x_11 = l___private_Init_Lean_Compiler_IR_RC_17__processVDecl(x_7, x_3, x_4, x_5, x_9, x_10); +x_11 = l___private_Lean_Compiler_IR_RC_17__processVDecl(x_7, x_3, x_4, x_5, x_9, x_10); lean_dec(x_7); return x_11; } @@ -5732,7 +5732,7 @@ x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); x_21 = lean_unsigned_to_nat(0u); -x_22 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_2, x_14, x_20, x_14, x_21, x_19); +x_22 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_2, x_14, x_20, x_14, x_21, x_19); lean_dec(x_20); x_23 = !lean_is_exclusive(x_2); if (x_23 == 0) @@ -5839,7 +5839,7 @@ x_51 = lean_ctor_get(x_49, 1); lean_inc(x_51); lean_dec(x_49); x_52 = lean_unsigned_to_nat(0u); -x_53 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_2, x_45, x_51, x_45, x_52, x_50); +x_53 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_2, x_45, x_51, x_45, x_52, x_50); lean_dec(x_51); x_54 = lean_ctor_get(x_2, 0); lean_inc(x_54); @@ -6286,7 +6286,7 @@ lean_inc(x_179); x_180 = l_Lean_IR_ExplicitRC_getJPLiveVars(x_2, x_178); x_181 = l_Lean_IR_ExplicitRC_getJPParams(x_2, x_178); lean_dec(x_178); -x_182 = l___private_Init_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Init_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(x_181, x_2, x_179, x_1, x_180); +x_182 = l___private_Lean_Compiler_IR_RC_7__addIncBeforeAux___at___private_Lean_Compiler_IR_RC_8__addIncBefore___spec__1(x_181, x_2, x_179, x_1, x_180); lean_dec(x_180); lean_dec(x_179); lean_dec(x_181); @@ -6359,7 +6359,7 @@ x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); x_13 = lean_unsigned_to_nat(0u); -x_14 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_9, x_5, x_12, x_5, x_13, x_11); +x_14 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_9, x_5, x_12, x_5, x_13, x_11); lean_dec(x_12); lean_dec(x_9); lean_ctor_set(x_3, 3, x_14); @@ -6393,7 +6393,7 @@ x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec(x_22); x_25 = lean_unsigned_to_nat(0u); -x_26 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_21, x_16, x_24, x_16, x_25, x_23); +x_26 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_RC_11__addDecForDeadParams___spec__1(x_21, x_16, x_24, x_16, x_25, x_23); lean_dec(x_24); lean_dec(x_21); x_27 = lean_alloc_ctor(0, 4, 0); @@ -6496,21 +6496,21 @@ lean_dec(x_2); return x_4; } } -lean_object* initialize_Init_Lean_Runtime(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_CompilerM(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_LiveVars(lean_object*); +lean_object* initialize_Lean_Runtime(lean_object*); +lean_object* initialize_Lean_Compiler_IR_CompilerM(lean_object*); +lean_object* initialize_Lean_Compiler_IR_LiveVars(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_RC(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_RC(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Runtime(lean_io_mk_world()); +res = initialize_Lean_Runtime(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_CompilerM(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_LiveVars(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_LiveVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_ExplicitRC_getVarInfo___closed__1 = _init_l_Lean_IR_ExplicitRC_getVarInfo___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/ResetReuse.c b/stage0/stdlib/Lean/Compiler/IR/ResetReuse.c similarity index 80% rename from stage0/stdlib/Init/Lean/Compiler/IR/ResetReuse.c rename to stage0/stdlib/Lean/Compiler/IR/ResetReuse.c index 05a7943de4..bfc5b8b085 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/ResetReuse.c +++ b/stage0/stdlib/Lean/Compiler/IR/ResetReuse.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.ResetReuse -// Imports: Init.Control.State Init.Control.Reader Init.Lean.Compiler.IR.Basic Init.Lean.Compiler.IR.LiveVars Init.Lean.Compiler.IR.Format +// Module: Lean.Compiler.IR.ResetReuse +// Imports: Init.Control.State Init.Control.Reader Lean.Compiler.IR.Basic Lean.Compiler.IR.LiveVars Lean.Compiler.IR.Format #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,54 +13,54 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_3__mkFresh(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_3__mkFresh___boxed(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_4__tryS___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_2__S___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_1__mayReuse___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_4__tryS___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_2__S(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_HasIndex_visitFnBody___main(lean_object*, lean_object*); uint8_t l_Lean_IR_CtorInfo_isScalar(lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_2__S(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_1__mayReuse___boxed(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_IR_ResetReuse_R___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Decl_insertResetReuse(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_8__Dmain(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_LocalContext_addJP(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_9__D(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_FnBody_isTerminal(lean_object*); uint8_t l_Lean_IR_FnBody_beq(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_ResetReuse_1__mayReuse(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_2__S___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_4__tryS(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_ResetReuse_R___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_3__mkFresh(lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_9__D(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_setBody(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_3__mkFresh___rarg(lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_ResetReuse_7__isCtorUsing(lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_hasLiveVar(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_getPrefix(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___boxed(lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_3__mkFresh___rarg(lean_object*); lean_object* l_Lean_IR_ResetReuse_R(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_3__mkFresh___boxed(lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_7__isCtorUsing___boxed(lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_ResetReuse_7__isCtorUsing(lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_body(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_4__tryS(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_7__isCtorUsing___boxed(lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_IR_ResetReuse_1__mayReuse(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_2__S___main(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_MaxIndex_collectDecl(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___boxed(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_IR_ResetReuse_1__mayReuse(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Compiler_IR_ResetReuse_1__mayReuse(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -113,18 +113,18 @@ return x_19; } } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_1__mayReuse___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_1__mayReuse___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_IR_ResetReuse_1__mayReuse(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_ResetReuse_1__mayReuse(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_2__S___main___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_6; @@ -157,7 +157,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_15 = lean_ctor_get(x_11, 1); lean_inc(x_1); -x_16 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_15); +x_16 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_15); lean_ctor_set(x_11, 1, x_16); x_17 = x_11; x_18 = lean_array_fset(x_10, x_3, x_17); @@ -175,7 +175,7 @@ lean_inc(x_21); lean_inc(x_20); lean_dec(x_11); lean_inc(x_1); -x_22 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_21); +x_22 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_21); x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_20); lean_ctor_set(x_23, 1, x_22); @@ -196,7 +196,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; x_28 = lean_ctor_get(x_11, 0); lean_inc(x_1); -x_29 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_28); +x_29 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_28); lean_ctor_set(x_11, 0, x_29); x_30 = x_11; x_31 = lean_array_fset(x_10, x_3, x_30); @@ -212,7 +212,7 @@ x_33 = lean_ctor_get(x_11, 0); lean_inc(x_33); lean_dec(x_11); lean_inc(x_1); -x_34 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_33); +x_34 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_33); x_35 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_35, 0, x_34); x_36 = x_35; @@ -226,7 +226,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_2__S___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -250,13 +250,13 @@ x_16 = lean_ctor_get(x_12, 0); lean_inc(x_16); x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); -x_18 = l___private_Init_Lean_Compiler_IR_ResetReuse_1__mayReuse(x_2, x_16); +x_18 = l___private_Lean_Compiler_IR_ResetReuse_1__mayReuse(x_2, x_16); if (x_18 == 0) { lean_object* x_19; lean_dec(x_17); lean_dec(x_16); -x_19 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_14); +x_19 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_14); lean_ctor_set(x_3, 3, x_19); return x_3; } @@ -309,13 +309,13 @@ x_30 = lean_ctor_get(x_12, 0); lean_inc(x_30); x_31 = lean_ctor_get(x_12, 1); lean_inc(x_31); -x_32 = l___private_Init_Lean_Compiler_IR_ResetReuse_1__mayReuse(x_2, x_30); +x_32 = l___private_Lean_Compiler_IR_ResetReuse_1__mayReuse(x_2, x_30); if (x_32 == 0) { lean_object* x_33; lean_object* x_34; lean_dec(x_31); lean_dec(x_30); -x_33 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_29); +x_33 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_29); x_34 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_34, 0, x_27); lean_ctor_set(x_34, 1, x_28); @@ -387,7 +387,7 @@ x_46 = lean_ctor_get(x_3, 2); x_47 = lean_ctor_get(x_3, 3); lean_inc(x_46); lean_inc(x_1); -x_48 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_46); +x_48 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_46); lean_inc(x_48); lean_inc(x_46); x_49 = l_Lean_IR_FnBody_beq(x_46, x_48); @@ -402,7 +402,7 @@ else { lean_object* x_50; lean_dec(x_48); -x_50 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_47); +x_50 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_47); lean_ctor_set(x_3, 3, x_50); return x_3; } @@ -421,7 +421,7 @@ lean_inc(x_51); lean_dec(x_3); lean_inc(x_53); lean_inc(x_1); -x_55 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_53); +x_55 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_53); lean_inc(x_55); lean_inc(x_53); x_56 = l_Lean_IR_FnBody_beq(x_53, x_55); @@ -441,7 +441,7 @@ else { lean_object* x_58; lean_object* x_59; lean_dec(x_55); -x_58 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_54); +x_58 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_54); x_59 = lean_alloc_ctor(1, 4, 0); lean_ctor_set(x_59, 0, x_51); lean_ctor_set(x_59, 1, x_52); @@ -461,7 +461,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean x_61 = lean_ctor_get(x_3, 3); x_62 = x_61; x_63 = lean_unsigned_to_nat(0u); -x_64 = l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1(x_1, x_2, x_63, x_62); +x_64 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1(x_1, x_2, x_63, x_62); x_65 = x_64; lean_ctor_set(x_3, 3, x_65); return x_3; @@ -480,7 +480,7 @@ lean_inc(x_66); lean_dec(x_3); x_70 = x_69; x_71 = lean_unsigned_to_nat(0u); -x_72 = l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1(x_1, x_2, x_71, x_70); +x_72 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1(x_1, x_2, x_71, x_70); x_73 = x_72; x_74 = lean_alloc_ctor(10, 4, 0); lean_ctor_set(x_74, 0, x_66); @@ -509,7 +509,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj x_6 = l_Lean_IR_FnBody_body(x_3); x_7 = lean_box(13); x_8 = l_Lean_IR_FnBody_setBody(x_3, x_7); -x_9 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_6); +x_9 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_6); x_10 = l_Lean_IR_FnBody_setBody(x_8, x_9); return x_10; } @@ -521,42 +521,42 @@ return x_3; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_2__S___main___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_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_2__S___main___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_2__S___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_2__S(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_2__S(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_2__S___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_IR_ResetReuse_2__S(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_3__mkFresh___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_3__mkFresh___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -568,28 +568,28 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_3__mkFresh(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_3__mkFresh(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Compiler_IR_ResetReuse_3__mkFresh___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_ResetReuse_3__mkFresh___rarg), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_3__mkFresh___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_3__mkFresh___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_ResetReuse_3__mkFresh(x_1); +x_2 = l___private_Lean_Compiler_IR_ResetReuse_3__mkFresh(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_4__tryS(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_4__tryS(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; -x_6 = l___private_Init_Lean_Compiler_IR_ResetReuse_3__mkFresh___rarg(x_5); +x_6 = l___private_Lean_Compiler_IR_ResetReuse_3__mkFresh___rarg(x_5); x_7 = !lean_is_exclusive(x_6); if (x_7 == 0) { @@ -597,7 +597,7 @@ lean_object* x_8; lean_object* x_9; uint8_t x_10; x_8 = lean_ctor_get(x_6, 0); lean_inc(x_3); lean_inc(x_8); -x_9 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_8, x_2, x_3); +x_9 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_8, x_2, x_3); lean_inc(x_9); lean_inc(x_3); x_10 = l_Lean_IR_FnBody_beq(x_3, x_9); @@ -638,7 +638,7 @@ lean_inc(x_15); lean_dec(x_6); lean_inc(x_3); lean_inc(x_15); -x_17 = l___private_Init_Lean_Compiler_IR_ResetReuse_2__S___main(x_15, x_2, x_3); +x_17 = l___private_Lean_Compiler_IR_ResetReuse_2__S___main(x_15, x_2, x_3); lean_inc(x_17); lean_inc(x_3); x_18 = l_Lean_IR_FnBody_beq(x_3, x_17); @@ -676,17 +676,17 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_4__tryS___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_4__tryS___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize(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; @@ -700,7 +700,7 @@ lean_object* x_8; lean_object* x_9; x_8 = lean_ctor_get(x_3, 0); lean_inc(x_8); lean_dec(x_3); -x_9 = l___private_Init_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_8, x_4, x_5); +x_9 = l___private_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_8, x_4, x_5); return x_9; } else @@ -730,17 +730,17 @@ return x_13; } } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_2); return x_6; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1(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; @@ -791,22 +791,22 @@ goto _start; } } } -uint8_t l___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar(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_1); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1(x_1, x_2, x_1, x_3, x_4); +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1(x_1, x_2, x_1, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___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* l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -815,18 +815,18 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Compiler_IR_ResetReuse_7__isCtorUsing(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Compiler_IR_ResetReuse_7__isCtorUsing(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -837,7 +837,7 @@ if (lean_obj_tag(x_3) == 0) { lean_object* x_4; uint8_t x_5; x_4 = lean_ctor_get(x_3, 1); -x_5 = l___private_Init_Lean_Compiler_IR_ResetReuse_6__argsContainsVar(x_4, x_2); +x_5 = l___private_Lean_Compiler_IR_ResetReuse_6__argsContainsVar(x_4, x_2); return x_5; } else @@ -855,18 +855,18 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_7__isCtorUsing___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_7__isCtorUsing___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_IR_ResetReuse_7__isCtorUsing(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_ResetReuse_7__isCtorUsing(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -904,14 +904,14 @@ x_16 = lean_ctor_get(x_14, 1); lean_inc(x_5); lean_inc(x_2); lean_inc(x_1); -x_17 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_16, x_5, x_6); +x_17 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_16, x_5, x_6); 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_1); -x_20 = l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_18, x_5, x_19); +x_20 = l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_18, x_5, x_19); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); x_22 = lean_ctor_get(x_20, 1); @@ -939,14 +939,14 @@ lean_dec(x_14); lean_inc(x_5); lean_inc(x_2); lean_inc(x_1); -x_30 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_29, x_5, x_6); +x_30 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_29, x_5, x_6); x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); x_32 = lean_ctor_get(x_30, 1); lean_inc(x_32); lean_dec(x_30); lean_inc(x_1); -x_33 = l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_31, x_5, x_32); +x_33 = l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_31, x_5, x_32); x_34 = lean_ctor_get(x_33, 0); lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); @@ -977,14 +977,14 @@ x_43 = lean_ctor_get(x_14, 0); lean_inc(x_5); lean_inc(x_2); lean_inc(x_1); -x_44 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_43, x_5, x_6); +x_44 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_43, x_5, x_6); 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_1); -x_47 = l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_45, x_5, x_46); +x_47 = l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_45, x_5, x_46); x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); x_49 = lean_ctor_get(x_47, 1); @@ -1010,14 +1010,14 @@ lean_dec(x_14); lean_inc(x_5); lean_inc(x_2); lean_inc(x_1); -x_56 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_55, x_5, x_6); +x_56 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_55, x_5, x_6); 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_1); -x_59 = l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_57, x_5, x_58); +x_59 = l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_57, x_5, x_58); x_60 = lean_ctor_get(x_59, 0); lean_inc(x_60); x_61 = lean_ctor_get(x_59, 1); @@ -1039,7 +1039,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(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; @@ -1062,7 +1062,7 @@ lean_inc(x_4); x_96 = l_Lean_IR_LocalContext_addJP(x_4, x_92, x_93, x_94); lean_inc(x_2); lean_inc(x_1); -x_97 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_95, x_96, x_5); +x_97 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_95, x_96, x_5); x_98 = lean_ctor_get(x_97, 0); lean_inc(x_98); x_99 = lean_ctor_get(x_97, 1); @@ -1073,7 +1073,7 @@ lean_inc(x_100); x_101 = lean_ctor_get(x_98, 1); lean_inc(x_101); lean_dec(x_98); -x_102 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_94, x_4, x_99); +x_102 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_94, x_4, x_99); x_103 = !lean_is_exclusive(x_102); if (x_103 == 0) { @@ -1159,7 +1159,7 @@ lean_inc(x_4); x_120 = l_Lean_IR_LocalContext_addJP(x_4, x_116, x_117, x_118); lean_inc(x_2); lean_inc(x_1); -x_121 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_119, x_120, x_5); +x_121 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_119, x_120, x_5); x_122 = lean_ctor_get(x_121, 0); lean_inc(x_122); x_123 = lean_ctor_get(x_121, 1); @@ -1170,7 +1170,7 @@ lean_inc(x_124); x_125 = lean_ctor_get(x_122, 1); lean_inc(x_125); lean_dec(x_122); -x_126 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_118, x_4, x_123); +x_126 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_118, x_4, x_123); x_127 = lean_ctor_get(x_126, 0); lean_inc(x_127); x_128 = lean_ctor_get(x_126, 1); @@ -1268,7 +1268,7 @@ x_149 = lean_ctor_get(x_3, 0); lean_dec(x_149); x_150 = x_138; x_151 = lean_unsigned_to_nat(0u); -x_152 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main___spec__1), 6, 4); +x_152 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main___spec__1), 6, 4); lean_closure_set(x_152, 0, x_1); lean_closure_set(x_152, 1, x_2); lean_closure_set(x_152, 2, x_151); @@ -1317,7 +1317,7 @@ lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_dec(x_3); x_167 = x_138; x_168 = lean_unsigned_to_nat(0u); -x_169 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main___spec__1), 6, 4); +x_169 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main___spec__1), 6, 4); lean_closure_set(x_169, 0, x_1); lean_closure_set(x_169, 1, x_2); lean_closure_set(x_169, 2, x_168); @@ -1377,7 +1377,7 @@ x_8 = l_Lean_IR_FnBody_body(x_3); x_9 = lean_box(13); lean_inc(x_3); x_10 = l_Lean_IR_FnBody_setBody(x_3, x_9); -x_11 = l___private_Init_Lean_Compiler_IR_ResetReuse_7__isCtorUsing(x_10, x_1); +x_11 = l___private_Lean_Compiler_IR_ResetReuse_7__isCtorUsing(x_10, x_1); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -1385,7 +1385,7 @@ lean_dec(x_3); lean_inc(x_4); lean_inc(x_2); lean_inc(x_1); -x_12 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_8, x_4, x_5); +x_12 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_8, x_4, x_5); x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); x_14 = lean_ctor_get(x_13, 1); @@ -1424,7 +1424,7 @@ else lean_object* x_24; uint8_t x_25; lean_free_object(x_12); lean_dec(x_14); -x_24 = l___private_Init_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_20, x_4, x_17); +x_24 = l___private_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_20, x_4, x_17); lean_dec(x_4); lean_dec(x_2); x_25 = !lean_is_exclusive(x_24); @@ -1487,7 +1487,7 @@ else lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_free_object(x_12); lean_dec(x_14); -x_41 = l___private_Init_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_37, x_4, x_17); +x_41 = l___private_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_37, x_4, x_17); lean_dec(x_4); lean_dec(x_2); x_42 = lean_ctor_get(x_41, 0); @@ -1559,7 +1559,7 @@ else { lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_dec(x_14); -x_57 = l___private_Init_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_51, x_4, x_50); +x_57 = l___private_Lean_Compiler_IR_ResetReuse_4__tryS(x_1, x_2, x_51, x_4, x_50); lean_dec(x_4); lean_dec(x_2); x_58 = lean_ctor_get(x_57, 0); @@ -1703,28 +1703,28 @@ return x_89; } } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_8__Dmain(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_ResetReuse_9__D(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Compiler_IR_ResetReuse_9__D(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_inc(x_4); lean_inc(x_2); lean_inc(x_1); -x_6 = l___private_Init_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Compiler_IR_ResetReuse_8__Dmain___main(x_1, x_2, x_3, x_4, x_5); x_7 = lean_ctor_get(x_6, 0); lean_inc(x_7); x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_7, x_4, x_8); +x_9 = l___private_Lean_Compiler_IR_ResetReuse_5__Dfinalize(x_1, x_2, x_7, x_4, x_8); lean_dec(x_4); lean_dec(x_2); return x_9; @@ -1783,7 +1783,7 @@ lean_dec(x_13); lean_inc(x_4); lean_inc(x_15); lean_inc(x_1); -x_21 = l___private_Init_Lean_Compiler_IR_ResetReuse_9__D(x_1, x_15, x_18, x_4, x_19); +x_21 = l___private_Lean_Compiler_IR_ResetReuse_9__D(x_1, x_15, x_18, x_4, x_19); x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); x_23 = lean_ctor_get(x_21, 1); @@ -1846,7 +1846,7 @@ lean_dec(x_40); lean_inc(x_4); lean_inc(x_35); lean_inc(x_1); -x_42 = l___private_Init_Lean_Compiler_IR_ResetReuse_9__D(x_1, x_35, x_38, x_4, x_39); +x_42 = l___private_Lean_Compiler_IR_ResetReuse_9__D(x_1, x_35, x_38, x_4, x_39); x_43 = lean_ctor_get(x_42, 0); lean_inc(x_43); x_44 = lean_ctor_get(x_42, 1); @@ -2264,11 +2264,11 @@ return x_1; } lean_object* initialize_Init_Control_State(lean_object*); lean_object* initialize_Init_Control_Reader(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_LiveVars(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Format(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_LiveVars(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Format(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_ResetReuse(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_ResetReuse(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -2278,13 +2278,13 @@ lean_dec_ref(res); res = initialize_Init_Control_Reader(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_LiveVars(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_LiveVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Format(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/SimpCase.c b/stage0/stdlib/Lean/Compiler/IR/SimpCase.c similarity index 73% rename from stage0/stdlib/Init/Lean/Compiler/IR/SimpCase.c rename to stage0/stdlib/Lean/Compiler/IR/SimpCase.c index c9acafd78c..448b6c92a0 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/SimpCase.c +++ b/stage0/stdlib/Lean/Compiler/IR/SimpCase.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.SimpCase -// Imports: Init.Lean.Compiler.IR.Basic Init.Lean.Compiler.IR.Format +// Module: Lean.Compiler.IR.SimpCase +// Imports: Lean.Compiler.IR.Basic Lean.Compiler.IR.Format #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,51 +13,51 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_4__mkSimpCase___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_SimpCase_4__mkSimpCase(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_object* l___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_SimpCase_3__addDefault(lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_IR_ensureHasDefault___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf(lean_object*, lean_object*); lean_object* l_Lean_IR_AltCore_body(lean_object*); +lean_object* l___private_Lean_Compiler_IR_SimpCase_1__getOccsOf(lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs___boxed(lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_IR_ensureHasDefault___spec__2(lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs(lean_object*); lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf___boxed(lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_IR_SimpCase_2__maxOccs(lean_object*); uint8_t l_Lean_IR_FnBody_beq(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_IR_FnBody_simpCase___main___spec__2(lean_object*, lean_object*); lean_object* l_Lean_IR_ensureHasDefault(lean_object*); -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_Compiler_IR_SimpCase_4__mkSimpCase___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_IR_FnBody_simpCase___main___spec__1(lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_simpCase(lean_object*); +lean_object* l___private_Lean_Compiler_IR_SimpCase_1__getOccsOf___boxed(lean_object*, lean_object*); lean_object* l_Lean_IR_Decl_simpCase(lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_flatten(lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_FnBody_simpCase___main(lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_IR_ensureHasDefault___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_IR_altInh; lean_object* l_Lean_IR_reshape(lean_object*, lean_object*); lean_object* lean_array_pop(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_IR_Alt_isDefault(lean_object*); +lean_object* l___private_Lean_Compiler_IR_SimpCase_2__maxOccs___boxed(lean_object*); lean_object* l_Array_back___at_Lean_IR_ensureHasDefault___spec__2___boxed(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_4__mkSimpCase(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_IR_ensureHasDefault___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -165,7 +165,7 @@ lean_dec(x_1); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -206,7 +206,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_SimpCase_1__getOccsOf(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; @@ -216,31 +216,31 @@ x_5 = l_Lean_IR_AltCore_body(x_4); lean_dec(x_4); x_6 = lean_unsigned_to_nat(1u); x_7 = lean_nat_add(x_2, x_6); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1(x_1, x_5, x_1, x_7, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1(x_1, x_5, x_1, x_7, x_6); return x_8; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf___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* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_1__getOccsOf___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_IR_SimpCase_1__getOccsOf___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_SimpCase_1__getOccsOf(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_2__maxOccs___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_6; @@ -255,7 +255,7 @@ return x_4; else { lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; -x_7 = l___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf(x_1, x_3); +x_7 = l___private_Lean_Compiler_IR_SimpCase_1__getOccsOf(x_1, x_3); x_8 = lean_ctor_get(x_4, 1); lean_inc(x_8); x_9 = lean_nat_dec_lt(x_8, x_7); @@ -285,42 +285,42 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_SimpCase_2__maxOccs(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; x_2 = l_Lean_IR_altInh; x_3 = lean_unsigned_to_nat(0u); x_4 = lean_array_get(x_2, x_1, x_3); -x_5 = l___private_Init_Lean_Compiler_IR_SimpCase_1__getOccsOf(x_1, x_3); +x_5 = l___private_Lean_Compiler_IR_SimpCase_1__getOccsOf(x_1, x_3); x_6 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_6, 0, x_4); lean_ctor_set(x_6, 1, x_5); x_7 = lean_unsigned_to_nat(1u); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1(x_1, x_1, x_7, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1(x_1, x_1, x_7, x_6); return x_8; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_2__maxOccs___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_iterateMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Compiler_IR_SimpCase_2__maxOccs___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_SimpCase_2__maxOccs___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs(x_1); +x_2 = l___private_Lean_Compiler_IR_SimpCase_2__maxOccs(x_1); lean_dec(x_1); return x_2; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -355,7 +355,7 @@ return x_8; } } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_filterAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___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_6; @@ -421,7 +421,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_IR_SimpCase_3__addDefault(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -432,12 +432,12 @@ if (x_4 == 0) { lean_object* x_5; uint8_t x_6; x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1(x_1, x_1, x_2, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1(x_1, x_1, x_2, x_5); lean_dec(x_2); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_7 = l___private_Init_Lean_Compiler_IR_SimpCase_2__maxOccs(x_1); +x_7 = l___private_Lean_Compiler_IR_SimpCase_2__maxOccs(x_1); x_8 = lean_ctor_get(x_7, 0); lean_inc(x_8); x_9 = lean_ctor_get(x_7, 1); @@ -448,7 +448,7 @@ lean_dec(x_9); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = l_Array_filterAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2(x_8, x_1, x_5, x_5); +x_11 = l_Array_filterAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2(x_8, x_1, x_5, x_5); x_12 = l_Lean_IR_AltCore_body(x_8); lean_dec(x_8); x_13 = lean_alloc_ctor(1, 1, 0); @@ -474,11 +474,11 @@ return x_1; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -486,16 +486,16 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_filterAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___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_filterAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2(x_1, x_2, x_3, x_4); +x_5 = l_Array_filterAux___main___at___private_Lean_Compiler_IR_SimpCase_3__addDefault___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_4__mkSimpCase___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_filterAux___main___at___private_Lean_Compiler_IR_SimpCase_4__mkSimpCase___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -561,13 +561,13 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Compiler_IR_SimpCase_4__mkSimpCase(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Compiler_IR_SimpCase_4__mkSimpCase(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_filterAux___main___at___private_Init_Lean_Compiler_IR_SimpCase_4__mkSimpCase___spec__1(x_4, x_5, x_5); -x_7 = l___private_Init_Lean_Compiler_IR_SimpCase_3__addDefault(x_6); +x_6 = l_Array_filterAux___main___at___private_Lean_Compiler_IR_SimpCase_4__mkSimpCase___spec__1(x_4, x_5, x_5); +x_7 = l___private_Lean_Compiler_IR_SimpCase_3__addDefault(x_6); x_8 = lean_array_get_size(x_7); x_9 = lean_nat_dec_eq(x_8, x_5); if (x_9 == 0) @@ -815,7 +815,7 @@ lean_dec(x_4); x_13 = x_12; x_14 = l_Array_umapMAux___main___at_Lean_IR_FnBody_simpCase___main___spec__2(x_6, x_13); x_15 = x_14; -x_16 = l___private_Init_Lean_Compiler_IR_SimpCase_4__mkSimpCase(x_9, x_10, x_11, x_15); +x_16 = l___private_Lean_Compiler_IR_SimpCase_4__mkSimpCase(x_9, x_10, x_11, x_15); x_17 = l_Lean_IR_reshape(x_8, x_16); return x_17; } @@ -877,17 +877,17 @@ return x_1; } } } -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Format(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Format(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_SimpCase(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_SimpCase(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Format(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Compiler/IR/UnboxResult.c b/stage0/stdlib/Lean/Compiler/IR/UnboxResult.c similarity index 95% rename from stage0/stdlib/Init/Lean/Compiler/IR/UnboxResult.c rename to stage0/stdlib/Lean/Compiler/IR/UnboxResult.c index 4eed3e2a6d..f2a06c9def 100644 --- a/stage0/stdlib/Init/Lean/Compiler/IR/UnboxResult.c +++ b/stage0/stdlib/Lean/Compiler/IR/UnboxResult.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.IR.UnboxResult -// Imports: Init.Lean.Data.Format Init.Lean.Compiler.IR.Basic +// Module: Lean.Compiler.IR.UnboxResult +// Imports: Lean.Data.Format Lean.Compiler.IR.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -211,17 +211,17 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Data_Format(lean_object*); -lean_object* initialize_Init_Lean_Compiler_IR_Basic(lean_object*); +lean_object* initialize_Lean_Data_Format(lean_object*); +lean_object* initialize_Lean_Compiler_IR_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_IR_UnboxResult(lean_object* w) { +lean_object* initialize_Lean_Compiler_IR_UnboxResult(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Format(lean_io_mk_world()); +res = initialize_Lean_Data_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_IR_Basic(lean_io_mk_world()); +res = initialize_Lean_Compiler_IR_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_IR_UnboxResult_mkUnboxAttr___lambda__1___closed__1 = _init_l_Lean_IR_UnboxResult_mkUnboxAttr___lambda__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/ImplementedByAttr.c b/stage0/stdlib/Lean/Compiler/ImplementedByAttr.c similarity index 98% rename from stage0/stdlib/Init/Lean/Compiler/ImplementedByAttr.c rename to stage0/stdlib/Lean/Compiler/ImplementedByAttr.c index e0b5dd6313..14b071239e 100644 --- a/stage0/stdlib/Init/Lean/Compiler/ImplementedByAttr.c +++ b/stage0/stdlib/Lean/Compiler/ImplementedByAttr.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.ImplementedByAttr -// Imports: Init.Lean.Attributes +// Module: Lean.Compiler.ImplementedByAttr +// Imports: Lean.Attributes #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,7 +14,6 @@ extern "C" { #endif extern lean_object* l_Lean_Name_toString___closed__1; -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_registerParametricAttribute___at_Lean_Compiler_mkImplementedByAttr___spec__1___closed__1; lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*); @@ -37,6 +36,7 @@ extern lean_object* l_Lean_Name_inhabited; lean_object* l_Lean_registerParametricAttribute___at_Lean_Compiler_mkImplementedByAttr___spec__1___lambda__1(lean_object*); lean_object* l_Lean_Compiler_implementedByAttr; lean_object* lean_nat_add(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; extern lean_object* l_Lean_ParametricAttribute_Inhabited___closed__3; lean_object* l_Array_binSearchAux___main___at_Lean_Compiler_getImplementedBy___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Compiler_mkImplementedByAttr___spec__7(lean_object*, lean_object*); @@ -60,10 +60,10 @@ uint8_t l_Array_anyRangeMAux___main___at_Lean_Compiler_mkImplementedByAttr___spe lean_object* l_Lean_attrParamSyntaxToIdentifier(lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__1; extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__2; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__4; lean_object* l_Lean_ConstantInfo_type(lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_Compiler_mkImplementedByAttr___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_fold___main___at_Lean_Compiler_mkImplementedByAttr___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_Compiler_mkImplementedByAttr___spec__3___boxed(lean_object*, lean_object*, lean_object*); @@ -435,7 +435,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -623,7 +623,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Compiler_mkIm _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -1761,13 +1761,13 @@ lean_dec(x_1); return x_4; } } -lean_object* initialize_Init_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_ImplementedByAttr(lean_object* w) { +lean_object* initialize_Lean_Compiler_ImplementedByAttr(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Compiler_mkImplementedByAttr___spec__4___closed__1 = _init_l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Compiler_mkImplementedByAttr___spec__4___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/InitAttr.c b/stage0/stdlib/Lean/Compiler/InitAttr.c similarity index 94% rename from stage0/stdlib/Init/Lean/Compiler/InitAttr.c rename to stage0/stdlib/Lean/Compiler/InitAttr.c index ff09100ae6..46e589dac9 100644 --- a/stage0/stdlib/Init/Lean/Compiler/InitAttr.c +++ b/stage0/stdlib/Lean/Compiler/InitAttr.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.InitAttr -// Imports: Init.Lean.Environment Init.Lean.Attributes +// Module: Lean.Compiler.InitAttr +// Imports: Lean.Environment Lean.Attributes #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,12 +13,8 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Compiler_InitAttr_3__isIOUnit___boxed(lean_object*); lean_object* l_Lean_mkInitAttr___lambda__1___closed__7; extern lean_object* l_Lean_Name_toString___closed__1; -lean_object* l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; -lean_object* l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___boxed(lean_object*); lean_object* l_Lean_registerParametricAttribute___at_Lean_mkInitAttr___spec__1___closed__1; lean_object* l_Lean_registerParametricAttribute___at_Lean_mkInitAttr___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); @@ -38,11 +34,11 @@ lean_object* l_Lean_registerParametricAttribute___at_Lean_mkInitAttr___spec__1__ uint8_t l_Array_anyRangeMAux___main___at_Lean_mkInitAttr___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_mkInitAttr___closed__5; +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_mkInitAttr___lambda__1___closed__8; extern lean_object* l_Lean_ParametricAttribute_Inhabited___closed__3; lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkInitAttr___spec__5(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_mkInitAttr___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_InitAttr_2__isUnitType(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); @@ -52,30 +48,33 @@ lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_isIOUnitInitFn___spec__2(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; +lean_object* l___private_Lean_Compiler_InitAttr_2__isUnitType___boxed(lean_object*); +lean_object* l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; lean_object* l_Lean_mkInitAttr(lean_object*); extern lean_object* l_Char_HasRepr___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___boxed(lean_object*); lean_object* l_RBNode_fold___main___at_Lean_mkInitAttr___spec__2(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_InitAttr_3__isIOUnit(lean_object*); +uint8_t l___private_Lean_Compiler_InitAttr_2__isUnitType(lean_object*); lean_object* l_Lean_ParametricAttribute_getParam___at_Lean_isIOUnitInitFn___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_hasInitAttr___boxed(lean_object*, lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_isIOUnitInitFn___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_InitAttr_3__isIOUnit(lean_object*); lean_object* l_Lean_attrParamSyntaxToIdentifier(lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__1; extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__2; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); lean_object* l_Lean_mkInitAttr___lambda__1___closed__4; -lean_object* l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg(lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_mkInitAttr___spec__3(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__4; +lean_object* l___private_Lean_Compiler_InitAttr_3__isIOUnit___boxed(lean_object*); lean_object* l_Lean_ConstantInfo_type(lean_object*); +lean_object* l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___boxed(lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_isIOUnitInitFn___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_hasInitAttr(lean_object*, lean_object*); lean_object* l_Lean_ParametricAttribute_setParam___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_mkInitAttr___lambda__1___closed__9; +lean_object* l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; lean_object* l_Lean_mkInitAttr___lambda__1___closed__5; @@ -118,9 +117,10 @@ lean_object* l_Lean_mkInitAttr___lambda__1(lean_object*, lean_object*, lean_obje lean_object* l_Lean_initAttr; lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkInitAttr___spec__4___closed__1; lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkInitAttr___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_InitAttr_1__getIOTypeArg(lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* _init_l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1() { +lean_object* _init_l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1() { _start: { lean_object* x_1; @@ -128,7 +128,7 @@ x_1 = lean_mk_string("IO"); return x_1; } } -lean_object* l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_InitAttr_1__getIOTypeArg(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 5) @@ -148,7 +148,7 @@ if (lean_obj_tag(x_4) == 0) lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get(x_3, 1); -x_7 = l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; +x_7 = l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; x_8 = lean_string_dec_eq(x_6, x_7); if (x_8 == 0) { @@ -194,16 +194,16 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg(x_1); +x_2 = l___private_Lean_Compiler_InitAttr_1__getIOTypeArg(x_1); lean_dec(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1() { +lean_object* _init_l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1() { _start: { lean_object* x_1; @@ -211,7 +211,7 @@ x_1 = lean_mk_string("Unit"); return x_1; } } -uint8_t l___private_Init_Lean_Compiler_InitAttr_2__isUnitType(lean_object* x_1) { +uint8_t l___private_Lean_Compiler_InitAttr_2__isUnitType(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 4) @@ -226,7 +226,7 @@ if (lean_obj_tag(x_3) == 0) { lean_object* x_4; lean_object* x_5; uint8_t x_6; x_4 = lean_ctor_get(x_2, 1); -x_5 = l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; +x_5 = l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; x_6 = lean_string_dec_eq(x_4, x_5); return x_6; } @@ -252,21 +252,21 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_InitAttr_2__isUnitType___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Compiler_InitAttr_2__isUnitType(x_1); +x_2 = l___private_Lean_Compiler_InitAttr_2__isUnitType(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Compiler_InitAttr_3__isIOUnit(lean_object* x_1) { +uint8_t l___private_Lean_Compiler_InitAttr_3__isIOUnit(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg(x_1); +x_2 = l___private_Lean_Compiler_InitAttr_1__getIOTypeArg(x_1); if (lean_obj_tag(x_2) == 0) { uint8_t x_3; @@ -279,17 +279,17 @@ lean_object* x_4; uint8_t x_5; x_4 = lean_ctor_get(x_2, 0); lean_inc(x_4); lean_dec(x_2); -x_5 = l___private_Init_Lean_Compiler_InitAttr_2__isUnitType(x_4); +x_5 = l___private_Lean_Compiler_InitAttr_2__isUnitType(x_4); lean_dec(x_4); return x_5; } } } -lean_object* l___private_Init_Lean_Compiler_InitAttr_3__isIOUnit___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_InitAttr_3__isIOUnit___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Compiler_InitAttr_3__isIOUnit(x_1); +x_2 = l___private_Lean_Compiler_InitAttr_3__isIOUnit(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; @@ -629,7 +629,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -817,7 +817,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkInitAttr___ _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -1549,7 +1549,7 @@ if (lean_obj_tag(x_3) == 0) lean_object* x_8; uint8_t x_9; x_8 = l_Lean_ConstantInfo_type(x_6); lean_dec(x_6); -x_9 = l___private_Init_Lean_Compiler_InitAttr_3__isIOUnit(x_8); +x_9 = l___private_Lean_Compiler_InitAttr_3__isIOUnit(x_8); lean_dec(x_8); if (x_9 == 0) { @@ -1603,7 +1603,7 @@ lean_inc(x_22); lean_dec(x_14); x_23 = l_Lean_ConstantInfo_type(x_22); lean_dec(x_22); -x_24 = l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg(x_23); +x_24 = l___private_Lean_Compiler_InitAttr_1__getIOTypeArg(x_23); lean_dec(x_23); if (lean_obj_tag(x_24) == 0) { @@ -2141,23 +2141,23 @@ x_5 = l_Lean_ParametricAttribute_setParam___rarg(x_4, x_1, x_2, x_3); return x_5; } } -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_InitAttr(lean_object* w) { +lean_object* initialize_Lean_Compiler_InitAttr(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1 = _init_l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1); -l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1 = _init_l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1); +l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1 = _init_l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1); +l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1 = _init_l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1); l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkInitAttr___spec__4___closed__1 = _init_l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkInitAttr___spec__4___closed__1(); lean_mark_persistent(l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkInitAttr___spec__4___closed__1); l_Lean_registerParametricAttribute___at_Lean_mkInitAttr___spec__1___closed__1 = _init_l_Lean_registerParametricAttribute___at_Lean_mkInitAttr___spec__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/InlineAttrs.c b/stage0/stdlib/Lean/Compiler/InlineAttrs.c similarity index 92% rename from stage0/stdlib/Init/Lean/Compiler/InlineAttrs.c rename to stage0/stdlib/Lean/Compiler/InlineAttrs.c index 8cc447f66b..9a0dd07e1d 100644 --- a/stage0/stdlib/Init/Lean/Compiler/InlineAttrs.c +++ b/stage0/stdlib/Lean/Compiler/InlineAttrs.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.InlineAttrs -// Imports: Init.Lean.Attributes Init.Lean.Compiler.Util +// Module: Lean.Compiler.InlineAttrs +// Imports: Lean.Attributes Lean.Compiler.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,15 +15,16 @@ extern "C" { #endif extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__24; -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Compiler_InlineAttributeKind_Inhabited; +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2(lean_object*, lean_object*); uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__16; lean_object* l_RBNode_fold___main___at_Lean_Compiler_mkInlineAttrs___spec__2___boxed(lean_object*, lean_object*); uint8_t lean_has_noinline_attribute(lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux(lean_object*, uint8_t, lean_object*); lean_object* l_RBNode_fold___main___at_Lean_Compiler_mkInlineAttrs___spec__2(lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__10; @@ -34,36 +35,39 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__20; lean_object* lean_string_append(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(lean_object*, uint8_t, lean_object*); extern lean_object* l_Lean_Name_inhabited; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Compiler_mkInlineAttrs___spec__7(lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__5; uint8_t l_Array_anyRangeMAux___main___at_Lean_Compiler_mkInlineAttrs___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__18; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__15; -lean_object* l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_hasMacroInlineAttribute___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__3; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__14; uint8_t lean_has_macro_inline_attribute(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Compiler_InlineAttributeKind_HasBeq; +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__7; lean_object* l_Lean_Compiler_mkInlineAttrs___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__3; lean_object* l_Lean_Compiler_inlineAttrs; lean_object* l_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2___boxed(lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(lean_object*, uint8_t, lean_object*); lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Compiler_InlineAttributeKind_HasBeq___closed__1; +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2___boxed(lean_object*, lean_object*); lean_object* l_List_forM___main___at_Lean_registerEnumAttributes___spec__11(lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__25; lean_object* l_Lean_registerEnumAttributes___at_Lean_Compiler_mkInlineAttrs___spec__1___lambda__2___boxed(lean_object*); +lean_object* l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___at_Lean_Compiler_mkInlineAttrs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Compiler_mkInlineAttrs___spec__8(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___at_Lean_Compiler_mkInlineAttrs___spec__1___closed__2; @@ -75,7 +79,6 @@ lean_object* l_Lean_registerEnumAttributes___at_Lean_Compiler_mkInlineAttrs___sp lean_object* l_Lean_Compiler_mkInlineAttrs___closed__13; uint8_t l_Lean_Compiler_isEagerLambdaLiftingName___main(lean_object*); lean_object* l_Lean_Compiler_hasInlineIfReduceAttribute___boxed(lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___lambda__1(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__21; @@ -83,9 +86,7 @@ lean_object* l_Lean_Compiler_mkInlineAttrs___closed__23; extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__1; lean_object* l_Array_qsortAux___main___at_Lean_Compiler_mkInlineAttrs___spec__3___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__2; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__6; -lean_object* l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__17; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__8; lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); @@ -93,6 +94,7 @@ lean_object* l_Lean_Compiler_checkIsDefinition(lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__2; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__9; uint8_t lean_has_inline_attribute(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__27; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__4; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; @@ -104,17 +106,17 @@ lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_ extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; extern lean_object* l_Lean_EnumAttributes_Inhabited___closed__1; lean_object* l_Lean_Compiler_mkInlineAttrs___closed__1; +lean_object* l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t l_Lean_Name_isInternal___main(lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__19; -uint8_t l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux(lean_object*, uint8_t, lean_object*); extern lean_object* l_Lean_registerEnumAttributes___rarg___closed__1; +lean_object* l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Compiler_mkInlineAttrs___spec__5(lean_object*, lean_object*); lean_object* lean_io_ref_reset(lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Lean_Name_getPrefix(lean_object*); lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); -lean_object* l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_has_inline_if_reduce_attribute(lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_registerParametricAttribute___spec__9___rarg___closed__1; @@ -123,7 +125,6 @@ lean_object* l_Lean_Compiler_mkInlineAttrs___closed__12; lean_object* lean_io_initializing(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Array_qsortAux___main___at_Lean_Compiler_mkInlineAttrs___spec__3(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2(lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Compiler_mkInlineAttrs___spec__8___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs(lean_object*); lean_object* l_Lean_Compiler_mkInlineAttrs___closed__26; @@ -137,7 +138,6 @@ extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__1; lean_object* l_Array_anyRangeMAux___main___at_Lean_Compiler_mkInlineAttrs___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_InlineAttributeKind_beq___boxed(lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Compiler_mkInlineAttrs___spec__8___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); uint8_t _init_l_Lean_Compiler_InlineAttributeKind_Inhabited() { _start: @@ -591,7 +591,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -779,7 +779,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Compiler_mkIn _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -1975,7 +1975,7 @@ x_5 = l_Lean_Compiler_mkInlineAttrs___lambda__1(x_1, x_2, x_4); return x_5; } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2018,7 +2018,7 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -2099,7 +2099,7 @@ goto _start; } } } -lean_object* l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -2109,7 +2109,7 @@ if (lean_obj_tag(x_4) == 0) lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_1, 1); x_6 = l_Lean_PersistentEnvExtension_getState___rarg(x_5, x_2); -x_7 = l_RBNode_find___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2(x_6, x_3); +x_7 = l_RBNode_find___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2(x_6, x_3); lean_dec(x_3); lean_dec(x_6); return x_7; @@ -2133,7 +2133,7 @@ x_15 = lean_unsigned_to_nat(1u); x_16 = lean_nat_sub(x_14, x_15); lean_dec(x_14); x_17 = lean_unsigned_to_nat(0u); -x_18 = l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3(x_10, x_13, x_17, x_16); +x_18 = l_Array_binSearchAux___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3(x_10, x_13, x_17, x_16); lean_dec(x_13); lean_dec(x_10); if (lean_obj_tag(x_18) == 0) @@ -2173,7 +2173,7 @@ return x_25; } } } -uint8_t l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +uint8_t l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -2183,7 +2183,7 @@ if (x_4 == 0) lean_object* x_5; lean_object* x_6; x_5 = l_Lean_Compiler_inlineAttrs; lean_inc(x_3); -x_6 = l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1(x_5, x_1, x_3); +x_6 = l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1(x_5, x_1, x_3); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -2226,63 +2226,63 @@ return x_14; } } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_RBNode_find___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2(x_1, x_2); +x_3 = l_RBNode_find___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__2(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__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_Array_binSearchAux___main___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__3(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1(x_1, x_2, x_3); +x_4 = l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; lean_object* x_6; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_4, x_3); +x_5 = l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_4, x_3); lean_dec(x_1); x_6 = lean_box(x_5); return x_6; } } -uint8_t l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +uint8_t l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { uint8_t x_4; -x_4 = l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; lean_object* x_6; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux(x_1, x_4, x_3); +x_5 = l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux(x_1, x_4, x_3); lean_dec(x_1); x_6 = lean_box(x_5); return x_6; @@ -2293,7 +2293,7 @@ _start: { uint8_t x_3; uint8_t x_4; x_3 = 0; -x_4 = l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_3, x_2); +x_4 = l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_3, x_2); lean_dec(x_1); return x_4; } @@ -2312,7 +2312,7 @@ _start: { uint8_t x_3; uint8_t x_4; x_3 = 3; -x_4 = l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_3, x_2); +x_4 = l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_3, x_2); lean_dec(x_1); return x_4; } @@ -2331,7 +2331,7 @@ _start: { uint8_t x_3; uint8_t x_4; x_3 = 1; -x_4 = l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_3, x_2); +x_4 = l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_3, x_2); lean_dec(x_1); return x_4; } @@ -2350,7 +2350,7 @@ _start: { uint8_t x_3; uint8_t x_4; x_3 = 2; -x_4 = l___private_Init_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_3, x_2); +x_4 = l___private_Lean_Compiler_InlineAttrs_1__hasInlineAttrAux___main(x_1, x_3, x_2); lean_dec(x_1); return x_4; } @@ -2364,17 +2364,17 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Attributes(lean_object*); -lean_object* initialize_Init_Lean_Compiler_Util(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Compiler_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_InlineAttrs(lean_object* w) { +lean_object* initialize_Lean_Compiler_InlineAttrs(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_Util(lean_io_mk_world()); +res = initialize_Lean_Compiler_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Compiler_InlineAttributeKind_Inhabited = _init_l_Lean_Compiler_InlineAttributeKind_Inhabited(); diff --git a/stage0/stdlib/Init/Lean/Compiler/NameMangling.c b/stage0/stdlib/Lean/Compiler/NameMangling.c similarity index 66% rename from stage0/stdlib/Init/Lean/Compiler/NameMangling.c rename to stage0/stdlib/Lean/Compiler/NameMangling.c index e4c9965241..d49eb92d2a 100644 --- a/stage0/stdlib/Init/Lean/Compiler/NameMangling.c +++ b/stage0/stdlib/Lean/Compiler/NameMangling.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.NameMangling -// Imports: Init.Lean.Data.Name +// Module: Lean.Compiler.NameMangling +// Imports: Lean.Data.Name #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -16,31 +16,31 @@ extern "C" { extern lean_object* l_Lean_mkHole___closed__3; lean_object* lean_string_push(lean_object*, uint32_t); lean_object* lean_nat_div(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_NameMangling_2__Name_mangleAux(lean_object*); uint8_t l_Char_isDigit(uint32_t); lean_object* lean_string_append(lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; +lean_object* l___private_Lean_Compiler_NameMangling_2__Name_mangleAux___main(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); -lean_object* l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1; uint32_t l_Nat_digitChar(lean_object*); lean_object* l_String_Iterator_next(lean_object*); -lean_object* l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1; uint8_t l_Char_isAlpha(uint32_t); -lean_object* l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2; uint8_t l_UInt32_decEq(uint32_t, uint32_t); lean_object* l_Lean_String_mangle(lean_object*); -lean_object* l___private_Init_Lean_Compiler_NameMangling_2__Name_mangleAux(lean_object*); uint32_t l_String_Iterator_curr(lean_object*); +lean_object* l___private_Lean_Compiler_NameMangling_1__String_mangleAux(lean_object*, lean_object*, lean_object*); lean_object* lean_name_mangle(lean_object*, lean_object*); lean_object* lean_string_length(lean_object*); lean_object* lean_nat_mod(lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3; lean_object* lean_uint32_to_nat(uint32_t); -lean_object* l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3; +lean_object* l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Compiler_NameMangling_2__Name_mangleAux___main(lean_object*); -lean_object* _init_l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1() { +lean_object* _init_l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1() { _start: { lean_object* x_1; @@ -48,7 +48,7 @@ x_1 = lean_mk_string("_u"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2() { +lean_object* _init_l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2() { _start: { lean_object* x_1; @@ -56,7 +56,7 @@ x_1 = lean_mk_string("_x"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3() { +lean_object* _init_l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3() { _start: { lean_object* x_1; @@ -64,7 +64,7 @@ x_1 = lean_mk_string("__"); return x_1; } } -lean_object* l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -96,7 +96,7 @@ x_15 = lean_nat_dec_lt(x_13, x_14); if (x_15 == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint32_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint32_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint32_t x_30; lean_object* x_31; lean_object* x_32; uint32_t x_33; lean_object* x_34; lean_object* x_35; -x_16 = l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1; +x_16 = l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1; x_17 = lean_string_append(x_3, x_16); x_18 = lean_unsigned_to_nat(4096u); x_19 = lean_nat_div(x_13, x_18); @@ -131,7 +131,7 @@ goto _start; else { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint32_t x_41; lean_object* x_42; lean_object* x_43; uint32_t x_44; lean_object* x_45; lean_object* x_46; -x_37 = l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2; +x_37 = l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2; x_38 = lean_string_append(x_3, x_37); x_39 = lean_unsigned_to_nat(16u); x_40 = lean_nat_div(x_13, x_39); @@ -154,7 +154,7 @@ else { lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = l_String_Iterator_next(x_2); -x_49 = l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3; +x_49 = l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3; x_50 = lean_string_append(x_3, x_49); x_1 = x_7; x_2 = x_48; @@ -192,11 +192,11 @@ return x_3; } } } -lean_object* l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_NameMangling_1__String_mangleAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main(x_1, x_2, x_3); return x_4; } } @@ -210,11 +210,11 @@ x_4 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_3); x_5 = l_String_splitAux___main___closed__1; -x_6 = l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main(x_2, x_4, x_5); +x_6 = l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main(x_2, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Compiler_NameMangling_2__Name_mangleAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_NameMangling_2__Name_mangleAux___main(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { @@ -248,7 +248,7 @@ block_11: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_dec(x_6); -x_7 = l___private_Init_Lean_Compiler_NameMangling_2__Name_mangleAux___main(x_3); +x_7 = l___private_Lean_Compiler_NameMangling_2__Name_mangleAux___main(x_3); x_8 = l_Lean_mkHole___closed__3; x_9 = lean_string_append(x_7, x_8); x_10 = lean_string_append(x_9, x_5); @@ -264,7 +264,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_1, 1); lean_inc(x_14); lean_dec(x_1); -x_15 = l___private_Init_Lean_Compiler_NameMangling_2__Name_mangleAux___main(x_13); +x_15 = l___private_Lean_Compiler_NameMangling_2__Name_mangleAux___main(x_13); x_16 = l_Lean_mkHole___closed__3; x_17 = lean_string_append(x_15, x_16); x_18 = l_Nat_repr(x_14); @@ -276,11 +276,11 @@ return x_20; } } } -lean_object* l___private_Init_Lean_Compiler_NameMangling_2__Name_mangleAux(lean_object* x_1) { +lean_object* l___private_Lean_Compiler_NameMangling_2__Name_mangleAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Compiler_NameMangling_2__Name_mangleAux___main(x_1); +x_2 = l___private_Lean_Compiler_NameMangling_2__Name_mangleAux___main(x_1); return x_2; } } @@ -288,27 +288,27 @@ lean_object* lean_name_mangle(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_NameMangling_2__Name_mangleAux___main(x_1); +x_3 = l___private_Lean_Compiler_NameMangling_2__Name_mangleAux___main(x_1); x_4 = lean_string_append(x_2, x_3); lean_dec(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Data_Name(lean_object*); +lean_object* initialize_Lean_Data_Name(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_NameMangling(lean_object* w) { +lean_object* initialize_Lean_Compiler_NameMangling(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Name(lean_io_mk_world()); +res = initialize_Lean_Data_Name(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1 = _init_l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1); -l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2 = _init_l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2); -l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3 = _init_l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3); +l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1 = _init_l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__1); +l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2 = _init_l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__2); +l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3 = _init_l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Compiler_NameMangling_1__String_mangleAux___main___closed__3); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/Compiler/NeverExtractAttr.c b/stage0/stdlib/Lean/Compiler/NeverExtractAttr.c similarity index 75% rename from stage0/stdlib/Init/Lean/Compiler/NeverExtractAttr.c rename to stage0/stdlib/Lean/Compiler/NeverExtractAttr.c index c8e9358891..725e0b9310 100644 --- a/stage0/stdlib/Init/Lean/Compiler/NeverExtractAttr.c +++ b/stage0/stdlib/Lean/Compiler/NeverExtractAttr.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.NeverExtractAttr -// Imports: Init.Lean.Environment Init.Lean.Attributes +// Module: Lean.Compiler.NeverExtractAttr +// Imports: Lean.Environment Lean.Attributes #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,25 +13,25 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkNeverExtractAttr(lean_object*); lean_object* l_Lean_hasNeverExtractAttribute___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkNeverExtractAttr___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_mkNeverExtractAttr___closed__3; lean_object* l_Lean_mkNeverExtractAttr___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkNeverExtractAttr___lambda__1___closed__1; -uint8_t l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux(lean_object*, lean_object*); lean_object* l_Lean_neverExtractAttr; +lean_object* l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main___boxed(lean_object*, lean_object*); uint8_t l_Lean_Name_isInternal___main(lean_object*); -lean_object* l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___boxed(lean_object*, lean_object*); uint8_t l_Lean_TagAttribute_hasTag(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_getPrefix(lean_object*); lean_object* l_Lean_mkNeverExtractAttr___closed__2; uint8_t lean_has_never_extract_attribute(lean_object*, lean_object*); lean_object* l_Lean_registerTagAttribute(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_TagAttribute_Inhabited___closed__3; -lean_object* l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main___boxed(lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(lean_object*, lean_object*); lean_object* l_Lean_mkNeverExtractAttr___closed__1; lean_object* l_Lean_mkNeverExtractAttr___closed__4; lean_object* _init_l_Lean_mkNeverExtractAttr___lambda__1___closed__1() { @@ -107,7 +107,7 @@ lean_dec(x_1); return x_3; } } -uint8_t l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -140,29 +140,29 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(x_1, x_2); +x_3 = l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(x_1, x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; -x_3 = l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(x_1, x_2); +x_3 = l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux(x_1, x_2); +x_3 = l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux(x_1, x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; @@ -172,7 +172,7 @@ uint8_t lean_has_never_extract_attribute(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; -x_3 = l___private_Init_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(x_1, x_2); +x_3 = l___private_Lean_Compiler_NeverExtractAttr_1__hasNeverExtractAttributeAux___main(x_1, x_2); lean_dec(x_1); return x_3; } @@ -186,17 +186,17 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_NeverExtractAttr(lean_object* w) { +lean_object* initialize_Lean_Compiler_NeverExtractAttr(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_mkNeverExtractAttr___lambda__1___closed__1 = _init_l_Lean_mkNeverExtractAttr___lambda__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Compiler/Specialize.c b/stage0/stdlib/Lean/Compiler/Specialize.c similarity index 97% rename from stage0/stdlib/Init/Lean/Compiler/Specialize.c rename to stage0/stdlib/Lean/Compiler/Specialize.c index 37068f9d1b..28c9b93049 100644 --- a/stage0/stdlib/Init/Lean/Compiler/Specialize.c +++ b/stage0/stdlib/Lean/Compiler/Specialize.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.Specialize -// Imports: Init.Lean.Attributes Init.Lean.Compiler.Util +// Module: Lean.Compiler.Specialize +// Imports: Lean.Attributes Lean.Compiler.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -23,12 +23,10 @@ lean_object* l_Lean_Compiler_hasNospecializeAttribute___boxed(lean_object*, lean lean_object* l_Lean_Compiler_mkSpecializeAttrs___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___at_Lean_Compiler_mkSpecializeAttrs___spec__1___closed__2; lean_object* l_Lean_Compiler_mkSpecializeAttrs___closed__1; -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +uint8_t l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux(lean_object*, uint8_t, lean_object*); lean_object* l_AssocList_contains___main___at_Lean_Compiler_SpecState_addEntry___spec__7___boxed(lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2(lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___at_Lean_Compiler_mkSpecializeAttrs___spec__1___lambda__1(lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_specExtension___elambda__4(lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Compiler_getCachedSpecialization___spec__6___boxed(lean_object*, lean_object*); @@ -58,13 +56,11 @@ lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Compiler_SpecState_a lean_object* l_PersistentHashMap_insert___at_Lean_Compiler_SpecState_addEntry___spec__13(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_Compiler_getSpecializationInfo___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Compiler_specializeAttrs; -lean_object* l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_fold___main___at_Lean_Compiler_mkSpecializeAttrs___spec__2(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Compiler_getSpecializationInfo___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Compiler_mkSpecExtension___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_specExtension___closed__1; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Compiler_getSpecializationInfo___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -82,14 +78,15 @@ lean_object* l_Lean_Compiler_mkSpecializeAttrs___closed__9; lean_object* l_Lean_Compiler_mkSpecializeAttrs___closed__4; extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; lean_object* l_Lean_Compiler_specExtension___closed__4; -lean_object* l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_switch___at_Lean_Compiler_SpecState_switch___spec__2(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Compiler_specExtension___elambda__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_Compiler_getCachedSpecialization___spec__1___boxed(lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Compiler_mkSpecializeAttrs___spec__8(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkSpecializeAttrs___closed__6; +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_Compiler_specExtension___elambda__2___boxed(lean_object*); +lean_object* l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_specExtension___closed__6; extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__3; lean_object* l_Lean_Compiler_specExtension___closed__2; @@ -109,6 +106,7 @@ lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Compiler_SpecState_a lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkSpecializeAttrs___closed__15; +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2(lean_object*, lean_object*); lean_object* l_List_forM___main___at_Lean_registerEnumAttributes___spec__11(lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Compiler_getCachedSpecialization___spec__3(lean_object*, size_t, lean_object*); @@ -123,7 +121,6 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___at_Lean_Compiler_mkSpecExtension___spec__4(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Compiler_getSpecializationInfo___spec__3(lean_object*, size_t, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_expand___at_Lean_Compiler_SpecState_addEntry___spec__8(lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Compiler_mkSpecializeAttrs___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_Lean_Name_hash(lean_object*); @@ -145,7 +142,6 @@ extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__1; lean_object* l_Lean_Compiler_mkSpecializeAttrs___closed__7; extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__2; size_t lean_usize_modn(size_t, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_SMap_insert___at_Lean_Compiler_SpecState_addEntry___spec__12(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___at_Lean_Compiler_mkSpecializeAttrs___spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); uint8_t l_Lean_Compiler_SpecializeAttributeKind_Inhabited; @@ -153,9 +149,9 @@ lean_object* l_Lean_Compiler_SpecializeAttributeKind_HasBeq___closed__1; extern lean_object* l_PersistentHashMap_empty___rarg___closed__2; lean_object* lean_add_specialization_info(lean_object*, lean_object*, lean_object*); size_t l_USize_mul(size_t, size_t); -uint8_t l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux(lean_object*, uint8_t, lean_object*); lean_object* l_mkHashMapImp___rarg(lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Compiler_mkSpecializeAttrs___spec__5(lean_object*, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Compiler_mkSpecExtension___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Compiler_mkSpecExtension___spec__7___closed__5; lean_object* l_mkHashMap___at_Lean_Compiler_SpecState_Inhabited___spec__1(lean_object*); @@ -166,8 +162,10 @@ lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_ob size_t l_USize_land(size_t, size_t); lean_object* l_Lean_Compiler_SpecializeAttributeKind_beq___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__2; +lean_object* l_Array_binSearchAux___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Compiler_SpecState_addEntry___spec__5(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* lean_cache_specialization(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Compiler_mkSpecExtension___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; @@ -191,6 +189,7 @@ uint8_t l_USize_decLe(size_t, size_t); lean_object* l_Lean_SMap_find_x3f___at_Lean_Compiler_getSpecializationInfo___spec__1(lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Compiler_getCachedSpecialization___spec__2(lean_object*, lean_object*); uint8_t l_Lean_Name_isInternal___main(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Compiler_mkSpecializeAttrs___spec__8___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Compiler_mkSpecializeAttrs___closed__3; extern lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___closed__1; @@ -210,11 +209,12 @@ extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; lean_object* lean_nat_mul(lean_object*, lean_object*); lean_object* l_HashMapImp_expand___at_Lean_Compiler_SpecState_addEntry___spec__19(lean_object*, lean_object*); lean_object* l_Lean_Name_getPrefix(lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_registerEnumAttributes___at_Lean_Compiler_mkSpecializeAttrs___spec__1___lambda__2___boxed(lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Compiler_mkSpecExtension___spec__7___closed__3; lean_object* l_Lean_Compiler_mkSpecializeAttrs(lean_object*); lean_object* l_AssocList_replace___main___at_Lean_Compiler_SpecState_addEntry___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Compiler_mkSpecExtension___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); @@ -249,17 +249,17 @@ lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Compiler_mkSpecExtension___spec__7___closed__4; lean_object* lean_usize_to_nat(size_t); extern lean_object* l_Lean_regNamespacesExtension___closed__4; -lean_object* l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); extern lean_object* l_HashMap_Inhabited___closed__1; extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__4; uint8_t l_AssocList_contains___main___at_Lean_Compiler_SpecState_addEntry___spec__7(lean_object*, lean_object*); +uint8_t l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Compiler_specExtension___elambda__3(lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__1; +lean_object* l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkSpecializeAttrs___closed__12; lean_object* l_Lean_Compiler_specExtension___elambda__4___rarg(lean_object*); -uint8_t l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Compiler_mkSpecializeAttrs___closed__10; lean_object* l_List_map___main___at_Lean_Compiler_mkSpecializeAttrs___spec__8___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -672,7 +672,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -860,7 +860,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Compiler_mkSp _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -1932,7 +1932,7 @@ lean_dec(x_1); return x_5; } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1975,7 +1975,7 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -2056,7 +2056,7 @@ goto _start; } } } -lean_object* l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -2066,7 +2066,7 @@ if (lean_obj_tag(x_4) == 0) lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_1, 1); x_6 = l_Lean_PersistentEnvExtension_getState___rarg(x_5, x_2); -x_7 = l_RBNode_find___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2(x_6, x_3); +x_7 = l_RBNode_find___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2(x_6, x_3); lean_dec(x_3); lean_dec(x_6); return x_7; @@ -2090,7 +2090,7 @@ x_15 = lean_unsigned_to_nat(1u); x_16 = lean_nat_sub(x_14, x_15); lean_dec(x_14); x_17 = lean_unsigned_to_nat(0u); -x_18 = l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3(x_10, x_13, x_17, x_16); +x_18 = l_Array_binSearchAux___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3(x_10, x_13, x_17, x_16); lean_dec(x_13); lean_dec(x_10); if (lean_obj_tag(x_18) == 0) @@ -2130,13 +2130,13 @@ return x_25; } } } -uint8_t l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +uint8_t l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = l_Lean_Compiler_specializeAttrs; lean_inc(x_3); -x_5 = l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1(x_4, x_1, x_3); +x_5 = l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1(x_4, x_1, x_3); if (lean_obj_tag(x_5) == 0) { uint8_t x_6; @@ -2171,63 +2171,63 @@ return x_12; } } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_RBNode_find___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2(x_1, x_2); +x_3 = l_RBNode_find___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__2(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__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_Array_binSearchAux___main___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__3(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_EnumAttributes_getValue___at___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1(x_1, x_2, x_3); +x_4 = l_Lean_EnumAttributes_getValue___at___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; lean_object* x_6; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(x_1, x_4, x_3); +x_5 = l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(x_1, x_4, x_3); lean_dec(x_1); x_6 = lean_box(x_5); return x_6; } } -uint8_t l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +uint8_t l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { uint8_t x_4; -x_4 = l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; lean_object* x_6; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux(x_1, x_4, x_3); +x_5 = l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux(x_1, x_4, x_3); lean_dec(x_1); x_6 = lean_box(x_5); return x_6; @@ -2238,7 +2238,7 @@ _start: { uint8_t x_3; uint8_t x_4; x_3 = 0; -x_4 = l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(x_1, x_3, x_2); +x_4 = l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(x_1, x_3, x_2); lean_dec(x_1); return x_4; } @@ -2257,7 +2257,7 @@ _start: { uint8_t x_3; uint8_t x_4; x_3 = 1; -x_4 = l___private_Init_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(x_1, x_3, x_2); +x_4 = l___private_Lean_Compiler_Specialize_1__hasSpecializeAttrAux___main(x_1, x_3, x_2); lean_dec(x_1); return x_4; } @@ -4547,7 +4547,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -4735,7 +4735,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Compiler_mkSp _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -6096,17 +6096,17 @@ lean_dec(x_2); return x_3; } } -lean_object* initialize_Init_Lean_Attributes(lean_object*); -lean_object* initialize_Init_Lean_Compiler_Util(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Compiler_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_Specialize(lean_object* w) { +lean_object* initialize_Lean_Compiler_Specialize(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_Util(lean_io_mk_world()); +res = initialize_Lean_Compiler_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Compiler_SpecializeAttributeKind_Inhabited = _init_l_Lean_Compiler_SpecializeAttributeKind_Inhabited(); diff --git a/stage0/stdlib/Init/Lean/Compiler/Util.c b/stage0/stdlib/Lean/Compiler/Util.c similarity index 96% rename from stage0/stdlib/Init/Lean/Compiler/Util.c rename to stage0/stdlib/Lean/Compiler/Util.c index 337d2af614..81c32d9706 100644 --- a/stage0/stdlib/Init/Lean/Compiler/Util.c +++ b/stage0/stdlib/Lean/Compiler/Util.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Compiler.Util -// Imports: Init.Lean.Environment +// Module: Lean.Compiler.Util +// Imports: Lean.Environment #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,8 +17,8 @@ lean_object* l_Lean_Compiler_atMostOnce___boxed(lean_object*, lean_object*); lean_object* l_Lean_Compiler_objectType___closed__3; lean_object* l_Lean_Compiler_atMostOnce_visit(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_voidType; +lean_object* lean_get_decl_names_for_code_gen(lean_object*); lean_object* l_Lean_Compiler_neutralExpr___closed__1; -lean_object* l_List_map___main___at___private_Init_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkLcProof___closed__3; lean_object* l_Lean_Compiler_objectType; @@ -36,7 +36,6 @@ lean_object* l_Lean_Compiler_atMostOnce_visit___boxed(lean_object*, lean_object* uint8_t lean_is_eager_lambda_lifting_name(lean_object*); lean_object* l_Lean_Compiler_atMostOnce_visit___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_voidType___closed__3; -lean_object* lean_get_decl_names_for_code_gen(lean_object*); lean_object* l_Lean_Compiler_atMostOnce_HasAndthen___closed__1; lean_object* l_Lean_Compiler_mkEagerLambdaLiftingName___closed__1; lean_object* l_Lean_Compiler_atMostOnce_skip___boxed(lean_object*); @@ -47,6 +46,7 @@ uint8_t l_Lean_Compiler_isEagerLambdaLiftingName___main(lean_object*); lean_object* l_Lean_Compiler_atMostOnce___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkLcProof(lean_object*); +lean_object* l_List_map___main___at___private_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(lean_object*); lean_object* l_Lean_Compiler_atMostOnce_visitFVar___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_atMostOnce_HasAndthen; lean_object* l_Lean_Compiler_checkIsDefinition(lean_object*, lean_object*); @@ -801,7 +801,7 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l_List_map___main___at___private_Init_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -828,7 +828,7 @@ lean_dec(x_7); x_8 = lean_ctor_get(x_4, 0); lean_inc(x_8); lean_dec(x_4); -x_9 = l_List_map___main___at___private_Init_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(x_6); +x_9 = l_List_map___main___at___private_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(x_6); lean_ctor_set(x_1, 1, x_9); lean_ctor_set(x_1, 0, x_8); return x_1; @@ -842,7 +842,7 @@ lean_dec(x_1); x_11 = lean_ctor_get(x_4, 0); lean_inc(x_11); lean_dec(x_4); -x_12 = l_List_map___main___at___private_Init_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(x_10); +x_12 = l_List_map___main___at___private_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(x_10); x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -897,7 +897,7 @@ lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_1, 0); lean_inc(x_12); lean_dec(x_1); -x_13 = l_List_map___main___at___private_Init_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(x_12); +x_13 = l_List_map___main___at___private_Lean_Compiler_Util_1__getDeclNamesForCodeGen___spec__1(x_12); return x_13; } default: @@ -990,13 +990,13 @@ return x_7; } } } -lean_object* initialize_Init_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Compiler_Util(lean_object* w) { +lean_object* initialize_Lean_Compiler_Util(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Compiler_neutralExpr___closed__1 = _init_l_Lean_Compiler_neutralExpr___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Data/Format.c b/stage0/stdlib/Lean/Data/Format.c similarity index 99% rename from stage0/stdlib/Init/Lean/Data/Format.c rename to stage0/stdlib/Lean/Data/Format.c index 5a17d1de72..dd0dec8347 100644 --- a/stage0/stdlib/Init/Lean/Data/Format.c +++ b/stage0/stdlib/Lean/Data/Format.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Data.Format -// Imports: Init.Data.Array Init.Lean.Data.Options +// Module: Lean.Data.Format +// Imports: Init.Data.Array Lean.Data.Options #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -19,8 +19,8 @@ lean_object* l_Lean_dataValueHasFormat___closed__1; lean_object* l_Lean_List_format___rarg___closed__4; lean_object* l_Lean_Format_spaceUptoLine___main(lean_object*, lean_object*); lean_object* l_Lean_Format_repr___main(lean_object*); -lean_object* l___private_Init_Lean_Data_Format_1__merge___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_String_toFormat(lean_object*); +lean_object* l___private_Lean_Data_Format_1__merge(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_arrayHasFormat___spec__1___rarg(lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__1; extern lean_object* l_Option_HasRepr___rarg___closed__1; @@ -60,6 +60,7 @@ extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_Lean_arrayHasFormat(lean_object*); extern lean_object* l_List_repr___rarg___closed__3; lean_object* l_String_splitOn(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Format_1__merge___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_listHasFormat(lean_object*); lean_object* l_Lean_formatEntry(lean_object*); lean_object* l_Lean_Format_prefixJoin___main___rarg(lean_object*, lean_object*, lean_object*); @@ -167,7 +168,6 @@ extern lean_object* l_Bool_HasRepr___closed__1; lean_object* l_Lean_fmt(lean_object*); lean_object* l_Lean_Format_spaceUptoLine___boxed(lean_object*, lean_object*); lean_object* l_Lean_Format_spaceUptoLine___main___closed__2; -lean_object* l___private_Init_Lean_Data_Format_1__merge(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_nameHasFormat(lean_object*); lean_object* l_Lean_Format_getWidth___closed__2; lean_object* l_Lean_Format_getWidth___closed__1; @@ -505,7 +505,7 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Data_Format_1__merge(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Format_1__merge(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -563,11 +563,11 @@ return x_2; } } } -lean_object* l___private_Init_Lean_Data_Format_1__merge___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Format_1__merge___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Data_Format_1__merge(x_1, x_2, x_3); +x_4 = l___private_Lean_Data_Format_1__merge(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -3516,16 +3516,16 @@ return x_3; } } lean_object* initialize_Init_Data_Array(lean_object*); -lean_object* initialize_Init_Lean_Data_Options(lean_object*); +lean_object* initialize_Lean_Data_Options(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Format(lean_object* w) { +lean_object* initialize_Lean_Data_Format(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Data_Array(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Options(lean_io_mk_world()); +res = initialize_Lean_Data_Options(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Format_HasAppend___closed__1 = _init_l_Lean_Format_HasAppend___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Data/Json.c b/stage0/stdlib/Lean/Data/Json.c similarity index 58% rename from stage0/stdlib/Init/Lean/Data/Json.c rename to stage0/stdlib/Lean/Data/Json.c index ccf38aa785..26f50c04ef 100644 --- a/stage0/stdlib/Init/Lean/Data/Json.c +++ b/stage0/stdlib/Lean/Data/Json.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Data.Json -// Imports: Init.Lean.Data.Json.Printer Init.Lean.Data.Json.Parser Init.Lean.Data.Json.FromToJson +// Module: Lean.Data.Json +// Imports: Lean.Data.Json.Printer Lean.Data.Json.Parser Lean.Data.Json.FromToJson #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,21 +13,21 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* initialize_Init_Lean_Data_Json_Printer(lean_object*); -lean_object* initialize_Init_Lean_Data_Json_Parser(lean_object*); -lean_object* initialize_Init_Lean_Data_Json_FromToJson(lean_object*); +lean_object* initialize_Lean_Data_Json_Printer(lean_object*); +lean_object* initialize_Lean_Data_Json_Parser(lean_object*); +lean_object* initialize_Lean_Data_Json_FromToJson(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Json(lean_object* w) { +lean_object* initialize_Lean_Data_Json(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Json_Printer(lean_io_mk_world()); +res = initialize_Lean_Data_Json_Printer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Json_Parser(lean_io_mk_world()); +res = initialize_Lean_Data_Json_Parser(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Json_FromToJson(lean_io_mk_world()); +res = initialize_Lean_Data_Json_FromToJson(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Data/Json/Basic.c b/stage0/stdlib/Lean/Data/Json/Basic.c similarity index 96% rename from stage0/stdlib/Init/Lean/Data/Json/Basic.c rename to stage0/stdlib/Lean/Data/Json/Basic.c index bcb9140d54..e43bf409e6 100644 --- a/stage0/stdlib/Init/Lean/Data/Json/Basic.c +++ b/stage0/stdlib/Lean/Data/Json/Basic.c @@ -1,5 +1,5 @@ // Lean compiler output -// Module: Init.Lean.Data.Json.Basic +// Module: Lean.Data.Json.Basic // Imports: Init.System.IO Init.Data.String Init.Data.Int Init.Data.RBMap #include #if defined(__clang__) @@ -30,7 +30,6 @@ lean_object* lean_string_utf8_prev(lean_object*, lean_object*); lean_object* l_Lean_JsonNumber_shiftr___boxed(lean_object*, lean_object*); lean_object* l_Lean_JsonNumber_fromInt(lean_object*); lean_object* l_RBNode_find___main___at_Lean_Json_getObjVal_x3f___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Json_Basic_1__countDigitsAux___main(lean_object*, lean_object*); lean_object* l_Lean_Json_getStr_x3f(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* lean_nat_pow(lean_object*, lean_object*); @@ -44,13 +43,13 @@ extern lean_object* l_Sigma_HasRepr___rarg___closed__2; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_JsonNumber_jsonNumberToString___closed__1; lean_object* l_Int_repr(lean_object*); +lean_object* l___private_Lean_Data_Json_Basic_2__countDigits(lean_object*); lean_object* l_Lean_Json_intToJson(lean_object*); lean_object* lean_int_mod(lean_object*, lean_object*); lean_object* l_Lean_Json_boolToJson(uint8_t); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* lean_int_mul(lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Json_Basic_2__countDigits(lean_object*); lean_object* l_Lean_JsonNumber_shiftl___boxed(lean_object*, lean_object*); lean_object* l_Lean_JsonNumber_jsonNumberHasRepr___closed__1; extern lean_object* l_Int_zero___closed__1; @@ -60,6 +59,7 @@ lean_object* l_Lean_Json_getInt_x3f(lean_object*); lean_object* l_RBNode_find___main___at_Lean_Json_getObjVal_x3f___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Json_Basic_1__countDigitsAux___main(lean_object*, lean_object*); lean_object* l_Lean_strLt___boxed(lean_object*, lean_object*); lean_object* l_Lean_Json_getArrVal_x3f___boxed(lean_object*, lean_object*); lean_object* l_Lean_Json_boolToJson___boxed(lean_object*); @@ -71,7 +71,6 @@ lean_object* l_Lean_JsonNumber_jsonNumberHasRepr(lean_object*); lean_object* l_Substring_takeRightWhileAux___main___at_Lean_JsonNumber_toString___spec__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_UInt32_decEq(uint32_t, uint32_t); lean_object* l_Lean_JsonNumber_natToJsonNumber___closed__1; -lean_object* l___private_Init_Lean_Data_Json_Basic_1__countDigitsAux(lean_object*, lean_object*); lean_object* l_Lean_JsonNumber_fromNat(lean_object*); lean_object* l_Lean_Json_getObjValD(lean_object*, lean_object*); uint8_t lean_int_dec_le(lean_object*, lean_object*); @@ -79,6 +78,7 @@ extern lean_object* l_Int_one; lean_object* l_Lean_JsonNumber_natToJsonNumber; uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t lean_int_dec_lt(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Json_Basic_1__countDigitsAux(lean_object*, lean_object*); lean_object* l_Lean_Json_getBool_x3f___boxed(lean_object*); lean_object* lean_nat_abs(lean_object*); lean_object* l_Lean_JsonNumber_toString___closed__4; @@ -214,7 +214,7 @@ x_1 = l_Lean_JsonNumber_intToJsonNumber___closed__1; return x_1; } } -lean_object* l___private_Init_Lean_Data_Json_Basic_1__countDigitsAux___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Data_Json_Basic_1__countDigitsAux___main(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -240,20 +240,20 @@ return x_2; } } } -lean_object* l___private_Init_Lean_Data_Json_Basic_1__countDigitsAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Data_Json_Basic_1__countDigitsAux(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Data_Json_Basic_1__countDigitsAux___main(x_1, x_2); +x_3 = l___private_Lean_Data_Json_Basic_1__countDigitsAux___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Data_Json_Basic_2__countDigits(lean_object* x_1) { +lean_object* l___private_Lean_Data_Json_Basic_2__countDigits(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_unsigned_to_nat(1u); -x_3 = l___private_Init_Lean_Data_Json_Basic_1__countDigitsAux___main(x_1, x_2); +x_3 = l___private_Lean_Data_Json_Basic_1__countDigitsAux___main(x_1, x_2); return x_3; } } @@ -352,7 +352,7 @@ x_8 = lean_nat_abs(x_2); lean_dec(x_2); x_9 = lean_unsigned_to_nat(1u); lean_inc(x_8); -x_10 = l___private_Init_Lean_Data_Json_Basic_1__countDigitsAux___main(x_8, x_9); +x_10 = l___private_Lean_Data_Json_Basic_1__countDigitsAux___main(x_8, x_9); x_11 = lean_nat_to_int(x_10); x_12 = l_Lean_JsonNumber_toString___closed__4; x_13 = lean_int_add(x_12, x_11); @@ -1097,7 +1097,7 @@ lean_object* initialize_Init_Data_String(lean_object*); lean_object* initialize_Init_Data_Int(lean_object*); lean_object* initialize_Init_Data_RBMap(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Json_Basic(lean_object* w) { +lean_object* initialize_Lean_Data_Json_Basic(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; diff --git a/stage0/stdlib/Init/Lean/Data/Json/FromToJson.c b/stage0/stdlib/Lean/Data/Json/FromToJson.c similarity index 97% rename from stage0/stdlib/Init/Lean/Data/Json/FromToJson.c rename to stage0/stdlib/Lean/Data/Json/FromToJson.c index e9f1f6ceec..5aac487d7b 100644 --- a/stage0/stdlib/Init/Lean/Data/Json/FromToJson.c +++ b/stage0/stdlib/Lean/Data/Json/FromToJson.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Data.Json.FromToJson -// Imports: Init.Lean.Data.Json.Basic Init.Data.List.Control +// Module: Lean.Data.Json.FromToJson +// Imports: Lean.Data.Json.Basic Init.Data.List.Control #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -403,14 +403,14 @@ lean_dec(x_1); return x_5; } } -lean_object* initialize_Init_Lean_Data_Json_Basic(lean_object*); +lean_object* initialize_Lean_Data_Json_Basic(lean_object*); lean_object* initialize_Init_Data_List_Control(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Json_FromToJson(lean_object* w) { +lean_object* initialize_Lean_Data_Json_FromToJson(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Json_Basic(lean_io_mk_world()); +res = initialize_Lean_Data_Json_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Init_Data_List_Control(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Data/Json/Parser.c b/stage0/stdlib/Lean/Data/Json/Parser.c similarity index 99% rename from stage0/stdlib/Init/Lean/Data/Json/Parser.c rename to stage0/stdlib/Lean/Data/Json/Parser.c index e742d0f79d..dd8a4c088c 100644 --- a/stage0/stdlib/Init/Lean/Data/Json/Parser.c +++ b/stage0/stdlib/Lean/Data/Json/Parser.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Data.Json.Parser -// Imports: Init.Lean.Data.Json.Basic Init.Control.Except +// Module: Lean.Data.Json.Parser +// Imports: Lean.Data.Json.Basic Init.Control.Except #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -7344,14 +7344,14 @@ return x_16; } } } -lean_object* initialize_Init_Lean_Data_Json_Basic(lean_object*); +lean_object* initialize_Lean_Data_Json_Basic(lean_object*); lean_object* initialize_Init_Control_Except(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Json_Parser(lean_object* w) { +lean_object* initialize_Lean_Data_Json_Parser(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Json_Basic(lean_io_mk_world()); +res = initialize_Lean_Data_Json_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Init_Control_Except(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Data/Json/Printer.c b/stage0/stdlib/Lean/Data/Json/Printer.c similarity index 91% rename from stage0/stdlib/Init/Lean/Data/Json/Printer.c rename to stage0/stdlib/Lean/Data/Json/Printer.c index 07461af042..a48d48deb5 100644 --- a/stage0/stdlib/Init/Lean/Data/Json/Printer.c +++ b/stage0/stdlib/Lean/Data/Json/Printer.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Data.Json.Printer -// Imports: Init.Lean.Data.Format Init.Lean.Data.Json.Basic +// Module: Lean.Data.Json.Printer +// Imports: Lean.Data.Format Lean.Data.Json.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -41,9 +41,6 @@ lean_object* l_String_foldrAux___main___at_Lean_Json_escape___spec__1___boxed(le lean_object* l_Lean_Json_render___main___lambda__1___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_JsonNumber_jsonNumberHasRepr___closed__1; lean_object* l_Lean_Json_render___main___closed__7; -lean_object* l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__2; -lean_object* l___private_Init_Lean_Data_Json_Printer_1__escapeAux___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__1; lean_object* l_Lean_Json_render___main___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_Json_renderString(lean_object*); lean_object* l_Lean_Json_renderString___boxed(lean_object*); @@ -63,7 +60,6 @@ lean_object* l_Lean_Json_render___main___closed__3; extern lean_object* l_Lean_Format_sbracket___closed__1; extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; lean_object* lean_format_group(lean_object*); -lean_object* l___private_Init_Lean_Data_Json_Printer_1__escapeAux(uint32_t, lean_object*); lean_object* l_Lean_Json_pretty(lean_object*, lean_object*); lean_object* l_Lean_Json_render(lean_object*); lean_object* l_Array_toList___rarg(lean_object*); @@ -75,13 +71,17 @@ lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Json_render___main___closed__1; lean_object* l_Lean_Json_render___main___closed__2; uint8_t l_UInt32_decLe(uint32_t, uint32_t); +lean_object* l___private_Lean_Data_Json_Printer_1__escapeAux___closed__2; extern lean_object* l_Lean_Format_repr___main___closed__16; lean_object* l_Lean_Json_render___main___closed__9; +lean_object* l___private_Lean_Data_Json_Printer_1__escapeAux___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Json_Printer_1__escapeAux___closed__1; lean_object* lean_uint32_to_nat(uint32_t); lean_object* lean_string_mk(lean_object*); extern lean_object* l_addParenHeuristic___closed__1; +lean_object* l___private_Lean_Data_Json_Printer_1__escapeAux(uint32_t, lean_object*); lean_object* l_Lean_Json_render___main___closed__8; -lean_object* _init_l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__1() { +lean_object* _init_l___private_Lean_Data_Json_Printer_1__escapeAux___closed__1() { _start: { lean_object* x_1; @@ -89,7 +89,7 @@ x_1 = lean_mk_string("\\u"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__2() { +lean_object* _init_l___private_Lean_Data_Json_Printer_1__escapeAux___closed__2() { _start: { lean_object* x_1; @@ -97,7 +97,7 @@ x_1 = lean_mk_string("\\r"); return x_1; } } -lean_object* l___private_Init_Lean_Data_Json_Printer_1__escapeAux(uint32_t x_1, lean_object* x_2) { +lean_object* l___private_Lean_Data_Json_Printer_1__escapeAux(uint32_t x_1, lean_object* x_2) { _start: { lean_object* x_3; uint32_t x_32; uint8_t x_33; @@ -155,7 +155,7 @@ return x_48; else { lean_object* x_49; lean_object* x_50; -x_49 = l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__2; +x_49 = l___private_Lean_Data_Json_Printer_1__escapeAux___closed__2; x_50 = lean_string_append(x_49, x_2); return x_50; } @@ -226,7 +226,7 @@ x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); x_27 = lean_string_mk(x_26); -x_28 = l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__1; +x_28 = l___private_Lean_Data_Json_Printer_1__escapeAux___closed__1; x_29 = lean_string_append(x_28, x_27); lean_dec(x_27); x_30 = lean_string_append(x_29, x_2); @@ -234,13 +234,13 @@ return x_30; } } } -lean_object* l___private_Init_Lean_Data_Json_Printer_1__escapeAux___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Data_Json_Printer_1__escapeAux___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint32_t x_3; lean_object* x_4; x_3 = lean_unbox_uint32(x_1); lean_dec(x_1); -x_4 = l___private_Init_Lean_Data_Json_Printer_1__escapeAux(x_3, x_2); +x_4 = l___private_Lean_Data_Json_Printer_1__escapeAux(x_3, x_2); lean_dec(x_2); return x_4; } @@ -257,7 +257,7 @@ x_6 = lean_string_utf8_get(x_2, x_4); x_7 = lean_string_utf8_next(x_2, x_4); x_8 = l_String_foldrAux___main___at_Lean_Json_escape___spec__1(x_1, x_2, x_3, x_7); lean_dec(x_7); -x_9 = l___private_Init_Lean_Data_Json_Printer_1__escapeAux(x_6, x_8); +x_9 = l___private_Lean_Data_Json_Printer_1__escapeAux(x_6, x_8); lean_dec(x_8); return x_9; } @@ -636,23 +636,23 @@ x_3 = l_Lean_Json_pretty(x_1, x_2); return x_3; } } -lean_object* initialize_Init_Lean_Data_Format(lean_object*); -lean_object* initialize_Init_Lean_Data_Json_Basic(lean_object*); +lean_object* initialize_Lean_Data_Format(lean_object*); +lean_object* initialize_Lean_Data_Json_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Json_Printer(lean_object* w) { +lean_object* initialize_Lean_Data_Json_Printer(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Format(lean_io_mk_world()); +res = initialize_Lean_Data_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Json_Basic(lean_io_mk_world()); +res = initialize_Lean_Data_Json_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__1 = _init_l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__1); -l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__2 = _init_l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Data_Json_Printer_1__escapeAux___closed__2); +l___private_Lean_Data_Json_Printer_1__escapeAux___closed__1 = _init_l___private_Lean_Data_Json_Printer_1__escapeAux___closed__1(); +lean_mark_persistent(l___private_Lean_Data_Json_Printer_1__escapeAux___closed__1); +l___private_Lean_Data_Json_Printer_1__escapeAux___closed__2 = _init_l___private_Lean_Data_Json_Printer_1__escapeAux___closed__2(); +lean_mark_persistent(l___private_Lean_Data_Json_Printer_1__escapeAux___closed__2); l_Lean_Json_render___main___lambda__2___closed__1 = _init_l_Lean_Json_render___main___lambda__2___closed__1(); lean_mark_persistent(l_Lean_Json_render___main___lambda__2___closed__1); l_Lean_Json_render___main___closed__1 = _init_l_Lean_Json_render___main___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Data/KVMap.c b/stage0/stdlib/Lean/Data/KVMap.c similarity index 99% rename from stage0/stdlib/Init/Lean/Data/KVMap.c rename to stage0/stdlib/Lean/Data/KVMap.c index f43b88e583..1a03d33824 100644 --- a/stage0/stdlib/Init/Lean/Data/KVMap.c +++ b/stage0/stdlib/Lean/Data/KVMap.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Data.KVMap -// Imports: Init.Data.Option.Basic Init.Data.Int Init.Lean.Data.Name +// Module: Lean.Data.KVMap +// Imports: Init.Data.Option.Basic Init.Data.Int Lean.Data.Name #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1584,9 +1584,9 @@ return x_1; } lean_object* initialize_Init_Data_Option_Basic(lean_object*); lean_object* initialize_Init_Data_Int(lean_object*); -lean_object* initialize_Init_Lean_Data_Name(lean_object*); +lean_object* initialize_Lean_Data_Name(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_KVMap(lean_object* w) { +lean_object* initialize_Lean_Data_KVMap(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -1596,7 +1596,7 @@ lean_dec_ref(res); res = initialize_Init_Data_Int(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Name(lean_io_mk_world()); +res = initialize_Lean_Data_Name(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_DataValue_HasBeq___closed__1 = _init_l_Lean_DataValue_HasBeq___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Data/LBool.c b/stage0/stdlib/Lean/Data/LBool.c similarity index 98% rename from stage0/stdlib/Init/Lean/Data/LBool.c rename to stage0/stdlib/Lean/Data/LBool.c index 3cacc1fe5d..b6233bd71a 100644 --- a/stage0/stdlib/Init/Lean/Data/LBool.c +++ b/stage0/stdlib/Lean/Data/LBool.c @@ -1,5 +1,5 @@ // Lean compiler output -// Module: Init.Lean.Data.LBool +// Module: Lean.Data.LBool // Imports: Init.Data.ToString #include #if defined(__clang__) @@ -331,7 +331,7 @@ return x_4; } lean_object* initialize_Init_Data_ToString(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_LBool(lean_object* w) { +lean_object* initialize_Lean_Data_LBool(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; diff --git a/stage0/stdlib/Init/Lean/Data/LOption.c b/stage0/stdlib/Lean/Data/LOption.c similarity index 98% rename from stage0/stdlib/Init/Lean/Data/LOption.c rename to stage0/stdlib/Lean/Data/LOption.c index c0070d43ac..bf58c6e677 100644 --- a/stage0/stdlib/Init/Lean/Data/LOption.c +++ b/stage0/stdlib/Lean/Data/LOption.c @@ -1,5 +1,5 @@ // Lean compiler output -// Module: Init.Lean.Data.LOption +// Module: Lean.Data.LOption // Imports: Init.Data.ToString #include #if defined(__clang__) @@ -269,7 +269,7 @@ return x_3; } lean_object* initialize_Init_Data_ToString(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_LOption(lean_object* w) { +lean_object* initialize_Lean_Data_LOption(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; diff --git a/stage0/stdlib/Init/Lean/Data/Name.c b/stage0/stdlib/Lean/Data/Name.c similarity index 99% rename from stage0/stdlib/Init/Lean/Data/Name.c rename to stage0/stdlib/Lean/Data/Name.c index 6ffb0ef6a8..ad6d0ad831 100644 --- a/stage0/stdlib/Init/Lean/Data/Name.c +++ b/stage0/stdlib/Lean/Data/Name.c @@ -1,5 +1,5 @@ // Lean compiler output -// Module: Init.Lean.Data.Name +// Module: Lean.Data.Name // Imports: Init.LeanInit Init.Data.UInt Init.Data.ToString Init.Data.Hashable Init.Data.HashSet Init.Data.RBMap Init.Data.RBTree #include #if defined(__clang__) @@ -9308,7 +9308,7 @@ lean_object* initialize_Init_Data_HashSet(lean_object*); lean_object* initialize_Init_Data_RBMap(lean_object*); lean_object* initialize_Init_Data_RBTree(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Name(lean_object* w) { +lean_object* initialize_Lean_Data_Name(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; diff --git a/stage0/stdlib/Init/Lean/Data/Occurrences.c b/stage0/stdlib/Lean/Data/Occurrences.c similarity index 98% rename from stage0/stdlib/Init/Lean/Data/Occurrences.c rename to stage0/stdlib/Lean/Data/Occurrences.c index 736ddcbb01..78862a66d8 100644 --- a/stage0/stdlib/Init/Lean/Data/Occurrences.c +++ b/stage0/stdlib/Lean/Data/Occurrences.c @@ -1,5 +1,5 @@ // Lean compiler output -// Module: Init.Lean.Data.Occurrences +// Module: Lean.Data.Occurrences // Imports: Init.Data.Nat #include #if defined(__clang__) @@ -297,7 +297,7 @@ return x_1; } lean_object* initialize_Init_Data_Nat(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Occurrences(lean_object* w) { +lean_object* initialize_Lean_Data_Occurrences(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; diff --git a/stage0/stdlib/Init/Lean/Data/Options.c b/stage0/stdlib/Lean/Data/Options.c similarity index 97% rename from stage0/stdlib/Init/Lean/Data/Options.c rename to stage0/stdlib/Lean/Data/Options.c index 606afc6765..22aef232d2 100644 --- a/stage0/stdlib/Init/Lean/Data/Options.c +++ b/stage0/stdlib/Lean/Data/Options.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Data.Options -// Imports: Init.System.IO Init.Data.Array Init.Data.ToString Init.Lean.Data.KVMap +// Module: Lean.Data.Options +// Imports: Init.System.IO Init.Data.Array Init.Data.ToString Lean.Data.KVMap #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -31,6 +31,7 @@ lean_object* l_String_toInt_x3f(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_String_splitOn(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Options_2__optionDeclsRef; lean_object* l_Lean_getOptionDecl___closed__1; uint8_t l_Lean_NameMap_contains___rarg(lean_object*, lean_object*); lean_object* l_Lean_KVMap_HasToString(lean_object*); @@ -60,7 +61,7 @@ lean_object* l_Lean_timeoutOption___closed__2; lean_object* l_Lean_setOptionFromString(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_setOptionFromString___closed__6; extern lean_object* l_Bool_HasRepr___closed__2; -lean_object* l___private_Init_Lean_Data_Options_1__initOptionDeclsRef(lean_object*); +lean_object* l___private_Lean_Data_Options_1__initOptionDeclsRef(lean_object*); lean_object* l_Lean_verboseOption___closed__2; lean_object* l_Lean_setOptionFromString___closed__1; lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); @@ -82,7 +83,6 @@ lean_object* l_Lean_getOptionDescr(lean_object*, lean_object*); lean_object* l_Lean_timeoutOption(lean_object*); lean_object* l_Lean_setOptionFromString___closed__3; lean_object* l_Lean_maxMemoryOption___closed__4; -lean_object* l___private_Init_Lean_Data_Options_2__optionDeclsRef; lean_object* l_List_map___main___at_Lean_setOptionFromString___spec__1(lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_verboseOption(lean_object*); @@ -127,7 +127,7 @@ x_1 = l_Lean_Options_HasToString___closed__1; return x_1; } } -lean_object* l___private_Init_Lean_Data_Options_1__initOptionDeclsRef(lean_object* x_1) { +lean_object* l___private_Lean_Data_Options_1__initOptionDeclsRef(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -156,7 +156,7 @@ lean_object* lean_register_option(lean_object* x_1, lean_object* x_2, lean_objec _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Data_Options_2__optionDeclsRef; +x_4 = l___private_Lean_Data_Options_2__optionDeclsRef; x_5 = lean_io_ref_get(x_4, x_3); if (lean_obj_tag(x_5) == 0) { @@ -262,7 +262,7 @@ lean_object* l_Lean_getOptionDecls(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Data_Options_2__optionDeclsRef; +x_2 = l___private_Lean_Data_Options_2__optionDeclsRef; x_3 = lean_io_ref_get(x_2, x_1); return x_3; } @@ -298,7 +298,7 @@ lean_object* lean_get_option_decls_array(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Data_Options_2__optionDeclsRef; +x_2 = l___private_Lean_Data_Options_2__optionDeclsRef; x_3 = lean_io_ref_get(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -419,7 +419,7 @@ lean_object* l_Lean_getOptionDecl(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Data_Options_2__optionDeclsRef; +x_3 = l___private_Lean_Data_Options_2__optionDeclsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -1378,9 +1378,9 @@ return x_4; lean_object* initialize_Init_System_IO(lean_object*); lean_object* initialize_Init_Data_Array(lean_object*); lean_object* initialize_Init_Data_ToString(lean_object*); -lean_object* initialize_Init_Lean_Data_KVMap(lean_object*); +lean_object* initialize_Lean_Data_KVMap(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Options(lean_object* w) { +lean_object* initialize_Lean_Data_Options(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -1393,7 +1393,7 @@ lean_dec_ref(res); res = initialize_Init_Data_ToString(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_KVMap(lean_io_mk_world()); +res = initialize_Lean_Data_KVMap(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Options_empty = _init_l_Lean_Options_empty(); @@ -1406,10 +1406,10 @@ l_Lean_Options_HasToString___closed__1 = _init_l_Lean_Options_HasToString___clos lean_mark_persistent(l_Lean_Options_HasToString___closed__1); l_Lean_Options_HasToString = _init_l_Lean_Options_HasToString(); lean_mark_persistent(l_Lean_Options_HasToString); -res = l___private_Init_Lean_Data_Options_1__initOptionDeclsRef(lean_io_mk_world()); +res = l___private_Lean_Data_Options_1__initOptionDeclsRef(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; -l___private_Init_Lean_Data_Options_2__optionDeclsRef = lean_io_result_get_value(res); -lean_mark_persistent(l___private_Init_Lean_Data_Options_2__optionDeclsRef); +l___private_Lean_Data_Options_2__optionDeclsRef = lean_io_result_get_value(res); +lean_mark_persistent(l___private_Lean_Data_Options_2__optionDeclsRef); lean_dec_ref(res); l_Lean_registerOption___closed__1 = _init_l_Lean_registerOption___closed__1(); lean_mark_persistent(l_Lean_registerOption___closed__1); diff --git a/stage0/stdlib/Init/Lean/Data/Position.c b/stage0/stdlib/Lean/Data/Position.c similarity index 79% rename from stage0/stdlib/Init/Lean/Data/Position.c rename to stage0/stdlib/Lean/Data/Position.c index f7bcde4093..9e8fa40543 100644 --- a/stage0/stdlib/Init/Lean/Data/Position.c +++ b/stage0/stdlib/Lean/Data/Position.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Data.Position -// Imports: Init.Data.Nat Init.Data.RBMap Init.Lean.Data.Format +// Module: Lean.Data.Position +// Imports: Init.Data.Nat Init.Data.RBMap Lean.Data.Format #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,7 +14,6 @@ extern "C" { #endif lean_object* l_Lean_fmt___at_Lean_Position_Lean_HasFormat___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Data_Position_3__toPositionAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_Lean_FileMap_ofString___closed__2; lean_object* l_Lean_Position_Inhabited; @@ -26,45 +25,46 @@ lean_object* l_Lean_Position_Inhabited___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Position_1__ofStringAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_prodHasDecidableLt___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_formatKVMap___closed__1; extern lean_object* l_String_splitAux___main___closed__1; -lean_object* l___private_Init_Lean_Data_Position_2__toColumnAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_ofString___closed__1; extern lean_object* l_Sigma_HasRepr___rarg___closed__2; lean_object* l_Lean_Position_lt(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Position_2__toColumnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Position_Lean_HasFormat(lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Position_3__toPositionAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_FileMap_toPosition___spec__1___boxed(lean_object*); +lean_object* l___private_Lean_Data_Position_3__toPositionAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Position_3__toPositionAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Position_2__toColumnAux___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Position_2__toColumnAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); +lean_object* l___private_Lean_Data_Position_1__ofStringAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_List_reprAux___main___rarg___closed__1; uint32_t lean_string_utf8_get(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Position_2__toColumnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); lean_object* l_Lean_FileMap_ofString(lean_object*); lean_object* l_Lean_Position_Lean_HasFormat___closed__2; lean_object* l_Lean_FileMap_Inhabited; -lean_object* l___private_Init_Lean_Data_Position_2__toColumnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Position_1__ofStringAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Position_3__toPositionAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_UInt32_decEq(uint32_t, uint32_t); lean_object* l_Lean_Position_Lean_HasFormat___closed__1; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_FileMap_toPosition___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Data_Position_2__toColumnAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Position_DecidableEq___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Position_2__toColumnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_Inhabited___closed__1; +lean_object* l___private_Lean_Data_Position_3__toPositionAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Position_lt___closed__1; -lean_object* l___private_Init_Lean_Data_Position_1__ofStringAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Position_DecidableEq(lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; +lean_object* l___private_Lean_Data_Position_3__toPositionAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Nat_Inhabited; -lean_object* l___private_Init_Lean_Data_Position_3__toPositionAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); lean_object* l_Lean_Position_lt___boxed(lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition___boxed(lean_object*, lean_object*); @@ -284,7 +284,7 @@ x_1 = l_Lean_FileMap_Inhabited___closed__1; return x_1; } } -lean_object* l___private_Init_Lean_Data_Position_1__ofStringAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Data_Position_1__ofStringAux___main(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; @@ -332,11 +332,11 @@ return x_19; } } } -lean_object* l___private_Init_Lean_Data_Position_1__ofStringAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Data_Position_1__ofStringAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Data_Position_1__ofStringAux___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Data_Position_1__ofStringAux___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } @@ -368,11 +368,11 @@ x_2 = lean_unsigned_to_nat(0u); x_3 = lean_unsigned_to_nat(1u); x_4 = l_Lean_FileMap_ofString___closed__1; x_5 = l_Lean_FileMap_ofString___closed__2; -x_6 = l___private_Init_Lean_Data_Position_1__ofStringAux___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Data_Position_1__ofStringAux___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Data_Position_2__toColumnAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Position_2__toColumnAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -406,36 +406,36 @@ return x_4; } } } -lean_object* l___private_Init_Lean_Data_Position_2__toColumnAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Position_2__toColumnAux___main___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___private_Init_Lean_Data_Position_2__toColumnAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Data_Position_2__toColumnAux___main(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Data_Position_2__toColumnAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Data_Position_2__toColumnAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Data_Position_2__toColumnAux___main(x_1, x_3, x_4, x_5); +x_6 = l___private_Lean_Data_Position_2__toColumnAux___main(x_1, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Data_Position_2__toColumnAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Data_Position_2__toColumnAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Data_Position_2__toColumnAux(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Data_Position_2__toColumnAux(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Data_Position_3__toPositionAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Data_Position_3__toPositionAux___main(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; @@ -495,7 +495,7 @@ lean_dec(x_6); x_23 = lean_array_get(x_7, x_3, x_5); lean_dec(x_5); x_24 = lean_unsigned_to_nat(0u); -x_25 = l___private_Init_Lean_Data_Position_2__toColumnAux___main(x_1, x_4, x_8, x_24); +x_25 = l___private_Lean_Data_Position_2__toColumnAux___main(x_1, x_4, x_8, x_24); x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_23); lean_ctor_set(x_26, 1, x_25); @@ -503,11 +503,11 @@ return x_26; } } } -lean_object* l___private_Init_Lean_Data_Position_3__toPositionAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Data_Position_3__toPositionAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Data_Position_3__toPositionAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Data_Position_3__toPositionAux___main(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -515,19 +515,19 @@ lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Data_Position_3__toPositionAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Data_Position_3__toPositionAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Data_Position_3__toPositionAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Data_Position_3__toPositionAux___main(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Data_Position_3__toPositionAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Data_Position_3__toPositionAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Data_Position_3__toPositionAux(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Data_Position_3__toPositionAux(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -592,7 +592,7 @@ x_15 = lean_unsigned_to_nat(1u); x_16 = lean_nat_sub(x_6, x_15); lean_dec(x_6); x_17 = lean_unsigned_to_nat(0u); -x_18 = l___private_Init_Lean_Data_Position_3__toPositionAux___main(x_3, x_4, x_5, x_2, x_17, x_16); +x_18 = l___private_Lean_Data_Position_3__toPositionAux___main(x_3, x_4, x_5, x_2, x_17, x_16); lean_dec(x_2); return x_18; } @@ -627,9 +627,9 @@ return x_2; } lean_object* initialize_Init_Data_Nat(lean_object*); lean_object* initialize_Init_Data_RBMap(lean_object*); -lean_object* initialize_Init_Lean_Data_Format(lean_object*); +lean_object* initialize_Lean_Data_Format(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Position(lean_object* w) { +lean_object* initialize_Lean_Data_Position(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -639,7 +639,7 @@ lean_dec_ref(res); res = initialize_Init_Data_RBMap(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Format(lean_io_mk_world()); +res = initialize_Lean_Data_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Position_lt___closed__1 = _init_l_Lean_Position_lt___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Data/SMap.c b/stage0/stdlib/Lean/Data/SMap.c similarity index 99% rename from stage0/stdlib/Init/Lean/Data/SMap.c rename to stage0/stdlib/Lean/Data/SMap.c index 091b42c71c..0bc25c7c55 100644 --- a/stage0/stdlib/Init/Lean/Data/SMap.c +++ b/stage0/stdlib/Lean/Data/SMap.c @@ -1,5 +1,5 @@ // Lean compiler output -// Module: Init.Lean.Data.SMap +// Module: Lean.Data.SMap // Imports: Init.Data.HashMap Init.Data.PersistentHashMap #include #if defined(__clang__) @@ -339,7 +339,7 @@ lean_object* _init_l_Lean_SMap_find_x21___rarg___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Data.SMap"); +x_1 = lean_mk_string("Lean.Data.SMap"); return x_1; } } @@ -899,7 +899,7 @@ return x_5; lean_object* initialize_Init_Data_HashMap(lean_object*); lean_object* initialize_Init_Data_PersistentHashMap(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_SMap(lean_object* w) { +lean_object* initialize_Lean_Data_SMap(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; diff --git a/stage0/stdlib/Init/Lean/Data/Trie.c b/stage0/stdlib/Lean/Data/Trie.c similarity index 90% rename from stage0/stdlib/Init/Lean/Data/Trie.c rename to stage0/stdlib/Lean/Data/Trie.c index 021d9ce5ba..e17e0d154e 100644 --- a/stage0/stdlib/Init/Lean/Data/Trie.c +++ b/stage0/stdlib/Lean/Data/Trie.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Data.Trie -// Imports: Init.Data.RBMap Init.Lean.Data.Format +// Module: Lean.Data.Trie +// Imports: Init.Data.RBMap Lean.Data.Format #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,97 +13,97 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(lean_object*, uint32_t, lean_object*); +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5(lean_object*); uint8_t l_RBNode_isRed___rarg(lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_4__updtAcc(lean_object*); +lean_object* l___private_Lean_Data_Trie_6__toStringAux___main___rarg(lean_object*); +lean_object* l___private_Lean_Data_Trie_3__findAux___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4(lean_object*); +lean_object* l_RBNode_fold___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg(lean_object*, lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Trie_HasEmptyc(lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7(lean_object*); lean_object* l_Lean_Parser_Trie_HasToString___rarg(lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(lean_object*, uint32_t, lean_object*); lean_object* l_Lean_Parser_Trie_matchPrefix___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_3__findAux___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Trie_empty(lean_object*); -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4(lean_object*); +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(lean_object*, uint32_t, lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7(lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg(lean_object*, lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1___rarg___boxed(lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg___boxed(lean_object*, lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(lean_object*, uint32_t, lean_object*); +lean_object* l___private_Lean_Data_Trie_6__toStringAux___rarg(lean_object*); lean_object* l_Lean_Parser_Trie_find___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___main(lean_object*); +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg(lean_object*, uint32_t); +lean_object* l___private_Lean_Data_Trie_3__findAux___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Trie_matchPrefix___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___main(lean_object*); +lean_object* l___private_Lean_Data_Trie_3__findAux___main(lean_object*); lean_object* l_Lean_Parser_Trie_HasEmptyc___closed__1; -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_6__toStringAux(lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg(lean_object*, uint32_t); -lean_object* l___private_Init_Lean_Data_Trie_3__findAux(lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(lean_object*, uint32_t, lean_object*); -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_6__toStringAux___main___rarg(lean_object*); +lean_object* l___private_Lean_Data_Trie_4__updtAcc___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_2__insertAux___main(lean_object*); +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_UInt32_decLt(uint32_t, uint32_t); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(lean_object*, uint32_t, lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main(lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3(lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3(lean_object*); extern lean_object* l_Char_HasRepr___closed__1; -lean_object* l___private_Init_Lean_Data_Trie_4__updtAcc(lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_3__findAux___main___spec__1___rarg(lean_object*, uint32_t); -lean_object* l___private_Init_Lean_Data_Trie_6__toStringAux___main(lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_3__findAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Trie_insert___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_6__toStringAux___rarg(lean_object*); +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___main(lean_object*); lean_object* l_Lean_Parser_Trie_matchPrefix(lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); extern lean_object* l_Lean_Options_empty; -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5(lean_object*); lean_object* l_Lean_Parser_Trie_find___rarg___boxed(lean_object*, lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6(lean_object*); lean_object* l_Lean_Parser_Trie_find(lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux(lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___main___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_2__insertAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(lean_object*, uint32_t, lean_object*); lean_object* l_Lean_Parser_Trie_HasToString(lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1(lean_object*); -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(lean_object*, uint32_t, lean_object*); lean_object* l_Lean_Parser_Trie_Inhabited(lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_4__updtAcc___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_3__findAux___main___spec__1___rarg___boxed(lean_object*, lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(lean_object*, uint32_t, lean_object*); -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__2(lean_object*); +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2(lean_object*); +lean_object* l_RBNode_fold___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__2(lean_object*); +lean_object* l___private_Lean_Data_Trie_2__insertAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_3__findAux___main___spec__1(lean_object*); +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Trie_insert___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main(lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_4__updtAcc___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux(lean_object*); -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(lean_object*, uint32_t, lean_object*); -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6(lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(lean_object*, uint32_t, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1___rarg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_2__insertAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_4__updtAcc___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_3__findAux(lean_object*); +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_format_group(lean_object*); -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2(lean_object*); lean_object* l_RBNode_setBlack___rarg(lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(lean_object*, uint32_t); lean_object* l_Lean_Parser_Trie_empty___closed__1; -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___main(lean_object*); +lean_object* l___private_Lean_Data_Trie_2__insertAux(lean_object*); +lean_object* l___private_Lean_Data_Trie_2__insertAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux(lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1(lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_3__findAux___main___spec__1___rarg(lean_object*, uint32_t); +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_6__toStringAux(lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Char_quoteCore(uint32_t); -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_3__findAux___main___spec__1(lean_object*); -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(lean_object*, uint32_t); +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux(lean_object*); +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_6__toStringAux___main(lean_object*); lean_object* l_Lean_Parser_Trie_insert(lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux(lean_object*); +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(lean_object*, uint32_t, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_3__findAux___main___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_RBNode_singleton___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_5__matchPrefixAux___main___spec__1(lean_object*); lean_object* _init_l_Lean_Parser_Trie_empty___closed__1() { _start: { @@ -148,7 +148,7 @@ x_2 = l_Lean_Parser_Trie_empty___closed__1; return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -158,7 +158,7 @@ if (x_4 == 0) uint32_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; x_5 = lean_string_utf8_get(x_1, x_3); x_6 = lean_string_utf8_next(x_1, x_3); -x_7 = l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_6); +x_7 = l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_6); lean_dec(x_6); x_8 = lean_box(0); x_9 = lean_box_uint32(x_5); @@ -181,51 +181,51 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg___boxed), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_1__insertEmptyAux___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_1__insertEmptyAux___rarg___boxed), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_1__insertEmptyAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_1__insertEmptyAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Data_Trie_1__insertEmptyAux___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Data_Trie_1__insertEmptyAux___rarg(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_1); return x_4; } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(lean_object* x_1, uint32_t x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(lean_object* x_1, uint32_t x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -281,15 +281,15 @@ goto _start; } } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1(lean_object* x_1) { +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1___rarg___boxed), 2, 0); return x_2; } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -340,7 +340,7 @@ return x_1; else { lean_object* x_18; -x_18 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_12, x_2, x_3); +x_18 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_12, x_2, x_3); lean_ctor_set(x_1, 3, x_18); return x_1; } @@ -348,7 +348,7 @@ return x_1; else { lean_object* x_19; -x_19 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_9, x_2, x_3); +x_19 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_9, x_2, x_3); lean_ctor_set(x_1, 0, x_19); return x_1; } @@ -389,7 +389,7 @@ return x_29; else { lean_object* x_30; lean_object* x_31; -x_30 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_23, x_2, x_3); +x_30 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_23, x_2, x_3); x_31 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_31, 0, x_20); lean_ctor_set(x_31, 1, x_21); @@ -402,7 +402,7 @@ return x_31; else { lean_object* x_32; lean_object* x_33; -x_32 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_20, x_2, x_3); +x_32 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_20, x_2, x_3); x_33 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_21); @@ -448,14 +448,14 @@ x_44 = l_RBNode_isRed___rarg(x_38); if (x_44 == 0) { lean_object* x_45; -x_45 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_38, x_2, x_3); +x_45 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_38, x_2, x_3); lean_ctor_set(x_1, 3, x_45); return x_1; } else { lean_object* x_46; lean_object* x_47; -x_46 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_38, x_2, x_3); +x_46 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_38, x_2, x_3); x_47 = lean_ctor_get(x_46, 0); lean_inc(x_47); if (lean_obj_tag(x_47) == 0) @@ -1116,14 +1116,14 @@ x_184 = l_RBNode_isRed___rarg(x_35); if (x_184 == 0) { lean_object* x_185; -x_185 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_35, x_2, x_3); +x_185 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_35, x_2, x_3); lean_ctor_set(x_1, 0, x_185); return x_1; } else { lean_object* x_186; lean_object* x_187; -x_186 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_35, x_2, x_3); +x_186 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_35, x_2, x_3); x_187 = lean_ctor_get(x_186, 0); lean_inc(x_187); if (lean_obj_tag(x_187) == 0) @@ -1826,7 +1826,7 @@ x_335 = l_RBNode_isRed___rarg(x_328); if (x_335 == 0) { lean_object* x_336; lean_object* x_337; -x_336 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_328, x_2, x_3); +x_336 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_328, x_2, x_3); x_337 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_337, 0, x_325); lean_ctor_set(x_337, 1, x_326); @@ -1838,7 +1838,7 @@ return x_337; else { lean_object* x_338; lean_object* x_339; -x_338 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_328, x_2, x_3); +x_338 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_328, x_2, x_3); x_339 = lean_ctor_get(x_338, 0); lean_inc(x_339); if (lean_obj_tag(x_339) == 0) @@ -2259,7 +2259,7 @@ x_413 = l_RBNode_isRed___rarg(x_325); if (x_413 == 0) { lean_object* x_414; lean_object* x_415; -x_414 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_325, x_2, x_3); +x_414 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_325, x_2, x_3); x_415 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_415, 0, x_414); lean_ctor_set(x_415, 1, x_326); @@ -2271,7 +2271,7 @@ return x_415; else { lean_object* x_416; lean_object* x_417; -x_416 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_325, x_2, x_3); +x_416 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_325, x_2, x_3); x_417 = lean_ctor_get(x_416, 0); lean_inc(x_417); if (lean_obj_tag(x_417) == 0) @@ -2689,15 +2689,15 @@ return x_490; } } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3(lean_object* x_1) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg___boxed), 3, 0); return x_2; } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2748,7 +2748,7 @@ return x_1; else { lean_object* x_18; -x_18 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_12, x_2, x_3); +x_18 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_12, x_2, x_3); lean_ctor_set(x_1, 3, x_18); return x_1; } @@ -2756,7 +2756,7 @@ return x_1; else { lean_object* x_19; -x_19 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_9, x_2, x_3); +x_19 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_9, x_2, x_3); lean_ctor_set(x_1, 0, x_19); return x_1; } @@ -2797,7 +2797,7 @@ return x_29; else { lean_object* x_30; lean_object* x_31; -x_30 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_23, x_2, x_3); +x_30 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_23, x_2, x_3); x_31 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_31, 0, x_20); lean_ctor_set(x_31, 1, x_21); @@ -2810,7 +2810,7 @@ return x_31; else { lean_object* x_32; lean_object* x_33; -x_32 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_20, x_2, x_3); +x_32 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_20, x_2, x_3); x_33 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_21); @@ -2856,14 +2856,14 @@ x_44 = l_RBNode_isRed___rarg(x_38); if (x_44 == 0) { lean_object* x_45; -x_45 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_38, x_2, x_3); +x_45 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_38, x_2, x_3); lean_ctor_set(x_1, 3, x_45); return x_1; } else { lean_object* x_46; lean_object* x_47; -x_46 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_38, x_2, x_3); +x_46 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_38, x_2, x_3); x_47 = lean_ctor_get(x_46, 0); lean_inc(x_47); if (lean_obj_tag(x_47) == 0) @@ -3524,14 +3524,14 @@ x_184 = l_RBNode_isRed___rarg(x_35); if (x_184 == 0) { lean_object* x_185; -x_185 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_35, x_2, x_3); +x_185 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_35, x_2, x_3); lean_ctor_set(x_1, 0, x_185); return x_1; } else { lean_object* x_186; lean_object* x_187; -x_186 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_35, x_2, x_3); +x_186 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_35, x_2, x_3); x_187 = lean_ctor_get(x_186, 0); lean_inc(x_187); if (lean_obj_tag(x_187) == 0) @@ -4234,7 +4234,7 @@ x_335 = l_RBNode_isRed___rarg(x_328); if (x_335 == 0) { lean_object* x_336; lean_object* x_337; -x_336 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_328, x_2, x_3); +x_336 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_328, x_2, x_3); x_337 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_337, 0, x_325); lean_ctor_set(x_337, 1, x_326); @@ -4246,7 +4246,7 @@ return x_337; else { lean_object* x_338; lean_object* x_339; -x_338 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_328, x_2, x_3); +x_338 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_328, x_2, x_3); x_339 = lean_ctor_get(x_338, 0); lean_inc(x_339); if (lean_obj_tag(x_339) == 0) @@ -4667,7 +4667,7 @@ x_413 = l_RBNode_isRed___rarg(x_325); if (x_413 == 0) { lean_object* x_414; lean_object* x_415; -x_414 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_325, x_2, x_3); +x_414 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_325, x_2, x_3); x_415 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_415, 0, x_414); lean_ctor_set(x_415, 1, x_326); @@ -4679,7 +4679,7 @@ return x_415; else { lean_object* x_416; lean_object* x_417; -x_416 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_325, x_2, x_3); +x_416 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_325, x_2, x_3); x_417 = lean_ctor_get(x_416, 0); lean_inc(x_417); if (lean_obj_tag(x_417) == 0) @@ -5097,15 +5097,15 @@ return x_490; } } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4(lean_object* x_1) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg___boxed), 3, 0); return x_2; } } -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -5113,27 +5113,27 @@ x_4 = l_RBNode_isRed___rarg(x_1); if (x_4 == 0) { lean_object* x_5; -x_5 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_1, x_2, x_3); +x_5 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_1, x_2, x_3); return x_5; } else { lean_object* x_6; lean_object* x_7; -x_6 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_1, x_2, x_3); +x_6 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_1, x_2, x_3); x_7 = l_RBNode_setBlack___rarg(x_6); return x_7; } } } -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2(lean_object* x_1) { +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2___rarg___boxed), 3, 0); return x_2; } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5184,7 +5184,7 @@ return x_1; else { lean_object* x_18; -x_18 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_12, x_2, x_3); +x_18 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_12, x_2, x_3); lean_ctor_set(x_1, 3, x_18); return x_1; } @@ -5192,7 +5192,7 @@ return x_1; else { lean_object* x_19; -x_19 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_9, x_2, x_3); +x_19 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_9, x_2, x_3); lean_ctor_set(x_1, 0, x_19); return x_1; } @@ -5233,7 +5233,7 @@ return x_29; else { lean_object* x_30; lean_object* x_31; -x_30 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_23, x_2, x_3); +x_30 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_23, x_2, x_3); x_31 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_31, 0, x_20); lean_ctor_set(x_31, 1, x_21); @@ -5246,7 +5246,7 @@ return x_31; else { lean_object* x_32; lean_object* x_33; -x_32 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_20, x_2, x_3); +x_32 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_20, x_2, x_3); x_33 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_21); @@ -5292,14 +5292,14 @@ x_44 = l_RBNode_isRed___rarg(x_38); if (x_44 == 0) { lean_object* x_45; -x_45 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_38, x_2, x_3); +x_45 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_38, x_2, x_3); lean_ctor_set(x_1, 3, x_45); return x_1; } else { lean_object* x_46; lean_object* x_47; -x_46 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_38, x_2, x_3); +x_46 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_38, x_2, x_3); x_47 = lean_ctor_get(x_46, 0); lean_inc(x_47); if (lean_obj_tag(x_47) == 0) @@ -5960,14 +5960,14 @@ x_184 = l_RBNode_isRed___rarg(x_35); if (x_184 == 0) { lean_object* x_185; -x_185 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_35, x_2, x_3); +x_185 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_35, x_2, x_3); lean_ctor_set(x_1, 0, x_185); return x_1; } else { lean_object* x_186; lean_object* x_187; -x_186 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_35, x_2, x_3); +x_186 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_35, x_2, x_3); x_187 = lean_ctor_get(x_186, 0); lean_inc(x_187); if (lean_obj_tag(x_187) == 0) @@ -6670,7 +6670,7 @@ x_335 = l_RBNode_isRed___rarg(x_328); if (x_335 == 0) { lean_object* x_336; lean_object* x_337; -x_336 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_328, x_2, x_3); +x_336 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_328, x_2, x_3); x_337 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_337, 0, x_325); lean_ctor_set(x_337, 1, x_326); @@ -6682,7 +6682,7 @@ return x_337; else { lean_object* x_338; lean_object* x_339; -x_338 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_328, x_2, x_3); +x_338 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_328, x_2, x_3); x_339 = lean_ctor_get(x_338, 0); lean_inc(x_339); if (lean_obj_tag(x_339) == 0) @@ -7103,7 +7103,7 @@ x_413 = l_RBNode_isRed___rarg(x_325); if (x_413 == 0) { lean_object* x_414; lean_object* x_415; -x_414 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_325, x_2, x_3); +x_414 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_325, x_2, x_3); x_415 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_415, 0, x_414); lean_ctor_set(x_415, 1, x_326); @@ -7115,7 +7115,7 @@ return x_415; else { lean_object* x_416; lean_object* x_417; -x_416 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_325, x_2, x_3); +x_416 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_325, x_2, x_3); x_417 = lean_ctor_get(x_416, 0); lean_inc(x_417); if (lean_obj_tag(x_417) == 0) @@ -7533,15 +7533,15 @@ return x_490; } } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6(lean_object* x_1) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg___boxed), 3, 0); return x_2; } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7592,7 +7592,7 @@ return x_1; else { lean_object* x_18; -x_18 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_12, x_2, x_3); +x_18 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_12, x_2, x_3); lean_ctor_set(x_1, 3, x_18); return x_1; } @@ -7600,7 +7600,7 @@ return x_1; else { lean_object* x_19; -x_19 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_9, x_2, x_3); +x_19 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_9, x_2, x_3); lean_ctor_set(x_1, 0, x_19); return x_1; } @@ -7641,7 +7641,7 @@ return x_29; else { lean_object* x_30; lean_object* x_31; -x_30 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_23, x_2, x_3); +x_30 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_23, x_2, x_3); x_31 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_31, 0, x_20); lean_ctor_set(x_31, 1, x_21); @@ -7654,7 +7654,7 @@ return x_31; else { lean_object* x_32; lean_object* x_33; -x_32 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_20, x_2, x_3); +x_32 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_20, x_2, x_3); x_33 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_21); @@ -7700,14 +7700,14 @@ x_44 = l_RBNode_isRed___rarg(x_38); if (x_44 == 0) { lean_object* x_45; -x_45 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_38, x_2, x_3); +x_45 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_38, x_2, x_3); lean_ctor_set(x_1, 3, x_45); return x_1; } else { lean_object* x_46; lean_object* x_47; -x_46 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_38, x_2, x_3); +x_46 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_38, x_2, x_3); x_47 = lean_ctor_get(x_46, 0); lean_inc(x_47); if (lean_obj_tag(x_47) == 0) @@ -8368,14 +8368,14 @@ x_184 = l_RBNode_isRed___rarg(x_35); if (x_184 == 0) { lean_object* x_185; -x_185 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_35, x_2, x_3); +x_185 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_35, x_2, x_3); lean_ctor_set(x_1, 0, x_185); return x_1; } else { lean_object* x_186; lean_object* x_187; -x_186 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_35, x_2, x_3); +x_186 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_35, x_2, x_3); x_187 = lean_ctor_get(x_186, 0); lean_inc(x_187); if (lean_obj_tag(x_187) == 0) @@ -9078,7 +9078,7 @@ x_335 = l_RBNode_isRed___rarg(x_328); if (x_335 == 0) { lean_object* x_336; lean_object* x_337; -x_336 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_328, x_2, x_3); +x_336 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_328, x_2, x_3); x_337 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_337, 0, x_325); lean_ctor_set(x_337, 1, x_326); @@ -9090,7 +9090,7 @@ return x_337; else { lean_object* x_338; lean_object* x_339; -x_338 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_328, x_2, x_3); +x_338 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_328, x_2, x_3); x_339 = lean_ctor_get(x_338, 0); lean_inc(x_339); if (lean_obj_tag(x_339) == 0) @@ -9511,7 +9511,7 @@ x_413 = l_RBNode_isRed___rarg(x_325); if (x_413 == 0) { lean_object* x_414; lean_object* x_415; -x_414 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_325, x_2, x_3); +x_414 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_325, x_2, x_3); x_415 = lean_alloc_ctor(1, 4, 1); lean_ctor_set(x_415, 0, x_414); lean_ctor_set(x_415, 1, x_326); @@ -9523,7 +9523,7 @@ return x_415; else { lean_object* x_416; lean_object* x_417; -x_416 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_325, x_2, x_3); +x_416 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_325, x_2, x_3); x_417 = lean_ctor_get(x_416, 0); lean_inc(x_417); if (lean_obj_tag(x_417) == 0) @@ -9941,15 +9941,15 @@ return x_490; } } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7(lean_object* x_1) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg___boxed), 3, 0); return x_2; } } -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(lean_object* x_1, uint32_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -9957,27 +9957,27 @@ x_4 = l_RBNode_isRed___rarg(x_1); if (x_4 == 0) { lean_object* x_5; -x_5 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_1, x_2, x_3); +x_5 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_1, x_2, x_3); return x_5; } else { lean_object* x_6; lean_object* x_7; -x_6 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_1, x_2, x_3); +x_6 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_1, x_2, x_3); x_7 = l_RBNode_setBlack___rarg(x_6); return x_7; } } } -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5(lean_object* x_1) { +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5___rarg___boxed), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Trie_2__insertAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -9994,13 +9994,13 @@ uint32_t x_9; lean_object* x_10; lean_object* x_11; x_9 = lean_string_utf8_get(x_1, x_4); x_10 = lean_string_utf8_next(x_1, x_4); lean_inc(x_7); -x_11 = l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(x_7, x_9); +x_11 = l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(x_7, x_9); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; lean_object* x_13; -x_12 = l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_10); +x_12 = l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_10); lean_dec(x_10); -x_13 = l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(x_7, x_9, x_12); +x_13 = l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(x_7, x_9, x_12); lean_ctor_set(x_3, 1, x_13); return x_3; } @@ -10010,9 +10010,9 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_ctor_get(x_11, 0); lean_inc(x_14); lean_dec(x_11); -x_15 = l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(x_1, x_2, x_14, x_10); +x_15 = l___private_Lean_Data_Trie_2__insertAux___main___rarg(x_1, x_2, x_14, x_10); lean_dec(x_10); -x_16 = l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(x_7, x_9, x_15); +x_16 = l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(x_7, x_9, x_15); lean_ctor_set(x_3, 1, x_16); return x_3; } @@ -10042,13 +10042,13 @@ uint32_t x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_string_utf8_get(x_1, x_4); x_22 = lean_string_utf8_next(x_1, x_4); lean_inc(x_19); -x_23 = l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(x_19, x_21); +x_23 = l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(x_19, x_21); if (lean_obj_tag(x_23) == 0) { lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = l___private_Init_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_22); +x_24 = l___private_Lean_Data_Trie_1__insertEmptyAux___main___rarg(x_1, x_2, x_22); lean_dec(x_22); -x_25 = l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(x_19, x_21, x_24); +x_25 = l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(x_19, x_21, x_24); x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_18); lean_ctor_set(x_26, 1, x_25); @@ -10060,9 +10060,9 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; x_27 = lean_ctor_get(x_23, 0); lean_inc(x_27); lean_dec(x_23); -x_28 = l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(x_1, x_2, x_27, x_22); +x_28 = l___private_Lean_Data_Trie_2__insertAux___main___rarg(x_1, x_2, x_27, x_22); lean_dec(x_22); -x_29 = l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(x_19, x_21, x_28); +x_29 = l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(x_19, x_21, x_28); x_30 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_30, 0, x_18); lean_ctor_set(x_30, 1, x_29); @@ -10083,115 +10083,115 @@ return x_32; } } } -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_2__insertAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_2__insertAux___main___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint32_t x_3; lean_object* x_4; x_3 = lean_unbox_uint32(x_2); lean_dec(x_2); -x_4 = l_RBNode_find___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(x_1, x_3); +x_4 = l_RBNode_find___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__1___rarg(x_1, x_3); return x_4; } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint32_t x_4; lean_object* x_5; x_4 = lean_unbox_uint32(x_2); lean_dec(x_2); -x_5 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_1, x_4, x_3); +x_5 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__3___rarg(x_1, x_4, x_3); return x_5; } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint32_t x_4; lean_object* x_5; x_4 = lean_unbox_uint32(x_2); lean_dec(x_2); -x_5 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_1, x_4, x_3); +x_5 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__4___rarg(x_1, x_4, x_3); return x_5; } } -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint32_t x_4; lean_object* x_5; x_4 = lean_unbox_uint32(x_2); lean_dec(x_2); -x_5 = l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(x_1, x_4, x_3); +x_5 = l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__2___rarg(x_1, x_4, x_3); return x_5; } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint32_t x_4; lean_object* x_5; x_4 = lean_unbox_uint32(x_2); lean_dec(x_2); -x_5 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_1, x_4, x_3); +x_5 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__6___rarg(x_1, x_4, x_3); return x_5; } } -lean_object* l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint32_t x_4; lean_object* x_5; x_4 = lean_unbox_uint32(x_2); lean_dec(x_2); -x_5 = l_RBNode_ins___main___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_1, x_4, x_3); +x_5 = l_RBNode_ins___main___at___private_Lean_Data_Trie_2__insertAux___main___spec__7___rarg(x_1, x_4, x_3); return x_5; } } -lean_object* l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint32_t x_4; lean_object* x_5; x_4 = lean_unbox_uint32(x_2); lean_dec(x_2); -x_5 = l_RBNode_insert___at___private_Init_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(x_1, x_4, x_3); +x_5 = l_RBNode_insert___at___private_Lean_Data_Trie_2__insertAux___main___spec__5___rarg(x_1, x_4, x_3); return x_5; } } -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Trie_2__insertAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Data_Trie_2__insertAux___main___rarg(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Trie_2__insertAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Data_Trie_2__insertAux___main___rarg(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_2__insertAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_2__insertAux___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_2__insertAux___rarg___boxed), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Trie_2__insertAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Data_Trie_2__insertAux___rarg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Data_Trie_2__insertAux___rarg(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_1); return x_5; @@ -10202,7 +10202,7 @@ _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(x_2, x_3, x_1, x_4); +x_5 = l___private_Lean_Data_Trie_2__insertAux___main___rarg(x_2, x_3, x_1, x_4); return x_5; } } @@ -10223,7 +10223,7 @@ lean_dec(x_2); return x_4; } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_3__findAux___main___spec__1___rarg(lean_object* x_1, uint32_t x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_3__findAux___main___spec__1___rarg(lean_object* x_1, uint32_t x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -10279,15 +10279,15 @@ goto _start; } } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_3__findAux___main___spec__1(lean_object* x_1) { +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_3__findAux___main___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_find___main___at___private_Init_Lean_Data_Trie_3__findAux___main___spec__1___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_find___main___at___private_Lean_Data_Trie_3__findAux___main___spec__1___rarg___boxed), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_3__findAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -10304,7 +10304,7 @@ lean_dec(x_4); x_7 = lean_string_utf8_get(x_1, x_3); x_8 = lean_string_utf8_next(x_1, x_3); lean_dec(x_3); -x_9 = l_RBNode_find___main___at___private_Init_Lean_Data_Trie_3__findAux___main___spec__1___rarg(x_5, x_7); +x_9 = l_RBNode_find___main___at___private_Lean_Data_Trie_3__findAux___main___spec__1___rarg(x_5, x_7); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; @@ -10331,54 +10331,54 @@ return x_4; } } } -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_3__findAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_3__findAux___main___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_3__findAux___main___rarg___boxed), 3, 0); return x_2; } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_3__findAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_3__findAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint32_t x_3; lean_object* x_4; x_3 = lean_unbox_uint32(x_2); lean_dec(x_2); -x_4 = l_RBNode_find___main___at___private_Init_Lean_Data_Trie_3__findAux___main___spec__1___rarg(x_1, x_3); +x_4 = l_RBNode_find___main___at___private_Lean_Data_Trie_3__findAux___main___spec__1___rarg(x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_3__findAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Data_Trie_3__findAux___main___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Data_Trie_3__findAux___main___rarg(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_3__findAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Data_Trie_3__findAux___main___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Data_Trie_3__findAux___main___rarg(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Data_Trie_3__findAux(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_3__findAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_3__findAux___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_3__findAux___rarg___boxed), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_3__findAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Data_Trie_3__findAux___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Data_Trie_3__findAux___rarg(x_1, x_2, x_3); lean_dec(x_1); return x_4; } @@ -10388,7 +10388,7 @@ _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l___private_Init_Lean_Data_Trie_3__findAux___main___rarg(x_2, x_1, x_3); +x_4 = l___private_Lean_Data_Trie_3__findAux___main___rarg(x_2, x_1, x_3); return x_4; } } @@ -10409,7 +10409,7 @@ lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Data_Trie_4__updtAcc___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_4__updtAcc___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -10428,24 +10428,24 @@ return x_4; } } } -lean_object* l___private_Init_Lean_Data_Trie_4__updtAcc(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_4__updtAcc(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_4__updtAcc___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_4__updtAcc___rarg___boxed), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_4__updtAcc___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Data_Trie_4__updtAcc___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Data_Trie_4__updtAcc___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Data_Trie_4__updtAcc___rarg(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg(lean_object* x_1, uint32_t x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg(lean_object* x_1, uint32_t x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -10501,15 +10501,15 @@ goto _start; } } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___spec__1(lean_object* x_1) { +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_5__matchPrefixAux___main___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_find___main___at___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_find___main___at___private_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg___boxed), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -10523,12 +10523,12 @@ if (x_7 == 0) { lean_object* x_8; uint32_t x_9; lean_object* x_10; lean_object* x_11; lean_inc(x_3); -x_8 = l___private_Init_Lean_Data_Trie_4__updtAcc___rarg(x_5, x_3, x_4); +x_8 = l___private_Lean_Data_Trie_4__updtAcc___rarg(x_5, x_3, x_4); lean_dec(x_4); x_9 = lean_string_utf8_get(x_1, x_3); x_10 = lean_string_utf8_next(x_1, x_3); lean_dec(x_3); -x_11 = l_RBNode_find___main___at___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg(x_6, x_9); +x_11 = l_RBNode_find___main___at___private_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg(x_6, x_9); if (lean_obj_tag(x_11) == 0) { lean_dec(x_10); @@ -10550,60 +10550,60 @@ else { lean_object* x_14; lean_dec(x_6); -x_14 = l___private_Init_Lean_Data_Trie_4__updtAcc___rarg(x_5, x_3, x_4); +x_14 = l___private_Lean_Data_Trie_4__updtAcc___rarg(x_5, x_3, x_4); lean_dec(x_4); return x_14; } } } -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_5__matchPrefixAux___main___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_RBNode_find___main___at___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_find___main___at___private_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint32_t x_3; lean_object* x_4; x_3 = lean_unbox_uint32(x_2); lean_dec(x_2); -x_4 = l_RBNode_find___main___at___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg(x_1, x_3); +x_4 = l_RBNode_find___main___at___private_Lean_Data_Trie_5__matchPrefixAux___main___spec__1___rarg(x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___rarg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Data_Trie_5__matchPrefixAux___main___rarg(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___rarg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Data_Trie_5__matchPrefixAux___main___rarg(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_5__matchPrefixAux___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_5__matchPrefixAux___rarg___boxed), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_5__matchPrefixAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Data_Trie_5__matchPrefixAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Data_Trie_5__matchPrefixAux___rarg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Data_Trie_5__matchPrefixAux___rarg(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -10617,7 +10617,7 @@ lean_inc(x_3); x_5 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_5, 0, x_3); lean_ctor_set(x_5, 1, x_4); -x_6 = l___private_Init_Lean_Data_Trie_5__matchPrefixAux___main___rarg(x_1, x_2, x_3, x_5); +x_6 = l___private_Lean_Data_Trie_5__matchPrefixAux___main___rarg(x_1, x_2, x_3, x_5); return x_6; } } @@ -10638,7 +10638,7 @@ lean_dec(x_1); return x_4; } } -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -10671,7 +10671,7 @@ x_8 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_8, 0, x_6); lean_ctor_set(x_8, 1, x_2); lean_ctor_set_uint8(x_8, sizeof(void*)*2, x_7); -x_9 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_4, x_2); +x_9 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_4, x_2); x_10 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_10, 0, x_8); lean_ctor_set(x_10, 1, x_9); @@ -10681,7 +10681,7 @@ return x_10; } } } -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_RBNode_fold___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -10700,7 +10700,7 @@ lean_inc(x_5); x_6 = lean_ctor_get(x_2, 3); lean_inc(x_6); lean_dec(x_2); -x_7 = l_RBNode_fold___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg(x_1, x_3); +x_7 = l_RBNode_fold___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg(x_1, x_3); x_8 = lean_unbox_uint32(x_4); lean_dec(x_4); x_9 = l_Char_quoteCore(x_8); @@ -10710,9 +10710,9 @@ lean_dec(x_9); x_12 = lean_string_append(x_11, x_10); x_13 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_13, 0, x_12); -x_14 = l___private_Init_Lean_Data_Trie_6__toStringAux___main___rarg(x_5); +x_14 = l___private_Lean_Data_Trie_6__toStringAux___main___rarg(x_5); x_15 = lean_box(1); -x_16 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_14, x_15); +x_16 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_14, x_15); lean_dec(x_14); x_17 = lean_unsigned_to_nat(2u); x_18 = lean_alloc_ctor(3, 2, 0); @@ -10731,15 +10731,15 @@ goto _start; } } } -lean_object* l_RBNode_fold___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__2(lean_object* x_1) { +lean_object* l_RBNode_fold___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_RBNode_fold___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l_RBNode_fold___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_6__toStringAux___main___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_6__toStringAux___main___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -10747,40 +10747,40 @@ x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); lean_dec(x_1); x_3 = lean_box(0); -x_4 = l_RBNode_fold___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg(x_3, x_2); +x_4 = l_RBNode_fold___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__2___rarg(x_3, x_2); return x_4; } } -lean_object* l___private_Init_Lean_Data_Trie_6__toStringAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_6__toStringAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_6__toStringAux___main___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_6__toStringAux___main___rarg), 1, 0); return x_2; } } -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_1, x_2); +x_3 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Data_Trie_6__toStringAux___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_6__toStringAux___rarg(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Data_Trie_6__toStringAux___main___rarg(x_1); +x_2 = l___private_Lean_Data_Trie_6__toStringAux___main___rarg(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Data_Trie_6__toStringAux(lean_object* x_1) { +lean_object* l___private_Lean_Data_Trie_6__toStringAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Data_Trie_6__toStringAux___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Trie_6__toStringAux___rarg), 1, 0); return x_2; } } @@ -10788,9 +10788,9 @@ lean_object* l_Lean_Parser_Trie_HasToString___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___private_Init_Lean_Data_Trie_6__toStringAux___main___rarg(x_1); +x_2 = l___private_Lean_Data_Trie_6__toStringAux___main___rarg(x_1); x_3 = lean_box(1); -x_4 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_2, x_3); +x_4 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_2, x_3); lean_dec(x_2); x_5 = l_Lean_Options_empty; x_6 = l_Lean_Format_pretty(x_4, x_5); @@ -10806,16 +10806,16 @@ return x_2; } } lean_object* initialize_Init_Data_RBMap(lean_object*); -lean_object* initialize_Init_Lean_Data_Format(lean_object*); +lean_object* initialize_Lean_Data_Format(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Data_Trie(lean_object* w) { +lean_object* initialize_Lean_Data_Trie(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Data_RBMap(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Format(lean_io_mk_world()); +res = initialize_Lean_Data_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_Trie_empty___closed__1 = _init_l_Lean_Parser_Trie_empty___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Declaration.c b/stage0/stdlib/Lean/Declaration.c similarity index 99% rename from stage0/stdlib/Init/Lean/Declaration.c rename to stage0/stdlib/Lean/Declaration.c index d8e858c796..1e5ad48f29 100644 --- a/stage0/stdlib/Init/Lean/Declaration.c +++ b/stage0/stdlib/Lean/Declaration.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Declaration -// Imports: Init.Lean.Expr +// Module: Lean.Declaration +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -999,7 +999,7 @@ lean_object* _init_l_Lean_ConstantInfo_value_x21___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Declaration"); +x_1 = lean_mk_string("Lean.Declaration"); return x_1; } } @@ -1155,13 +1155,13 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Declaration(lean_object* w) { +lean_object* initialize_Lean_Declaration(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_ReducibilityHints_Inhabited = _init_l_Lean_ReducibilityHints_Inhabited(); diff --git a/stage0/stdlib/Init/Lean/Delaborator.c b/stage0/stdlib/Lean/Delaborator.c similarity index 98% rename from stage0/stdlib/Init/Lean/Delaborator.c rename to stage0/stdlib/Lean/Delaborator.c index 551910a7d1..2893f58181 100644 --- a/stage0/stdlib/Init/Lean/Delaborator.c +++ b/stage0/stdlib/Lean/Delaborator.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Delaborator -// Imports: Init.Lean.KeyedDeclsAttribute Init.Lean.ProjFns Init.Lean.Syntax Init.Lean.Elab.Term +// Module: Lean.Delaborator +// Imports: Lean.KeyedDeclsAttribute Lean.ProjFns Lean.Syntax Lean.Elab.Term #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -49,7 +49,6 @@ lean_object* l_Lean_Delaborator_getExpr(lean_object*, lean_object*, lean_object* lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); lean_object* l_Lean_Level_quote___main___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); -lean_object* l___private_Init_Lean_Delaborator_2__delabBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Delaborator_delabFVar(lean_object*); lean_object* l_Lean_Delaborator_delabLam___lambda__1___closed__5; lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); @@ -122,7 +121,6 @@ lean_object* l_Lean_Expr_getAppFn___main(lean_object*); extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__5; lean_object* l_Array_back___at_Lean_Parser_checkStackTopFn___spec__1(lean_object*); uint8_t l_Lean_getPPStructureProjections(lean_object*); -lean_object* l___private_Init_Lean_Delaborator_2__delabBinders___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_DelabM_monadQuotation___closed__1; extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; lean_object* l_Lean_Delaborator_getExprKind___closed__4; @@ -211,6 +209,7 @@ lean_object* l___regBuiltin_Lean_Delaborator_delabAppExplicit(lean_object*); lean_object* l_Lean_Delaborator_delabLam___closed__1; lean_object* l_Lean_Delaborator_delabProj___closed__1; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Delaborator_2__delabBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* l_Lean_Delaborator_delabAppImplicit___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -246,12 +245,14 @@ uint8_t l_Array_anyRangeMAux___main___at_Lean_Delaborator_delabForall___spec__1( lean_object* l_Lean_Delaborator_withAppFnArgs(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Delaborator_delabForall___spec__2___closed__1; +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_Level_quote___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_pure___at_Lean_Delaborator_DelabM_monadQuotation___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; lean_object* l_Lean_Delaborator_delabLam___lambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; lean_object* l_Lean_Delaborator_getPPOption(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Delaborator_2__delabBinders___main___closed__1; lean_object* l_RBNode_find___main___at_Lean_Delaborator_getPPOption___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Level_quote___main___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabForall___closed__1; @@ -282,11 +283,11 @@ lean_object* l_mkHashMapImp___rarg(lean_object*); lean_object* l_Lean_Delaborator_delabSort___closed__6; lean_object* l_Lean_Delaborator_delabAttribute___closed__4; lean_object* l_Lean_Delaborator_getExprKind___closed__7; +lean_object* l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_object* l___regBuiltin_Lean_Delaborator_delabCoeFun___closed__3; lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Delaborator_delabFor___main___spec__5(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_hasIdent___main___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; extern lean_object* l_Lean_Parser_FirstTokens_toStr___closed__3; lean_object* l_Lean_Delaborator_delabAppExplicit___closed__4; lean_object* l_Lean_Delaborator_getExprKind___closed__19; @@ -311,7 +312,6 @@ lean_object* l_Lean_Delaborator_delabProjectionApp___closed__2; lean_object* l_Lean_Delaborator_getExprKind___closed__5; extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__10; lean_object* l_Lean_Delaborator_getExprKind___closed__22; -lean_object* l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1; extern lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__1; extern lean_object* l_Lean_mkAppStx___closed__3; lean_object* l_ReaderT_bind___at_Lean_Level_quote___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -382,7 +382,6 @@ lean_object* l_Lean_getPPUniverses___boxed(lean_object*); extern lean_object* l_Lean_Meta_evalNat___main___closed__8; lean_object* l_AssocList_find_x3f___main___at_Lean_Delaborator_delabFor___main___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabOfNat___closed__3; -lean_object* l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__1; lean_object* l_Lean_mkStxStrLit(lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_getExprKind___closed__2; @@ -424,6 +423,7 @@ lean_object* l___regBuiltin_Lean_Delaborator_delabLam(lean_object*); lean_object* l_Lean_Level_quote___main___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabSort___closed__8; lean_object* l_Array_anyRangeMAux___main___at_Lean_Delaborator_delabLam___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Delaborator_1__shouldGroupWithNext(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabSort___closed__4; lean_object* l_Lean_SMap_empty___at_Lean_Delaborator_delabAttribute___spec__1___closed__2; lean_object* l_Lean_Level_quote___main___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -438,12 +438,12 @@ lean_object* l_Lean_Delaborator_getImplicitParams___lambda__1(lean_object*, lean lean_object* l_Lean_Delaborator_withBindingBody(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; +lean_object* l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__2; lean_object* l_Lean_Delaborator_delabLam___lambda__1___closed__7; extern lean_object* l_Lean_Meta_isClassQuick___main___closed__1; lean_object* l_Lean_Delaborator_descend___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Delaborator_delabFor___main___spec__6(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_mkDelabAttribute___closed__11; -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_Delaborator_delabProj(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_withAppFnArgs___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_withAppArg___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -459,6 +459,7 @@ lean_object* l_Lean_KeyedDeclsAttribute_init___rarg(lean_object*, lean_object*, lean_object* l_Lean_Delaborator_delabAttribute___closed__5; lean_object* l_Lean_Delaborator_delabCoe(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_pure___at_Lean_Delaborator_DelabM_monadQuotation___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__1; lean_object* l_Lean_Delaborator_getImplicitParams___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l_Lean_Delaborator_withAppFnArgs___main(lean_object*); @@ -472,12 +473,12 @@ lean_object* l_Lean_Delaborator_getExprKind___closed__28; lean_object* l_Lean_Delaborator_getExprKind___closed__14; extern lean_object* l_Lean_mkAppStx___closed__2; lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); -lean_object* l___private_Init_Lean_Delaborator_1__shouldGroupWithNext(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabSort___closed__11; lean_object* l_Lean_Delaborator_delabSort(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getPPStructureProjections___closed__2; lean_object* l_Lean_Level_quote(lean_object*); lean_object* l_Array_findIdxAux___main___at_Lean_Delaborator_annotatePos___main___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Delaborator_2__delabBinders___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabConst___closed__3; lean_object* l___regBuiltin_Lean_Delaborator_delabForall(lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Delaborator_hasIdent___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -499,7 +500,6 @@ lean_object* l_Lean_Delaborator_mkDelabAttribute___closed__9; extern lean_object* l_Lean_Parser_Tactic_underscoreFn___closed__4; lean_object* l_Lean_getPPBinderTypes___closed__1; lean_object* l___regBuiltin_Lean_Delaborator_delabProj___closed__1; -lean_object* l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__2; lean_object* l_Lean_Delaborator_delabForall(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Delaborator_delabFor___main___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabAppImplicit___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); @@ -8783,7 +8783,7 @@ lean_dec(x_20); x_21 = lean_mk_syntax_ident(x_11); x_22 = l_Array_empty___closed__1; x_23 = lean_array_push(x_22, x_21); -x_24 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_24 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_25 = lean_array_push(x_23, x_24); x_26 = l_Lean_mkTermIdFromIdent___closed__2; x_27 = lean_alloc_ctor(1, 2, 0); @@ -8918,7 +8918,7 @@ lean_dec(x_69); x_70 = lean_mk_syntax_ident(x_60); x_71 = l_Array_empty___closed__1; x_72 = lean_array_push(x_71, x_70); -x_73 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_73 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_74 = lean_array_push(x_72, x_73); x_75 = l_Lean_mkTermIdFromIdent___closed__2; x_76 = lean_alloc_ctor(1, 2, 0); @@ -9086,7 +9086,7 @@ lean_dec(x_125); x_126 = lean_mk_syntax_ident(x_116); x_127 = l_Array_empty___closed__1; x_128 = lean_array_push(x_127, x_126); -x_129 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_129 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_130 = lean_array_push(x_128, x_129); x_131 = l_Lean_mkTermIdFromIdent___closed__2; x_132 = lean_alloc_ctor(1, 2, 0); @@ -11915,7 +11915,7 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__1() { +lean_object* _init_l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__1() { _start: { lean_object* x_1; @@ -11923,17 +11923,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_getPPBinderTypes___boxed), 1, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__2() { +lean_object* _init_l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__1; +x_1 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_Delaborator_getPPOption___boxed), 4, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3() { +lean_object* _init_l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; @@ -11944,7 +11944,7 @@ lean_ctor_set(x_3, 0, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Delaborator_1__shouldGroupWithNext(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Delaborator_1__shouldGroupWithNext(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -11957,7 +11957,7 @@ lean_dec(x_4); x_7 = lean_ctor_get(x_5, 0); lean_inc(x_7); lean_dec(x_5); -x_8 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__1; +x_8 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__1; lean_inc(x_1); x_9 = l_Lean_Delaborator_getPPOption(x_8, x_1, x_2, x_6); x_10 = lean_ctor_get(x_9, 0); @@ -11982,7 +11982,7 @@ x_15 = lean_ctor_get(x_10, 0); lean_inc(x_15); lean_dec(x_10); x_16 = l_Lean_Parser_Tactic_underscoreFn___closed__4; -x_17 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__2; +x_17 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__2; x_18 = l_Lean_Delaborator_withBindingBody___rarg(x_16, x_17, x_1, x_2, x_13); if (lean_obj_tag(x_18) == 0) { @@ -12053,7 +12053,7 @@ lean_dec(x_27); lean_dec(x_15); lean_dec(x_11); lean_dec(x_7); -x_44 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_44 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_ctor_set(x_9, 1, x_26); lean_ctor_set(x_9, 0, x_44); return x_9; @@ -12075,7 +12075,7 @@ lean_dec(x_29); lean_dec(x_28); lean_dec(x_27); lean_dec(x_15); -x_48 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_48 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_ctor_set(x_9, 1, x_26); lean_ctor_set(x_9, 0, x_48); return x_9; @@ -12137,7 +12137,7 @@ lean_dec(x_29); lean_dec(x_28); lean_dec(x_27); lean_dec(x_15); -x_58 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_58 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_ctor_set(x_9, 1, x_26); lean_ctor_set(x_9, 0, x_58); return x_9; @@ -12151,7 +12151,7 @@ if (x_32 == 0) lean_object* x_33; lean_object* x_34; lean_dec(x_29); lean_dec(x_28); -x_33 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_33 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; if (lean_is_scalar(x_27)) { x_34 = lean_alloc_ctor(0, 2, 0); } else { @@ -12245,7 +12245,7 @@ x_64 = lean_ctor_get(x_10, 0); lean_inc(x_64); lean_dec(x_10); x_65 = l_Lean_Parser_Tactic_underscoreFn___closed__4; -x_66 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__2; +x_66 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__2; x_67 = l_Lean_Delaborator_withBindingBody___rarg(x_65, x_66, x_1, x_2, x_63); if (lean_obj_tag(x_67) == 0) { @@ -12312,7 +12312,7 @@ lean_dec(x_74); lean_dec(x_64); lean_dec(x_11); lean_dec(x_7); -x_91 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_91 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; x_92 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_73); @@ -12335,7 +12335,7 @@ lean_dec(x_76); lean_dec(x_75); lean_dec(x_74); lean_dec(x_64); -x_96 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_96 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; x_97 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_97, 0, x_96); lean_ctor_set(x_97, 1, x_73); @@ -12397,7 +12397,7 @@ lean_dec(x_76); lean_dec(x_75); lean_dec(x_74); lean_dec(x_64); -x_107 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_107 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; x_108 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_73); @@ -12412,7 +12412,7 @@ if (x_79 == 0) lean_object* x_80; lean_object* x_81; lean_dec(x_76); lean_dec(x_75); -x_80 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_80 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; if (lean_is_scalar(x_74)) { x_81 = lean_alloc_ctor(0, 2, 0); } else { @@ -12512,7 +12512,7 @@ if (x_113 == 0) lean_object* x_114; lean_object* x_115; x_114 = lean_ctor_get(x_9, 0); lean_dec(x_114); -x_115 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_115 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_ctor_set(x_9, 0, x_115); return x_9; } @@ -12522,7 +12522,7 @@ lean_object* x_116; lean_object* x_117; lean_object* x_118; x_116 = lean_ctor_get(x_9, 1); lean_inc(x_116); lean_dec(x_9); -x_117 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_117 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; x_118 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_118, 0, x_117); lean_ctor_set(x_118, 1, x_116); @@ -12549,7 +12549,7 @@ x_123 = lean_ctor_get(x_10, 0); lean_inc(x_123); lean_dec(x_10); x_124 = l_Lean_Parser_Tactic_underscoreFn___closed__4; -x_125 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__2; +x_125 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__2; x_126 = l_Lean_Delaborator_withBindingBody___rarg(x_124, x_125, x_1, x_2, x_121); if (lean_obj_tag(x_126) == 0) { @@ -12620,7 +12620,7 @@ lean_dec(x_135); lean_dec(x_123); lean_dec(x_119); lean_dec(x_7); -x_152 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_152 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_ctor_set(x_9, 1, x_134); lean_ctor_set(x_9, 0, x_152); return x_9; @@ -12642,7 +12642,7 @@ lean_dec(x_137); lean_dec(x_136); lean_dec(x_135); lean_dec(x_123); -x_156 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_156 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_ctor_set(x_9, 1, x_134); lean_ctor_set(x_9, 0, x_156); return x_9; @@ -12704,7 +12704,7 @@ lean_dec(x_137); lean_dec(x_136); lean_dec(x_135); lean_dec(x_123); -x_166 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_166 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_ctor_set(x_9, 1, x_134); lean_ctor_set(x_9, 0, x_166); return x_9; @@ -12718,7 +12718,7 @@ if (x_140 == 0) lean_object* x_141; lean_object* x_142; lean_dec(x_137); lean_dec(x_136); -x_141 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_141 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; if (lean_is_scalar(x_135)) { x_142 = lean_alloc_ctor(0, 2, 0); } else { @@ -12812,7 +12812,7 @@ x_172 = lean_ctor_get(x_10, 0); lean_inc(x_172); lean_dec(x_10); x_173 = l_Lean_Parser_Tactic_underscoreFn___closed__4; -x_174 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__2; +x_174 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__2; x_175 = l_Lean_Delaborator_withBindingBody___rarg(x_173, x_174, x_1, x_2, x_171); if (lean_obj_tag(x_175) == 0) { @@ -12879,7 +12879,7 @@ lean_dec(x_182); lean_dec(x_172); lean_dec(x_119); lean_dec(x_7); -x_199 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_199 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; x_200 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_200, 0, x_199); lean_ctor_set(x_200, 1, x_181); @@ -12902,7 +12902,7 @@ lean_dec(x_184); lean_dec(x_183); lean_dec(x_182); lean_dec(x_172); -x_204 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_204 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; x_205 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_205, 0, x_204); lean_ctor_set(x_205, 1, x_181); @@ -12964,7 +12964,7 @@ lean_dec(x_184); lean_dec(x_183); lean_dec(x_182); lean_dec(x_172); -x_215 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_215 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; x_216 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_216, 0, x_215); lean_ctor_set(x_216, 1, x_181); @@ -12979,7 +12979,7 @@ if (x_187 == 0) lean_object* x_188; lean_object* x_189; lean_dec(x_184); lean_dec(x_183); -x_188 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_188 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; if (lean_is_scalar(x_182)) { x_189 = lean_alloc_ctor(0, 2, 0); } else { @@ -13079,7 +13079,7 @@ if (x_221 == 0) lean_object* x_222; lean_object* x_223; x_222 = lean_ctor_get(x_9, 0); lean_dec(x_222); -x_223 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_223 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_ctor_set(x_9, 0, x_223); return x_9; } @@ -13089,7 +13089,7 @@ lean_object* x_224; lean_object* x_225; lean_object* x_226; x_224 = lean_ctor_get(x_9, 1); lean_inc(x_224); lean_dec(x_9); -x_225 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_225 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; x_226 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_226, 0, x_225); lean_ctor_set(x_226, 1, x_224); @@ -13110,7 +13110,7 @@ if (x_227 == 0) lean_object* x_228; lean_object* x_229; x_228 = lean_ctor_get(x_9, 0); lean_dec(x_228); -x_229 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_229 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; lean_ctor_set(x_9, 0, x_229); return x_9; } @@ -13120,7 +13120,7 @@ lean_object* x_230; lean_object* x_231; lean_object* x_232; x_230 = lean_ctor_get(x_9, 1); lean_inc(x_230); lean_dec(x_9); -x_231 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3; +x_231 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3; x_232 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_232, 0, x_231); lean_ctor_set(x_232, 1, x_230); @@ -13130,7 +13130,7 @@ return x_232; } } } -lean_object* _init_l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1() { +lean_object* _init_l___private_Lean_Delaborator_2__delabBinders___main___closed__1() { _start: { lean_object* x_1; @@ -13138,7 +13138,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Delaborator_delab), 3, 0); return x_1; } } -lean_object* l___private_Init_Lean_Delaborator_2__delabBinders___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Delaborator_2__delabBinders___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; @@ -13171,7 +13171,7 @@ lean_dec(x_15); x_18 = lean_array_push(x_2, x_17); lean_inc(x_4); lean_inc(x_3); -x_19 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext(x_3, x_4, x_16); +x_19 = l___private_Lean_Delaborator_1__shouldGroupWithNext(x_3, x_4, x_16); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; @@ -13222,7 +13222,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_19, 1); lean_inc(x_29); lean_dec(x_19); -x_30 = l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1; +x_30 = l___private_Lean_Delaborator_2__delabBinders___main___closed__1; lean_inc(x_4); lean_inc(x_3); x_31 = l_Lean_Delaborator_withBindingBody___rarg(x_12, x_30, x_3, x_4, x_29); @@ -13307,7 +13307,7 @@ lean_object* x_46; lean_object* x_47; lean_object* x_48; x_46 = lean_ctor_get(x_19, 1); lean_inc(x_46); lean_dec(x_19); -x_47 = lean_alloc_closure((void*)(l___private_Init_Lean_Delaborator_2__delabBinders___main), 5, 2); +x_47 = lean_alloc_closure((void*)(l___private_Lean_Delaborator_2__delabBinders___main), 5, 2); lean_closure_set(x_47, 0, x_1); lean_closure_set(x_47, 1, x_18); x_48 = l_Lean_Delaborator_withBindingBody___rarg(x_12, x_47, x_3, x_4, x_46); @@ -13344,11 +13344,11 @@ return x_52; } } } -lean_object* l___private_Init_Lean_Delaborator_2__delabBinders(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Delaborator_2__delabBinders(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Delaborator_2__delabBinders___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Delaborator_2__delabBinders___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } @@ -13513,7 +13513,7 @@ lean_dec(x_6); x_9 = lean_ctor_get(x_7, 0); lean_inc(x_9); lean_dec(x_7); -x_10 = l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1; +x_10 = l___private_Lean_Delaborator_2__delabBinders___main___closed__1; lean_inc(x_4); lean_inc(x_3); x_11 = l_Lean_Delaborator_withBindingDomain___rarg(x_10, x_3, x_4, x_8); @@ -13562,7 +13562,7 @@ lean_dec(x_11); x_20 = lean_ctor_get(x_12, 0); lean_inc(x_20); lean_dec(x_12); -x_21 = l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__1; +x_21 = l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__1; lean_inc(x_3); x_22 = l_Lean_Delaborator_getPPOption(x_21, x_3, x_4, x_19); x_23 = !lean_is_exclusive(x_22); @@ -14176,7 +14176,7 @@ lean_ctor_set(x_209, 0, x_208); lean_ctor_set(x_209, 1, x_207); x_210 = l_Lean_Delaborator_delabLam___lambda__1___closed__7; x_211 = lean_array_push(x_210, x_209); -x_212 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_212 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_213 = lean_array_push(x_211, x_212); x_214 = l_Lean_Delaborator_delabConst___closed__4; x_215 = lean_array_push(x_213, x_214); @@ -15454,7 +15454,7 @@ lean_ctor_set(x_693, 0, x_692); lean_ctor_set(x_693, 1, x_691); x_694 = l_Lean_Delaborator_delabLam___lambda__1___closed__7; x_695 = lean_array_push(x_694, x_693); -x_696 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_696 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_697 = lean_array_push(x_695, x_696); x_698 = l_Lean_Delaborator_delabConst___closed__4; x_699 = lean_array_push(x_697, x_698); @@ -16235,7 +16235,7 @@ _start: lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = l_Lean_Delaborator_delabLam___closed__1; x_5 = l_Array_empty___closed__1; -x_6 = l___private_Init_Lean_Delaborator_2__delabBinders___main(x_4, x_5, x_1, x_2, x_3); +x_6 = l___private_Lean_Delaborator_2__delabBinders___main(x_4, x_5, x_1, x_2, x_3); return x_6; } } @@ -16374,7 +16374,7 @@ lean_dec(x_6); x_9 = lean_ctor_get(x_7, 0); lean_inc(x_9); lean_dec(x_7); -x_10 = l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1; +x_10 = l___private_Lean_Delaborator_2__delabBinders___main___closed__1; lean_inc(x_4); lean_inc(x_3); x_11 = l_Lean_Delaborator_withBindingDomain___rarg(x_10, x_3, x_4, x_8); @@ -16468,7 +16468,7 @@ x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_32); lean_ctor_set(x_38, 1, x_37); x_39 = lean_array_push(x_35, x_38); -x_40 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_40 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_41 = lean_array_push(x_39, x_40); x_42 = l_Lean_Delaborator_delabLam___lambda__1___closed__5; x_43 = lean_array_push(x_41, x_42); @@ -16619,7 +16619,7 @@ x_111 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_111, 0, x_105); lean_ctor_set(x_111, 1, x_110); x_112 = lean_array_push(x_108, x_111); -x_113 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_113 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_114 = lean_array_push(x_112, x_113); x_115 = l_Lean_Delaborator_delabLam___lambda__1___closed__5; x_116 = lean_array_push(x_114, x_115); @@ -16785,7 +16785,7 @@ x_189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_189, 0, x_183); lean_ctor_set(x_189, 1, x_188); x_190 = lean_array_push(x_186, x_189); -x_191 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_191 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_192 = lean_array_push(x_190, x_191); x_193 = l_Lean_Delaborator_delabLam___lambda__1___closed__5; x_194 = lean_array_push(x_192, x_193); @@ -16958,7 +16958,7 @@ _start: lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = l_Lean_Delaborator_delabForall___closed__1; x_5 = l_Array_empty___closed__1; -x_6 = l___private_Init_Lean_Delaborator_2__delabBinders___main(x_4, x_5, x_1, x_2, x_3); +x_6 = l___private_Lean_Delaborator_2__delabBinders___main(x_4, x_5, x_1, x_2, x_3); return x_6; } } @@ -17459,7 +17459,7 @@ lean_dec(x_4); x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1; +x_9 = l___private_Lean_Delaborator_2__delabBinders___main___closed__1; x_10 = l_Lean_Delaborator_withProj___rarg(x_9, x_1, x_2, x_7); if (lean_obj_tag(x_10) == 0) { @@ -17894,7 +17894,7 @@ else lean_object* x_42; lean_object* x_43; lean_dec(x_38); lean_dec(x_34); -x_42 = l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1; +x_42 = l___private_Lean_Delaborator_2__delabBinders___main___closed__1; x_43 = l_Lean_Delaborator_withAppArg___rarg(x_42, x_2, x_3, x_39); if (lean_obj_tag(x_43) == 0) { @@ -18590,25 +18590,25 @@ return x_23; } } } -lean_object* initialize_Init_Lean_KeyedDeclsAttribute(lean_object*); -lean_object* initialize_Init_Lean_ProjFns(lean_object*); -lean_object* initialize_Init_Lean_Syntax(lean_object*); -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_KeyedDeclsAttribute(lean_object*); +lean_object* initialize_Lean_ProjFns(lean_object*); +lean_object* initialize_Lean_Syntax(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Delaborator(lean_object* w) { +lean_object* initialize_Lean_Delaborator(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_KeyedDeclsAttribute(lean_io_mk_world()); +res = initialize_Lean_KeyedDeclsAttribute(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_ProjFns(lean_io_mk_world()); +res = initialize_Lean_ProjFns(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Syntax(lean_io_mk_world()); +res = initialize_Lean_Syntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Level_quote___main___lambda__1___closed__1 = _init_l_Lean_Level_quote___main___lambda__1___closed__1(); @@ -18916,14 +18916,14 @@ lean_mark_persistent(l___regBuiltin_Lean_Delaborator_delabAppImplicit___closed__ res = l___regBuiltin_Lean_Delaborator_delabAppImplicit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__1 = _init_l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__1); -l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__2 = _init_l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__2); -l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3 = _init_l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Delaborator_1__shouldGroupWithNext___closed__3); -l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1 = _init_l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Delaborator_2__delabBinders___main___closed__1); +l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__1 = _init_l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__1(); +lean_mark_persistent(l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__1); +l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__2 = _init_l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__2(); +lean_mark_persistent(l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__2); +l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3 = _init_l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3(); +lean_mark_persistent(l___private_Lean_Delaborator_1__shouldGroupWithNext___closed__3); +l___private_Lean_Delaborator_2__delabBinders___main___closed__1 = _init_l___private_Lean_Delaborator_2__delabBinders___main___closed__1(); +lean_mark_persistent(l___private_Lean_Delaborator_2__delabBinders___main___closed__1); l_Lean_Delaborator_delabLam___lambda__1___closed__1 = _init_l_Lean_Delaborator_delabLam___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Delaborator_delabLam___lambda__1___closed__1); l_Lean_Delaborator_delabLam___lambda__1___closed__2 = _init_l_Lean_Delaborator_delabLam___lambda__1___closed__2(); diff --git a/stage0/stdlib/Lean/Elab.c b/stage0/stdlib/Lean/Elab.c new file mode 100644 index 0000000000..c98c501d19 --- /dev/null +++ b/stage0/stdlib/Lean/Elab.c @@ -0,0 +1,89 @@ +// Lean compiler output +// Module: Lean.Elab +// Imports: Lean.Elab.Import Lean.Elab.Exception Lean.Elab.StrategyAttrs Lean.Elab.Command Lean.Elab.Term Lean.Elab.App Lean.Elab.Binders Lean.Elab.Quotation Lean.Elab.Frontend Lean.Elab.BuiltinNotation Lean.Elab.Declaration Lean.Elab.Tactic Lean.Elab.Syntax Lean.Elab.Match Lean.Elab.DoNotation Lean.Elab.StructInst +#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* initialize_Lean_Elab_Import(lean_object*); +lean_object* initialize_Lean_Elab_Exception(lean_object*); +lean_object* initialize_Lean_Elab_StrategyAttrs(lean_object*); +lean_object* initialize_Lean_Elab_Command(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Elab_App(lean_object*); +lean_object* initialize_Lean_Elab_Binders(lean_object*); +lean_object* initialize_Lean_Elab_Quotation(lean_object*); +lean_object* initialize_Lean_Elab_Frontend(lean_object*); +lean_object* initialize_Lean_Elab_BuiltinNotation(lean_object*); +lean_object* initialize_Lean_Elab_Declaration(lean_object*); +lean_object* initialize_Lean_Elab_Tactic(lean_object*); +lean_object* initialize_Lean_Elab_Syntax(lean_object*); +lean_object* initialize_Lean_Elab_Match(lean_object*); +lean_object* initialize_Lean_Elab_DoNotation(lean_object*); +lean_object* initialize_Lean_Elab_StructInst(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Lean_Elab(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_mk_io_result(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Elab_Import(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Exception(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_StrategyAttrs(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Command(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_App(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Binders(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Frontend(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_BuiltinNotation(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Declaration(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Syntax(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Match(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_DoNotation(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_StructInst(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_mk_io_result(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Lean/Elab/Alias.c b/stage0/stdlib/Lean/Elab/Alias.c similarity index 99% rename from stage0/stdlib/Init/Lean/Elab/Alias.c rename to stage0/stdlib/Lean/Elab/Alias.c index 4b59c93cd7..e199e8e105 100644 --- a/stage0/stdlib/Init/Lean/Elab/Alias.c +++ b/stage0/stdlib/Lean/Elab/Alias.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Alias -// Imports: Init.Lean.Environment +// Module: Lean.Elab.Alias +// Imports: Lean.Environment #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,7 +18,6 @@ size_t l_USize_add(size_t, size_t); lean_object* l_Array_iterateMAux___main___at_Lean_mkAliasExtension___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_moveEntries___main___at_Lean_addAliasEntry___spec__15(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_aliasExtension___elambda__1___boxed(lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_aliasExtension___elambda__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_aliasExtension___elambda__2(lean_object*); lean_object* lean_array_uget(lean_object*, size_t); @@ -53,6 +52,7 @@ extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_addAliasEntry___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_aliasExtension___elambda__1(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_addAliasEntry___spec__5___boxed(lean_object*, lean_object*); @@ -79,7 +79,6 @@ lean_object* l_PersistentHashMap_insertAux___main___at_Lean_addAliasEntry___spec extern lean_object* l_IO_Error_Inhabited___closed__1; lean_object* l_Lean_aliasExtension___closed__4; size_t lean_usize_modn(size_t, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_PersistentHashMap_find_x3f___at_Lean_addAliasEntry___spec__2(lean_object*, lean_object*); lean_object* l_Lean_SMap_insert___at_Lean_addAliasEntry___spec__7(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkAliasExtension___spec__11___closed__2; @@ -94,6 +93,7 @@ uint8_t l_Array_anyRangeMAux___main___at_Lean_mkAliasExtension___spec__10(lean_o lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); size_t l_USize_land(size_t, size_t); lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; lean_object* l_PersistentHashMap_empty___at_Lean_mkAliasExtension___spec__3; lean_object* l_Lean_aliasExtension___closed__1; @@ -1619,7 +1619,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -1807,7 +1807,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkAliasExtens _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -2659,13 +2659,13 @@ lean_dec(x_1); return x_3; } } -lean_object* initialize_Init_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Alias(lean_object* w) { +lean_object* initialize_Lean_Elab_Alias(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_PersistentHashMap_empty___at_Lean_mkAliasExtension___spec__3 = _init_l_PersistentHashMap_empty___at_Lean_mkAliasExtension___spec__3(); diff --git a/stage0/stdlib/Init/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c similarity index 80% rename from stage0/stdlib/Init/Lean/Elab/App.c rename to stage0/stdlib/Lean/Elab/App.c index 7a3c7de489..cd68e19adb 100644 --- a/stage0/stdlib/Init/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.App -// Imports: Init.Lean.Util.FindMVar Init.Lean.Elab.Term Init.Lean.Elab.Binders +// Module: Lean.Elab.App +// Imports: Lean.Util.FindMVar Lean.Elab.Term Lean.Elab.Binders #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,401 +13,401 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__7; lean_object* l_Lean_Elab_Term_addNamedArg___closed__5; lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); +lean_object* l___private_Lean_Elab_App_7__hasOnlyTypeMVar___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabSortApp(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_14__resolveLValLoop___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_fieldIdxKind; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_Name_eraseMacroScopes(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_14__resolveLValLoop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__10; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__23; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__13; lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; extern lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__5; lean_object* l_Lean_mkSort(lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_App_14__resolveLValLoop___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; -lean_object* l___private_Init_Lean_Elab_App_24__mergeFailures(lean_object*); +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshExprMVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__8; +lean_object* l___private_Lean_Elab_App_19__elabAppLVals___closed__3; +lean_object* l___private_Lean_Elab_App_9__nextArgIsHole___boxed(lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__4; +lean_object* l___private_Lean_Elab_App_14__resolveLValLoop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_23__toMessageData___closed__1; lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabExplicitUniv___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_fieldIdxKind___closed__2; +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; extern lean_object* l_Lean_MessageData_ofList___closed__3; lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Elab_App_9__nextArgIsHole(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__2; +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_App_14__resolveLValLoop___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_inferType(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__12; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__21; +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__3; +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_26__expandApp(lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__1(lean_object*); extern lean_object* l_Option_get_x21___rarg___closed__3; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_24__mergeFailures___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_21__elabAppFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_16__mkBaseProjections(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +lean_object* l_Lean_Elab_getPosition___at___private_Lean_Elab_App_23__toMessageData___spec__1(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind___closed__2; +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__5; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__6; extern lean_object* l_Prod_HasRepr___rarg___closed__1; lean_object* l_Lean_Expr_getAutoParamTactic_x3f(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_12__throwLValError___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_4__tryCoeFun___closed__7; extern lean_object* l_PersistentHashMap_mkCollisionNode___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__20; -lean_object* l___private_Init_Lean_Elab_App_26__expandApp___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_26__expandApp___closed__1; +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__7; +lean_object* l___private_Lean_Elab_App_5__getForallBody(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_14__resolveLValLoop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabApp___closed__1; +uint8_t l___private_Lean_Elab_App_9__nextArgIsHole(lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Elab_App_6__hasTypeMVar(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_12__throwLValError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_unfoldDefinition_x3f(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__10; -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_17__addLValArg___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_24__mergeFailures___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__10; -lean_object* l___private_Init_Lean_Elab_App_14__resolveLValLoop___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__17; +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__10; +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__6; lean_object* l___regBuiltin_Lean_Elab_Term_elabApp(lean_object*); +lean_object* l___private_Lean_Elab_App_23__toMessageData(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__8; extern lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__1; uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___boxed(lean_object*, lean_object*); lean_object* lean_local_ctx_find_from_user_name(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__7; lean_object* lean_expr_instantiate1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_23__toMessageData___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_NamedArg_hasToString(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_19__elabAppLVals___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_23__toMessageData___closed__1; -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__11; -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__11; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__9; extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; lean_object* l_Lean_Expr_getOptParamDefault_x3f(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_25__elabAppAux___closed__3; lean_object* l_Lean_Expr_getAppFn___main(lean_object*); +lean_object* l___private_Lean_Elab_App_23__toMessageData___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__27; lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_26__expandApp___closed__1; +lean_object* l___private_Lean_Elab_App_26__expandApp___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_3__mkArrow___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isTypeFormer(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__4; +lean_object* l___private_Lean_Elab_App_17__addLValArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeAppInstMVars(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabId(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_19__elabAppLVals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addNamedArg___closed__6; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__2; extern lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabSortApp___closed__1; +lean_object* l___private_Lean_Elab_App_21__elabAppFn___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabArrayRef(lean_object*); +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__5; +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; lean_object* l_Lean_Elab_Term_NamedArg_inhabited; -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__4; -lean_object* l___private_Init_Lean_Elab_App_20__elabAppFnId(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__8; -lean_object* l___private_Init_Lean_Elab_App_15__resolveLVal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__7; lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__5; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__1; lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_20__elabAppFnId(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabRawIdent(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_12__throwLValError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__2; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__3; lean_object* l_Lean_Elab_Term_getOptions(lean_object*, lean_object*); +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; -lean_object* l___private_Init_Lean_Elab_App_8__propagateExpectedType(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; extern lean_object* l_Lean_Format_repr___main___closed__13; extern lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__9; +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__3; +lean_object* l___private_Lean_Elab_App_21__elabAppFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_5__getForallBody___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_26__expandApp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1; +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__8; +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__1; +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__3; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__14; extern lean_object* l_Array_HasRepr___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__17; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__5; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__28; lean_object* l_Lean_Elab_Term_elabLevel(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkProj(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrayRef(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshAnonymousName___rarg(lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__18; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__15; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__3; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__8; +lean_object* l___private_Lean_Elab_App_6__hasTypeMVar___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__13; +uint8_t l___private_Lean_Elab_App_7__hasOnlyTypeMVar(lean_object*, lean_object*); lean_object* l_List_toString___at_Lean_Elab_OpenDecl_HasToString___spec__2(lean_object*); -lean_object* l_Lean_Elab_getPosition___at___private_Init_Lean_Elab_App_23__toMessageData___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_25__elabAppAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__4; lean_object* l_Lean_Elab_Term_getLevel(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabExplicit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrNamespace(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__7; extern lean_object* l_Lean_choiceKind___closed__2; +lean_object* l___private_Lean_Elab_App_4__tryCoeFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_Inhabited; extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__7; -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Elab_App_22__getSuccess___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__9; lean_object* l_Lean_Elab_Term_elabId(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_15__resolveLVal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; +extern lean_object* l___private_Lean_Syntax_6__formatInfo___closed__1; +lean_object* l___private_Lean_Elab_App_14__resolveLValLoop___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_4__tryCoeFun___closed__6; lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__26; -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__1; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_5__getForallBody___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__6; +lean_object* l___private_Lean_Elab_App_4__tryCoeFun___closed__5; +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__14; lean_object* l_Lean_Elab_Term_addNamedArg___closed__3; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__25; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_App_24__mergeFailures___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_replaceInfo___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__7; +lean_object* l___private_Lean_Elab_App_16__mkBaseProjections___closed__3; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkConst___closed__4; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; -lean_object* l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__2; -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_NamedArg_inhabited___closed__1; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabExplicitUniv___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__12; lean_object* l_Lean_Elab_Term_Arg_hasToString(lean_object*); +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__8; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_17__addLValArg___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___main(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__19; uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_26__expandApp___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__11; +lean_object* l___private_Lean_Elab_App_12__throwLValError(lean_object*); lean_object* l_Lean_Elab_Term_logTrace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicit(lean_object*); +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__4; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_5__getForallBody(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__22; lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind; -lean_object* l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__1; -lean_object* l_List_map___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__1(lean_object*); lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_15__resolveLVal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAtom(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_5__getForallBody___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__6; lean_object* l_Lean_getStructureFields(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabChoice(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_App_26__expandApp___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_App_26__expandApp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Elab_App_6__hasTypeMVar(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addNamedArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__10; extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__4; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_4__tryCoeFun___closed__4; extern lean_object* l_Lean_Options_empty; lean_object* lean_expr_dbg_to_string(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__23; +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__11; lean_object* l_Lean_Elab_Term_elabApp(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__1; lean_object* l_Lean_getPathToBaseStructure_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeAppInstMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_1__ensureArgType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +lean_object* l___private_Lean_Elab_App_4__tryCoeFun___closed__3; lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_6__hasTypeMVar___boxed(lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_25__elabAppAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_27__regTraceClasses(lean_object*); lean_object* l_Lean_LocalDecl_toExpr(lean_object*); lean_object* l_Lean_Elab_Term_elabChoice(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_contains___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_21__elabAppFn___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__2; -lean_object* l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__2; -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_24__mergeFailures___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_2__elabArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_4__tryCoeFun___closed__1; +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; extern lean_object* l_Lean_formatEntry___closed__1; -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_App_14__resolveLValLoop___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_15__resolveLVal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_TermElabResult_inhabited; +lean_object* l_List_map___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__1(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_App_24__mergeFailures___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__6; lean_object* l___regBuiltin_Lean_Elab_Term_elabProj___closed__1; +lean_object* l___private_Lean_Elab_App_4__tryCoeFun___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAutoParam(lean_object*); extern lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; lean_object* l_Lean_Name_replacePrefix___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__8; -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__7; +lean_object* l___private_Lean_Elab_App_1__ensureArgType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__12; lean_object* l_Lean_Elab_Term_mkConst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_20__elabAppFnId___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__10; -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; +lean_object* l___private_Lean_Elab_App_27__regTraceClasses(lean_object*); extern lean_object* l_Lean_nullKind___closed__2; -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabProj(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_25__elabAppAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__4; lean_object* l_Lean_MessageData_ofArray(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_3__mkArrow(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_App_14__resolveLValLoop___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_termElabAttribute; -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__4; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__25; +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo___main(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__3; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__6; -lean_object* l___private_Init_Lean_Elab_App_2__elabArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_21__elabAppFn___main___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_Lean_Elab_App_17__addLValArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Option_HasRepr___rarg___closed__3; -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__2; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_17__addLValArg___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1; uint8_t l_Array_anyRangeMAux___main___at_Lean_Elab_Term_addNamedArg___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_inhabited; -lean_object* l___private_Init_Lean_Elab_App_22__getSuccess(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__4; -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__13; -lean_object* l___private_Init_Lean_Elab_App_25__elabAppAux___closed__2; extern lean_object* l_Lean_mkAppStx___closed__5; uint8_t l_Lean_BinderInfo_beq(uint8_t, uint8_t); lean_object* l_Lean_Elab_Term_elabSortApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_25__elabAppAux___closed__1; +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__1; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__16; +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__2; lean_object* l_Lean_mkLevelSucc(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__9; lean_object* l_Lean_Elab_Term_getLCtx(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSortApp(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_20__elabAppFnId___boxed(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_mkApp(lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__27; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__24; uint8_t l_Lean_Expr_hasMVar(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__2; lean_object* l_Lean_Syntax_getArgs(lean_object*); uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); lean_object* l_Lean_Elab_Term_registerSyntheticMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__14; lean_object* l___regBuiltin_Lean_Elab_Term_elabProj(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__5; lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__3; extern lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_21__elabAppFn___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicit___closed__1; lean_object* l_Array_forMAux___main___at_Lean_Elab_Term_synthesizeAppInstMVars___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_5__getForallBody___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__5; -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__5; +lean_object* l___private_Lean_Elab_App_25__elabAppAux___closed__2; lean_object* l_Lean_Elab_getPos___at_Lean_Elab_Term_throwError___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; lean_object* l___regBuiltin_Lean_Elab_Term_elabId___closed__1; -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__9; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__13; -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_5__getForallBody___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__10; lean_object* l_Lean_Elab_Term_whnfCore(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__3; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__1; +lean_object* l___private_Lean_Elab_App_25__elabAppAux___closed__1; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__20; +lean_object* l___private_Lean_Elab_App_4__tryCoeFun___closed__2; +lean_object* l___private_Lean_Elab_App_12__throwLValError___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_22__getSuccess(lean_object*); extern lean_object* l_Lean_mkHole___closed__1; lean_object* l_Lean_Elab_Term_elabExplicitUniv(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; -lean_object* l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__3; +lean_object* l___private_Lean_Elab_App_24__mergeFailures___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfMVar(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_16__mkBaseProjections(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__3; +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___closed__10; lean_object* l___regBuiltin_Lean_Elab_Term_elabChoice___closed__1; -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__8; +lean_object* l___private_Lean_Elab_App_14__resolveLValLoop___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_seq___elambda__1___closed__4; extern lean_object* l_Lean_mkAppStx___closed__9; -lean_object* l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__2; -lean_object* l___private_Init_Lean_Elab_App_16__mkBaseProjections___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__15; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__18; -lean_object* l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__1; lean_object* l_Lean_Elab_Term_whnfForall(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__5; -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_26__expandApp(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__11; +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__19; lean_object* l_Array_anyRangeMAux___main___at_Lean_Elab_Term_addNamedArg___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_consumeMData___main(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_23__toMessageData(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_16__mkBaseProjections___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addNamedArg___closed__1; +lean_object* l___private_Lean_Elab_App_16__mkBaseProjections___closed__1; +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__1; extern lean_object* l_Lean_KernelException_toMessageData___closed__12; lean_object* l_Array_toList___rarg(lean_object*); +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addNamedArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__1(lean_object*); +lean_object* l___private_Lean_Elab_App_3__mkArrow(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__11; +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_19__elabAppLVals___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabArrayRef___closed__1; +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__4; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_9__nextArgIsHole___boxed(lean_object*); uint8_t l_Lean_Expr_isOptParam(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_5__getForallBody___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__1; lean_object* l_Lean_Elab_Term_Arg_inhabited___closed__1; lean_object* l_Lean_Elab_Term_mkFreshLevelMVar(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_arrayExpr_toMessageData___main___closed__2; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; -lean_object* l___private_Init_Lean_Elab_App_14__resolveLValLoop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__7; -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_17__addLValArg___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabRawIdent___closed__1; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__16; lean_object* l_Lean_Elab_Term_addNamedArg___closed__2; extern lean_object* l_Lean_Meta_Exception_toStr___closed__6; uint8_t l_Lean_Position_DecidableEq(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__7; +lean_object* l___private_Lean_Elab_App_8__propagateExpectedType(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_16__mkBaseProjections___closed__2; +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__11; +lean_object* l_Array_contains___at___private_Lean_Elab_App_6__hasTypeMVar___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__26; extern lean_object* l_Nat_Inhabited; -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +lean_object* l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__2; extern lean_object* l_System_FilePath_dirName___closed__1; +lean_object* l___private_Lean_Elab_App_25__elabAppAux___closed__3; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__9; uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_applyResult(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__2; lean_object* l_Lean_Elab_Term_elabRawIdent(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_21__elabAppFn___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_findIdxAux___main___at___private_Init_Lean_Elab_App_17__addLValArg___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_12__throwLValError(lean_object*); +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__8; +lean_object* l___private_Lean_Elab_App_24__mergeFailures(lean_object*); uint8_t l_Lean_isStructureLike(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__22; +uint8_t l_Array_contains___at___private_Lean_Elab_App_6__hasTypeMVar___spec__1(lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__1; -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__1; -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__11; -uint8_t l_Array_contains___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_Format_repr___main___closed__16; -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__3; lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__14; lean_object* l_Lean_Elab_Term_ensureHasTypeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_insertAt___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Syntax_6__formatInfo___closed__1; -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__28; lean_object* l_Lean_findField_x3f___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__6; -lean_object* l___private_Init_Lean_Elab_App_21__elabAppFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___closed__12; extern lean_object* l_Lean_Parser_Term_sortApp___elambda__1___closed__2; lean_object* l_Lean_Name_components(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_App_25__elabAppAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__1; lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabExplicitUniv___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_17__addLValArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_19__elabAppLVals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; +lean_object* l___private_Lean_Elab_App_19__elabAppLVals___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_addNamedArg___closed__4; -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_19__elabAppLVals___closed__1; +lean_object* l_Array_filterAux___main___at___private_Lean_Elab_App_22__getSuccess___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isStructure(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_3__mkArrow___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___closed__2; +lean_object* l___private_Lean_Elab_App_11__elabAppArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__7; uint8_t lean_string_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__3; lean_object* l_Lean_Elab_Term_Arg_inhabited; lean_object* l_Array_forMAux___main___at_Lean_Elab_Term_synthesizeAppInstMVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -829,7 +829,7 @@ lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Elab_App_1__ensureArgType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_App_1__ensureArgType(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; @@ -880,7 +880,7 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Elab_App_2__elabArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_App_2__elabArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_3) == 0) @@ -903,7 +903,7 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); -x_13 = l___private_Init_Lean_Elab_App_1__ensureArgType(x_1, x_2, x_11, x_4, x_5, x_12); +x_13 = l___private_Lean_Elab_App_1__ensureArgType(x_1, x_2, x_11, x_4, x_5, x_12); return x_13; } else @@ -939,12 +939,12 @@ lean_object* x_18; lean_object* x_19; x_18 = lean_ctor_get(x_3, 0); lean_inc(x_18); lean_dec(x_3); -x_19 = l___private_Init_Lean_Elab_App_1__ensureArgType(x_1, x_2, x_18, x_4, x_5, x_6); +x_19 = l___private_Lean_Elab_App_1__ensureArgType(x_1, x_2, x_18, x_4, x_5, x_6); return x_19; } } } -lean_object* l___private_Init_Lean_Elab_App_3__mkArrow(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_App_3__mkArrow(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -978,16 +978,16 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Elab_App_3__mkArrow___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_App_3__mkArrow___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___private_Init_Lean_Elab_App_3__mkArrow(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_App_3__mkArrow(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__1() { _start: { lean_object* x_1; @@ -995,17 +995,17 @@ x_1 = lean_mk_string("CoeFun"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_4__tryCoeFun___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_Lean_Elab_App_4__tryCoeFun___closed__1; +x_2 = l___private_Lean_Elab_App_4__tryCoeFun___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__3() { +lean_object* _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -1015,17 +1015,17 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__4() { +lean_object* _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__3; +x_1 = l___private_Lean_Elab_App_4__tryCoeFun___closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__5() { +lean_object* _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__5() { _start: { lean_object* x_1; @@ -1033,21 +1033,21 @@ x_1 = lean_mk_string("coeFun"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__6() { +lean_object* _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__5; +x_2 = l___private_Lean_Elab_App_4__tryCoeFun___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__7() { +lean_object* _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__4; +x_1 = l___private_Lean_Elab_App_4__tryCoeFun___closed__4; x_2 = l_Lean_MessageData_ofList___closed__3; x_3 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -1055,7 +1055,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_App_4__tryCoeFun(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; @@ -1069,7 +1069,7 @@ lean_dec(x_6); lean_inc(x_7); x_9 = l_Lean_mkSort(x_7); lean_inc(x_2); -x_10 = l___private_Init_Lean_Elab_App_3__mkArrow(x_2, x_9, x_4, x_8); +x_10 = l___private_Lean_Elab_App_3__mkArrow(x_2, x_9, x_4, x_8); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); @@ -1104,7 +1104,7 @@ lean_ctor_set(x_23, 1, x_22); x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_20); lean_ctor_set(x_24, 1, x_23); -x_25 = l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__2; +x_25 = l___private_Lean_Elab_App_4__tryCoeFun___closed__2; lean_inc(x_24); x_26 = l_Lean_mkConst(x_25, x_24); x_27 = l_Lean_mkAppStx___closed__9; @@ -1214,7 +1214,7 @@ lean_dec(x_81); x_83 = lean_ctor_get(x_82, 4); lean_inc(x_83); lean_dec(x_82); -x_84 = l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__7; +x_84 = l___private_Lean_Elab_App_4__tryCoeFun___closed__7; x_85 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_83); @@ -1257,7 +1257,7 @@ block_80: { lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_dec(x_73); -x_74 = l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__4; +x_74 = l___private_Lean_Elab_App_4__tryCoeFun___closed__4; x_75 = l_Lean_Elab_Term_throwError___rarg(x_1, x_74, x_4, x_72); x_76 = !lean_is_exclusive(x_75); if (x_76 == 0) @@ -1290,7 +1290,7 @@ lean_dec(x_24); lean_dec(x_17); lean_dec(x_3); lean_dec(x_2); -x_40 = l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__4; +x_40 = l___private_Lean_Elab_App_4__tryCoeFun___closed__4; x_41 = l_Lean_Elab_Term_throwError___rarg(x_1, x_40, x_4, x_39); return x_41; } @@ -1298,7 +1298,7 @@ else { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_dec(x_4); -x_42 = l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__6; +x_42 = l___private_Lean_Elab_App_4__tryCoeFun___closed__6; x_43 = l_Lean_mkConst(x_42, x_24); x_44 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_45 = lean_array_push(x_44, x_2); @@ -1347,16 +1347,16 @@ return x_96; } } } -lean_object* l___private_Init_Lean_Elab_App_4__tryCoeFun___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_App_4__tryCoeFun___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_App_4__tryCoeFun(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_App_4__tryCoeFun(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_5__getForallBody___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_5__getForallBody___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1398,7 +1398,7 @@ return x_13; } } } -lean_object* l___private_Init_Lean_Elab_App_5__getForallBody___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_App_5__getForallBody___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 7) @@ -1412,7 +1412,7 @@ x_6 = lean_ctor_get(x_3, 2); lean_inc(x_6); x_7 = lean_ctor_get_uint64(x_3, sizeof(void*)*3); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_5__getForallBody___main___spec__1(x_4, x_2, x_8); +x_9 = l_Array_findIdxAux___main___at___private_Lean_Elab_App_5__getForallBody___main___spec__1(x_4, x_2, x_8); lean_dec(x_4); if (lean_obj_tag(x_9) == 0) { @@ -1530,25 +1530,25 @@ return x_30; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_5__getForallBody___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_5__getForallBody___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_5__getForallBody___main___spec__1(x_1, x_2, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Elab_App_5__getForallBody___main___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_App_5__getForallBody(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_App_5__getForallBody(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_App_5__getForallBody___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_App_5__getForallBody___main(x_1, x_2, x_3); return x_4; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__2(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; @@ -1583,18 +1583,18 @@ return x_9; } } } -uint8_t l_Array_contains___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__1(lean_object* x_1, lean_object* x_2) { +uint8_t l_Array_contains___at___private_Lean_Elab_App_6__hasTypeMVar___spec__1(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_1); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__2(x_1, x_2, x_1, x_3, x_4); +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__2(x_1, x_2, x_1, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_2)) { @@ -1605,7 +1605,7 @@ if (lean_obj_tag(x_3) == 0) 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_1, 6); -x_6 = l_Array_contains___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__1(x_5, x_4); +x_6 = l_Array_contains___at___private_Lean_Elab_App_6__hasTypeMVar___spec__1(x_5, x_4); if (x_6 == 0) { return x_3; @@ -1649,7 +1649,7 @@ goto _start; else { lean_object* x_13; -x_13 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_8, x_3); +x_13 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_8, x_3); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -1701,7 +1701,7 @@ goto _start; else { lean_object* x_21; -x_21 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_16, x_3); +x_21 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_16, x_3); if (lean_obj_tag(x_21) == 0) { uint8_t x_22; @@ -1753,7 +1753,7 @@ goto _start; else { lean_object* x_29; -x_29 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_24, x_3); +x_29 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_24, x_3); if (lean_obj_tag(x_29) == 0) { uint8_t x_30; @@ -1798,7 +1798,7 @@ goto block_42; else { lean_object* x_44; -x_44 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_32, x_3); +x_44 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_32, x_3); if (lean_obj_tag(x_44) == 0) { x_35 = x_44; @@ -1843,7 +1843,7 @@ return x_35; else { lean_object* x_39; -x_39 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_33, x_35); +x_39 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_33, x_35); if (lean_obj_tag(x_39) == 0) { uint8_t x_40; @@ -1917,12 +1917,12 @@ return x_3; } } } -uint8_t l___private_Init_Lean_Elab_App_6__hasTypeMVar(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Elab_App_6__hasTypeMVar(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_box(0); -x_4 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_2, x_3); +x_4 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_2, x_3); if (lean_obj_tag(x_4) == 0) { uint8_t x_5; @@ -1938,11 +1938,11 @@ return x_6; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___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* l_Array_anyRangeMAux___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -1951,39 +1951,39 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_contains___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_contains___at___private_Lean_Elab_App_6__hasTypeMVar___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Array_contains___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__1(x_1, x_2); +x_3 = l_Array_contains___at___private_Lean_Elab_App_6__hasTypeMVar___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_2, x_3); +x_4 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_6__hasTypeMVar___spec__3(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_App_6__hasTypeMVar___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_App_6__hasTypeMVar___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Elab_App_6__hasTypeMVar(x_1, x_2); +x_3 = l___private_Lean_Elab_App_6__hasTypeMVar(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_2)) { @@ -1994,7 +1994,7 @@ if (lean_obj_tag(x_3) == 0) 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_1, 6); -x_6 = l_Array_contains___at___private_Init_Lean_Elab_App_6__hasTypeMVar___spec__1(x_5, x_4); +x_6 = l_Array_contains___at___private_Lean_Elab_App_6__hasTypeMVar___spec__1(x_5, x_4); if (x_6 == 0) { lean_object* x_7; @@ -2038,7 +2038,7 @@ goto _start; else { lean_object* x_13; -x_13 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_8, x_3); +x_13 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_8, x_3); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -2090,7 +2090,7 @@ goto _start; else { lean_object* x_21; -x_21 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_16, x_3); +x_21 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_16, x_3); if (lean_obj_tag(x_21) == 0) { uint8_t x_22; @@ -2142,7 +2142,7 @@ goto _start; else { lean_object* x_29; -x_29 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_24, x_3); +x_29 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_24, x_3); if (lean_obj_tag(x_29) == 0) { uint8_t x_30; @@ -2187,7 +2187,7 @@ goto block_42; else { lean_object* x_44; -x_44 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_32, x_3); +x_44 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_32, x_3); if (lean_obj_tag(x_44) == 0) { x_35 = x_44; @@ -2232,7 +2232,7 @@ return x_35; else { lean_object* x_39; -x_39 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_33, x_35); +x_39 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_33, x_35); if (lean_obj_tag(x_39) == 0) { uint8_t x_40; @@ -2306,12 +2306,12 @@ return x_3; } } } -uint8_t l___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Elab_App_7__hasOnlyTypeMVar(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_box(0); -x_4 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_2, x_3); +x_4 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_2, x_3); if (lean_obj_tag(x_4) == 0) { uint8_t x_5; @@ -2327,28 +2327,28 @@ return x_6; } } } -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_2, x_3); +x_4 = l_Lean_FindMVar_main___main___at___private_Lean_Elab_App_7__hasOnlyTypeMVar___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_App_7__hasOnlyTypeMVar___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar(x_1, x_2); +x_3 = l___private_Lean_Elab_App_7__hasOnlyTypeMVar(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_App_8__propagateExpectedType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_App_8__propagateExpectedType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -2398,7 +2398,7 @@ lean_dec(x_15); lean_dec(x_14); x_17 = lean_ctor_get(x_1, 4); lean_inc(x_17); -x_18 = l___private_Init_Lean_Elab_App_5__getForallBody___main(x_16, x_17, x_2); +x_18 = l___private_Lean_Elab_App_5__getForallBody___main(x_16, x_17, x_2); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; @@ -2421,7 +2421,7 @@ x_22 = l_Lean_Expr_hasLooseBVars(x_21); if (x_22 == 0) { uint8_t x_23; -x_23 = l___private_Init_Lean_Elab_App_6__hasTypeMVar(x_1, x_21); +x_23 = l___private_Lean_Elab_App_6__hasTypeMVar(x_1, x_21); if (x_23 == 0) { lean_object* x_24; lean_object* x_25; @@ -2438,7 +2438,7 @@ return x_25; else { uint8_t x_26; -x_26 = l___private_Init_Lean_Elab_App_7__hasOnlyTypeMVar(x_1, x_21); +x_26 = l___private_Lean_Elab_App_7__hasOnlyTypeMVar(x_1, x_21); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; @@ -2567,7 +2567,7 @@ return x_48; } } } -uint8_t l___private_Init_Lean_Elab_App_9__nextArgIsHole(lean_object* x_1) { +uint8_t l___private_Lean_Elab_App_9__nextArgIsHole(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -2751,17 +2751,17 @@ return x_35; } } } -lean_object* l___private_Init_Lean_Elab_App_9__nextArgIsHole___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_App_9__nextArgIsHole___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_App_9__nextArgIsHole(x_1); +x_2 = l___private_Lean_Elab_App_9__nextArgIsHole(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2803,7 +2803,7 @@ return x_13; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -2838,17 +2838,17 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_mkAppStx___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__2() { _start: { lean_object* x_1; @@ -2856,17 +2856,17 @@ x_1 = lean_mk_string("finalize"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__1; -x_2 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__2; +x_1 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__1; +x_2 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__4() { _start: { lean_object* x_1; @@ -2874,27 +2874,27 @@ x_1 = lean_mk_string("explicit parameter '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__4; +x_1 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__5; +x_1 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__7() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__7() { _start: { lean_object* x_1; @@ -2902,27 +2902,27 @@ x_1 = lean_mk_string("' is missing, unused named arguments "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__8() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__7; +x_1 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__8; +x_1 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__10() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__10() { _start: { lean_object* x_1; @@ -2930,27 +2930,27 @@ x_1 = lean_mk_string("invalid autoParam, argument must be a constant"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__11() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__10; +x_1 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__10; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__11; +x_1 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__11; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__13() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__13() { _start: { lean_object* x_1; @@ -2958,29 +2958,29 @@ x_1 = lean_mk_string("begin"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__14() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__13; +x_2 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__13; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__14; +x_2 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__14; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16() { +lean_object* _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2992,7 +2992,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; @@ -3034,7 +3034,7 @@ x_92 = lean_ctor_get(x_16, 2); lean_inc(x_92); x_93 = lean_ctor_get_uint64(x_16, sizeof(void*)*3); x_94 = lean_unsigned_to_nat(0u); -x_95 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__1(x_90, x_11, x_94); +x_95 = l_Array_findIdxAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__1(x_90, x_11, x_94); if (lean_obj_tag(x_95) == 0) { uint8_t x_96; @@ -3066,7 +3066,7 @@ x_100 = lean_nat_dec_lt(x_10, x_99); lean_dec(x_99); lean_inc(x_4); lean_inc(x_1); -x_101 = l___private_Init_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); +x_101 = l___private_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); x_102 = !lean_is_exclusive(x_1); if (x_102 == 0) { @@ -3138,7 +3138,7 @@ lean_inc(x_171); x_172 = lean_ctor_get(x_170, 1); lean_inc(x_172); lean_dec(x_170); -x_173 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_171, x_169); +x_173 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_171, x_169); if (lean_obj_tag(x_173) == 0) { lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; @@ -3185,9 +3185,9 @@ x_189 = l_Lean_Parser_Tactic_seq___elambda__1___closed__4; x_190 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_190, 0, x_189); lean_ctor_set(x_190, 1, x_188); -x_191 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; +x_191 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; x_192 = lean_array_push(x_191, x_190); -x_193 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; +x_193 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; x_194 = lean_array_push(x_192, x_193); x_195 = l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; x_196 = lean_alloc_ctor(1, 2, 0); @@ -3209,7 +3209,7 @@ x_203 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_203, 0, x_196); lean_inc(x_4); lean_inc(x_2); -x_204 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_203, x_202, x_4, x_182); +x_204 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_203, x_202, x_4, x_182); if (lean_obj_tag(x_204) == 0) { lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; @@ -3267,7 +3267,7 @@ x_216 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_216, 0, x_215); lean_inc(x_4); lean_inc(x_2); -x_217 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_216, x_202, x_4, x_182); +x_217 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_216, x_202, x_4, x_182); if (lean_obj_tag(x_217) == 0) { lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; @@ -3324,7 +3324,7 @@ lean_dec(x_98); lean_dec(x_92); lean_dec(x_91); lean_dec(x_2); -x_227 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; +x_227 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; x_228 = l_Lean_Elab_Term_throwError___rarg(x_6, x_227, x_4, x_110); lean_dec(x_6); return x_228; @@ -3377,7 +3377,7 @@ x_234 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_235 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_234, x_91, x_4, x_110); +x_235 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_234, x_91, x_4, x_110); if (lean_obj_tag(x_235) == 0) { lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; @@ -3449,16 +3449,16 @@ lean_dec(x_3); lean_dec(x_2); x_113 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_113, 0, x_90); -x_114 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_114 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_115 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_115, 0, x_114); lean_ctor_set(x_115, 1, x_113); -x_116 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_116 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_117 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_117, 0, x_115); lean_ctor_set(x_117, 1, x_116); x_118 = x_11; -x_119 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_118); +x_119 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_118); x_120 = x_119; x_121 = l_Array_toList___rarg(x_120); lean_dec(x_120); @@ -3488,7 +3488,7 @@ lean_inc(x_157); x_158 = lean_ctor_get(x_156, 1); lean_inc(x_158); lean_dec(x_156); -x_159 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_159 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_160 = l_Lean_checkTraceOption(x_157, x_159); lean_dec(x_157); if (x_160 == 0) @@ -3754,7 +3754,7 @@ lean_inc(x_310); x_311 = lean_ctor_get(x_309, 1); lean_inc(x_311); lean_dec(x_309); -x_312 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_310, x_308); +x_312 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_310, x_308); if (lean_obj_tag(x_312) == 0) { lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; @@ -3801,9 +3801,9 @@ x_328 = l_Lean_Parser_Tactic_seq___elambda__1___closed__4; x_329 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_329, 0, x_328); lean_ctor_set(x_329, 1, x_327); -x_330 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; +x_330 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; x_331 = lean_array_push(x_330, x_329); -x_332 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; +x_332 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; x_333 = lean_array_push(x_331, x_332); x_334 = l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; x_335 = lean_alloc_ctor(1, 2, 0); @@ -3825,7 +3825,7 @@ x_342 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_342, 0, x_335); lean_inc(x_4); lean_inc(x_2); -x_343 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_342, x_341, x_4, x_321); +x_343 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_342, x_341, x_4, x_321); if (lean_obj_tag(x_343) == 0) { lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; @@ -3885,7 +3885,7 @@ x_355 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_355, 0, x_354); lean_inc(x_4); lean_inc(x_2); -x_356 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_355, x_341, x_4, x_321); +x_356 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_355, x_341, x_4, x_321); if (lean_obj_tag(x_356) == 0) { lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; @@ -3944,7 +3944,7 @@ lean_dec(x_98); lean_dec(x_92); lean_dec(x_91); lean_dec(x_2); -x_366 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; +x_366 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; x_367 = l_Lean_Elab_Term_throwError___rarg(x_6, x_366, x_4, x_251); lean_dec(x_6); return x_367; @@ -3997,7 +3997,7 @@ x_373 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_374 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_373, x_91, x_4, x_251); +x_374 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_373, x_91, x_4, x_251); if (lean_obj_tag(x_374) == 0) { 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; @@ -4079,16 +4079,16 @@ lean_dec(x_3); lean_dec(x_2); x_254 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_254, 0, x_90); -x_255 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_255 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_256 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_256, 0, x_255); lean_ctor_set(x_256, 1, x_254); -x_257 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_257 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_258 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_258, 0, x_256); lean_ctor_set(x_258, 1, x_257); x_259 = x_11; -x_260 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_259); +x_260 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_259); x_261 = x_260; x_262 = l_Array_toList___rarg(x_261); lean_dec(x_261); @@ -4118,7 +4118,7 @@ lean_inc(x_296); x_297 = lean_ctor_get(x_295, 1); lean_inc(x_297); lean_dec(x_295); -x_298 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_298 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_299 = l_Lean_checkTraceOption(x_296, x_298); lean_dec(x_296); if (x_299 == 0) @@ -4578,7 +4578,7 @@ x_448 = lean_nat_dec_lt(x_10, x_447); lean_dec(x_447); lean_inc(x_4); lean_inc(x_1); -x_449 = l___private_Init_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); +x_449 = l___private_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); x_450 = !lean_is_exclusive(x_1); if (x_450 == 0) { @@ -4621,16 +4621,16 @@ lean_dec(x_3); lean_dec(x_2); x_460 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_460, 0, x_90); -x_461 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_461 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_462 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_462, 0, x_461); lean_ctor_set(x_462, 1, x_460); -x_463 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_463 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_464 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_464, 0, x_462); lean_ctor_set(x_464, 1, x_463); x_465 = x_11; -x_466 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_465); +x_466 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_465); x_467 = x_466; x_468 = l_Array_toList___rarg(x_467); lean_dec(x_467); @@ -4660,7 +4660,7 @@ lean_inc(x_504); x_505 = lean_ctor_get(x_503, 1); lean_inc(x_505); lean_dec(x_503); -x_506 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_506 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_507 = l_Lean_checkTraceOption(x_504, x_506); lean_dec(x_504); if (x_507 == 0) @@ -4844,7 +4844,7 @@ x_512 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_513 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_512, x_91, x_4, x_511); +x_513 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_512, x_91, x_4, x_511); if (lean_obj_tag(x_513) == 0) { lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; uint8_t x_518; lean_object* x_519; lean_object* x_520; @@ -4967,16 +4967,16 @@ lean_dec(x_3); lean_dec(x_2); x_532 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_532, 0, x_90); -x_533 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_533 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_534 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_534, 0, x_533); lean_ctor_set(x_534, 1, x_532); -x_535 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_535 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_536 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_536, 0, x_534); lean_ctor_set(x_536, 1, x_535); x_537 = x_11; -x_538 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_537); +x_538 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_537); x_539 = x_538; x_540 = l_Array_toList___rarg(x_539); lean_dec(x_539); @@ -5006,7 +5006,7 @@ lean_inc(x_574); x_575 = lean_ctor_get(x_573, 1); lean_inc(x_575); lean_dec(x_573); -x_576 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_576 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_577 = l_Lean_checkTraceOption(x_574, x_576); lean_dec(x_574); if (x_577 == 0) @@ -5192,7 +5192,7 @@ x_582 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_583 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_582, x_91, x_4, x_581); +x_583 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_582, x_91, x_4, x_581); if (lean_obj_tag(x_583) == 0) { lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; uint8_t x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; @@ -5328,7 +5328,7 @@ x_604 = lean_nat_dec_lt(x_10, x_603); lean_dec(x_603); lean_inc(x_4); lean_inc(x_1); -x_605 = l___private_Init_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); +x_605 = l___private_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); x_606 = !lean_is_exclusive(x_1); if (x_606 == 0) { @@ -5400,7 +5400,7 @@ lean_inc(x_675); x_676 = lean_ctor_get(x_674, 1); lean_inc(x_676); lean_dec(x_674); -x_677 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_675, x_673); +x_677 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_675, x_673); if (lean_obj_tag(x_677) == 0) { lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; @@ -5447,9 +5447,9 @@ x_693 = l_Lean_Parser_Tactic_seq___elambda__1___closed__4; x_694 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_694, 0, x_693); lean_ctor_set(x_694, 1, x_692); -x_695 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; +x_695 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; x_696 = lean_array_push(x_695, x_694); -x_697 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; +x_697 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; x_698 = lean_array_push(x_696, x_697); x_699 = l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; x_700 = lean_alloc_ctor(1, 2, 0); @@ -5471,7 +5471,7 @@ x_707 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_707, 0, x_700); lean_inc(x_4); lean_inc(x_2); -x_708 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_707, x_706, x_4, x_686); +x_708 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_707, x_706, x_4, x_686); if (lean_obj_tag(x_708) == 0) { lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; @@ -5529,7 +5529,7 @@ x_720 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_720, 0, x_719); lean_inc(x_4); lean_inc(x_2); -x_721 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_720, x_706, x_4, x_686); +x_721 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_720, x_706, x_4, x_686); if (lean_obj_tag(x_721) == 0) { lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; @@ -5586,7 +5586,7 @@ lean_dec(x_602); lean_dec(x_92); lean_dec(x_91); lean_dec(x_2); -x_731 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; +x_731 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; x_732 = l_Lean_Elab_Term_throwError___rarg(x_6, x_731, x_4, x_614); lean_dec(x_6); return x_732; @@ -5639,7 +5639,7 @@ x_738 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_739 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_738, x_91, x_4, x_614); +x_739 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_738, x_91, x_4, x_614); if (lean_obj_tag(x_739) == 0) { lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; @@ -5711,16 +5711,16 @@ lean_dec(x_3); lean_dec(x_2); x_617 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_617, 0, x_90); -x_618 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_618 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_619 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_619, 0, x_618); lean_ctor_set(x_619, 1, x_617); -x_620 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_620 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_621 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_621, 0, x_619); lean_ctor_set(x_621, 1, x_620); x_622 = x_11; -x_623 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_622); +x_623 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_622); x_624 = x_623; x_625 = l_Array_toList___rarg(x_624); lean_dec(x_624); @@ -5750,7 +5750,7 @@ lean_inc(x_661); x_662 = lean_ctor_get(x_660, 1); lean_inc(x_662); lean_dec(x_660); -x_663 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_663 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_664 = l_Lean_checkTraceOption(x_661, x_663); lean_dec(x_661); if (x_664 == 0) @@ -6016,7 +6016,7 @@ lean_inc(x_814); x_815 = lean_ctor_get(x_813, 1); lean_inc(x_815); lean_dec(x_813); -x_816 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_814, x_812); +x_816 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_814, x_812); if (lean_obj_tag(x_816) == 0) { lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; @@ -6063,9 +6063,9 @@ x_832 = l_Lean_Parser_Tactic_seq___elambda__1___closed__4; x_833 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_833, 0, x_832); lean_ctor_set(x_833, 1, x_831); -x_834 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; +x_834 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; x_835 = lean_array_push(x_834, x_833); -x_836 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; +x_836 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; x_837 = lean_array_push(x_835, x_836); x_838 = l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; x_839 = lean_alloc_ctor(1, 2, 0); @@ -6087,7 +6087,7 @@ x_846 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_846, 0, x_839); lean_inc(x_4); lean_inc(x_2); -x_847 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_846, x_845, x_4, x_825); +x_847 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_846, x_845, x_4, x_825); if (lean_obj_tag(x_847) == 0) { lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; @@ -6147,7 +6147,7 @@ x_859 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_859, 0, x_858); lean_inc(x_4); lean_inc(x_2); -x_860 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_859, x_845, x_4, x_825); +x_860 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_859, x_845, x_4, x_825); if (lean_obj_tag(x_860) == 0) { lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; @@ -6206,7 +6206,7 @@ lean_dec(x_602); lean_dec(x_92); lean_dec(x_91); lean_dec(x_2); -x_870 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; +x_870 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; x_871 = l_Lean_Elab_Term_throwError___rarg(x_6, x_870, x_4, x_755); lean_dec(x_6); return x_871; @@ -6259,7 +6259,7 @@ x_877 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_878 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_877, x_91, x_4, x_755); +x_878 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_877, x_91, x_4, x_755); if (lean_obj_tag(x_878) == 0) { lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; @@ -6341,16 +6341,16 @@ lean_dec(x_3); lean_dec(x_2); x_758 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_758, 0, x_90); -x_759 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_759 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_760 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_760, 0, x_759); lean_ctor_set(x_760, 1, x_758); -x_761 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_761 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_762 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_762, 0, x_760); lean_ctor_set(x_762, 1, x_761); x_763 = x_11; -x_764 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_763); +x_764 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_763); x_765 = x_764; x_766 = l_Array_toList___rarg(x_765); lean_dec(x_765); @@ -6380,7 +6380,7 @@ lean_inc(x_800); x_801 = lean_ctor_get(x_799, 1); lean_inc(x_801); lean_dec(x_799); -x_802 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_802 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_803 = l_Lean_checkTraceOption(x_800, x_802); lean_dec(x_800); if (x_803 == 0) @@ -6687,7 +6687,7 @@ goto _start; else { uint8_t x_926; -x_926 = l___private_Init_Lean_Elab_App_9__nextArgIsHole(x_1); +x_926 = l___private_Lean_Elab_App_9__nextArgIsHole(x_1); if (x_926 == 0) { lean_object* x_927; uint8_t x_928; lean_object* x_929; uint8_t x_930; @@ -6696,7 +6696,7 @@ x_928 = lean_nat_dec_lt(x_10, x_927); lean_dec(x_927); lean_inc(x_4); lean_inc(x_1); -x_929 = l___private_Init_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); +x_929 = l___private_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); x_930 = !lean_is_exclusive(x_1); if (x_930 == 0) { @@ -6739,16 +6739,16 @@ lean_dec(x_3); lean_dec(x_2); x_940 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_940, 0, x_90); -x_941 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_941 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_942 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_942, 0, x_941); lean_ctor_set(x_942, 1, x_940); -x_943 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_943 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_944 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_944, 0, x_942); lean_ctor_set(x_944, 1, x_943); x_945 = x_11; -x_946 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_945); +x_946 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_945); x_947 = x_946; x_948 = l_Array_toList___rarg(x_947); lean_dec(x_947); @@ -6778,7 +6778,7 @@ lean_inc(x_984); x_985 = lean_ctor_get(x_983, 1); lean_inc(x_985); lean_dec(x_983); -x_986 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_986 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_987 = l_Lean_checkTraceOption(x_984, x_986); lean_dec(x_984); if (x_987 == 0) @@ -6962,7 +6962,7 @@ x_992 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_993 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_992, x_91, x_4, x_991); +x_993 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_992, x_91, x_4, x_991); if (lean_obj_tag(x_993) == 0) { lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; uint8_t x_998; lean_object* x_999; lean_object* x_1000; @@ -7085,16 +7085,16 @@ lean_dec(x_3); lean_dec(x_2); x_1012 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_1012, 0, x_90); -x_1013 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_1013 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_1014 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1014, 0, x_1013); lean_ctor_set(x_1014, 1, x_1012); -x_1015 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_1015 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_1016 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1016, 0, x_1014); lean_ctor_set(x_1016, 1, x_1015); x_1017 = x_11; -x_1018 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_1017); +x_1018 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_1017); x_1019 = x_1018; x_1020 = l_Array_toList___rarg(x_1019); lean_dec(x_1019); @@ -7124,7 +7124,7 @@ lean_inc(x_1054); x_1055 = lean_ctor_get(x_1053, 1); lean_inc(x_1055); lean_dec(x_1053); -x_1056 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_1056 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_1057 = l_Lean_checkTraceOption(x_1054, x_1056); lean_dec(x_1054); if (x_1057 == 0) @@ -7310,7 +7310,7 @@ x_1062 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_1063 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_1062, x_91, x_4, x_1061); +x_1063 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_1062, x_91, x_4, x_1061); if (lean_obj_tag(x_1063) == 0) { lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; uint8_t x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; @@ -7541,7 +7541,7 @@ x_1119 = lean_nat_dec_lt(x_10, x_1118); lean_dec(x_1118); lean_inc(x_4); lean_inc(x_1); -x_1120 = l___private_Init_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); +x_1120 = l___private_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_17); x_1121 = !lean_is_exclusive(x_1); if (x_1121 == 0) { @@ -7613,7 +7613,7 @@ lean_inc(x_1190); x_1191 = lean_ctor_get(x_1189, 1); lean_inc(x_1191); lean_dec(x_1189); -x_1192 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_1190, x_1188); +x_1192 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_1190, x_1188); if (lean_obj_tag(x_1192) == 0) { lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; @@ -7660,9 +7660,9 @@ x_1208 = l_Lean_Parser_Tactic_seq___elambda__1___closed__4; x_1209 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1209, 0, x_1208); lean_ctor_set(x_1209, 1, x_1207); -x_1210 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; +x_1210 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; x_1211 = lean_array_push(x_1210, x_1209); -x_1212 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; +x_1212 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; x_1213 = lean_array_push(x_1211, x_1212); x_1214 = l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; x_1215 = lean_alloc_ctor(1, 2, 0); @@ -7684,7 +7684,7 @@ x_1222 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1222, 0, x_1215); lean_inc(x_4); lean_inc(x_2); -x_1223 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_1222, x_1221, x_4, x_1201); +x_1223 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_1222, x_1221, x_4, x_1201); if (lean_obj_tag(x_1223) == 0) { lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; @@ -7742,7 +7742,7 @@ x_1235 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1235, 0, x_1234); lean_inc(x_4); lean_inc(x_2); -x_1236 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_1235, x_1221, x_4, x_1201); +x_1236 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_1235, x_1221, x_4, x_1201); if (lean_obj_tag(x_1236) == 0) { lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; @@ -7799,7 +7799,7 @@ lean_dec(x_1117); lean_dec(x_92); lean_dec(x_91); lean_dec(x_2); -x_1246 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; +x_1246 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; x_1247 = l_Lean_Elab_Term_throwError___rarg(x_6, x_1246, x_4, x_1129); lean_dec(x_6); return x_1247; @@ -7852,7 +7852,7 @@ x_1253 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_1254 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_1253, x_91, x_4, x_1129); +x_1254 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_1253, x_91, x_4, x_1129); if (lean_obj_tag(x_1254) == 0) { lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; @@ -7924,16 +7924,16 @@ lean_dec(x_3); lean_dec(x_2); x_1132 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_1132, 0, x_90); -x_1133 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_1133 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_1134 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1134, 0, x_1133); lean_ctor_set(x_1134, 1, x_1132); -x_1135 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_1135 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_1136 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1136, 0, x_1134); lean_ctor_set(x_1136, 1, x_1135); x_1137 = x_11; -x_1138 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_1137); +x_1138 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_1137); x_1139 = x_1138; x_1140 = l_Array_toList___rarg(x_1139); lean_dec(x_1139); @@ -7963,7 +7963,7 @@ lean_inc(x_1176); x_1177 = lean_ctor_get(x_1175, 1); lean_inc(x_1177); lean_dec(x_1175); -x_1178 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_1178 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_1179 = l_Lean_checkTraceOption(x_1176, x_1178); lean_dec(x_1176); if (x_1179 == 0) @@ -8229,7 +8229,7 @@ lean_inc(x_1329); x_1330 = lean_ctor_get(x_1328, 1); lean_inc(x_1330); lean_dec(x_1328); -x_1331 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_1329, x_1327); +x_1331 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(x_1329, x_1327); if (lean_obj_tag(x_1331) == 0) { lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; @@ -8276,9 +8276,9 @@ x_1347 = l_Lean_Parser_Tactic_seq___elambda__1___closed__4; x_1348 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1348, 0, x_1347); lean_ctor_set(x_1348, 1, x_1346); -x_1349 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; +x_1349 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15; x_1350 = lean_array_push(x_1349, x_1348); -x_1351 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; +x_1351 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16; x_1352 = lean_array_push(x_1350, x_1351); x_1353 = l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; x_1354 = lean_alloc_ctor(1, 2, 0); @@ -8300,7 +8300,7 @@ x_1361 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1361, 0, x_1354); lean_inc(x_4); lean_inc(x_2); -x_1362 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_1361, x_1360, x_4, x_1340); +x_1362 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_1361, x_1360, x_4, x_1340); if (lean_obj_tag(x_1362) == 0) { lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; @@ -8360,7 +8360,7 @@ x_1374 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1374, 0, x_1373); lean_inc(x_4); lean_inc(x_2); -x_1375 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_1374, x_1360, x_4, x_1340); +x_1375 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_1374, x_1360, x_4, x_1340); if (lean_obj_tag(x_1375) == 0) { lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; @@ -8419,7 +8419,7 @@ lean_dec(x_1117); lean_dec(x_92); lean_dec(x_91); lean_dec(x_2); -x_1385 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; +x_1385 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12; x_1386 = l_Lean_Elab_Term_throwError___rarg(x_6, x_1385, x_4, x_1270); lean_dec(x_6); return x_1386; @@ -8472,7 +8472,7 @@ x_1392 = lean_array_fget(x_7, x_10); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_1393 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_1392, x_91, x_4, x_1270); +x_1393 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_1392, x_91, x_4, x_1270); if (lean_obj_tag(x_1393) == 0) { lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; @@ -8554,16 +8554,16 @@ lean_dec(x_3); lean_dec(x_2); x_1273 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_1273, 0, x_90); -x_1274 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; +x_1274 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6; x_1275 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1275, 0, x_1274); lean_ctor_set(x_1275, 1, x_1273); -x_1276 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; +x_1276 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9; x_1277 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1277, 0, x_1275); lean_ctor_set(x_1277, 1, x_1276); x_1278 = x_11; -x_1279 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_1278); +x_1279 = l_Array_umapMAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__2(x_94, x_1278); x_1280 = x_1279; x_1281 = l_Array_toList___rarg(x_1280); lean_dec(x_1280); @@ -8593,7 +8593,7 @@ lean_inc(x_1315); x_1316 = lean_ctor_get(x_1314, 1); lean_inc(x_1316); lean_dec(x_1314); -x_1317 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_1317 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_1318 = l_Lean_checkTraceOption(x_1315, x_1317); lean_dec(x_1315); if (x_1318 == 0) @@ -8828,7 +8828,7 @@ lean_dec(x_1412); lean_inc(x_4); lean_inc(x_2); lean_inc(x_6); -x_1415 = l___private_Init_Lean_Elab_App_2__elabArg(x_6, x_2, x_1414, x_91, x_4, x_17); +x_1415 = l___private_Lean_Elab_App_2__elabArg(x_6, x_2, x_1414, x_91, x_4, x_17); if (lean_obj_tag(x_1415) == 0) { lean_object* x_1416; lean_object* x_1417; uint8_t x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; @@ -8854,7 +8854,7 @@ x_1421 = lean_expr_instantiate1(x_92, x_1416); lean_dec(x_1416); lean_dec(x_92); lean_inc(x_4); -x_1422 = l___private_Init_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_1417); +x_1422 = l___private_Lean_Elab_App_8__propagateExpectedType(x_1, x_16, x_4, x_1417); if (lean_obj_tag(x_1422) == 0) { lean_object* x_1423; @@ -8953,7 +8953,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_3); lean_inc(x_4); -x_20 = l___private_Init_Lean_Elab_App_4__tryCoeFun(x_6, x_16, x_2, x_4, x_17); +x_20 = l___private_Lean_Elab_App_4__tryCoeFun(x_6, x_16, x_2, x_4, x_17); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -9046,7 +9046,7 @@ lean_dec(x_12); lean_dec(x_8); lean_dec(x_3); lean_inc(x_4); -x_37 = l___private_Init_Lean_Elab_App_4__tryCoeFun(x_6, x_16, x_2, x_4, x_17); +x_37 = l___private_Lean_Elab_App_4__tryCoeFun(x_6, x_16, x_2, x_4, x_17); if (lean_obj_tag(x_37) == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; @@ -9135,7 +9135,7 @@ lean_inc(x_82); x_83 = lean_ctor_get(x_81, 1); lean_inc(x_83); lean_dec(x_81); -x_84 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; +x_84 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3; x_85 = l_Lean_checkTraceOption(x_82, x_84); lean_dec(x_82); if (x_85 == 0) @@ -9346,25 +9346,25 @@ return x_1437; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___spec__1(x_1, x_2, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Elab_App_10__elabAppArgsAux___main___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_App_10__elabAppArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_App_10__elabAppArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_App_10__elabAppArgsAux___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__1() { _start: { lean_object* x_1; @@ -9372,17 +9372,17 @@ x_1 = lean_mk_string("args"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__1; -x_2 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__1; +x_1 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__1; +x_2 = l___private_Lean_Elab_App_11__elabAppArgs___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__3() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__3() { _start: { lean_object* x_1; @@ -9390,27 +9390,27 @@ x_1 = lean_mk_string("explicit: "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__4() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__3; +x_1 = l___private_Lean_Elab_App_11__elabAppArgs___closed__3; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__5() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__4; +x_1 = l___private_Lean_Elab_App_11__elabAppArgs___closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__6() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -9420,23 +9420,23 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__7() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__5; -x_2 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__6; +x_1 = l___private_Lean_Elab_App_11__elabAppArgs___closed__5; +x_2 = l___private_Lean_Elab_App_11__elabAppArgs___closed__6; x_3 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__8() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__7; +x_1 = l___private_Lean_Elab_App_11__elabAppArgs___closed__7; x_2 = l_Lean_MessageData_arrayExpr_toMessageData___main___closed__2; x_3 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9444,7 +9444,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__9() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -9454,23 +9454,23 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__10() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__5; -x_2 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__9; +x_1 = l___private_Lean_Elab_App_11__elabAppArgs___closed__5; +x_2 = l___private_Lean_Elab_App_11__elabAppArgs___closed__9; x_3 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__11() { +lean_object* _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__10; +x_1 = l___private_Lean_Elab_App_11__elabAppArgs___closed__10; x_2 = l_Lean_MessageData_arrayExpr_toMessageData___main___closed__2; x_3 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9478,7 +9478,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_App_11__elabAppArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; @@ -9564,7 +9564,7 @@ goto block_69; block_69: { lean_object* x_25; uint8_t x_26; -x_25 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__2; +x_25 = l___private_Lean_Elab_App_11__elabAppArgs___closed__2; x_26 = l_Lean_checkTraceOption(x_23, x_25); lean_dec(x_23); if (x_26 == 0) @@ -9580,7 +9580,7 @@ lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_27, 1); lean_inc(x_28); lean_dec(x_27); -x_29 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_28); +x_29 = l___private_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_28); return x_29; } else @@ -9613,7 +9613,7 @@ return x_33; else { lean_object* x_34; -x_34 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_24); +x_34 = l___private_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_24); return x_34; } } @@ -9629,11 +9629,11 @@ lean_ctor_set(x_36, 0, x_13); if (x_6 == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_37 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__8; +x_37 = l___private_Lean_Elab_App_11__elabAppArgs___closed__8; x_38 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_35); -x_39 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_39 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_40 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_40, 0, x_38); lean_ctor_set(x_40, 1, x_39); @@ -9656,7 +9656,7 @@ lean_object* x_45; lean_object* x_46; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_45); +x_46 = l___private_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_45); return x_46; } else @@ -9692,18 +9692,18 @@ lean_object* x_51; lean_object* x_52; x_51 = lean_ctor_get(x_42, 1); lean_inc(x_51); lean_dec(x_42); -x_52 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_51); +x_52 = l___private_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_51); return x_52; } } else { lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_53 = l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__11; +x_53 = l___private_Lean_Elab_App_11__elabAppArgs___closed__11; x_54 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_35); -x_55 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_55 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_56 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_56, 0, x_54); lean_ctor_set(x_56, 1, x_55); @@ -9726,7 +9726,7 @@ lean_object* x_61; lean_object* x_62; x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec(x_60); -x_62 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_61); +x_62 = l___private_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_61); return x_62; } else @@ -9762,7 +9762,7 @@ lean_object* x_67; lean_object* x_68; x_67 = lean_ctor_get(x_58, 1); lean_inc(x_67); lean_dec(x_58); -x_68 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_67); +x_68 = l___private_Lean_Elab_App_10__elabAppArgsAux___main(x_19, x_2, x_13, x_7, x_67); return x_68; } } @@ -9800,17 +9800,17 @@ return x_80; } } } -lean_object* l___private_Init_Lean_Elab_App_11__elabAppArgs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_App_11__elabAppArgs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; lean_object* x_10; x_9 = lean_unbox(x_6); lean_dec(x_6); -x_10 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_2, x_3, x_4, x_5, x_9, x_7, x_8); +x_10 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_2, x_3, x_4, x_5, x_9, x_7, x_8); return x_10; } } -lean_object* l___private_Init_Lean_Elab_App_12__throwLValError___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_App_12__throwLValError___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; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; @@ -9838,24 +9838,24 @@ x_17 = l_Lean_Elab_Term_throwError___rarg(x_1, x_16, x_5, x_6); return x_17; } } -lean_object* l___private_Init_Lean_Elab_App_12__throwLValError(lean_object* x_1) { +lean_object* l___private_Lean_Elab_App_12__throwLValError(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_App_12__throwLValError___rarg___boxed), 6, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_12__throwLValError___rarg___boxed), 6, 0); return x_2; } } -lean_object* l___private_Init_Lean_Elab_App_12__throwLValError___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* l___private_Lean_Elab_App_12__throwLValError___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) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); return x_7; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__1() { _start: { lean_object* x_1; @@ -9863,27 +9863,27 @@ x_1 = lean_mk_string("invalid field notation, type is not of the form (C ...) wh return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__1; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__3() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__2; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__4() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__4() { _start: { lean_object* x_1; @@ -9891,27 +9891,27 @@ x_1 = lean_mk_string("invalid [..] notation, type is not of the form (C ...) whe return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__5() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__4; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__6() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__5; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__7() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__7() { _start: { lean_object* x_1; @@ -9919,27 +9919,27 @@ x_1 = lean_mk_string("invalid projection, structure expected"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__8() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__7; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__9() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__8; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__10() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__10() { _start: { lean_object* x_1; @@ -9947,27 +9947,27 @@ x_1 = lean_mk_string("invalid projection, structure has only "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__11() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__10; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__10; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__12() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__11; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__11; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__13() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__13() { _start: { lean_object* x_1; @@ -9975,27 +9975,27 @@ x_1 = lean_mk_string(" field(s)"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__14() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__13; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__13; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__15() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__14; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__14; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__16() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__16() { _start: { lean_object* x_1; @@ -10003,27 +10003,27 @@ x_1 = lean_mk_string("invalid projection, index must be greater than 0"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__17() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__16; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__16; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__18() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__17; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__17; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__19() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__19() { _start: { lean_object* x_1; @@ -10031,27 +10031,27 @@ x_1 = lean_mk_string("invalid field notation, '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__20() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__19; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__19; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__20; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__20; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__22() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__22() { _start: { lean_object* x_1; @@ -10059,27 +10059,27 @@ x_1 = lean_mk_string("' is not a valid \"field\" because environment does not co return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__23() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__22; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__22; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__23; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__23; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__25() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__25() { _start: { lean_object* x_1; @@ -10087,7 +10087,7 @@ x_1 = lean_mk_string("getOp"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__26() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__26() { _start: { lean_object* x_1; @@ -10095,27 +10095,27 @@ x_1 = lean_mk_string("invalid [..] notation because environment does not contain return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__27() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__27() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__26; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__26; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__28() { +lean_object* _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__28() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__27; +x_1 = l___private_Lean_Elab_App_13__resolveLValAux___closed__27; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_App_13__resolveLValAux(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_13; @@ -10163,7 +10163,7 @@ lean_dec(x_15); lean_dec(x_14); lean_dec(x_3); lean_dec(x_2); -x_77 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__18; +x_77 = l___private_Lean_Elab_App_13__resolveLValAux___closed__18; x_78 = l_Lean_Elab_Term_throwError___rarg(x_1, x_77, x_5, x_6); x_79 = !lean_is_exclusive(x_78); if (x_79 == 0) @@ -10214,8 +10214,8 @@ lean_dec(x_25); lean_free_object(x_20); lean_dec(x_22); lean_dec(x_14); -x_30 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__9; -x_31 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_30, x_5, x_23); +x_30 = l___private_Lean_Elab_App_13__resolveLValAux___closed__9; +x_31 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_30, x_5, x_23); x_32 = !lean_is_exclusive(x_31); if (x_32 == 0) { @@ -10250,15 +10250,15 @@ x_37 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_37, 0, x_36); x_38 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_38, 0, x_37); -x_39 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__12; +x_39 = l___private_Lean_Elab_App_13__resolveLValAux___closed__12; x_40 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); -x_41 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__15; +x_41 = l___private_Lean_Elab_App_13__resolveLValAux___closed__15; x_42 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_42, 0, x_40); lean_ctor_set(x_42, 1, x_41); -x_43 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_42, x_5, x_23); +x_43 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_42, x_5, x_23); return x_43; } else @@ -10324,8 +10324,8 @@ lean_dec(x_53); lean_dec(x_51); lean_dec(x_48); lean_dec(x_14); -x_56 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__9; -x_57 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_56, x_5, x_49); +x_56 = l___private_Lean_Elab_App_13__resolveLValAux___closed__9; +x_57 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_56, x_5, x_49); x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); x_59 = lean_ctor_get(x_57, 1); @@ -10361,15 +10361,15 @@ x_63 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_63, 0, x_62); x_64 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_64, 0, x_63); -x_65 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__12; +x_65 = l___private_Lean_Elab_App_13__resolveLValAux___closed__12; x_66 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); -x_67 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__15; +x_67 = l___private_Lean_Elab_App_13__resolveLValAux___closed__15; x_68 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_68, 0, x_66); lean_ctor_set(x_68, 1, x_67); -x_69 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_68, x_5, x_49); +x_69 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_68, x_5, x_49); return x_69; } else @@ -10483,11 +10483,11 @@ x_108 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_108, 0, x_87); x_109 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_109, 0, x_108); -x_110 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_110 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_111 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_111, 0, x_110); lean_ctor_set(x_111, 1, x_109); -x_112 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_112 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_113 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_113, 0, x_111); lean_ctor_set(x_113, 1, x_112); @@ -10500,7 +10500,7 @@ x_116 = l_Lean_Elab_Term_mkConst___closed__4; x_117 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_117, 0, x_115); lean_ctor_set(x_117, 1, x_116); -x_118 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_117, x_5, x_103); +x_118 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_117, x_5, x_103); return x_118; } else @@ -10569,11 +10569,11 @@ x_128 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_128, 0, x_87); x_129 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_129, 0, x_128); -x_130 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_130 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_131 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_131, 0, x_130); lean_ctor_set(x_131, 1, x_129); -x_132 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_132 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_133 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_133, 0, x_131); lean_ctor_set(x_133, 1, x_132); @@ -10586,7 +10586,7 @@ x_136 = l_Lean_Elab_Term_mkConst___closed__4; x_137 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_137, 0, x_135); lean_ctor_set(x_137, 1, x_136); -x_138 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_137, x_5, x_103); +x_138 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_137, x_5, x_103); return x_138; } else @@ -10672,11 +10672,11 @@ x_149 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_149, 0, x_87); x_150 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_150, 0, x_149); -x_151 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_151 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_152 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_152, 0, x_151); lean_ctor_set(x_152, 1, x_150); -x_153 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_153 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_154 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_154, 0, x_152); lean_ctor_set(x_154, 1, x_153); @@ -10689,7 +10689,7 @@ x_157 = l_Lean_Elab_Term_mkConst___closed__4; x_158 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_158, 0, x_156); lean_ctor_set(x_158, 1, x_157); -x_159 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_158, x_5, x_144); +x_159 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_158, x_5, x_144); return x_159; } else @@ -10761,11 +10761,11 @@ x_171 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_171, 0, x_87); x_172 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_172, 0, x_171); -x_173 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_173 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_174 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_174, 0, x_173); lean_ctor_set(x_174, 1, x_172); -x_175 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_175 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_176 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_176, 0, x_174); lean_ctor_set(x_176, 1, x_175); @@ -10778,7 +10778,7 @@ x_179 = l_Lean_Elab_Term_mkConst___closed__4; x_180 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_180, 0, x_178); lean_ctor_set(x_180, 1, x_179); -x_181 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_180, x_5, x_144); +x_181 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_180, x_5, x_144); return x_181; } else @@ -10894,11 +10894,11 @@ x_205 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_205, 0, x_87); x_206 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_206, 0, x_205); -x_207 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_207 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_208 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_208, 0, x_207); lean_ctor_set(x_208, 1, x_206); -x_209 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_209 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_210 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_210, 0, x_208); lean_ctor_set(x_210, 1, x_209); @@ -10911,7 +10911,7 @@ x_213 = l_Lean_Elab_Term_mkConst___closed__4; x_214 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_214, 0, x_212); lean_ctor_set(x_214, 1, x_213); -x_215 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_214, x_5, x_200); +x_215 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_214, x_5, x_200); return x_215; } else @@ -10980,11 +10980,11 @@ x_225 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_225, 0, x_87); x_226 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_226, 0, x_225); -x_227 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_227 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_228 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_228, 0, x_227); lean_ctor_set(x_228, 1, x_226); -x_229 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_229 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_230 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_230, 0, x_228); lean_ctor_set(x_230, 1, x_229); @@ -10997,7 +10997,7 @@ x_233 = l_Lean_Elab_Term_mkConst___closed__4; x_234 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_234, 0, x_232); lean_ctor_set(x_234, 1, x_233); -x_235 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_234, x_5, x_200); +x_235 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_234, x_5, x_200); return x_235; } else @@ -11083,11 +11083,11 @@ x_246 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_246, 0, x_87); x_247 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_247, 0, x_246); -x_248 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_248 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_249 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_249, 0, x_248); lean_ctor_set(x_249, 1, x_247); -x_250 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_250 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_251 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_251, 0, x_249); lean_ctor_set(x_251, 1, x_250); @@ -11100,7 +11100,7 @@ x_254 = l_Lean_Elab_Term_mkConst___closed__4; x_255 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_255, 0, x_253); lean_ctor_set(x_255, 1, x_254); -x_256 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_255, x_5, x_241); +x_256 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_255, x_5, x_241); return x_256; } else @@ -11172,11 +11172,11 @@ x_268 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_268, 0, x_87); x_269 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_269, 0, x_268); -x_270 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_270 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_271 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_271, 0, x_270); lean_ctor_set(x_271, 1, x_269); -x_272 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_272 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_273 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_273, 0, x_271); lean_ctor_set(x_273, 1, x_272); @@ -11189,7 +11189,7 @@ x_276 = l_Lean_Elab_Term_mkConst___closed__4; x_277 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_277, 0, x_275); lean_ctor_set(x_277, 1, x_276); -x_278 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_277, x_5, x_241); +x_278 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_277, x_5, x_241); return x_278; } else @@ -11335,11 +11335,11 @@ x_306 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_306, 0, x_87); x_307 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_307, 0, x_306); -x_308 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_308 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_309 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_309, 0, x_308); lean_ctor_set(x_309, 1, x_307); -x_310 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_310 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_311 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_311, 0, x_309); lean_ctor_set(x_311, 1, x_310); @@ -11352,7 +11352,7 @@ x_314 = l_Lean_Elab_Term_mkConst___closed__4; x_315 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_315, 0, x_313); lean_ctor_set(x_315, 1, x_314); -x_316 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_315, x_5, x_300); +x_316 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_315, x_5, x_300); return x_316; } else @@ -11433,11 +11433,11 @@ x_328 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_328, 0, x_87); x_329 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_329, 0, x_328); -x_330 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_330 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_331 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_331, 0, x_330); lean_ctor_set(x_331, 1, x_329); -x_332 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_332 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_333 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_333, 0, x_331); lean_ctor_set(x_333, 1, x_332); @@ -11450,7 +11450,7 @@ x_336 = l_Lean_Elab_Term_mkConst___closed__4; x_337 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_337, 0, x_335); lean_ctor_set(x_337, 1, x_336); -x_338 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_337, x_5, x_300); +x_338 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_337, x_5, x_300); return x_338; } else @@ -11582,11 +11582,11 @@ x_362 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_362, 0, x_87); x_363 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_363, 0, x_362); -x_364 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_364 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_365 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_365, 0, x_364); lean_ctor_set(x_365, 1, x_363); -x_366 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_366 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_367 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_367, 0, x_365); lean_ctor_set(x_367, 1, x_366); @@ -11599,7 +11599,7 @@ x_370 = l_Lean_Elab_Term_mkConst___closed__4; x_371 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_371, 0, x_369); lean_ctor_set(x_371, 1, x_370); -x_372 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_371, x_5, x_356); +x_372 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_371, x_5, x_356); return x_372; } else @@ -11680,11 +11680,11 @@ x_384 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_384, 0, x_87); x_385 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_385, 0, x_384); -x_386 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21; +x_386 = l___private_Lean_Elab_App_13__resolveLValAux___closed__21; x_387 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_387, 0, x_386); lean_ctor_set(x_387, 1, x_385); -x_388 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24; +x_388 = l___private_Lean_Elab_App_13__resolveLValAux___closed__24; x_389 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_389, 0, x_387); lean_ctor_set(x_389, 1, x_388); @@ -11697,7 +11697,7 @@ x_392 = l_Lean_Elab_Term_mkConst___closed__4; x_393 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_393, 0, x_391); lean_ctor_set(x_393, 1, x_392); -x_394 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_393, x_5, x_356); +x_394 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_393, x_5, x_356); return x_394; } else @@ -11808,7 +11808,7 @@ if (x_408 == 0) lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; x_409 = lean_ctor_get(x_407, 0); x_410 = lean_ctor_get(x_407, 1); -x_411 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__25; +x_411 = l___private_Lean_Elab_App_13__resolveLValAux___closed__25; x_412 = lean_name_mk_string(x_405, x_411); lean_inc(x_412); x_413 = lean_environment_find(x_409, x_412); @@ -11819,7 +11819,7 @@ lean_free_object(x_407); lean_dec(x_406); x_414 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_414, 0, x_412); -x_415 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__28; +x_415 = l___private_Lean_Elab_App_13__resolveLValAux___closed__28; x_416 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_416, 0, x_415); lean_ctor_set(x_416, 1, x_414); @@ -11827,7 +11827,7 @@ x_417 = l_Lean_Elab_Term_mkConst___closed__4; x_418 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_418, 0, x_416); lean_ctor_set(x_418, 1, x_417); -x_419 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_418, x_5, x_410); +x_419 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_418, x_5, x_410); return x_419; } else @@ -11852,7 +11852,7 @@ x_422 = lean_ctor_get(x_407, 1); lean_inc(x_422); lean_inc(x_421); lean_dec(x_407); -x_423 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__25; +x_423 = l___private_Lean_Elab_App_13__resolveLValAux___closed__25; x_424 = lean_name_mk_string(x_405, x_423); lean_inc(x_424); x_425 = lean_environment_find(x_421, x_424); @@ -11862,7 +11862,7 @@ lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_dec(x_406); x_426 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_426, 0, x_424); -x_427 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__28; +x_427 = l___private_Lean_Elab_App_13__resolveLValAux___closed__28; x_428 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_428, 0, x_427); lean_ctor_set(x_428, 1, x_426); @@ -11870,7 +11870,7 @@ x_429 = l_Lean_Elab_Term_mkConst___closed__4; x_430 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_430, 0, x_428); lean_ctor_set(x_430, 1, x_429); -x_431 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_430, x_5, x_422); +x_431 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_430, x_5, x_422); return x_431; } else @@ -11907,31 +11907,31 @@ if (lean_obj_tag(x_4) == 2) { lean_object* x_8; lean_object* x_9; lean_dec(x_4); -x_8 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__6; -x_9 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_8, x_5, x_6); +x_8 = l___private_Lean_Elab_App_13__resolveLValAux___closed__6; +x_9 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_8, x_5, x_6); return x_9; } else { lean_object* x_10; lean_object* x_11; lean_dec(x_4); -x_10 = l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__3; -x_11 = l___private_Init_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_10, x_5, x_6); +x_10 = l___private_Lean_Elab_App_13__resolveLValAux___closed__3; +x_11 = l___private_Lean_Elab_App_12__throwLValError___rarg(x_1, x_2, x_3, x_10, x_5, x_6); return x_11; } } } } -lean_object* l___private_Init_Lean_Elab_App_13__resolveLValAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_App_13__resolveLValAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_App_13__resolveLValAux(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_App_13__resolveLValAux(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); return x_7; } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_App_14__resolveLValLoop___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_App_14__resolveLValLoop___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -11998,7 +11998,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_App_14__resolveLValLoop___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_App_14__resolveLValLoop___main(lean_object* x_1, 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; @@ -12023,7 +12023,7 @@ lean_inc(x_6); lean_inc(x_3); lean_inc(x_9); lean_inc(x_2); -x_13 = l___private_Init_Lean_Elab_App_13__resolveLValAux(x_1, x_2, x_9, x_3, x_6, x_12); +x_13 = l___private_Lean_Elab_App_13__resolveLValAux(x_1, x_2, x_9, x_3, x_6, x_12); if (lean_obj_tag(x_13) == 0) { lean_dec(x_9); @@ -12065,7 +12065,7 @@ x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); x_21 = lean_unsigned_to_nat(0u); -x_22 = l_Array_forMAux___main___at___private_Init_Lean_Elab_App_14__resolveLValLoop___main___spec__1(x_17, x_5, x_21, x_6, x_20); +x_22 = l_Array_forMAux___main___at___private_Lean_Elab_App_14__resolveLValLoop___main___spec__1(x_17, x_5, x_21, x_6, x_20); lean_dec(x_6); lean_dec(x_5); x_23 = !lean_is_exclusive(x_22); @@ -12222,43 +12222,43 @@ return x_46; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_App_14__resolveLValLoop___main___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* l_Array_forMAux___main___at___private_Lean_Elab_App_14__resolveLValLoop___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_forMAux___main___at___private_Init_Lean_Elab_App_14__resolveLValLoop___main___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_forMAux___main___at___private_Lean_Elab_App_14__resolveLValLoop___main___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Elab_App_14__resolveLValLoop___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_App_14__resolveLValLoop___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_App_14__resolveLValLoop___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_App_14__resolveLValLoop___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_App_14__resolveLValLoop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_App_14__resolveLValLoop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_App_14__resolveLValLoop___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_App_14__resolveLValLoop___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Elab_App_14__resolveLValLoop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_App_14__resolveLValLoop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_App_14__resolveLValLoop(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_App_14__resolveLValLoop(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_App_15__resolveLVal(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_App_15__resolveLVal(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; @@ -12274,7 +12274,7 @@ x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); x_9 = l_Array_empty___closed__1; -x_10 = l___private_Init_Lean_Elab_App_14__resolveLValLoop___main(x_1, x_2, x_3, x_7, x_9, x_4, x_8); +x_10 = l___private_Lean_Elab_App_14__resolveLValLoop___main(x_1, x_2, x_3, x_7, x_9, x_4, x_8); return x_10; } else @@ -12304,16 +12304,16 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Elab_App_15__resolveLVal___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_App_15__resolveLVal___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_App_15__resolveLVal(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_App_15__resolveLVal(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1() { _start: { lean_object* x_1; @@ -12321,17 +12321,17 @@ x_1 = lean_mk_string("self"); return x_1; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1; +x_2 = l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_3) == 0) @@ -12365,7 +12365,7 @@ lean_inc(x_12); lean_dec(x_10); x_13 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_13, 0, x_2); -x_14 = l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; +x_14 = l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; x_15 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_13); @@ -12376,7 +12376,7 @@ x_19 = l_Array_empty___closed__1; x_20 = 0; lean_inc(x_4); lean_inc(x_1); -x_21 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_11, x_17, x_19, x_18, x_20, x_4, x_12); +x_21 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_11, x_17, x_19, x_18, x_20, x_4, x_12); if (lean_obj_tag(x_21) == 0) { lean_object* x_22; lean_object* x_23; @@ -12445,7 +12445,7 @@ return x_32; } } } -lean_object* _init_l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_16__mkBaseProjections___closed__1() { _start: { lean_object* x_1; @@ -12453,27 +12453,27 @@ x_1 = lean_mk_string("failed to access field in parent structure"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_16__mkBaseProjections___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__1; +x_1 = l___private_Lean_Elab_App_16__mkBaseProjections___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__3() { +lean_object* _init_l___private_Lean_Elab_App_16__mkBaseProjections___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__2; +x_1 = l___private_Lean_Elab_App_16__mkBaseProjections___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_App_16__mkBaseProjections(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_App_16__mkBaseProjections(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; @@ -12488,7 +12488,7 @@ if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_dec(x_4); -x_11 = l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__3; +x_11 = l___private_Lean_Elab_App_16__mkBaseProjections___closed__3; x_12 = l_Lean_Elab_Term_throwError___rarg(x_1, x_11, x_5, x_9); lean_dec(x_1); return x_12; @@ -12499,21 +12499,21 @@ 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_14 = l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1(x_1, x_4, x_13, x_5, x_9); +x_14 = l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1(x_1, x_4, x_13, x_5, x_9); return x_14; } } } -lean_object* l___private_Init_Lean_Elab_App_16__mkBaseProjections___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_App_16__mkBaseProjections___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_App_16__mkBaseProjections(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_App_16__mkBaseProjections(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); return x_7; } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_17__addLValArg___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_17__addLValArg___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12555,7 +12555,7 @@ return x_13; } } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__1() { _start: { lean_object* x_1; @@ -12563,27 +12563,27 @@ x_1 = lean_mk_string("invalid field notation, function '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__1; +x_1 = l___private_Lean_Elab_App_17__addLValArg___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__2; +x_1 = l___private_Lean_Elab_App_17__addLValArg___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__4() { _start: { lean_object* x_1; @@ -12591,27 +12591,27 @@ x_1 = lean_mk_string("' does not have explicit argument with type ("); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__4; +x_1 = l___private_Lean_Elab_App_17__addLValArg___main___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__5; +x_1 = l___private_Lean_Elab_App_17__addLValArg___main___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__7() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__7() { _start: { lean_object* x_1; @@ -12619,27 +12619,27 @@ x_1 = lean_mk_string(" ...)"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__8() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__7; +x_1 = l___private_Lean_Elab_App_17__addLValArg___main___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__9() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__8; +x_1 = l___private_Lean_Elab_App_17__addLValArg___main___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__10() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__10() { _start: { lean_object* x_1; @@ -12647,27 +12647,27 @@ x_1 = lean_mk_string("invalid field notation, insufficient number of arguments f return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__11() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__10; +x_1 = l___private_Lean_Elab_App_17__addLValArg___main___closed__10; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__12() { +lean_object* _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__11; +x_1 = l___private_Lean_Elab_App_17__addLValArg___main___closed__11; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_17__addLValArg___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_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; @@ -12689,7 +12689,7 @@ else { lean_object* x_30; lean_object* x_31; x_30 = lean_unsigned_to_nat(0u); -x_31 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_17__addLValArg___main___spec__1(x_23, x_7, x_30); +x_31 = l_Array_findIdxAux___main___at___private_Lean_Elab_App_17__addLValArg___main___spec__1(x_23, x_7, x_30); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; uint8_t x_33; @@ -12712,7 +12712,7 @@ lean_dec(x_4); lean_dec(x_2); x_36 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_36, 0, x_3); -x_37 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__12; +x_37 = l___private_Lean_Elab_App_17__addLValArg___main___closed__12; x_38 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); @@ -12782,11 +12782,11 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean lean_dec(x_11); x_12 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_12, 0, x_3); -x_13 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__3; +x_13 = l___private_Lean_Elab_App_17__addLValArg___main___closed__3; x_14 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_12); -x_15 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__6; +x_15 = l___private_Lean_Elab_App_17__addLValArg___main___closed__6; x_16 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_16, 0, x_14); lean_ctor_set(x_16, 1, x_15); @@ -12795,7 +12795,7 @@ lean_ctor_set(x_17, 0, x_2); x_18 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_18, 0, x_16); lean_ctor_set(x_18, 1, x_17); -x_19 = l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__9; +x_19 = l___private_Lean_Elab_App_17__addLValArg___main___closed__9; x_20 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); @@ -12804,45 +12804,45 @@ return x_21; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_17__addLValArg___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_App_17__addLValArg___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_App_17__addLValArg___main___spec__1(x_1, x_2, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Elab_App_17__addLValArg___main___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_17__addLValArg___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Elab_App_17__addLValArg___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Elab_App_17__addLValArg___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_8); lean_dec(x_1); return x_11; } } -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_17__addLValArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Elab_App_17__addLValArg___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Elab_App_17__addLValArg___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_11; } } -lean_object* l___private_Init_Lean_Elab_App_17__addLValArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_17__addLValArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Elab_App_17__addLValArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Elab_App_17__addLValArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_8); lean_dec(x_1); return x_11; } } -lean_object* _init_l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__1() { _start: { lean_object* x_1; @@ -12850,23 +12850,23 @@ x_1 = lean_mk_string("idx"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_18__elabAppLValsAux___main___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_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; +x_2 = l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { if (lean_obj_tag(x_7) == 0) { lean_object* x_10; -x_10 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_6, x_2, x_3, x_4, x_5, x_8, x_9); +x_10 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_6, x_2, x_3, x_4, x_5, x_8, x_9); return x_10; } else @@ -12879,7 +12879,7 @@ lean_inc(x_12); lean_dec(x_7); lean_inc(x_8); lean_inc(x_6); -x_13 = l___private_Init_Lean_Elab_App_15__resolveLVal(x_1, x_6, x_11, x_8, x_9); +x_13 = l___private_Lean_Elab_App_15__resolveLVal(x_1, x_6, x_11, x_8, x_9); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -12901,7 +12901,7 @@ lean_inc(x_18); lean_dec(x_14); lean_inc(x_8); lean_inc(x_1); -x_19 = l___private_Init_Lean_Elab_App_16__mkBaseProjections(x_1, x_16, x_17, x_6, x_8, x_15); +x_19 = l___private_Lean_Elab_App_16__mkBaseProjections(x_1, x_16, x_17, x_6, x_8, x_15); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; @@ -12929,7 +12929,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; x_28 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_28, 0, x_20); -x_29 = l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; +x_29 = l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; x_30 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -12940,7 +12940,7 @@ x_34 = l_Array_empty___closed__1; x_35 = 0; lean_inc(x_8); lean_inc(x_1); -x_36 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_25, x_32, x_34, x_33, x_35, x_8, x_26); +x_36 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_25, x_32, x_34, x_33, x_35, x_8, x_26); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; @@ -12989,7 +12989,7 @@ lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_dec(x_12); x_44 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_44, 0, x_20); -x_45 = l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; +x_45 = l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -13003,7 +13003,7 @@ lean_inc(x_48); x_49 = lean_ctor_get(x_47, 1); lean_inc(x_49); lean_dec(x_47); -x_50 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_25, x_48, x_3, x_4, x_5, x_8, x_49); +x_50 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_25, x_48, x_3, x_4, x_5, x_8, x_49); return x_50; } else @@ -13151,7 +13151,7 @@ x_80 = l_Array_empty___closed__1; x_81 = 0; lean_inc(x_8); lean_inc(x_1); -x_82 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_73, x_80, x_78, x_79, x_81, x_8, x_74); +x_82 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_73, x_80, x_78, x_79, x_81, x_8, x_74); if (lean_obj_tag(x_82) == 0) { lean_object* x_83; lean_object* x_84; @@ -13212,7 +13212,7 @@ lean_dec(x_90); x_93 = lean_unsigned_to_nat(0u); lean_inc(x_8); lean_inc(x_2); -x_94 = l___private_Init_Lean_Elab_App_17__addLValArg___main(x_1, x_69, x_70, x_6, x_3, x_93, x_2, x_91, x_8, x_92); +x_94 = l___private_Lean_Elab_App_17__addLValArg___main(x_1, x_69, x_70, x_6, x_3, x_93, x_2, x_91, x_8, x_92); lean_dec(x_91); if (lean_obj_tag(x_94) == 0) { @@ -13222,7 +13222,7 @@ lean_inc(x_95); x_96 = lean_ctor_get(x_94, 1); lean_inc(x_96); lean_dec(x_94); -x_97 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_73, x_2, x_95, x_4, x_5, x_8, x_96); +x_97 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_73, x_2, x_95, x_4, x_5, x_8, x_96); return x_97; } else @@ -13346,7 +13346,7 @@ x_119 = l_Array_empty___closed__1; x_120 = 0; lean_inc(x_8); lean_inc(x_1); -x_121 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_113, x_119, x_117, x_118, x_120, x_8, x_110); +x_121 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_113, x_119, x_117, x_118, x_120, x_8, x_110); if (lean_obj_tag(x_121) == 0) { lean_object* x_122; lean_object* x_123; @@ -13407,7 +13407,7 @@ lean_dec(x_129); x_132 = lean_unsigned_to_nat(0u); lean_inc(x_8); lean_inc(x_2); -x_133 = l___private_Init_Lean_Elab_App_17__addLValArg___main(x_1, x_111, x_112, x_6, x_3, x_132, x_2, x_130, x_8, x_131); +x_133 = l___private_Lean_Elab_App_17__addLValArg___main(x_1, x_111, x_112, x_6, x_3, x_132, x_2, x_130, x_8, x_131); lean_dec(x_130); if (lean_obj_tag(x_133) == 0) { @@ -13417,7 +13417,7 @@ lean_inc(x_134); x_135 = lean_ctor_get(x_133, 1); lean_inc(x_135); lean_dec(x_133); -x_136 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_113, x_2, x_134, x_4, x_5, x_8, x_135); +x_136 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_113, x_2, x_134, x_4, x_5, x_8, x_135); return x_136; } else @@ -13509,13 +13509,13 @@ if (x_152 == 0) lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; lean_object* x_165; x_153 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_153, 0, x_6); -x_154 = l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; +x_154 = l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; x_155 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_155, 0, x_154); lean_ctor_set(x_155, 1, x_153); x_156 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_156, 0, x_147); -x_157 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; +x_157 = l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; x_158 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_156); @@ -13527,7 +13527,7 @@ x_163 = l_Array_empty___closed__1; x_164 = 0; lean_inc(x_8); lean_inc(x_1); -x_165 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_150, x_161, x_163, x_162, x_164, x_8, x_151); +x_165 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_150, x_161, x_163, x_162, x_164, x_8, x_151); if (lean_obj_tag(x_165) == 0) { lean_object* x_166; lean_object* x_167; @@ -13576,7 +13576,7 @@ lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_dec(x_12); x_173 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_173, 0, x_6); -x_174 = l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; +x_174 = l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2; x_175 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_175, 0, x_174); lean_ctor_set(x_175, 1, x_173); @@ -13592,7 +13592,7 @@ lean_inc(x_178); lean_dec(x_176); x_179 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_179, 0, x_147); -x_180 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; +x_180 = l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; x_181 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_181, 0, x_180); lean_ctor_set(x_181, 1, x_179); @@ -13606,7 +13606,7 @@ lean_inc(x_183); x_184 = lean_ctor_get(x_182, 1); lean_inc(x_184); lean_dec(x_182); -x_185 = l___private_Init_Lean_Elab_App_11__elabAppArgs(x_1, x_150, x_183, x_3, x_4, x_5, x_8, x_184); +x_185 = l___private_Lean_Elab_App_11__elabAppArgs(x_1, x_150, x_183, x_3, x_4, x_5, x_8, x_184); return x_185; } else @@ -13732,35 +13732,35 @@ return x_201; } } } -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_5); lean_dec(x_5); -x_11 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main(x_1, x_2, x_3, x_4, x_10, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Elab_App_18__elabAppLValsAux___main(x_1, x_2, x_3, x_4, x_10, x_6, x_7, x_8, x_9); return x_11; } } -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Elab_App_18__elabAppLValsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_5); lean_dec(x_5); -x_11 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux(x_1, x_2, x_3, x_4, x_10, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Elab_App_18__elabAppLValsAux(x_1, x_2, x_3, x_4, x_10, x_6, x_7, x_8, x_9); return x_11; } } -lean_object* _init_l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_19__elabAppLVals___closed__1() { _start: { lean_object* x_1; @@ -13768,27 +13768,27 @@ x_1 = lean_mk_string("invalid use of field notation with `@` modifier"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_19__elabAppLVals___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__1; +x_1 = l___private_Lean_Elab_App_19__elabAppLVals___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__3() { +lean_object* _init_l___private_Lean_Elab_App_19__elabAppLVals___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__2; +x_1 = l___private_Lean_Elab_App_19__elabAppLVals___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_App_19__elabAppLVals(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_App_19__elabAppLVals(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; @@ -13798,7 +13798,7 @@ if (x_10 == 0) if (x_7 == 0) { lean_object* x_11; -x_11 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main(x_1, x_4, x_5, x_6, x_7, x_2, x_3, x_8, x_9); +x_11 = l___private_Lean_Elab_App_18__elabAppLValsAux___main(x_1, x_4, x_5, x_6, x_7, x_2, x_3, x_8, x_9); return x_11; } else @@ -13809,7 +13809,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_12 = l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__3; +x_12 = l___private_Lean_Elab_App_19__elabAppLVals___closed__3; x_13 = l_Lean_Elab_Term_throwError___rarg(x_1, x_12, x_8, x_9); lean_dec(x_1); x_14 = !lean_is_exclusive(x_13); @@ -13835,18 +13835,18 @@ return x_17; else { lean_object* x_18; -x_18 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main(x_1, x_4, x_5, x_6, x_7, x_2, x_3, x_8, x_9); +x_18 = l___private_Lean_Elab_App_18__elabAppLValsAux___main(x_1, x_4, x_5, x_6, x_7, x_2, x_3, x_8, x_9); return x_18; } } } -lean_object* l___private_Init_Lean_Elab_App_19__elabAppLVals___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_App_19__elabAppLVals___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_7); lean_dec(x_7); -x_11 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_8, x_9); +x_11 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_8, x_9); return x_11; } } @@ -13958,7 +13958,7 @@ lean_dec(x_1); return x_4; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -13978,7 +13978,7 @@ x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); x_6 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_6, 0, x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__1(x_5); +x_7 = l_List_map___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -13993,7 +13993,7 @@ lean_inc(x_8); lean_dec(x_1); x_10 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_10, 0, x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__1(x_9); +x_11 = l_List_map___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -14002,7 +14002,7 @@ return x_12; } } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_List_foldlM___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { if (lean_obj_tag(x_8) == 0) @@ -14032,7 +14032,7 @@ lean_inc(x_14); x_15 = lean_ctor_get(x_12, 1); lean_inc(x_15); lean_dec(x_12); -x_16 = l_List_map___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__1(x_15); +x_16 = l_List_map___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__1(x_15); lean_inc(x_2); x_17 = l_List_append___rarg(x_16, x_2); lean_inc(x_10); @@ -14041,7 +14041,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_18 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_14, x_17, x_3, x_4, x_5, x_6, x_9, x_10); +x_18 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_14, x_17, x_3, x_4, x_5, x_6, x_9, x_10); if (lean_obj_tag(x_18) == 0) { uint8_t x_19; @@ -14187,7 +14187,7 @@ return x_46; } } } -lean_object* l___private_Init_Lean_Elab_App_20__elabAppFnId(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Elab_App_20__elabAppFnId(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { if (lean_obj_tag(x_2) == 3) @@ -14208,7 +14208,7 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec(x_14); -x_17 = l_List_foldlM___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__2(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_15, x_10, x_16); +x_17 = l_List_foldlM___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__2(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_15, x_10, x_16); return x_17; } else @@ -14258,27 +14258,27 @@ return x_22; } } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___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* l_List_foldlM___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l_List_foldlM___main___at___private_Init_Lean_Elab_App_20__elabAppFnId___spec__2(x_1, x_2, x_3, x_4, x_5, x_11, x_7, x_8, x_9, x_10); +x_12 = l_List_foldlM___main___at___private_Lean_Elab_App_20__elabAppFnId___spec__2(x_1, x_2, x_3, x_4, x_5, x_11, x_7, x_8, x_9, x_10); return x_12; } } -lean_object* l___private_Init_Lean_Elab_App_20__elabAppFnId___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Elab_App_20__elabAppFnId___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_8); lean_dec(x_8); -x_13 = l___private_Init_Lean_Elab_App_20__elabAppFnId(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_12, x_9, x_10, x_11); +x_13 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_12, x_9, x_10, x_11); return x_13; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -14300,7 +14300,7 @@ x_6 = l_System_FilePath_dirName___closed__1; x_7 = l_Lean_Name_toStringWithSep___main(x_6, x_4); x_8 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_8, 0, x_7); -x_9 = l_List_map___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__1(x_5); +x_9 = l_List_map___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__1(x_5); lean_ctor_set(x_1, 1, x_9); lean_ctor_set(x_1, 0, x_8); return x_1; @@ -14317,7 +14317,7 @@ x_12 = l_System_FilePath_dirName___closed__1; x_13 = l_Lean_Name_toStringWithSep___main(x_12, x_10); x_14 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_14, 0, x_13); -x_15 = l_List_map___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__1(x_11); +x_15 = l_List_map___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__1(x_11); x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_14); lean_ctor_set(x_16, 1, x_15); @@ -14326,7 +14326,7 @@ return x_16; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, 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* l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -14361,7 +14361,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_19 = l___private_Init_Lean_Elab_App_21__elabAppFn___main(x_1, x_16, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12); +x_19 = l___private_Lean_Elab_App_21__elabAppFn___main(x_1, x_16, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; @@ -14407,7 +14407,7 @@ return x_26; } } } -lean_object* l___private_Init_Lean_Elab_App_21__elabAppFn___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_21__elabAppFn___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -14497,7 +14497,7 @@ if (x_22 == 0) lean_object* x_23; lean_object* x_24; lean_object* x_25; x_23 = lean_ctor_get(x_21, 0); x_24 = lean_ctor_get(x_21, 1); -x_25 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_23, x_3, x_4, x_5, x_6, x_7, x_9, x_24); +x_25 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_23, x_3, x_4, x_5, x_6, x_7, x_9, x_24); if (lean_obj_tag(x_25) == 0) { uint8_t x_26; @@ -14637,7 +14637,7 @@ x_51 = lean_ctor_get(x_21, 1); lean_inc(x_51); lean_inc(x_50); lean_dec(x_21); -x_52 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_50, x_3, x_4, x_5, x_6, x_7, x_9, x_51); +x_52 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_50, x_3, x_4, x_5, x_6, x_7, x_9, x_51); if (lean_obj_tag(x_52) == 0) { lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; @@ -14889,7 +14889,7 @@ if (x_99 == 0) lean_object* x_100; lean_object* x_101; lean_object* x_102; x_100 = lean_ctor_get(x_98, 0); x_101 = lean_ctor_get(x_98, 1); -x_102 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_100, x_3, x_4, x_5, x_6, x_7, x_9, x_101); +x_102 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_100, x_3, x_4, x_5, x_6, x_7, x_9, x_101); if (lean_obj_tag(x_102) == 0) { uint8_t x_103; @@ -15029,7 +15029,7 @@ x_128 = lean_ctor_get(x_98, 1); lean_inc(x_128); lean_inc(x_127); lean_dec(x_98); -x_129 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_127, x_3, x_4, x_5, x_6, x_7, x_9, x_128); +x_129 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_127, x_3, x_4, x_5, x_6, x_7, x_9, x_128); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; @@ -15315,7 +15315,7 @@ if (x_183 == 0) lean_object* x_184; lean_object* x_185; lean_object* x_186; x_184 = lean_ctor_get(x_182, 0); x_185 = lean_ctor_get(x_182, 1); -x_186 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_184, x_3, x_4, x_5, x_6, x_7, x_9, x_185); +x_186 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_184, x_3, x_4, x_5, x_6, x_7, x_9, x_185); if (lean_obj_tag(x_186) == 0) { uint8_t x_187; @@ -15455,7 +15455,7 @@ x_212 = lean_ctor_get(x_182, 1); lean_inc(x_212); lean_inc(x_211); lean_dec(x_182); -x_213 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_211, x_3, x_4, x_5, x_6, x_7, x_9, x_212); +x_213 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_211, x_3, x_4, x_5, x_6, x_7, x_9, x_212); if (lean_obj_tag(x_213) == 0) { lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; @@ -15706,7 +15706,7 @@ lean_inc(x_260); x_261 = lean_ctor_get(x_259, 1); lean_inc(x_261); lean_dec(x_259); -x_262 = l___private_Init_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_260, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_261); +x_262 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_260, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_261); return x_262; } else @@ -15745,7 +15745,7 @@ else lean_object* x_267; lean_object* x_268; lean_dec(x_255); x_267 = lean_box(0); -x_268 = l___private_Init_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_267, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_268 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_177, x_267, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_268; } } @@ -15833,7 +15833,7 @@ if (x_304 == 0) lean_object* x_305; lean_object* x_306; lean_object* x_307; x_305 = lean_ctor_get(x_303, 0); x_306 = lean_ctor_get(x_303, 1); -x_307 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_305, x_3, x_4, x_5, x_6, x_7, x_9, x_306); +x_307 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_305, x_3, x_4, x_5, x_6, x_7, x_9, x_306); if (lean_obj_tag(x_307) == 0) { uint8_t x_308; @@ -15973,7 +15973,7 @@ x_333 = lean_ctor_get(x_303, 1); lean_inc(x_333); lean_inc(x_332); lean_dec(x_303); -x_334 = l___private_Init_Lean_Elab_App_19__elabAppLVals(x_1, x_332, x_3, x_4, x_5, x_6, x_7, x_9, x_333); +x_334 = l___private_Lean_Elab_App_19__elabAppLVals(x_1, x_332, x_3, x_4, x_5, x_6, x_7, x_9, x_333); if (lean_obj_tag(x_334) == 0) { lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; @@ -16208,7 +16208,7 @@ lean_dec(x_296); x_375 = l_Lean_Name_eraseMacroScopes(x_374); lean_dec(x_374); x_376 = l_Lean_Name_components(x_375); -x_377 = l_List_map___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__1(x_376); +x_377 = l_List_map___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__1(x_376); x_378 = l_List_append___rarg(x_377, x_3); x_2 = x_294; x_3 = x_378; @@ -16261,7 +16261,7 @@ else lean_object* x_400; lean_object* x_401; lean_object* x_402; x_400 = l_Lean_Syntax_getArgs(x_2); x_401 = lean_unsigned_to_nat(0u); -x_402 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_400, x_401, x_8, x_9, x_10); +x_402 = l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_400, x_401, x_8, x_9, x_10); lean_dec(x_400); lean_dec(x_2); return x_402; @@ -16271,52 +16271,52 @@ else { lean_object* x_403; lean_object* x_404; x_403 = lean_box(0); -x_404 = l___private_Init_Lean_Elab_App_20__elabAppFnId(x_1, x_2, x_403, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_404 = l___private_Lean_Elab_App_20__elabAppFnId(x_1, x_2, x_403, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_404; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_7); lean_dec(x_7); -x_14 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_21__elabAppFn___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_13, x_8, x_9, x_10, x_11, x_12); +x_14 = l_Array_iterateMAux___main___at___private_Lean_Elab_App_21__elabAppFn___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_13, x_8, x_9, x_10, x_11, x_12); lean_dec(x_8); lean_dec(x_2); return x_14; } } -lean_object* l___private_Init_Lean_Elab_App_21__elabAppFn___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_21__elabAppFn___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_7); lean_dec(x_7); -x_12 = l___private_Init_Lean_Elab_App_21__elabAppFn___main(x_1, x_2, x_3, x_4, x_5, x_6, x_11, x_8, x_9, x_10); +x_12 = l___private_Lean_Elab_App_21__elabAppFn___main(x_1, x_2, x_3, x_4, x_5, x_6, x_11, x_8, x_9, x_10); return x_12; } } -lean_object* l___private_Init_Lean_Elab_App_21__elabAppFn(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_21__elabAppFn(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Elab_App_21__elabAppFn___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Elab_App_21__elabAppFn___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_11; } } -lean_object* l___private_Init_Lean_Elab_App_21__elabAppFn___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_21__elabAppFn___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_7); lean_dec(x_7); -x_12 = l___private_Init_Lean_Elab_App_21__elabAppFn(x_1, x_2, x_3, x_4, x_5, x_6, x_11, x_8, x_9, x_10); +x_12 = l___private_Lean_Elab_App_21__elabAppFn(x_1, x_2, x_3, x_4, x_5, x_6, x_11, x_8, x_9, x_10); return x_12; } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Elab_App_22__getSuccess___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_filterAux___main___at___private_Lean_Elab_App_22__getSuccess___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -16380,16 +16380,16 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_App_22__getSuccess(lean_object* x_1) { +lean_object* l___private_Lean_Elab_App_22__getSuccess(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_filterAux___main___at___private_Init_Lean_Elab_App_22__getSuccess___spec__1(x_1, x_2, x_2); +x_3 = l_Array_filterAux___main___at___private_Lean_Elab_App_22__getSuccess___spec__1(x_1, x_2, x_2); return x_3; } } -lean_object* l_Lean_Elab_getPosition___at___private_Init_Lean_Elab_App_23__toMessageData___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Elab_getPosition___at___private_Lean_Elab_App_23__toMessageData___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -16425,17 +16425,17 @@ return x_11; } } } -lean_object* _init_l___private_Init_Lean_Elab_App_23__toMessageData___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_23__toMessageData___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Syntax_6__formatInfo___closed__1; +x_1 = l___private_Lean_Syntax_6__formatInfo___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_App_23__toMessageData(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_App_23__toMessageData(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; @@ -16447,7 +16447,7 @@ lean_inc(x_7); lean_dec(x_5); x_8 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_8, 0, x_6); -x_9 = l_Lean_Elab_getPosition___at___private_Init_Lean_Elab_App_23__toMessageData___spec__1(x_8, x_3, x_7); +x_9 = l_Lean_Elab_getPosition___at___private_Lean_Elab_App_23__toMessageData___spec__1(x_8, x_3, x_7); x_10 = !lean_is_exclusive(x_9); if (x_10 == 0) { @@ -16467,7 +16467,7 @@ x_16 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_16, 0, x_15); x_17 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_17, 0, x_16); -x_18 = l___private_Init_Lean_Elab_App_23__toMessageData___closed__1; +x_18 = l___private_Lean_Elab_App_23__toMessageData___closed__1; x_19 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); @@ -16528,7 +16528,7 @@ x_36 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_36, 0, x_35); x_37 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_37, 0, x_36); -x_38 = l___private_Init_Lean_Elab_App_23__toMessageData___closed__1; +x_38 = l___private_Lean_Elab_App_23__toMessageData___closed__1; x_39 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_39, 0, x_37); lean_ctor_set(x_39, 1, x_38); @@ -16573,16 +16573,16 @@ return x_51; } } } -lean_object* l___private_Init_Lean_Elab_App_23__toMessageData___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_App_23__toMessageData___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___private_Init_Lean_Elab_App_23__toMessageData(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_App_23__toMessageData(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_24__mergeFailures___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_App_24__mergeFailures___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -16611,7 +16611,7 @@ if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_dec(x_13); -x_14 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_14 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_15 = l_unreachable_x21___rarg(x_14); lean_inc(x_4); x_16 = lean_apply_2(x_15, x_4, x_5); @@ -16666,7 +16666,7 @@ x_28 = lean_ctor_get(x_13, 0); lean_inc(x_28); lean_dec(x_13); lean_inc(x_4); -x_29 = l___private_Init_Lean_Elab_App_23__toMessageData(x_28, x_1, x_4, x_5); +x_29 = l___private_Lean_Elab_App_23__toMessageData(x_28, x_1, x_4, x_5); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_ctor_get(x_29, 1); @@ -16685,7 +16685,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__1() { _start: { lean_object* x_1; @@ -16693,34 +16693,34 @@ x_1 = lean_mk_string("overloaded, errors "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__1; +x_1 = l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__3() { +lean_object* _init_l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__2; +x_1 = l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_App_24__mergeFailures___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_App_24__mergeFailures___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 = x_1; x_6 = lean_unsigned_to_nat(0u); lean_inc(x_2); -x_7 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_24__mergeFailures___spec__1___boxed), 5, 3); +x_7 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_App_24__mergeFailures___spec__1___boxed), 5, 3); lean_closure_set(x_7, 0, x_2); lean_closure_set(x_7, 1, x_6); lean_closure_set(x_7, 2, x_5); @@ -16737,7 +16737,7 @@ lean_inc(x_11); lean_dec(x_9); x_12 = l_Lean_MessageData_ofArray(x_10); lean_dec(x_10); -x_13 = l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__3; +x_13 = l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__3; x_14 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_12); @@ -16771,24 +16771,24 @@ return x_19; } } } -lean_object* l___private_Init_Lean_Elab_App_24__mergeFailures(lean_object* x_1) { +lean_object* l___private_Lean_Elab_App_24__mergeFailures(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_App_24__mergeFailures___rarg), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_24__mergeFailures___rarg), 4, 0); return x_2; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_24__mergeFailures___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* l_Array_umapMAux___main___at___private_Lean_Elab_App_24__mergeFailures___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_24__mergeFailures___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_umapMAux___main___at___private_Lean_Elab_App_24__mergeFailures___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_25__elabAppAux___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_App_25__elabAppAux___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_6; @@ -16864,7 +16864,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_App_25__elabAppAux___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_25__elabAppAux___closed__1() { _start: { lean_object* x_1; @@ -16872,27 +16872,27 @@ x_1 = lean_mk_string("ambiguous, possible interpretations "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_App_25__elabAppAux___closed__2() { +lean_object* _init_l___private_Lean_Elab_App_25__elabAppAux___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_25__elabAppAux___closed__1; +x_1 = l___private_Lean_Elab_App_25__elabAppAux___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_App_25__elabAppAux___closed__3() { +lean_object* _init_l___private_Lean_Elab_App_25__elabAppAux___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_25__elabAppAux___closed__2; +x_1 = l___private_Lean_Elab_App_25__elabAppAux___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_App_25__elabAppAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_App_25__elabAppAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; @@ -16901,7 +16901,7 @@ x_9 = 0; x_10 = l_Array_empty___closed__1; lean_inc(x_6); lean_inc(x_2); -x_11 = l___private_Init_Lean_Elab_App_21__elabAppFn___main(x_1, x_2, x_8, x_3, x_4, x_5, x_9, x_10, x_6, x_7); +x_11 = l___private_Lean_Elab_App_21__elabAppFn___main(x_1, x_2, x_8, x_3, x_4, x_5, x_9, x_10, x_6, x_7); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -16919,7 +16919,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; x_17 = lean_unsigned_to_nat(0u); lean_inc(x_12); -x_18 = l_Array_filterAux___main___at___private_Init_Lean_Elab_App_22__getSuccess___spec__1(x_12, x_17, x_17); +x_18 = l_Array_filterAux___main___at___private_Lean_Elab_App_22__getSuccess___spec__1(x_12, x_17, x_17); x_19 = lean_array_get_size(x_18); x_20 = lean_nat_dec_eq(x_19, x_15); if (x_20 == 0) @@ -16931,7 +16931,7 @@ if (x_21 == 0) { lean_object* x_22; lean_dec(x_18); -x_22 = l___private_Init_Lean_Elab_App_24__mergeFailures___rarg(x_12, x_2, x_6, x_13); +x_22 = l___private_Lean_Elab_App_24__mergeFailures___rarg(x_12, x_2, x_6, x_13); return x_22; } else @@ -16951,11 +16951,11 @@ x_28 = lean_ctor_get(x_26, 1); lean_inc(x_28); lean_dec(x_26); x_29 = x_18; -x_30 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_App_25__elabAppAux___spec__1(x_24, x_27, x_17, x_29); +x_30 = l_Array_umapMAux___main___at___private_Lean_Elab_App_25__elabAppAux___spec__1(x_24, x_27, x_17, x_29); x_31 = x_30; x_32 = l_Lean_MessageData_ofArray(x_31); lean_dec(x_31); -x_33 = l___private_Init_Lean_Elab_App_25__elabAppAux___closed__3; +x_33 = l___private_Lean_Elab_App_25__elabAppAux___closed__3; x_34 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -17019,7 +17019,7 @@ return x_46; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_26__expandApp___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_App_26__expandApp___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -17215,7 +17215,7 @@ return x_61; } } } -lean_object* _init_l___private_Init_Lean_Elab_App_26__expandApp___closed__1() { +lean_object* _init_l___private_Lean_Elab_App_26__expandApp___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -17226,7 +17226,7 @@ lean_ctor_set(x_2, 1, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_App_26__expandApp(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_App_26__expandApp(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -17236,8 +17236,8 @@ x_6 = lean_unsigned_to_nat(1u); x_7 = l_Lean_Syntax_getArg(x_1, x_6); x_8 = l_Lean_Syntax_getArgs(x_7); lean_dec(x_7); -x_9 = l___private_Init_Lean_Elab_App_26__expandApp___closed__1; -x_10 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_26__expandApp___spec__1(x_1, x_8, x_4, x_9, x_2, x_3); +x_9 = l___private_Lean_Elab_App_26__expandApp___closed__1; +x_10 = l_Array_iterateMAux___main___at___private_Lean_Elab_App_26__expandApp___spec__1(x_1, x_8, x_4, x_9, x_2, x_3); lean_dec(x_8); if (lean_obj_tag(x_10) == 0) { @@ -17295,21 +17295,21 @@ return x_21; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_App_26__expandApp___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_App_26__expandApp___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_iterateMAux___main___at___private_Init_Lean_Elab_App_26__expandApp___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Elab_App_26__expandApp___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Elab_App_26__expandApp___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_App_26__expandApp___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_App_26__expandApp(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_App_26__expandApp(x_1, x_2, x_3); lean_dec(x_1); return x_4; } @@ -17319,7 +17319,7 @@ _start: { lean_object* x_5; lean_inc(x_3); -x_5 = l___private_Init_Lean_Elab_App_26__expandApp(x_1, x_3, x_4); +x_5 = l___private_Lean_Elab_App_26__expandApp(x_1, x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -17338,7 +17338,7 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_7, 1); lean_inc(x_11); lean_dec(x_7); -x_12 = l___private_Init_Lean_Elab_App_25__elabAppAux(x_1, x_9, x_10, x_11, x_2, x_3, x_8); +x_12 = l___private_Lean_Elab_App_25__elabAppAux(x_1, x_9, x_10, x_11, x_2, x_3, x_8); return x_12; } else @@ -17393,7 +17393,7 @@ _start: lean_object* x_5; lean_object* x_6; x_5 = l_Array_empty___closed__1; lean_inc(x_1); -x_6 = l___private_Init_Lean_Elab_App_25__elabAppAux(x_1, x_1, x_5, x_5, x_2, x_3, x_4); +x_6 = l___private_Lean_Elab_App_25__elabAppAux(x_1, x_1, x_5, x_5, x_2, x_3, x_4); return x_6; } } @@ -17855,11 +17855,11 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_App_27__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Elab_App_27__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__1; +x_2 = l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -17911,21 +17911,21 @@ return x_13; } } } -lean_object* initialize_Init_Lean_Util_FindMVar(lean_object*); -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); -lean_object* initialize_Init_Lean_Elab_Binders(lean_object*); +lean_object* initialize_Lean_Util_FindMVar(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Elab_Binders(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_App(lean_object* w) { +lean_object* initialize_Lean_Elab_App(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Util_FindMVar(lean_io_mk_world()); +res = initialize_Lean_Util_FindMVar(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Binders(lean_io_mk_world()); +res = initialize_Lean_Elab_Binders(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_Arg_inhabited___closed__1 = _init_l_Lean_Elab_Term_Arg_inhabited___closed__1(); @@ -17948,190 +17948,190 @@ l_Lean_Elab_Term_addNamedArg___closed__5 = _init_l_Lean_Elab_Term_addNamedArg___ lean_mark_persistent(l_Lean_Elab_Term_addNamedArg___closed__5); l_Lean_Elab_Term_addNamedArg___closed__6 = _init_l_Lean_Elab_Term_addNamedArg___closed__6(); lean_mark_persistent(l_Lean_Elab_Term_addNamedArg___closed__6); -l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__1 = _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__1); -l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__2 = _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__2); -l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__3 = _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__3); -l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__4 = _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__4); -l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__5 = _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__5); -l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__6 = _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__6); -l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__7 = _init_l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_4__tryCoeFun___closed__7); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__1 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__1); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__2 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__2); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__3); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__4 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__4); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__5 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__5); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__6); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__7 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__7); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__8 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__8); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__9); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__10 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__10); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__11 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__11); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__12); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__13 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__13); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__14 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__14); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__15); -l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16 = _init_l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_10__elabAppArgsAux___main___closed__16); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__1 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__1); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__2 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__2); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__3 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__3); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__4 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__4); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__5 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__5); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__6 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__6); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__7 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__7); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__8 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__8); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__9 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__9); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__10 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__10); -l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__11 = _init_l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_11__elabAppArgs___closed__11); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__1 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__1); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__2 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__2); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__3 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__3); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__4 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__4); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__5 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__5); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__6 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__6); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__7 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__7); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__8 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__8); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__9 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__9); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__10 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__10); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__11 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__11); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__12 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__12); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__13 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__13); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__14 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__14); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__15 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__15); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__16 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__16); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__17 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__17); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__18 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__18); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__19 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__19); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__20 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__20); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__21); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__22 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__22); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__23 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__23); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__24); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__25 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__25); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__26 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__26); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__27 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__27); -l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__28 = _init_l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_13__resolveLValAux___closed__28); -l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1); -l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2); -l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__1 = _init_l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__1); -l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__2 = _init_l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__2); -l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__3 = _init_l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_16__mkBaseProjections___closed__3); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__1 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__1); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__2 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__2); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__3 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__3); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__4 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__4); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__5 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__5); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__6 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__6); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__7 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__7); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__8 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__8); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__9 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__9); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__10 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__10); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__11 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__11); -l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__12 = _init_l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_17__addLValArg___main___closed__12); -l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__1 = _init_l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__1); -l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2 = _init_l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2); -l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__1 = _init_l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__1); -l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__2 = _init_l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__2); -l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__3 = _init_l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_19__elabAppLVals___closed__3); -l___private_Init_Lean_Elab_App_23__toMessageData___closed__1 = _init_l___private_Init_Lean_Elab_App_23__toMessageData___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_23__toMessageData___closed__1); -l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__1 = _init_l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__1); -l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__2 = _init_l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__2); -l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__3 = _init_l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_24__mergeFailures___rarg___closed__3); -l___private_Init_Lean_Elab_App_25__elabAppAux___closed__1 = _init_l___private_Init_Lean_Elab_App_25__elabAppAux___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_25__elabAppAux___closed__1); -l___private_Init_Lean_Elab_App_25__elabAppAux___closed__2 = _init_l___private_Init_Lean_Elab_App_25__elabAppAux___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_25__elabAppAux___closed__2); -l___private_Init_Lean_Elab_App_25__elabAppAux___closed__3 = _init_l___private_Init_Lean_Elab_App_25__elabAppAux___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_25__elabAppAux___closed__3); -l___private_Init_Lean_Elab_App_26__expandApp___closed__1 = _init_l___private_Init_Lean_Elab_App_26__expandApp___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_App_26__expandApp___closed__1); +l___private_Lean_Elab_App_4__tryCoeFun___closed__1 = _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_4__tryCoeFun___closed__1); +l___private_Lean_Elab_App_4__tryCoeFun___closed__2 = _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_4__tryCoeFun___closed__2); +l___private_Lean_Elab_App_4__tryCoeFun___closed__3 = _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_4__tryCoeFun___closed__3); +l___private_Lean_Elab_App_4__tryCoeFun___closed__4 = _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_App_4__tryCoeFun___closed__4); +l___private_Lean_Elab_App_4__tryCoeFun___closed__5 = _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_App_4__tryCoeFun___closed__5); +l___private_Lean_Elab_App_4__tryCoeFun___closed__6 = _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_App_4__tryCoeFun___closed__6); +l___private_Lean_Elab_App_4__tryCoeFun___closed__7 = _init_l___private_Lean_Elab_App_4__tryCoeFun___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_App_4__tryCoeFun___closed__7); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__1 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__1); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__2 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__2); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__3); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__4 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__4); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__5 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__5); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__6); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__7 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__7); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__8 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__8); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__9); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__10 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__10); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__11 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__11); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__12); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__13 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__13); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__14 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__14); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__15); +l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16 = _init_l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_App_10__elabAppArgsAux___main___closed__16); +l___private_Lean_Elab_App_11__elabAppArgs___closed__1 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__1); +l___private_Lean_Elab_App_11__elabAppArgs___closed__2 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__2); +l___private_Lean_Elab_App_11__elabAppArgs___closed__3 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__3); +l___private_Lean_Elab_App_11__elabAppArgs___closed__4 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__4); +l___private_Lean_Elab_App_11__elabAppArgs___closed__5 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__5); +l___private_Lean_Elab_App_11__elabAppArgs___closed__6 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__6); +l___private_Lean_Elab_App_11__elabAppArgs___closed__7 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__7); +l___private_Lean_Elab_App_11__elabAppArgs___closed__8 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__8); +l___private_Lean_Elab_App_11__elabAppArgs___closed__9 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__9); +l___private_Lean_Elab_App_11__elabAppArgs___closed__10 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__10); +l___private_Lean_Elab_App_11__elabAppArgs___closed__11 = _init_l___private_Lean_Elab_App_11__elabAppArgs___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_App_11__elabAppArgs___closed__11); +l___private_Lean_Elab_App_13__resolveLValAux___closed__1 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__1); +l___private_Lean_Elab_App_13__resolveLValAux___closed__2 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__2); +l___private_Lean_Elab_App_13__resolveLValAux___closed__3 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__3); +l___private_Lean_Elab_App_13__resolveLValAux___closed__4 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__4); +l___private_Lean_Elab_App_13__resolveLValAux___closed__5 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__5); +l___private_Lean_Elab_App_13__resolveLValAux___closed__6 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__6); +l___private_Lean_Elab_App_13__resolveLValAux___closed__7 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__7); +l___private_Lean_Elab_App_13__resolveLValAux___closed__8 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__8); +l___private_Lean_Elab_App_13__resolveLValAux___closed__9 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__9); +l___private_Lean_Elab_App_13__resolveLValAux___closed__10 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__10); +l___private_Lean_Elab_App_13__resolveLValAux___closed__11 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__11); +l___private_Lean_Elab_App_13__resolveLValAux___closed__12 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__12); +l___private_Lean_Elab_App_13__resolveLValAux___closed__13 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__13); +l___private_Lean_Elab_App_13__resolveLValAux___closed__14 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__14); +l___private_Lean_Elab_App_13__resolveLValAux___closed__15 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__15); +l___private_Lean_Elab_App_13__resolveLValAux___closed__16 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__16); +l___private_Lean_Elab_App_13__resolveLValAux___closed__17 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__17); +l___private_Lean_Elab_App_13__resolveLValAux___closed__18 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__18(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__18); +l___private_Lean_Elab_App_13__resolveLValAux___closed__19 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__19(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__19); +l___private_Lean_Elab_App_13__resolveLValAux___closed__20 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__20(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__20); +l___private_Lean_Elab_App_13__resolveLValAux___closed__21 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__21(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__21); +l___private_Lean_Elab_App_13__resolveLValAux___closed__22 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__22(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__22); +l___private_Lean_Elab_App_13__resolveLValAux___closed__23 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__23(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__23); +l___private_Lean_Elab_App_13__resolveLValAux___closed__24 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__24(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__24); +l___private_Lean_Elab_App_13__resolveLValAux___closed__25 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__25(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__25); +l___private_Lean_Elab_App_13__resolveLValAux___closed__26 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__26(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__26); +l___private_Lean_Elab_App_13__resolveLValAux___closed__27 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__27(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__27); +l___private_Lean_Elab_App_13__resolveLValAux___closed__28 = _init_l___private_Lean_Elab_App_13__resolveLValAux___closed__28(); +lean_mark_persistent(l___private_Lean_Elab_App_13__resolveLValAux___closed__28); +l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1 = _init_l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__1); +l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2 = _init_l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_App_16__mkBaseProjections___spec__1___closed__2); +l___private_Lean_Elab_App_16__mkBaseProjections___closed__1 = _init_l___private_Lean_Elab_App_16__mkBaseProjections___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_16__mkBaseProjections___closed__1); +l___private_Lean_Elab_App_16__mkBaseProjections___closed__2 = _init_l___private_Lean_Elab_App_16__mkBaseProjections___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_16__mkBaseProjections___closed__2); +l___private_Lean_Elab_App_16__mkBaseProjections___closed__3 = _init_l___private_Lean_Elab_App_16__mkBaseProjections___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_16__mkBaseProjections___closed__3); +l___private_Lean_Elab_App_17__addLValArg___main___closed__1 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__1); +l___private_Lean_Elab_App_17__addLValArg___main___closed__2 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__2); +l___private_Lean_Elab_App_17__addLValArg___main___closed__3 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__3); +l___private_Lean_Elab_App_17__addLValArg___main___closed__4 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__4); +l___private_Lean_Elab_App_17__addLValArg___main___closed__5 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__5); +l___private_Lean_Elab_App_17__addLValArg___main___closed__6 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__6); +l___private_Lean_Elab_App_17__addLValArg___main___closed__7 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__7); +l___private_Lean_Elab_App_17__addLValArg___main___closed__8 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__8); +l___private_Lean_Elab_App_17__addLValArg___main___closed__9 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__9); +l___private_Lean_Elab_App_17__addLValArg___main___closed__10 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__10); +l___private_Lean_Elab_App_17__addLValArg___main___closed__11 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__11); +l___private_Lean_Elab_App_17__addLValArg___main___closed__12 = _init_l___private_Lean_Elab_App_17__addLValArg___main___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_App_17__addLValArg___main___closed__12); +l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__1 = _init_l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__1); +l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2 = _init_l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2); +l___private_Lean_Elab_App_19__elabAppLVals___closed__1 = _init_l___private_Lean_Elab_App_19__elabAppLVals___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_19__elabAppLVals___closed__1); +l___private_Lean_Elab_App_19__elabAppLVals___closed__2 = _init_l___private_Lean_Elab_App_19__elabAppLVals___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_19__elabAppLVals___closed__2); +l___private_Lean_Elab_App_19__elabAppLVals___closed__3 = _init_l___private_Lean_Elab_App_19__elabAppLVals___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_19__elabAppLVals___closed__3); +l___private_Lean_Elab_App_23__toMessageData___closed__1 = _init_l___private_Lean_Elab_App_23__toMessageData___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_23__toMessageData___closed__1); +l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__1 = _init_l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__1); +l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__2 = _init_l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__2); +l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__3 = _init_l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_24__mergeFailures___rarg___closed__3); +l___private_Lean_Elab_App_25__elabAppAux___closed__1 = _init_l___private_Lean_Elab_App_25__elabAppAux___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_25__elabAppAux___closed__1); +l___private_Lean_Elab_App_25__elabAppAux___closed__2 = _init_l___private_Lean_Elab_App_25__elabAppAux___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_App_25__elabAppAux___closed__2); +l___private_Lean_Elab_App_25__elabAppAux___closed__3 = _init_l___private_Lean_Elab_App_25__elabAppAux___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_App_25__elabAppAux___closed__3); +l___private_Lean_Elab_App_26__expandApp___closed__1 = _init_l___private_Lean_Elab_App_26__expandApp___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_26__expandApp___closed__1); l___regBuiltin_Lean_Elab_Term_elabApp___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabApp___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabApp___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabApp(lean_io_mk_world()); @@ -18172,7 +18172,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabSortApp___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabSortApp(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l___private_Init_Lean_Elab_App_27__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_Elab_App_27__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c similarity index 90% rename from stage0/stdlib/Init/Lean/Elab/Binders.c rename to stage0/stdlib/Lean/Elab/Binders.c index d5c7d0a2cf..f32d37d47d 100644 --- a/stage0/stdlib/Init/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Binders -// Imports: Init.Lean.Elab.Term Init.Lean.Elab.Quotation +// Module: Lean.Elab.Binders +// Imports: Lean.Elab.Term Lean.Elab.Quotation #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,258 +13,255 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Elab_Binders_8__elabBindersAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__6; +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBinder___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBinders(lean_object*); lean_object* l_Lean_Elab_Term_mkForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4; -lean_object* l___private_Init_Lean_Elab_Binders_2__expandBinderIdent___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__12; -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +lean_object* l___private_Lean_Elab_Binders_14__elabFunBinderViews___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_2__expandBinderIdent(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__13; lean_object* l_Lean_Elab_Term_elabLetDecl(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__3; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; lean_object* l_Lean_Elab_Term_elabDepArrow___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabForall___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_2__expandBinderIdent(lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); extern lean_object* l_Lean_nullKind; +lean_object* l___private_Lean_Syntax_7__quoteName___main(lean_object*); +lean_object* l___private_Lean_Elab_Binders_5__getBinderIds(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabDepArrow(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main(lean_object*); lean_object* l_Lean_Elab_Term_elabArrow___closed__1; lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__5; +lean_object* l___private_Lean_Elab_Binders_15__regTraceClasses(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_List_format___rarg___closed__2; uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_1__expandBinderType___boxed(lean_object*); lean_object* l_Lean_Elab_Term_elabBinder___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabFun(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; extern lean_object* l_Lean_identKind___closed__2; lean_object* l_Lean_Elab_Term_elabForall___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__1; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3; -extern lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; lean_object* l_Lean_Elab_Term_expandFunBinders___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__1; lean_object* l_Lean_Elab_Term_elabLetDeclAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__3; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1; extern lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__6; -lean_object* l___private_Init_Lean_Elab_Binders_6__matchBinder___boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +lean_object* l___private_Lean_Elab_Binders_6__matchBinder(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabArrow___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; lean_object* l_Lean_Elab_Term_elabFunBinders___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__2; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_compileDecl(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; lean_object* l_Lean_Elab_Term_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); extern lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabFun(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; +lean_object* l___private_Lean_Elab_Binders_7__elabBinderViews(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__3; lean_object* lean_string_utf8_byte_size(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withLetDecl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_1__expandBinderType(lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__5; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2; lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__10; extern lean_object* l_Lean_mkAppStx___closed__8; +lean_object* l___private_Lean_Elab_Binders_7__elabBinderViews___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__7; lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Term_quoteAutoTactic___main___spec__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Binders_8__elabBindersAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_3__expandOptIdent___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentHashMap_Stats_toString___closed__5; lean_object* l_Lean_Elab_Term_mkFreshAnonymousIdent(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabArrow(lean_object*); lean_object* l_Lean_Elab_Term_mkLet(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getOptions(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__8; lean_object* l_Lean_Syntax_isSimpleTermId_x3f(lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__4; lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__3; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getOptParamDefault_x3f___closed__2; -lean_object* l___private_Init_Lean_Elab_Binders_5__getBinderIds(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__2; lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshFVarId___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; lean_object* l_Lean_Elab_Term_declareTacticSyntax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(lean_object*); extern lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__1; lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__9; -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; +lean_object* l___private_Lean_Elab_Binders_8__elabBindersAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__1; +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__8; extern lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabFun___closed__1; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_7__elabBinderViews___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Term_quoteAutoTactic___main___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; +lean_object* l___private_Lean_Elab_Binders_7__elabBinderViews___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabForall___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Term_quoteAutoTactic___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5; -extern lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5; lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__11; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_8__elabBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabFun___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_7__elabBinderViews___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_15__regTraceClasses(lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_7__elabBinderViews(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Term_quoteAutoTactic___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabLetBangDecl(lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___main(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__3; lean_object* l_Lean_Elab_Term_logTrace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabForall___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__2; lean_object* l_Lean_Syntax_getId(lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_13__propagateExpectedType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__1; lean_object* l_Lean_Elab_Term_elabFunBinders(lean_object*); extern lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_elabBinder___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_2__expandBinderIdent___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__2; +lean_object* l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_13__propagateExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; +lean_object* l___private_Lean_Elab_Binders_14__elabFunBinderViews___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOptType(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withLocalDecl___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabForall(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__6; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__6; -lean_object* l___private_Init_Lean_Elab_Binders_8__elabBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +lean_object* l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3; +lean_object* l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_8__elabBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); extern lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; +lean_object* l___private_Lean_Elab_Binders_6__matchBinder___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1; lean_object* l_Lean_Elab_Term_getLocalInsts(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2; +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2; lean_object* l_Lean_Elab_Term_mkFreshInstanceName___rarg(lean_object*); lean_object* l_Lean_Elab_Term_isClass(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_isAntiquot(lean_object*); lean_object* l_Lean_Elab_Term_elabLetBangDecl___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; lean_object* l_Lean_mkFVar(lean_object*); extern lean_object* l_Lean_Expr_getAutoParamTactic_x3f___closed__1; -extern lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4; lean_object* l_Lean_Elab_Term_quoteAutoTactic(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; lean_object* l_Lean_Elab_Term_elabLetBangDecl___closed__2; -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAutoParam(lean_object*); extern lean_object* l_Lean_Expr_getAutoParamTactic_x3f___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_5__getBinderIds___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_6__matchBinder(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_13__propagateExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_7__elabBinderViews___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_3__expandOptIdent(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBinders___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_String_HasQuote___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOptType___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_termElabAttribute; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetBangDecl___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_3__expandOptIdent___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__3; lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); extern lean_object* l_Lean_identKind; -lean_object* l___private_Init_Lean_Elab_Binders_8__elabBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; extern lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6; extern lean_object* l_Lean_Syntax_inhabited; +extern lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; lean_object* l_Lean_Elab_Term_elabArrow(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__5; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__5; extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__3; lean_object* l_Lean_Elab_Term_elabFun___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l_Lean_mkHole(lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1; lean_object* l_Lean_Elab_Term_getLCtx(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabFunBinders___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__4; extern lean_object* l_Lean_Expr_getOptParamDefault_x3f___closed__1; lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__8; +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4; lean_object* l_Lean_Elab_Term_elabLetDecl___closed__2; extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2; lean_object* l_Lean_mkApp(lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isTermId_x3f(lean_object*, uint8_t); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8; +lean_object* l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__5; lean_object* l_Lean_Elab_Term_elabLetDecl___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3; lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__2; +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__6; +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6; +lean_object* l___private_Lean_Elab_Binders_14__elabFunBinderViews(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkHole___closed__1; lean_object* l_Lean_Elab_Term_mkExplicitBinder(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__1___boxed(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* l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkStxStrLit(lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_isAntiquotSplice(lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__7; lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__7; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*); @@ -272,67 +269,70 @@ extern lean_object* l_Lean_Parser_Term_letIdDecl___closed__2; extern lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_expandFunBinders(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetBangDecl(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; lean_object* l_Lean_Elab_Term_whnfForall(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Elab_Term_resetSynthInstanceCache___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Binders_8__elabBindersAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkTermIdFrom(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1; extern lean_object* l_Lean_Parser_Term_matchAlt___closed__2; extern lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; extern lean_object* l_Lean_Expr_Inhabited; -lean_object* l___private_Init_Lean_Elab_Binders_7__elabBinderViews___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +lean_object* l___private_Lean_Elab_Binders_14__elabFunBinderViews___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Term_quoteAutoTactic___main___spec__1___closed__3; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; uint8_t l_Lean_Expr_isOptParam(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; extern lean_object* l_Lean_mkHole___closed__2; lean_object* l_Lean_Elab_Term_elabBinders___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__4; +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8; extern lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrow___lambda__1(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_arrayToExpr___rarg___closed__2; lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__3; lean_object* l_Lean_Elab_Term_elabForall(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4; lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_quoteAutoTactic___main(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3; +lean_object* l___private_Lean_Elab_Binders_1__expandBinderType___boxed(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__7; lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +lean_object* l___private_Lean_Elab_Binders_1__expandBinderType(lean_object*); +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1; extern lean_object* l_Lean_mkAppStx___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Binders_5__getBinderIds___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_addParenHeuristic___closed__1; +lean_object* l___private_Lean_Elab_Binders_13__propagateExpectedType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -extern lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow(lean_object*); -lean_object* l___private_Init_Lean_Elab_Binders_3__expandOptIdent(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__5; uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; lean_object* l_Lean_Elab_Term_elabBinder(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Binders_1__expandBinderType(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Binders_1__expandBinderType(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -355,16 +355,16 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Elab_Binders_1__expandBinderType___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Binders_1__expandBinderType___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Binders_1__expandBinderType(x_1); +x_2 = l___private_Lean_Elab_Binders_1__expandBinderType(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Binders_2__expandBinderIdent(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_2__expandBinderIdent(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -406,16 +406,16 @@ return x_12; } } } -lean_object* l___private_Init_Lean_Elab_Binders_2__expandBinderIdent___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_2__expandBinderIdent___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Binders_2__expandBinderIdent(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Binders_2__expandBinderIdent(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Binders_3__expandOptIdent(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_3__expandOptIdent(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -462,11 +462,11 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Elab_Binders_3__expandOptIdent___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_3__expandOptIdent___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Binders_3__expandOptIdent(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Binders_3__expandOptIdent(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; @@ -619,7 +619,7 @@ lean_dec(x_30); x_33 = l_Lean_mkAppStx___closed__7; lean_inc(x_3); x_34 = lean_name_mk_string(x_3, x_33); -x_35 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4; +x_35 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4; lean_inc(x_7); x_36 = lean_name_mk_string(x_7, x_35); lean_inc(x_36); @@ -632,7 +632,7 @@ lean_inc(x_9); x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_9); -x_40 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3; +x_40 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3; lean_inc(x_6); x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_6); @@ -730,7 +730,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__2; -x_2 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -740,7 +740,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__3; -x_2 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -750,7 +750,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__4; -x_2 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -760,7 +760,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_quoteAutoTactic___main___closed__5; -x_2 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -844,7 +844,7 @@ switch (lean_obj_tag(x_1)) { case 0: { lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_4 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_5 = l_unreachable_x21___rarg(x_4); x_6 = lean_apply_2(x_5, x_2, x_3); return x_6; @@ -880,12 +880,12 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; +x_19 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; x_20 = l_Lean_addMacroScope(x_17, x_19, x_14); x_21 = lean_box(0); x_22 = l_Lean_SourceInfo_inhabited___closed__1; -x_23 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; -x_24 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; +x_23 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; +x_24 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_22); lean_ctor_set(x_25, 1, x_23); @@ -893,7 +893,7 @@ lean_ctor_set(x_25, 2, x_20); lean_ctor_set(x_25, 3, x_24); x_26 = l_Array_empty___closed__1; x_27 = lean_array_push(x_26, x_25); -x_28 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_28 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_29 = lean_array_push(x_27, x_28); x_30 = l_Lean_mkTermIdFromIdent___closed__2; lean_ctor_set(x_1, 1, x_29); @@ -926,10 +926,10 @@ if (x_42 == 0) { lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; x_43 = lean_ctor_get(x_41, 0); -x_44 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; +x_44 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; x_45 = l_Lean_addMacroScope(x_43, x_44, x_39); -x_46 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; -x_47 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; +x_46 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; +x_47 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; x_48 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_48, 0, x_22); lean_ctor_set(x_48, 1, x_46); @@ -941,7 +941,7 @@ x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_30); lean_ctor_set(x_51, 1, x_50); x_52 = lean_array_push(x_26, x_51); -x_53 = l___private_Init_Lean_Syntax_7__quoteName___main(x_7); +x_53 = l___private_Lean_Syntax_7__quoteName___main(x_7); x_54 = lean_array_push(x_26, x_53); x_55 = lean_array_push(x_54, x_36); x_56 = lean_alloc_ctor(1, 2, 0); @@ -963,10 +963,10 @@ x_61 = lean_ctor_get(x_41, 1); lean_inc(x_61); lean_inc(x_60); lean_dec(x_41); -x_62 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; +x_62 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; x_63 = l_Lean_addMacroScope(x_60, x_62, x_39); -x_64 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; -x_65 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; +x_64 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; +x_65 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; x_66 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_66, 0, x_22); lean_ctor_set(x_66, 1, x_64); @@ -978,7 +978,7 @@ x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_30); lean_ctor_set(x_69, 1, x_68); x_70 = lean_array_push(x_26, x_69); -x_71 = l___private_Init_Lean_Syntax_7__quoteName___main(x_7); +x_71 = l___private_Lean_Syntax_7__quoteName___main(x_7); x_72 = lean_array_push(x_26, x_71); x_73 = lean_array_push(x_72, x_36); x_74 = lean_alloc_ctor(1, 2, 0); @@ -1036,12 +1036,12 @@ lean_inc(x_87); x_88 = lean_ctor_get(x_86, 1); lean_inc(x_88); lean_dec(x_86); -x_89 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; +x_89 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; x_90 = l_Lean_addMacroScope(x_87, x_89, x_84); x_91 = lean_box(0); x_92 = l_Lean_SourceInfo_inhabited___closed__1; -x_93 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; -x_94 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; +x_93 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; +x_94 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; x_95 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_95, 0, x_92); lean_ctor_set(x_95, 1, x_93); @@ -1049,7 +1049,7 @@ lean_ctor_set(x_95, 2, x_90); lean_ctor_set(x_95, 3, x_94); x_96 = l_Array_empty___closed__1; x_97 = lean_array_push(x_96, x_95); -x_98 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_98 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_99 = lean_array_push(x_97, x_98); x_100 = l_Lean_mkTermIdFromIdent___closed__2; x_101 = lean_alloc_ctor(1, 2, 0); @@ -1090,10 +1090,10 @@ if (lean_is_exclusive(x_112)) { lean_dec_ref(x_112); x_115 = lean_box(0); } -x_116 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; +x_116 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; x_117 = l_Lean_addMacroScope(x_113, x_116, x_110); -x_118 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; -x_119 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; +x_118 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; +x_119 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; x_120 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_120, 0, x_92); lean_ctor_set(x_120, 1, x_118); @@ -1105,7 +1105,7 @@ x_123 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_123, 0, x_100); lean_ctor_set(x_123, 1, x_122); x_124 = lean_array_push(x_96, x_123); -x_125 = l___private_Init_Lean_Syntax_7__quoteName___main(x_7); +x_125 = l___private_Lean_Syntax_7__quoteName___main(x_7); x_126 = lean_array_push(x_96, x_125); x_127 = lean_array_push(x_126, x_107); x_128 = lean_alloc_ctor(1, 2, 0); @@ -1187,11 +1187,11 @@ if (x_146 == 0) { lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; 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; x_147 = lean_ctor_get(x_145, 0); -x_148 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; +x_148 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; x_149 = l_Lean_addMacroScope(x_147, x_148, x_143); x_150 = l_Lean_SourceInfo_inhabited___closed__1; -x_151 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; -x_152 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; +x_151 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; +x_152 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; x_153 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_153, 0, x_150); lean_ctor_set(x_153, 1, x_151); @@ -1199,7 +1199,7 @@ lean_ctor_set(x_153, 2, x_149); lean_ctor_set(x_153, 3, x_152); x_154 = l_Array_empty___closed__1; x_155 = lean_array_push(x_154, x_153); -x_156 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_156 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_157 = lean_array_push(x_155, x_156); x_158 = l_Lean_mkTermIdFromIdent___closed__2; lean_ctor_set_tag(x_1, 1); @@ -1235,11 +1235,11 @@ x_173 = lean_ctor_get(x_145, 1); lean_inc(x_173); lean_inc(x_172); lean_dec(x_145); -x_174 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; +x_174 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; x_175 = l_Lean_addMacroScope(x_172, x_174, x_143); x_176 = l_Lean_SourceInfo_inhabited___closed__1; -x_177 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; -x_178 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; +x_177 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; +x_178 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; x_179 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_179, 0, x_176); lean_ctor_set(x_179, 1, x_177); @@ -1247,7 +1247,7 @@ lean_ctor_set(x_179, 2, x_175); lean_ctor_set(x_179, 3, x_178); x_180 = l_Array_empty___closed__1; x_181 = lean_array_push(x_180, x_179); -x_182 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_182 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_183 = lean_array_push(x_181, x_182); x_184 = l_Lean_mkTermIdFromIdent___closed__2; lean_ctor_set_tag(x_1, 1); @@ -1304,11 +1304,11 @@ if (lean_is_exclusive(x_203)) { lean_dec_ref(x_203); x_206 = lean_box(0); } -x_207 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; +x_207 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; x_208 = l_Lean_addMacroScope(x_204, x_207, x_201); x_209 = l_Lean_SourceInfo_inhabited___closed__1; -x_210 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; -x_211 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; +x_210 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; +x_211 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; x_212 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_212, 0, x_209); lean_ctor_set(x_212, 1, x_210); @@ -1316,7 +1316,7 @@ lean_ctor_set(x_212, 2, x_208); lean_ctor_set(x_212, 3, x_211); x_213 = l_Array_empty___closed__1; x_214 = lean_array_push(x_213, x_212); -x_215 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_215 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_216 = lean_array_push(x_214, x_215); x_217 = l_Lean_mkTermIdFromIdent___closed__2; x_218 = lean_alloc_ctor(1, 2, 0); @@ -1404,7 +1404,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; +x_2 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } @@ -1423,7 +1423,7 @@ lean_object* _init_l_Lean_Elab_Term_declareTacticSyntax___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Expr_getAutoParamTactic_x3f___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2510,7 +2510,7 @@ return x_257; } } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__1() { +lean_object* _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -2519,13 +2519,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__2() { +lean_object* _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Expr_getAutoParamTactic_x3f___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__1; +x_3 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2533,7 +2533,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__3() { +lean_object* _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2545,19 +2545,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__4() { +lean_object* _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__3; +x_2 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__3; 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* _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__5() { +lean_object* _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -2566,13 +2566,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__6() { +lean_object* _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Expr_getOptParamDefault_x3f___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__5; +x_3 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2580,7 +2580,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__7() { +lean_object* _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2592,19 +2592,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__8() { +lean_object* _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__7; +x_2 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -2666,8 +2666,8 @@ x_24 = lean_ctor_get(x_22, 0); x_25 = l_Lean_Expr_getAutoParamTactic_x3f___closed__2; x_26 = l_Lean_addMacroScope(x_24, x_25, x_20); x_27 = l_Lean_SourceInfo_inhabited___closed__1; -x_28 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__2; -x_29 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__4; +x_28 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__2; +x_29 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__4; x_30 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_30, 0, x_27); lean_ctor_set(x_30, 1, x_28); @@ -2675,7 +2675,7 @@ lean_ctor_set(x_30, 2, x_26); lean_ctor_set(x_30, 3, x_29); x_31 = l_Array_empty___closed__1; x_32 = lean_array_push(x_31, x_30); -x_33 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_33 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_34 = lean_array_push(x_32, x_33); x_35 = l_Lean_mkTermIdFromIdent___closed__2; x_36 = lean_alloc_ctor(1, 2, 0); @@ -2709,8 +2709,8 @@ lean_dec(x_22); x_48 = l_Lean_Expr_getAutoParamTactic_x3f___closed__2; x_49 = l_Lean_addMacroScope(x_46, x_48, x_20); x_50 = l_Lean_SourceInfo_inhabited___closed__1; -x_51 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__2; -x_52 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__4; +x_51 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__2; +x_52 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__4; x_53 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_53, 0, x_50); lean_ctor_set(x_53, 1, x_51); @@ -2718,7 +2718,7 @@ lean_ctor_set(x_53, 2, x_49); lean_ctor_set(x_53, 3, x_52); x_54 = l_Array_empty___closed__1; x_55 = lean_array_push(x_54, x_53); -x_56 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_56 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_57 = lean_array_push(x_55, x_56); x_58 = l_Lean_mkTermIdFromIdent___closed__2; x_59 = lean_alloc_ctor(1, 2, 0); @@ -2794,8 +2794,8 @@ x_81 = lean_ctor_get(x_79, 0); x_82 = l_Lean_Expr_getOptParamDefault_x3f___closed__2; x_83 = l_Lean_addMacroScope(x_81, x_82, x_77); x_84 = l_Lean_SourceInfo_inhabited___closed__1; -x_85 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__6; -x_86 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__8; +x_85 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__6; +x_86 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__8; x_87 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_87, 0, x_84); lean_ctor_set(x_87, 1, x_85); @@ -2803,7 +2803,7 @@ lean_ctor_set(x_87, 2, x_83); lean_ctor_set(x_87, 3, x_86); x_88 = l_Array_empty___closed__1; x_89 = lean_array_push(x_88, x_87); -x_90 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_90 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_91 = lean_array_push(x_89, x_90); x_92 = l_Lean_mkTermIdFromIdent___closed__2; x_93 = lean_alloc_ctor(1, 2, 0); @@ -2835,8 +2835,8 @@ lean_dec(x_79); x_104 = l_Lean_Expr_getOptParamDefault_x3f___closed__2; x_105 = l_Lean_addMacroScope(x_102, x_104, x_77); x_106 = l_Lean_SourceInfo_inhabited___closed__1; -x_107 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__6; -x_108 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__8; +x_107 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__6; +x_108 = l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__8; x_109 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_109, 0, x_106); lean_ctor_set(x_109, 1, x_107); @@ -2844,7 +2844,7 @@ lean_ctor_set(x_109, 2, x_105); lean_ctor_set(x_109, 3, x_108); x_110 = l_Array_empty___closed__1; x_111 = lean_array_push(x_110, x_109); -x_112 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_112 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_113 = lean_array_push(x_111, x_112); x_114 = l_Lean_mkTermIdFromIdent___closed__2; x_115 = lean_alloc_ctor(1, 2, 0); @@ -2880,16 +2880,16 @@ return x_125; } } } -lean_object* l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Binders_4__expandBinderModifier___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___private_Init_Lean_Elab_Binders_4__expandBinderModifier(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Binders_4__expandBinderModifier(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1() { +lean_object* _init_l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1() { _start: { lean_object* x_1; @@ -2897,27 +2897,27 @@ x_1 = lean_mk_string("identifier or `_` expected"); return x_1; } } -lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2() { +lean_object* _init_l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1; +x_1 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3() { +lean_object* _init_l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2; +x_1 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___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_6; @@ -2962,7 +2962,7 @@ if (x_19 == 0) lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_dec(x_11); lean_dec(x_1); -x_20 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3; +x_20 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3; x_21 = l_Lean_Elab_Term_throwError___rarg(x_12, x_20, x_3, x_4); lean_dec(x_12); x_22 = !lean_is_exclusive(x_21); @@ -2998,7 +2998,7 @@ if (x_29 == 0) lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_11); lean_dec(x_1); -x_30 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3; +x_30 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3; x_31 = l_Lean_Elab_Term_throwError___rarg(x_12, x_30, x_3, x_4); lean_dec(x_12); x_32 = !lean_is_exclusive(x_31); @@ -3032,7 +3032,7 @@ if (x_38 == 0) lean_object* x_39; lean_object* x_40; uint8_t x_41; lean_dec(x_11); lean_dec(x_1); -x_39 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3; +x_39 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3; x_40 = l_Lean_Elab_Term_throwError___rarg(x_12, x_39, x_3, x_4); lean_dec(x_12); x_41 = !lean_is_exclusive(x_40); @@ -3100,14 +3100,14 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Binders_5__getBinderIds(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_5__getBinderIds(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_4 = l_Lean_Syntax_getArgs(x_1); x_5 = x_4; x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1), 4, 2); +x_7 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1), 4, 2); lean_closure_set(x_7, 0, x_6); lean_closure_set(x_7, 1, x_5); x_8 = x_7; @@ -3115,16 +3115,16 @@ x_9 = lean_apply_2(x_8, x_2, x_3); return x_9; } } -lean_object* l___private_Init_Lean_Elab_Binders_5__getBinderIds___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_5__getBinderIds___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Binders_5__getBinderIds(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Binders_5__getBinderIds(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -3149,7 +3149,7 @@ x_10 = lean_array_fget(x_3, x_2); x_11 = lean_unsigned_to_nat(0u); x_12 = lean_array_fset(x_3, x_2, x_11); x_13 = x_10; -x_14 = l___private_Init_Lean_Elab_Binders_2__expandBinderIdent(x_13, x_4, x_5); +x_14 = l___private_Lean_Elab_Binders_2__expandBinderIdent(x_13, x_4, x_5); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); @@ -3173,7 +3173,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -3198,7 +3198,7 @@ x_10 = lean_array_fget(x_3, x_2); x_11 = lean_unsigned_to_nat(0u); x_12 = lean_array_fset(x_3, x_2, x_11); x_13 = x_10; -x_14 = l___private_Init_Lean_Elab_Binders_2__expandBinderIdent(x_13, x_4, x_5); +x_14 = l___private_Lean_Elab_Binders_2__expandBinderIdent(x_13, x_4, x_5); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); @@ -3222,7 +3222,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___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; @@ -3247,7 +3247,7 @@ x_10 = lean_array_fget(x_3, x_2); x_11 = lean_unsigned_to_nat(0u); x_12 = lean_array_fset(x_3, x_2, x_11); x_13 = x_10; -x_14 = l___private_Init_Lean_Elab_Binders_2__expandBinderIdent(x_13, x_4, x_5); +x_14 = l___private_Lean_Elab_Binders_2__expandBinderIdent(x_13, x_4, x_5); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); @@ -3271,7 +3271,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Binders_6__matchBinder(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_6__matchBinder(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 1) @@ -3309,7 +3309,7 @@ lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint x_15 = l_Lean_Syntax_inhabited; x_16 = lean_unsigned_to_nat(1u); x_17 = lean_array_get(x_15, x_5, x_16); -x_18 = l___private_Init_Lean_Elab_Binders_3__expandOptIdent(x_17, x_2, x_3); +x_18 = l___private_Lean_Elab_Binders_3__expandOptIdent(x_17, x_2, x_3); lean_dec(x_2); lean_dec(x_17); x_19 = !lean_is_exclusive(x_18); @@ -3360,7 +3360,7 @@ x_36 = l_Lean_Syntax_inhabited; x_37 = lean_unsigned_to_nat(1u); x_38 = lean_array_get(x_36, x_5, x_37); lean_inc(x_2); -x_39 = l___private_Init_Lean_Elab_Binders_5__getBinderIds(x_38, x_2, x_3); +x_39 = l___private_Lean_Elab_Binders_5__getBinderIds(x_38, x_2, x_3); lean_dec(x_38); if (lean_obj_tag(x_39) == 0) { @@ -3372,11 +3372,11 @@ lean_inc(x_41); lean_dec(x_39); x_42 = lean_unsigned_to_nat(2u); x_43 = lean_array_get(x_36, x_5, x_42); -x_44 = l___private_Init_Lean_Elab_Binders_1__expandBinderType(x_43); +x_44 = l___private_Lean_Elab_Binders_1__expandBinderType(x_43); lean_dec(x_43); x_45 = x_40; x_46 = lean_unsigned_to_nat(0u); -x_47 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__1___boxed), 5, 3); +x_47 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__1___boxed), 5, 3); lean_closure_set(x_47, 0, x_44); lean_closure_set(x_47, 1, x_46); lean_closure_set(x_47, 2, x_45); @@ -3416,7 +3416,7 @@ x_54 = l_Lean_Syntax_inhabited; x_55 = lean_unsigned_to_nat(1u); x_56 = lean_array_get(x_54, x_5, x_55); lean_inc(x_2); -x_57 = l___private_Init_Lean_Elab_Binders_5__getBinderIds(x_56, x_2, x_3); +x_57 = l___private_Lean_Elab_Binders_5__getBinderIds(x_56, x_2, x_3); lean_dec(x_56); if (lean_obj_tag(x_57) == 0) { @@ -3428,12 +3428,12 @@ lean_inc(x_59); lean_dec(x_57); x_60 = lean_unsigned_to_nat(2u); x_61 = lean_array_get(x_54, x_5, x_60); -x_62 = l___private_Init_Lean_Elab_Binders_1__expandBinderType(x_61); +x_62 = l___private_Lean_Elab_Binders_1__expandBinderType(x_61); lean_dec(x_61); x_63 = lean_unsigned_to_nat(3u); x_64 = lean_array_get(x_54, x_5, x_63); lean_inc(x_2); -x_65 = l___private_Init_Lean_Elab_Binders_4__expandBinderModifier(x_62, x_64, x_2, x_59); +x_65 = l___private_Lean_Elab_Binders_4__expandBinderModifier(x_62, x_64, x_2, x_59); lean_dec(x_64); if (lean_obj_tag(x_65) == 0) { @@ -3445,7 +3445,7 @@ lean_inc(x_67); lean_dec(x_65); x_68 = x_58; x_69 = lean_unsigned_to_nat(0u); -x_70 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__2___boxed), 5, 3); +x_70 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__2___boxed), 5, 3); lean_closure_set(x_70, 0, x_66); lean_closure_set(x_70, 1, x_69); lean_closure_set(x_70, 2, x_68); @@ -3510,7 +3510,7 @@ x_81 = l_Lean_Syntax_inhabited; x_82 = lean_unsigned_to_nat(0u); x_83 = lean_array_get(x_81, x_5, x_82); lean_inc(x_2); -x_84 = l___private_Init_Lean_Elab_Binders_5__getBinderIds(x_83, x_2, x_3); +x_84 = l___private_Lean_Elab_Binders_5__getBinderIds(x_83, x_2, x_3); lean_dec(x_83); if (lean_obj_tag(x_84) == 0) { @@ -3522,7 +3522,7 @@ lean_inc(x_86); lean_dec(x_84); x_87 = l_Lean_mkHole(x_1); x_88 = x_85; -x_89 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__3___boxed), 5, 3); +x_89 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__3___boxed), 5, 3); lean_closure_set(x_89, 0, x_87); lean_closure_set(x_89, 1, x_82); lean_closure_set(x_89, 2, x_88); @@ -3564,43 +3564,43 @@ return x_96; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___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* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___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* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___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* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___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_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_6__matchBinder___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_6__matchBinder___spec__3(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Binders_6__matchBinder___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_6__matchBinder___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Binders_6__matchBinder(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Binders_6__matchBinder(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Binders_7__elabBinderViews___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Binders_7__elabBinderViews___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -4170,33 +4170,33 @@ return x_147; } } } -lean_object* l___private_Init_Lean_Elab_Binders_7__elabBinderViews___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Binders_7__elabBinderViews___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Binders_7__elabBinderViews___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Binders_7__elabBinderViews___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Binders_7__elabBinderViews(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Binders_7__elabBinderViews(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Binders_7__elabBinderViews___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Binders_7__elabBinderViews___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Binders_7__elabBinderViews___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Binders_7__elabBinderViews___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Binders_7__elabBinderViews(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Binders_7__elabBinderViews(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Binders_8__elabBindersAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Binders_8__elabBindersAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -4224,7 +4224,7 @@ else lean_object* x_13; lean_object* x_14; x_13 = lean_array_fget(x_1, x_2); lean_inc(x_6); -x_14 = l___private_Init_Lean_Elab_Binders_6__matchBinder(x_13, x_6, x_7); +x_14 = l___private_Lean_Elab_Binders_6__matchBinder(x_13, x_6, x_7); lean_dec(x_13); if (lean_obj_tag(x_14) == 0) { @@ -4236,7 +4236,7 @@ lean_inc(x_16); lean_dec(x_14); x_17 = lean_unsigned_to_nat(0u); lean_inc(x_6); -x_18 = l___private_Init_Lean_Elab_Binders_7__elabBinderViews___main(x_15, x_17, x_3, x_4, x_5, x_6, x_16); +x_18 = l___private_Lean_Elab_Binders_7__elabBinderViews___main(x_15, x_17, x_3, x_4, x_5, x_6, x_16); lean_dec(x_15); if (lean_obj_tag(x_18) == 0) { @@ -4321,28 +4321,28 @@ return x_35; } } } -lean_object* l___private_Init_Lean_Elab_Binders_8__elabBindersAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Binders_8__elabBindersAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Binders_8__elabBindersAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Binders_8__elabBindersAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Binders_8__elabBindersAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Binders_8__elabBindersAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Binders_8__elabBindersAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Binders_8__elabBindersAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Binders_8__elabBindersAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Binders_8__elabBindersAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Binders_8__elabBindersAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Binders_8__elabBindersAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_1); return x_8; } @@ -4371,7 +4371,7 @@ x_12 = lean_unsigned_to_nat(0u); x_13 = l_Array_empty___closed__1; lean_inc(x_3); lean_inc(x_10); -x_14 = l___private_Init_Lean_Elab_Binders_8__elabBindersAux___main(x_1, x_12, x_13, x_7, x_10, x_3, x_11); +x_14 = l___private_Lean_Elab_Binders_8__elabBindersAux___main(x_1, x_12, x_13, x_7, x_10, x_3, x_11); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; @@ -6028,11 +6028,11 @@ if (x_14 == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; x_15 = lean_ctor_get(x_13, 0); -x_16 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_16 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_17 = l_Lean_addMacroScope(x_15, x_16, x_11); x_18 = lean_box(0); x_19 = l_Lean_SourceInfo_inhabited___closed__1; -x_20 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +x_20 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); @@ -6044,7 +6044,7 @@ x_24 = l_Lean_nullKind___closed__2; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_26 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_27 = lean_array_push(x_26, x_25); x_28 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; x_29 = lean_array_push(x_28, x_7); @@ -6052,9 +6052,9 @@ x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_24); lean_ctor_set(x_30, 1, x_29); x_31 = lean_array_push(x_27, x_30); -x_32 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_32 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_33 = lean_array_push(x_31, x_32); -x_34 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_34 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_35 = lean_array_push(x_33, x_34); x_36 = l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; x_37 = lean_alloc_ctor(1, 2, 0); @@ -6084,11 +6084,11 @@ x_48 = lean_ctor_get(x_13, 1); lean_inc(x_48); lean_inc(x_47); lean_dec(x_13); -x_49 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_49 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_50 = l_Lean_addMacroScope(x_47, x_49, x_11); x_51 = lean_box(0); x_52 = l_Lean_SourceInfo_inhabited___closed__1; -x_53 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +x_53 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; x_54 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_53); @@ -6100,7 +6100,7 @@ x_57 = l_Lean_nullKind___closed__2; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_59 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_60 = lean_array_push(x_59, x_58); x_61 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; x_62 = lean_array_push(x_61, x_7); @@ -6108,9 +6108,9 @@ x_63 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_63, 0, x_57); lean_ctor_set(x_63, 1, x_62); x_64 = lean_array_push(x_60, x_63); -x_65 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_65 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_66 = lean_array_push(x_64, x_65); -x_67 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_67 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_68 = lean_array_push(x_66, x_67); x_69 = l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; x_70 = lean_alloc_ctor(1, 2, 0); @@ -6229,7 +6229,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(uint8_t 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_95; uint8_t x_96; @@ -6522,7 +6522,7 @@ lean_object* x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; x_80 = l_Lean_Syntax_getArg(x_50, x_47); lean_dec(x_50); x_81 = 0; -x_82 = l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(x_81, x_48, x_3, x_4, x_5); +x_82 = l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(x_81, x_48, x_3, x_4, x_5); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); if (lean_obj_tag(x_83) == 0) @@ -6584,56 +6584,56 @@ return x_93; } } } -lean_object* l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_1); lean_dec(x_1); -x_7 = l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(x_6, x_2, x_3, x_4, x_5); +x_7 = l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(x_6, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_1); lean_dec(x_1); -x_7 = l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f(x_6, x_2, x_3, x_4, x_5); +x_7 = l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f(x_6, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; lean_object* x_6; x_4 = 0; x_5 = l_Array_empty___closed__1; -x_6 = l___private_Init_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(x_4, x_1, x_5, x_2, x_3); +x_6 = l___private_Lean_Elab_Binders_9__getFunBinderIdsAux_x3f___main(x_4, x_1, x_5, x_2, x_3); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -6668,7 +6668,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6680,17 +6680,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1; +x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6702,41 +6702,41 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nullKind___closed__2; -x_2 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5; +x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5; 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_object* _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7() { +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7() { _start: { lean_object* x_1; @@ -6744,27 +6744,27 @@ x_1 = lean_mk_string("invalid binder, simple identifier expected"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8() { +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; +x_1 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9() { +lean_object* _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8; +x_1 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(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; @@ -6881,7 +6881,7 @@ lean_inc(x_35); x_40 = l_Lean_Elab_Term_mkExplicitBinder(x_35, x_39); x_41 = lean_array_push(x_4, x_40); lean_inc(x_5); -x_42 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_38, x_41, x_5, x_36); +x_42 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_38, x_41, x_5, x_36); if (lean_obj_tag(x_42) == 0) { lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -6909,7 +6909,7 @@ x_51 = lean_ctor_get(x_49, 0); lean_dec(x_51); x_52 = l_Array_empty___closed__1; x_53 = lean_array_push(x_52, x_35); -x_54 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_54 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_55 = lean_array_push(x_53, x_54); x_56 = l_Lean_mkTermIdFromIdent___closed__2; x_57 = lean_alloc_ctor(1, 2, 0); @@ -6920,12 +6920,12 @@ x_59 = l_Lean_nullKind___closed__2; x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); -x_61 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_61 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_62 = lean_array_push(x_61, x_60); x_63 = lean_array_push(x_62, x_54); -x_64 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_64 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_65 = lean_array_push(x_63, x_64); -x_66 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_66 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_67 = lean_array_push(x_65, x_66); lean_inc(x_11); x_68 = lean_array_push(x_52, x_11); @@ -6997,7 +6997,7 @@ lean_inc(x_95); lean_dec(x_49); x_96 = l_Array_empty___closed__1; x_97 = lean_array_push(x_96, x_35); -x_98 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_98 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_99 = lean_array_push(x_97, x_98); x_100 = l_Lean_mkTermIdFromIdent___closed__2; x_101 = lean_alloc_ctor(1, 2, 0); @@ -7008,12 +7008,12 @@ x_103 = l_Lean_nullKind___closed__2; x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_102); -x_105 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_105 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_106 = lean_array_push(x_105, x_104); x_107 = lean_array_push(x_106, x_98); -x_108 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_108 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_109 = lean_array_push(x_107, x_108); -x_110 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_110 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_111 = lean_array_push(x_109, x_110); lean_inc(x_11); x_112 = lean_array_push(x_96, x_11); @@ -7082,7 +7082,7 @@ if (lean_is_exclusive(x_131)) { } x_134 = l_Array_empty___closed__1; x_135 = lean_array_push(x_134, x_35); -x_136 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_136 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_137 = lean_array_push(x_135, x_136); x_138 = l_Lean_mkTermIdFromIdent___closed__2; x_139 = lean_alloc_ctor(1, 2, 0); @@ -7093,12 +7093,12 @@ x_141 = l_Lean_nullKind___closed__2; x_142 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_142, 0, x_141); lean_ctor_set(x_142, 1, x_140); -x_143 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_143 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_144 = lean_array_push(x_143, x_142); x_145 = lean_array_push(x_144, x_136); -x_146 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_146 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_147 = lean_array_push(x_145, x_146); -x_148 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_148 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_149 = lean_array_push(x_147, x_148); lean_inc(x_11); x_150 = lean_array_push(x_134, x_11); @@ -7198,7 +7198,7 @@ lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_dec(x_178); lean_dec(x_176); lean_dec(x_2); -x_179 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_179 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_180 = l_Lean_Elab_Term_throwError___rarg(x_11, x_179, x_5, x_6); lean_dec(x_11); x_181 = !lean_is_exclusive(x_180); @@ -7262,7 +7262,7 @@ lean_inc(x_192); x_197 = l_Lean_Elab_Term_mkExplicitBinder(x_192, x_196); x_198 = lean_array_push(x_4, x_197); lean_inc(x_5); -x_199 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_195, x_198, x_5, x_193); +x_199 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_195, x_198, x_5, x_193); if (lean_obj_tag(x_199) == 0) { lean_object* x_200; lean_object* x_201; uint8_t x_202; @@ -7290,7 +7290,7 @@ x_208 = lean_ctor_get(x_206, 0); lean_dec(x_208); x_209 = l_Array_empty___closed__1; x_210 = lean_array_push(x_209, x_192); -x_211 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_211 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_212 = lean_array_push(x_210, x_211); x_213 = l_Lean_mkTermIdFromIdent___closed__2; x_214 = lean_alloc_ctor(1, 2, 0); @@ -7301,12 +7301,12 @@ x_216 = l_Lean_nullKind___closed__2; x_217 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_217, 0, x_216); lean_ctor_set(x_217, 1, x_215); -x_218 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_218 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_219 = lean_array_push(x_218, x_217); x_220 = lean_array_push(x_219, x_211); -x_221 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_221 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_222 = lean_array_push(x_220, x_221); -x_223 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_223 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_224 = lean_array_push(x_222, x_223); lean_inc(x_11); x_225 = lean_array_push(x_209, x_11); @@ -7378,7 +7378,7 @@ lean_inc(x_252); lean_dec(x_206); x_253 = l_Array_empty___closed__1; x_254 = lean_array_push(x_253, x_192); -x_255 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_255 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_256 = lean_array_push(x_254, x_255); x_257 = l_Lean_mkTermIdFromIdent___closed__2; x_258 = lean_alloc_ctor(1, 2, 0); @@ -7389,12 +7389,12 @@ x_260 = l_Lean_nullKind___closed__2; x_261 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_261, 0, x_260); lean_ctor_set(x_261, 1, x_259); -x_262 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_262 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_263 = lean_array_push(x_262, x_261); x_264 = lean_array_push(x_263, x_255); -x_265 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_265 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_266 = lean_array_push(x_264, x_265); -x_267 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_267 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_268 = lean_array_push(x_266, x_267); lean_inc(x_11); x_269 = lean_array_push(x_253, x_11); @@ -7463,7 +7463,7 @@ if (lean_is_exclusive(x_288)) { } x_291 = l_Array_empty___closed__1; x_292 = lean_array_push(x_291, x_192); -x_293 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_293 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_294 = lean_array_push(x_292, x_293); x_295 = l_Lean_mkTermIdFromIdent___closed__2; x_296 = lean_alloc_ctor(1, 2, 0); @@ -7474,12 +7474,12 @@ x_298 = l_Lean_nullKind___closed__2; x_299 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_299, 0, x_298); lean_ctor_set(x_299, 1, x_297); -x_300 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_300 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_301 = lean_array_push(x_300, x_299); x_302 = lean_array_push(x_301, x_293); -x_303 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_303 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_304 = lean_array_push(x_302, x_303); -x_305 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_305 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_306 = lean_array_push(x_304, x_305); lean_inc(x_11); x_307 = lean_array_push(x_291, x_11); @@ -7580,7 +7580,7 @@ lean_object* x_336; lean_object* x_337; uint8_t x_338; lean_dec(x_335); lean_dec(x_333); lean_dec(x_2); -x_336 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_336 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_337 = l_Lean_Elab_Term_throwError___rarg(x_188, x_336, x_5, x_6); lean_dec(x_188); x_338 = !lean_is_exclusive(x_337); @@ -7646,7 +7646,7 @@ lean_inc(x_349); x_354 = l_Lean_Elab_Term_mkExplicitBinder(x_349, x_353); x_355 = lean_array_push(x_4, x_354); lean_inc(x_5); -x_356 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_352, x_355, x_5, x_350); +x_356 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_352, x_355, x_5, x_350); if (lean_obj_tag(x_356) == 0) { lean_object* x_357; lean_object* x_358; uint8_t x_359; @@ -7674,7 +7674,7 @@ x_365 = lean_ctor_get(x_363, 0); lean_dec(x_365); x_366 = l_Array_empty___closed__1; x_367 = lean_array_push(x_366, x_349); -x_368 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_368 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_369 = lean_array_push(x_367, x_368); x_370 = l_Lean_mkTermIdFromIdent___closed__2; x_371 = lean_alloc_ctor(1, 2, 0); @@ -7685,12 +7685,12 @@ x_373 = l_Lean_nullKind___closed__2; x_374 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_374, 0, x_373); lean_ctor_set(x_374, 1, x_372); -x_375 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_375 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_376 = lean_array_push(x_375, x_374); x_377 = lean_array_push(x_376, x_368); -x_378 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_378 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_379 = lean_array_push(x_377, x_378); -x_380 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_380 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_381 = lean_array_push(x_379, x_380); lean_inc(x_11); x_382 = lean_array_push(x_366, x_11); @@ -7762,7 +7762,7 @@ lean_inc(x_409); lean_dec(x_363); x_410 = l_Array_empty___closed__1; x_411 = lean_array_push(x_410, x_349); -x_412 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_412 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_413 = lean_array_push(x_411, x_412); x_414 = l_Lean_mkTermIdFromIdent___closed__2; x_415 = lean_alloc_ctor(1, 2, 0); @@ -7773,12 +7773,12 @@ x_417 = l_Lean_nullKind___closed__2; x_418 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_418, 0, x_417); lean_ctor_set(x_418, 1, x_416); -x_419 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_419 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_420 = lean_array_push(x_419, x_418); x_421 = lean_array_push(x_420, x_412); -x_422 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_422 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_423 = lean_array_push(x_421, x_422); -x_424 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_424 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_425 = lean_array_push(x_423, x_424); lean_inc(x_11); x_426 = lean_array_push(x_410, x_11); @@ -7847,7 +7847,7 @@ if (lean_is_exclusive(x_445)) { } x_448 = l_Array_empty___closed__1; x_449 = lean_array_push(x_448, x_349); -x_450 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_450 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_451 = lean_array_push(x_449, x_450); x_452 = l_Lean_mkTermIdFromIdent___closed__2; x_453 = lean_alloc_ctor(1, 2, 0); @@ -7858,12 +7858,12 @@ x_455 = l_Lean_nullKind___closed__2; x_456 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_456, 0, x_455); lean_ctor_set(x_456, 1, x_454); -x_457 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_457 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_458 = lean_array_push(x_457, x_456); x_459 = lean_array_push(x_458, x_450); -x_460 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_460 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_461 = lean_array_push(x_459, x_460); -x_462 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_462 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_463 = lean_array_push(x_461, x_462); lean_inc(x_11); x_464 = lean_array_push(x_448, x_11); @@ -7964,7 +7964,7 @@ lean_object* x_493; lean_object* x_494; uint8_t x_495; lean_dec(x_492); lean_dec(x_490); lean_dec(x_2); -x_493 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_493 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_494 = l_Lean_Elab_Term_throwError___rarg(x_345, x_493, x_5, x_6); lean_dec(x_345); x_495 = !lean_is_exclusive(x_494); @@ -8046,7 +8046,7 @@ lean_inc(x_512); x_517 = l_Lean_Elab_Term_mkExplicitBinder(x_512, x_516); x_518 = lean_array_push(x_4, x_517); lean_inc(x_5); -x_519 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_515, x_518, x_5, x_513); +x_519 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_515, x_518, x_5, x_513); if (lean_obj_tag(x_519) == 0) { lean_object* x_520; lean_object* x_521; uint8_t x_522; @@ -8074,7 +8074,7 @@ x_528 = lean_ctor_get(x_526, 0); lean_dec(x_528); x_529 = l_Array_empty___closed__1; x_530 = lean_array_push(x_529, x_512); -x_531 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_531 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_532 = lean_array_push(x_530, x_531); x_533 = l_Lean_mkTermIdFromIdent___closed__2; x_534 = lean_alloc_ctor(1, 2, 0); @@ -8085,12 +8085,12 @@ x_536 = l_Lean_nullKind___closed__2; x_537 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_537, 0, x_536); lean_ctor_set(x_537, 1, x_535); -x_538 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_538 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_539 = lean_array_push(x_538, x_537); x_540 = lean_array_push(x_539, x_531); -x_541 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_541 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_542 = lean_array_push(x_540, x_541); -x_543 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_543 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_544 = lean_array_push(x_542, x_543); lean_inc(x_11); x_545 = lean_array_push(x_529, x_11); @@ -8162,7 +8162,7 @@ lean_inc(x_572); lean_dec(x_526); x_573 = l_Array_empty___closed__1; x_574 = lean_array_push(x_573, x_512); -x_575 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_575 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_576 = lean_array_push(x_574, x_575); x_577 = l_Lean_mkTermIdFromIdent___closed__2; x_578 = lean_alloc_ctor(1, 2, 0); @@ -8173,12 +8173,12 @@ x_580 = l_Lean_nullKind___closed__2; x_581 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_581, 0, x_580); lean_ctor_set(x_581, 1, x_579); -x_582 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_582 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_583 = lean_array_push(x_582, x_581); x_584 = lean_array_push(x_583, x_575); -x_585 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_585 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_586 = lean_array_push(x_584, x_585); -x_587 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_587 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_588 = lean_array_push(x_586, x_587); lean_inc(x_11); x_589 = lean_array_push(x_573, x_11); @@ -8247,7 +8247,7 @@ if (lean_is_exclusive(x_608)) { } x_611 = l_Array_empty___closed__1; x_612 = lean_array_push(x_611, x_512); -x_613 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_613 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_614 = lean_array_push(x_612, x_613); x_615 = l_Lean_mkTermIdFromIdent___closed__2; x_616 = lean_alloc_ctor(1, 2, 0); @@ -8258,12 +8258,12 @@ x_618 = l_Lean_nullKind___closed__2; x_619 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_619, 0, x_618); lean_ctor_set(x_619, 1, x_617); -x_620 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_620 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_621 = lean_array_push(x_620, x_619); x_622 = lean_array_push(x_621, x_613); -x_623 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_623 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_624 = lean_array_push(x_622, x_623); -x_625 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_625 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_626 = lean_array_push(x_624, x_625); lean_inc(x_11); x_627 = lean_array_push(x_611, x_11); @@ -8364,7 +8364,7 @@ lean_object* x_656; lean_object* x_657; uint8_t x_658; lean_dec(x_655); lean_dec(x_653); lean_dec(x_2); -x_656 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_656 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_657 = l_Lean_Elab_Term_throwError___rarg(x_508, x_656, x_5, x_6); lean_dec(x_508); x_658 = !lean_is_exclusive(x_657); @@ -8448,7 +8448,7 @@ lean_inc(x_679); x_683 = l_Lean_Elab_Term_mkExplicitBinder(x_679, x_682); x_684 = lean_array_push(x_4, x_683); lean_inc(x_5); -x_685 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_681, x_684, x_5, x_680); +x_685 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_681, x_684, x_5, x_680); if (lean_obj_tag(x_685) == 0) { lean_object* x_686; lean_object* x_687; uint8_t x_688; @@ -8476,7 +8476,7 @@ x_694 = lean_ctor_get(x_692, 0); lean_dec(x_694); x_695 = l_Array_empty___closed__1; x_696 = lean_array_push(x_695, x_679); -x_697 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_697 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_698 = lean_array_push(x_696, x_697); x_699 = l_Lean_mkTermIdFromIdent___closed__2; x_700 = lean_alloc_ctor(1, 2, 0); @@ -8487,12 +8487,12 @@ x_702 = l_Lean_nullKind___closed__2; x_703 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_703, 0, x_702); lean_ctor_set(x_703, 1, x_701); -x_704 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_704 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_705 = lean_array_push(x_704, x_703); x_706 = lean_array_push(x_705, x_697); -x_707 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_707 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_708 = lean_array_push(x_706, x_707); -x_709 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_709 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_710 = lean_array_push(x_708, x_709); lean_inc(x_11); x_711 = lean_array_push(x_695, x_11); @@ -8564,7 +8564,7 @@ lean_inc(x_738); lean_dec(x_692); x_739 = l_Array_empty___closed__1; x_740 = lean_array_push(x_739, x_679); -x_741 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_741 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_742 = lean_array_push(x_740, x_741); x_743 = l_Lean_mkTermIdFromIdent___closed__2; x_744 = lean_alloc_ctor(1, 2, 0); @@ -8575,12 +8575,12 @@ x_746 = l_Lean_nullKind___closed__2; x_747 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_747, 0, x_746); lean_ctor_set(x_747, 1, x_745); -x_748 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_748 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_749 = lean_array_push(x_748, x_747); x_750 = lean_array_push(x_749, x_741); -x_751 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_751 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_752 = lean_array_push(x_750, x_751); -x_753 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_753 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_754 = lean_array_push(x_752, x_753); lean_inc(x_11); x_755 = lean_array_push(x_739, x_11); @@ -8649,7 +8649,7 @@ if (lean_is_exclusive(x_774)) { } x_777 = l_Array_empty___closed__1; x_778 = lean_array_push(x_777, x_679); -x_779 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_779 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_780 = lean_array_push(x_778, x_779); x_781 = l_Lean_mkTermIdFromIdent___closed__2; x_782 = lean_alloc_ctor(1, 2, 0); @@ -8660,12 +8660,12 @@ x_784 = l_Lean_nullKind___closed__2; x_785 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_785, 0, x_784); lean_ctor_set(x_785, 1, x_783); -x_786 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_786 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_787 = lean_array_push(x_786, x_785); x_788 = lean_array_push(x_787, x_779); -x_789 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_789 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_790 = lean_array_push(x_788, x_789); -x_791 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_791 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_792 = lean_array_push(x_790, x_791); lean_inc(x_11); x_793 = lean_array_push(x_777, x_11); @@ -8745,7 +8745,7 @@ else lean_object* x_813; lean_object* x_814; lean_object* x_815; x_813 = l_Lean_Syntax_getArg(x_670, x_663); lean_dec(x_670); -x_814 = l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_667, x_5, x_6); +x_814 = l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_667, x_5, x_6); x_815 = lean_ctor_get(x_814, 0); lean_inc(x_815); if (lean_obj_tag(x_815) == 0) @@ -8768,7 +8768,7 @@ lean_inc(x_818); x_822 = l_Lean_Elab_Term_mkExplicitBinder(x_818, x_821); x_823 = lean_array_push(x_4, x_822); lean_inc(x_5); -x_824 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_820, x_823, x_5, x_819); +x_824 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_820, x_823, x_5, x_819); if (lean_obj_tag(x_824) == 0) { lean_object* x_825; lean_object* x_826; uint8_t x_827; @@ -8796,7 +8796,7 @@ x_833 = lean_ctor_get(x_831, 0); lean_dec(x_833); x_834 = l_Array_empty___closed__1; x_835 = lean_array_push(x_834, x_818); -x_836 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_836 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_837 = lean_array_push(x_835, x_836); x_838 = l_Lean_mkTermIdFromIdent___closed__2; x_839 = lean_alloc_ctor(1, 2, 0); @@ -8807,12 +8807,12 @@ x_841 = l_Lean_nullKind___closed__2; x_842 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_842, 0, x_841); lean_ctor_set(x_842, 1, x_840); -x_843 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_843 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_844 = lean_array_push(x_843, x_842); x_845 = lean_array_push(x_844, x_836); -x_846 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_846 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_847 = lean_array_push(x_845, x_846); -x_848 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_848 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_849 = lean_array_push(x_847, x_848); lean_inc(x_11); x_850 = lean_array_push(x_834, x_11); @@ -8884,7 +8884,7 @@ lean_inc(x_877); lean_dec(x_831); x_878 = l_Array_empty___closed__1; x_879 = lean_array_push(x_878, x_818); -x_880 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_880 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_881 = lean_array_push(x_879, x_880); x_882 = l_Lean_mkTermIdFromIdent___closed__2; x_883 = lean_alloc_ctor(1, 2, 0); @@ -8895,12 +8895,12 @@ x_885 = l_Lean_nullKind___closed__2; x_886 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_886, 0, x_885); lean_ctor_set(x_886, 1, x_884); -x_887 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_887 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_888 = lean_array_push(x_887, x_886); x_889 = lean_array_push(x_888, x_880); -x_890 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_890 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_891 = lean_array_push(x_889, x_890); -x_892 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_892 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_893 = lean_array_push(x_891, x_892); lean_inc(x_11); x_894 = lean_array_push(x_878, x_11); @@ -8969,7 +8969,7 @@ if (lean_is_exclusive(x_913)) { } x_916 = l_Array_empty___closed__1; x_917 = lean_array_push(x_916, x_818); -x_918 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_918 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_919 = lean_array_push(x_917, x_918); x_920 = l_Lean_mkTermIdFromIdent___closed__2; x_921 = lean_alloc_ctor(1, 2, 0); @@ -8980,12 +8980,12 @@ x_923 = l_Lean_nullKind___closed__2; x_924 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_924, 0, x_923); lean_ctor_set(x_924, 1, x_922); -x_925 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_925 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_926 = lean_array_push(x_925, x_924); x_927 = lean_array_push(x_926, x_918); -x_928 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_928 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_929 = lean_array_push(x_927, x_928); -x_930 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_930 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_931 = lean_array_push(x_929, x_930); lean_inc(x_11); x_932 = lean_array_push(x_916, x_11); @@ -9073,7 +9073,7 @@ lean_dec(x_815); x_954 = lean_nat_add(x_3, x_663); lean_dec(x_3); x_955 = x_953; -x_956 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_813, x_666, x_955); +x_956 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_813, x_666, x_955); x_957 = x_956; x_958 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_957, x_957, x_666, x_4); lean_dec(x_957); @@ -9102,7 +9102,7 @@ lean_inc(x_961); x_965 = l_Lean_Elab_Term_mkExplicitBinder(x_961, x_964); x_966 = lean_array_push(x_4, x_965); lean_inc(x_5); -x_967 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_963, x_966, x_5, x_962); +x_967 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_963, x_966, x_5, x_962); if (lean_obj_tag(x_967) == 0) { lean_object* x_968; lean_object* x_969; uint8_t x_970; @@ -9130,7 +9130,7 @@ x_976 = lean_ctor_get(x_974, 0); lean_dec(x_976); x_977 = l_Array_empty___closed__1; x_978 = lean_array_push(x_977, x_961); -x_979 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_979 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_980 = lean_array_push(x_978, x_979); x_981 = l_Lean_mkTermIdFromIdent___closed__2; x_982 = lean_alloc_ctor(1, 2, 0); @@ -9141,12 +9141,12 @@ x_984 = l_Lean_nullKind___closed__2; x_985 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_985, 0, x_984); lean_ctor_set(x_985, 1, x_983); -x_986 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_986 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_987 = lean_array_push(x_986, x_985); x_988 = lean_array_push(x_987, x_979); -x_989 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_989 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_990 = lean_array_push(x_988, x_989); -x_991 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_991 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_992 = lean_array_push(x_990, x_991); lean_inc(x_11); x_993 = lean_array_push(x_977, x_11); @@ -9218,7 +9218,7 @@ lean_inc(x_1020); lean_dec(x_974); x_1021 = l_Array_empty___closed__1; x_1022 = lean_array_push(x_1021, x_961); -x_1023 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1023 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1024 = lean_array_push(x_1022, x_1023); x_1025 = l_Lean_mkTermIdFromIdent___closed__2; x_1026 = lean_alloc_ctor(1, 2, 0); @@ -9229,12 +9229,12 @@ x_1028 = l_Lean_nullKind___closed__2; x_1029 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1029, 0, x_1028); lean_ctor_set(x_1029, 1, x_1027); -x_1030 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1030 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1031 = lean_array_push(x_1030, x_1029); x_1032 = lean_array_push(x_1031, x_1023); -x_1033 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1033 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1034 = lean_array_push(x_1032, x_1033); -x_1035 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1035 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1036 = lean_array_push(x_1034, x_1035); lean_inc(x_11); x_1037 = lean_array_push(x_1021, x_11); @@ -9303,7 +9303,7 @@ if (lean_is_exclusive(x_1056)) { } x_1059 = l_Array_empty___closed__1; x_1060 = lean_array_push(x_1059, x_961); -x_1061 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1061 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1062 = lean_array_push(x_1060, x_1061); x_1063 = l_Lean_mkTermIdFromIdent___closed__2; x_1064 = lean_alloc_ctor(1, 2, 0); @@ -9314,12 +9314,12 @@ x_1066 = l_Lean_nullKind___closed__2; x_1067 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1067, 0, x_1066); lean_ctor_set(x_1067, 1, x_1065); -x_1068 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1068 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1069 = lean_array_push(x_1068, x_1067); x_1070 = lean_array_push(x_1069, x_1061); -x_1071 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1071 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1072 = lean_array_push(x_1070, x_1071); -x_1073 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1073 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1074 = lean_array_push(x_1072, x_1073); lean_inc(x_11); x_1075 = lean_array_push(x_1059, x_11); @@ -9412,7 +9412,7 @@ lean_inc(x_1096); x_1100 = l_Lean_Elab_Term_mkExplicitBinder(x_1096, x_1099); x_1101 = lean_array_push(x_4, x_1100); lean_inc(x_5); -x_1102 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1098, x_1101, x_5, x_1097); +x_1102 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1098, x_1101, x_5, x_1097); if (lean_obj_tag(x_1102) == 0) { lean_object* x_1103; lean_object* x_1104; uint8_t x_1105; @@ -9440,7 +9440,7 @@ x_1111 = lean_ctor_get(x_1109, 0); lean_dec(x_1111); x_1112 = l_Array_empty___closed__1; x_1113 = lean_array_push(x_1112, x_1096); -x_1114 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1114 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1115 = lean_array_push(x_1113, x_1114); x_1116 = l_Lean_mkTermIdFromIdent___closed__2; x_1117 = lean_alloc_ctor(1, 2, 0); @@ -9451,12 +9451,12 @@ x_1119 = l_Lean_nullKind___closed__2; x_1120 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1120, 0, x_1119); lean_ctor_set(x_1120, 1, x_1118); -x_1121 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1121 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1122 = lean_array_push(x_1121, x_1120); x_1123 = lean_array_push(x_1122, x_1114); -x_1124 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1124 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1125 = lean_array_push(x_1123, x_1124); -x_1126 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1126 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1127 = lean_array_push(x_1125, x_1126); lean_inc(x_11); x_1128 = lean_array_push(x_1112, x_11); @@ -9528,7 +9528,7 @@ lean_inc(x_1155); lean_dec(x_1109); x_1156 = l_Array_empty___closed__1; x_1157 = lean_array_push(x_1156, x_1096); -x_1158 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1158 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1159 = lean_array_push(x_1157, x_1158); x_1160 = l_Lean_mkTermIdFromIdent___closed__2; x_1161 = lean_alloc_ctor(1, 2, 0); @@ -9539,12 +9539,12 @@ x_1163 = l_Lean_nullKind___closed__2; x_1164 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1164, 0, x_1163); lean_ctor_set(x_1164, 1, x_1162); -x_1165 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1165 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1166 = lean_array_push(x_1165, x_1164); x_1167 = lean_array_push(x_1166, x_1158); -x_1168 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1168 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1169 = lean_array_push(x_1167, x_1168); -x_1170 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1170 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1171 = lean_array_push(x_1169, x_1170); lean_inc(x_11); x_1172 = lean_array_push(x_1156, x_11); @@ -9613,7 +9613,7 @@ if (lean_is_exclusive(x_1191)) { } x_1194 = l_Array_empty___closed__1; x_1195 = lean_array_push(x_1194, x_1096); -x_1196 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1196 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1197 = lean_array_push(x_1195, x_1196); x_1198 = l_Lean_mkTermIdFromIdent___closed__2; x_1199 = lean_alloc_ctor(1, 2, 0); @@ -9624,12 +9624,12 @@ x_1201 = l_Lean_nullKind___closed__2; x_1202 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1202, 0, x_1201); lean_ctor_set(x_1202, 1, x_1200); -x_1203 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1203 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1204 = lean_array_push(x_1203, x_1202); x_1205 = lean_array_push(x_1204, x_1196); -x_1206 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1206 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1207 = lean_array_push(x_1205, x_1206); -x_1208 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1208 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1209 = lean_array_push(x_1207, x_1208); lean_inc(x_11); x_1210 = lean_array_push(x_1194, x_11); @@ -9811,7 +9811,7 @@ lean_inc(x_1253); x_1258 = l_Lean_Elab_Term_mkExplicitBinder(x_1253, x_1257); x_1259 = lean_array_push(x_4, x_1258); lean_inc(x_5); -x_1260 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1256, x_1259, x_5, x_1254); +x_1260 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1256, x_1259, x_5, x_1254); if (lean_obj_tag(x_1260) == 0) { lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; @@ -9850,7 +9850,7 @@ if (lean_is_exclusive(x_1268)) { } x_1271 = l_Array_empty___closed__1; x_1272 = lean_array_push(x_1271, x_1253); -x_1273 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1273 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1274 = lean_array_push(x_1272, x_1273); x_1275 = l_Lean_mkTermIdFromIdent___closed__2; x_1276 = lean_alloc_ctor(1, 2, 0); @@ -9861,12 +9861,12 @@ x_1278 = l_Lean_nullKind___closed__2; x_1279 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1279, 0, x_1278); lean_ctor_set(x_1279, 1, x_1277); -x_1280 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1280 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1281 = lean_array_push(x_1280, x_1279); x_1282 = lean_array_push(x_1281, x_1273); -x_1283 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1283 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1284 = lean_array_push(x_1282, x_1283); -x_1285 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1285 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1286 = lean_array_push(x_1284, x_1285); lean_inc(x_11); x_1287 = lean_array_push(x_1271, x_11); @@ -9971,7 +9971,7 @@ lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_13 lean_dec(x_1315); lean_dec(x_1313); lean_dec(x_2); -x_1316 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1316 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_1317 = l_Lean_Elab_Term_throwError___rarg(x_11, x_1316, x_5, x_6); lean_dec(x_11); x_1318 = lean_ctor_get(x_1317, 0); @@ -10041,7 +10041,7 @@ lean_inc(x_1330); x_1335 = l_Lean_Elab_Term_mkExplicitBinder(x_1330, x_1334); x_1336 = lean_array_push(x_4, x_1335); lean_inc(x_5); -x_1337 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1333, x_1336, x_5, x_1331); +x_1337 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1333, x_1336, x_5, x_1331); if (lean_obj_tag(x_1337) == 0) { lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; @@ -10080,7 +10080,7 @@ if (lean_is_exclusive(x_1345)) { } x_1348 = l_Array_empty___closed__1; x_1349 = lean_array_push(x_1348, x_1330); -x_1350 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1350 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1351 = lean_array_push(x_1349, x_1350); x_1352 = l_Lean_mkTermIdFromIdent___closed__2; x_1353 = lean_alloc_ctor(1, 2, 0); @@ -10091,12 +10091,12 @@ x_1355 = l_Lean_nullKind___closed__2; x_1356 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1356, 0, x_1355); lean_ctor_set(x_1356, 1, x_1354); -x_1357 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1357 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1358 = lean_array_push(x_1357, x_1356); x_1359 = lean_array_push(x_1358, x_1350); -x_1360 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1360 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1361 = lean_array_push(x_1359, x_1360); -x_1362 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1362 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1363 = lean_array_push(x_1361, x_1362); lean_inc(x_11); x_1364 = lean_array_push(x_1348, x_11); @@ -10202,7 +10202,7 @@ lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_13 lean_dec(x_1392); lean_dec(x_1390); lean_dec(x_2); -x_1393 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1393 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_1394 = l_Lean_Elab_Term_throwError___rarg(x_1326, x_1393, x_5, x_6); lean_dec(x_1326); x_1395 = lean_ctor_get(x_1394, 0); @@ -10274,7 +10274,7 @@ lean_inc(x_1407); x_1412 = l_Lean_Elab_Term_mkExplicitBinder(x_1407, x_1411); x_1413 = lean_array_push(x_4, x_1412); lean_inc(x_5); -x_1414 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1410, x_1413, x_5, x_1408); +x_1414 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1410, x_1413, x_5, x_1408); if (lean_obj_tag(x_1414) == 0) { lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; @@ -10313,7 +10313,7 @@ if (lean_is_exclusive(x_1422)) { } x_1425 = l_Array_empty___closed__1; x_1426 = lean_array_push(x_1425, x_1407); -x_1427 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1427 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1428 = lean_array_push(x_1426, x_1427); x_1429 = l_Lean_mkTermIdFromIdent___closed__2; x_1430 = lean_alloc_ctor(1, 2, 0); @@ -10324,12 +10324,12 @@ x_1432 = l_Lean_nullKind___closed__2; x_1433 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1433, 0, x_1432); lean_ctor_set(x_1433, 1, x_1431); -x_1434 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1434 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1435 = lean_array_push(x_1434, x_1433); x_1436 = lean_array_push(x_1435, x_1427); -x_1437 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1437 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1438 = lean_array_push(x_1436, x_1437); -x_1439 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1439 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1440 = lean_array_push(x_1438, x_1439); lean_inc(x_11); x_1441 = lean_array_push(x_1425, x_11); @@ -10435,7 +10435,7 @@ lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_14 lean_dec(x_1469); lean_dec(x_1467); lean_dec(x_2); -x_1470 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1470 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_1471 = l_Lean_Elab_Term_throwError___rarg(x_1403, x_1470, x_5, x_6); lean_dec(x_1403); x_1472 = lean_ctor_get(x_1471, 0); @@ -10523,7 +10523,7 @@ lean_inc(x_1490); x_1495 = l_Lean_Elab_Term_mkExplicitBinder(x_1490, x_1494); x_1496 = lean_array_push(x_4, x_1495); lean_inc(x_5); -x_1497 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1493, x_1496, x_5, x_1491); +x_1497 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1493, x_1496, x_5, x_1491); if (lean_obj_tag(x_1497) == 0) { lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; @@ -10562,7 +10562,7 @@ if (lean_is_exclusive(x_1505)) { } x_1508 = l_Array_empty___closed__1; x_1509 = lean_array_push(x_1508, x_1490); -x_1510 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1510 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1511 = lean_array_push(x_1509, x_1510); x_1512 = l_Lean_mkTermIdFromIdent___closed__2; x_1513 = lean_alloc_ctor(1, 2, 0); @@ -10573,12 +10573,12 @@ x_1515 = l_Lean_nullKind___closed__2; x_1516 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1516, 0, x_1515); lean_ctor_set(x_1516, 1, x_1514); -x_1517 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1517 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1518 = lean_array_push(x_1517, x_1516); x_1519 = lean_array_push(x_1518, x_1510); -x_1520 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1520 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1521 = lean_array_push(x_1519, x_1520); -x_1522 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1522 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1523 = lean_array_push(x_1521, x_1522); lean_inc(x_11); x_1524 = lean_array_push(x_1508, x_11); @@ -10684,7 +10684,7 @@ lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_15 lean_dec(x_1552); lean_dec(x_1550); lean_dec(x_2); -x_1553 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1553 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_1554 = l_Lean_Elab_Term_throwError___rarg(x_1486, x_1553, x_5, x_6); lean_dec(x_1486); x_1555 = lean_ctor_get(x_1554, 0); @@ -10769,7 +10769,7 @@ lean_inc(x_1576); x_1580 = l_Lean_Elab_Term_mkExplicitBinder(x_1576, x_1579); x_1581 = lean_array_push(x_4, x_1580); lean_inc(x_5); -x_1582 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1578, x_1581, x_5, x_1577); +x_1582 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1578, x_1581, x_5, x_1577); if (lean_obj_tag(x_1582) == 0) { lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; @@ -10808,7 +10808,7 @@ if (lean_is_exclusive(x_1590)) { } x_1593 = l_Array_empty___closed__1; x_1594 = lean_array_push(x_1593, x_1576); -x_1595 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1595 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1596 = lean_array_push(x_1594, x_1595); x_1597 = l_Lean_mkTermIdFromIdent___closed__2; x_1598 = lean_alloc_ctor(1, 2, 0); @@ -10819,12 +10819,12 @@ x_1600 = l_Lean_nullKind___closed__2; x_1601 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1601, 0, x_1600); lean_ctor_set(x_1601, 1, x_1599); -x_1602 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1602 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1603 = lean_array_push(x_1602, x_1601); x_1604 = lean_array_push(x_1603, x_1595); -x_1605 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1605 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1606 = lean_array_push(x_1604, x_1605); -x_1607 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1607 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1608 = lean_array_push(x_1606, x_1607); lean_inc(x_11); x_1609 = lean_array_push(x_1593, x_11); @@ -10909,7 +10909,7 @@ else lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; x_1629 = l_Lean_Syntax_getArg(x_1567, x_1560); lean_dec(x_1567); -x_1630 = l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_1564, x_5, x_6); +x_1630 = l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_1564, x_5, x_6); x_1631 = lean_ctor_get(x_1630, 0); lean_inc(x_1631); if (lean_obj_tag(x_1631) == 0) @@ -10932,7 +10932,7 @@ lean_inc(x_1634); x_1638 = l_Lean_Elab_Term_mkExplicitBinder(x_1634, x_1637); x_1639 = lean_array_push(x_4, x_1638); lean_inc(x_5); -x_1640 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1636, x_1639, x_5, x_1635); +x_1640 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1636, x_1639, x_5, x_1635); if (lean_obj_tag(x_1640) == 0) { lean_object* x_1641; lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; @@ -10971,7 +10971,7 @@ if (lean_is_exclusive(x_1648)) { } x_1651 = l_Array_empty___closed__1; x_1652 = lean_array_push(x_1651, x_1634); -x_1653 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1653 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1654 = lean_array_push(x_1652, x_1653); x_1655 = l_Lean_mkTermIdFromIdent___closed__2; x_1656 = lean_alloc_ctor(1, 2, 0); @@ -10982,12 +10982,12 @@ x_1658 = l_Lean_nullKind___closed__2; x_1659 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1659, 0, x_1658); lean_ctor_set(x_1659, 1, x_1657); -x_1660 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1660 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1661 = lean_array_push(x_1660, x_1659); x_1662 = lean_array_push(x_1661, x_1653); -x_1663 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1663 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1664 = lean_array_push(x_1662, x_1663); -x_1665 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1665 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1666 = lean_array_push(x_1664, x_1665); lean_inc(x_11); x_1667 = lean_array_push(x_1651, x_11); @@ -11080,7 +11080,7 @@ lean_dec(x_1631); x_1689 = lean_nat_add(x_3, x_1560); lean_dec(x_3); x_1690 = x_1688; -x_1691 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_1629, x_1563, x_1690); +x_1691 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_1629, x_1563, x_1690); x_1692 = x_1691; x_1693 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_1692, x_1692, x_1563, x_4); lean_dec(x_1692); @@ -11109,7 +11109,7 @@ lean_inc(x_1696); x_1700 = l_Lean_Elab_Term_mkExplicitBinder(x_1696, x_1699); x_1701 = lean_array_push(x_4, x_1700); lean_inc(x_5); -x_1702 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1698, x_1701, x_5, x_1697); +x_1702 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1698, x_1701, x_5, x_1697); if (lean_obj_tag(x_1702) == 0) { lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; lean_object* x_1719; lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; lean_object* x_1723; lean_object* x_1724; lean_object* x_1725; lean_object* x_1726; lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; lean_object* x_1730; lean_object* x_1731; lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; lean_object* x_1738; lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; lean_object* x_1742; lean_object* x_1743; lean_object* x_1744; @@ -11148,7 +11148,7 @@ if (lean_is_exclusive(x_1710)) { } x_1713 = l_Array_empty___closed__1; x_1714 = lean_array_push(x_1713, x_1696); -x_1715 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1715 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1716 = lean_array_push(x_1714, x_1715); x_1717 = l_Lean_mkTermIdFromIdent___closed__2; x_1718 = lean_alloc_ctor(1, 2, 0); @@ -11159,12 +11159,12 @@ x_1720 = l_Lean_nullKind___closed__2; x_1721 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1721, 0, x_1720); lean_ctor_set(x_1721, 1, x_1719); -x_1722 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1722 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1723 = lean_array_push(x_1722, x_1721); x_1724 = lean_array_push(x_1723, x_1715); -x_1725 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1725 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1726 = lean_array_push(x_1724, x_1725); -x_1727 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1727 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1728 = lean_array_push(x_1726, x_1727); lean_inc(x_11); x_1729 = lean_array_push(x_1713, x_11); @@ -11262,7 +11262,7 @@ lean_inc(x_1750); x_1754 = l_Lean_Elab_Term_mkExplicitBinder(x_1750, x_1753); x_1755 = lean_array_push(x_4, x_1754); lean_inc(x_5); -x_1756 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1752, x_1755, x_5, x_1751); +x_1756 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1752, x_1755, x_5, x_1751); if (lean_obj_tag(x_1756) == 0) { lean_object* x_1757; lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; lean_object* x_1798; @@ -11301,7 +11301,7 @@ if (lean_is_exclusive(x_1764)) { } x_1767 = l_Array_empty___closed__1; x_1768 = lean_array_push(x_1767, x_1750); -x_1769 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1769 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1770 = lean_array_push(x_1768, x_1769); x_1771 = l_Lean_mkTermIdFromIdent___closed__2; x_1772 = lean_alloc_ctor(1, 2, 0); @@ -11312,12 +11312,12 @@ x_1774 = l_Lean_nullKind___closed__2; x_1775 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1775, 0, x_1774); lean_ctor_set(x_1775, 1, x_1773); -x_1776 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1776 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1777 = lean_array_push(x_1776, x_1775); x_1778 = lean_array_push(x_1777, x_1769); -x_1779 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1779 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1780 = lean_array_push(x_1778, x_1779); -x_1781 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1781 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1782 = lean_array_push(x_1780, x_1781); lean_inc(x_11); x_1783 = lean_array_push(x_1767, x_11); @@ -11513,7 +11513,7 @@ lean_inc(x_1829); x_1834 = l_Lean_Elab_Term_mkExplicitBinder(x_1829, x_1833); x_1835 = lean_array_push(x_4, x_1834); lean_inc(x_5); -x_1836 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1832, x_1835, x_5, x_1830); +x_1836 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1832, x_1835, x_5, x_1830); if (lean_obj_tag(x_1836) == 0) { lean_object* x_1837; lean_object* x_1838; lean_object* x_1839; lean_object* x_1840; lean_object* x_1841; lean_object* x_1842; lean_object* x_1843; lean_object* x_1844; lean_object* x_1845; lean_object* x_1846; lean_object* x_1847; lean_object* x_1848; lean_object* x_1849; lean_object* x_1850; lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; lean_object* x_1854; lean_object* x_1855; lean_object* x_1856; lean_object* x_1857; lean_object* x_1858; lean_object* x_1859; lean_object* x_1860; lean_object* x_1861; lean_object* x_1862; lean_object* x_1863; lean_object* x_1864; lean_object* x_1865; lean_object* x_1866; lean_object* x_1867; lean_object* x_1868; lean_object* x_1869; lean_object* x_1870; lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; @@ -11552,7 +11552,7 @@ if (lean_is_exclusive(x_1844)) { } x_1847 = l_Array_empty___closed__1; x_1848 = lean_array_push(x_1847, x_1829); -x_1849 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1849 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1850 = lean_array_push(x_1848, x_1849); x_1851 = l_Lean_mkTermIdFromIdent___closed__2; x_1852 = lean_alloc_ctor(1, 2, 0); @@ -11563,12 +11563,12 @@ x_1854 = l_Lean_nullKind___closed__2; x_1855 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1855, 0, x_1854); lean_ctor_set(x_1855, 1, x_1853); -x_1856 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1856 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1857 = lean_array_push(x_1856, x_1855); x_1858 = lean_array_push(x_1857, x_1849); -x_1859 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1859 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1860 = lean_array_push(x_1858, x_1859); -x_1861 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1861 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1862 = lean_array_push(x_1860, x_1861); lean_inc(x_11); x_1863 = lean_array_push(x_1847, x_11); @@ -11673,7 +11673,7 @@ lean_object* x_1892; lean_object* x_1893; lean_object* x_1894; lean_object* x_18 lean_dec(x_1891); lean_dec(x_1889); lean_dec(x_2); -x_1892 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1892 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_1893 = l_Lean_Elab_Term_throwError___rarg(x_11, x_1892, x_5, x_6); lean_dec(x_11); x_1894 = lean_ctor_get(x_1893, 0); @@ -11751,7 +11751,7 @@ lean_inc(x_1907); x_1912 = l_Lean_Elab_Term_mkExplicitBinder(x_1907, x_1911); x_1913 = lean_array_push(x_4, x_1912); lean_inc(x_5); -x_1914 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1910, x_1913, x_5, x_1908); +x_1914 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1910, x_1913, x_5, x_1908); if (lean_obj_tag(x_1914) == 0) { lean_object* x_1915; lean_object* x_1916; lean_object* x_1917; lean_object* x_1918; lean_object* x_1919; lean_object* x_1920; lean_object* x_1921; lean_object* x_1922; lean_object* x_1923; lean_object* x_1924; lean_object* x_1925; lean_object* x_1926; lean_object* x_1927; lean_object* x_1928; lean_object* x_1929; lean_object* x_1930; lean_object* x_1931; lean_object* x_1932; lean_object* x_1933; lean_object* x_1934; lean_object* x_1935; lean_object* x_1936; lean_object* x_1937; lean_object* x_1938; lean_object* x_1939; lean_object* x_1940; lean_object* x_1941; lean_object* x_1942; lean_object* x_1943; lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; lean_object* x_1947; lean_object* x_1948; lean_object* x_1949; lean_object* x_1950; lean_object* x_1951; lean_object* x_1952; lean_object* x_1953; lean_object* x_1954; lean_object* x_1955; lean_object* x_1956; @@ -11790,7 +11790,7 @@ if (lean_is_exclusive(x_1922)) { } x_1925 = l_Array_empty___closed__1; x_1926 = lean_array_push(x_1925, x_1907); -x_1927 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1927 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1928 = lean_array_push(x_1926, x_1927); x_1929 = l_Lean_mkTermIdFromIdent___closed__2; x_1930 = lean_alloc_ctor(1, 2, 0); @@ -11801,12 +11801,12 @@ x_1932 = l_Lean_nullKind___closed__2; x_1933 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1933, 0, x_1932); lean_ctor_set(x_1933, 1, x_1931); -x_1934 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_1934 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_1935 = lean_array_push(x_1934, x_1933); x_1936 = lean_array_push(x_1935, x_1927); -x_1937 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_1937 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_1938 = lean_array_push(x_1936, x_1937); -x_1939 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_1939 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_1940 = lean_array_push(x_1938, x_1939); lean_inc(x_11); x_1941 = lean_array_push(x_1925, x_11); @@ -11912,7 +11912,7 @@ lean_object* x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_19 lean_dec(x_1969); lean_dec(x_1967); lean_dec(x_2); -x_1970 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_1970 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_1971 = l_Lean_Elab_Term_throwError___rarg(x_1903, x_1970, x_5, x_6); lean_dec(x_1903); x_1972 = lean_ctor_get(x_1971, 0); @@ -11991,7 +11991,7 @@ lean_inc(x_1985); x_1990 = l_Lean_Elab_Term_mkExplicitBinder(x_1985, x_1989); x_1991 = lean_array_push(x_4, x_1990); lean_inc(x_5); -x_1992 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1988, x_1991, x_5, x_1986); +x_1992 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_1988, x_1991, x_5, x_1986); if (lean_obj_tag(x_1992) == 0) { lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; lean_object* x_1996; lean_object* x_1997; lean_object* x_1998; lean_object* x_1999; lean_object* x_2000; lean_object* x_2001; lean_object* x_2002; lean_object* x_2003; lean_object* x_2004; lean_object* x_2005; lean_object* x_2006; lean_object* x_2007; lean_object* x_2008; lean_object* x_2009; lean_object* x_2010; lean_object* x_2011; lean_object* x_2012; lean_object* x_2013; lean_object* x_2014; lean_object* x_2015; lean_object* x_2016; lean_object* x_2017; lean_object* x_2018; lean_object* x_2019; lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; lean_object* x_2023; lean_object* x_2024; lean_object* x_2025; lean_object* x_2026; lean_object* x_2027; lean_object* x_2028; lean_object* x_2029; lean_object* x_2030; lean_object* x_2031; lean_object* x_2032; lean_object* x_2033; lean_object* x_2034; @@ -12030,7 +12030,7 @@ if (lean_is_exclusive(x_2000)) { } x_2003 = l_Array_empty___closed__1; x_2004 = lean_array_push(x_2003, x_1985); -x_2005 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2005 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2006 = lean_array_push(x_2004, x_2005); x_2007 = l_Lean_mkTermIdFromIdent___closed__2; x_2008 = lean_alloc_ctor(1, 2, 0); @@ -12041,12 +12041,12 @@ x_2010 = l_Lean_nullKind___closed__2; x_2011 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2011, 0, x_2010); lean_ctor_set(x_2011, 1, x_2009); -x_2012 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2012 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2013 = lean_array_push(x_2012, x_2011); x_2014 = lean_array_push(x_2013, x_2005); -x_2015 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2015 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2016 = lean_array_push(x_2014, x_2015); -x_2017 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2017 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2018 = lean_array_push(x_2016, x_2017); lean_inc(x_11); x_2019 = lean_array_push(x_2003, x_11); @@ -12152,7 +12152,7 @@ lean_object* x_2048; lean_object* x_2049; lean_object* x_2050; lean_object* x_20 lean_dec(x_2047); lean_dec(x_2045); lean_dec(x_2); -x_2048 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2048 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_2049 = l_Lean_Elab_Term_throwError___rarg(x_1981, x_2048, x_5, x_6); lean_dec(x_1981); x_2050 = lean_ctor_get(x_2049, 0); @@ -12247,7 +12247,7 @@ lean_inc(x_2069); x_2074 = l_Lean_Elab_Term_mkExplicitBinder(x_2069, x_2073); x_2075 = lean_array_push(x_4, x_2074); lean_inc(x_5); -x_2076 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2072, x_2075, x_5, x_2070); +x_2076 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2072, x_2075, x_5, x_2070); if (lean_obj_tag(x_2076) == 0) { lean_object* x_2077; lean_object* x_2078; lean_object* x_2079; lean_object* x_2080; lean_object* x_2081; lean_object* x_2082; lean_object* x_2083; lean_object* x_2084; lean_object* x_2085; lean_object* x_2086; lean_object* x_2087; lean_object* x_2088; lean_object* x_2089; lean_object* x_2090; lean_object* x_2091; lean_object* x_2092; lean_object* x_2093; lean_object* x_2094; lean_object* x_2095; lean_object* x_2096; lean_object* x_2097; lean_object* x_2098; lean_object* x_2099; lean_object* x_2100; lean_object* x_2101; lean_object* x_2102; lean_object* x_2103; lean_object* x_2104; lean_object* x_2105; lean_object* x_2106; lean_object* x_2107; lean_object* x_2108; lean_object* x_2109; lean_object* x_2110; lean_object* x_2111; lean_object* x_2112; lean_object* x_2113; lean_object* x_2114; lean_object* x_2115; lean_object* x_2116; lean_object* x_2117; lean_object* x_2118; @@ -12286,7 +12286,7 @@ if (lean_is_exclusive(x_2084)) { } x_2087 = l_Array_empty___closed__1; x_2088 = lean_array_push(x_2087, x_2069); -x_2089 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2089 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2090 = lean_array_push(x_2088, x_2089); x_2091 = l_Lean_mkTermIdFromIdent___closed__2; x_2092 = lean_alloc_ctor(1, 2, 0); @@ -12297,12 +12297,12 @@ x_2094 = l_Lean_nullKind___closed__2; x_2095 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2095, 0, x_2094); lean_ctor_set(x_2095, 1, x_2093); -x_2096 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2096 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2097 = lean_array_push(x_2096, x_2095); x_2098 = lean_array_push(x_2097, x_2089); -x_2099 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2099 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2100 = lean_array_push(x_2098, x_2099); -x_2101 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2101 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2102 = lean_array_push(x_2100, x_2101); lean_inc(x_11); x_2103 = lean_array_push(x_2087, x_11); @@ -12408,7 +12408,7 @@ lean_object* x_2132; lean_object* x_2133; lean_object* x_2134; lean_object* x_21 lean_dec(x_2131); lean_dec(x_2129); lean_dec(x_2); -x_2132 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2132 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_2133 = l_Lean_Elab_Term_throwError___rarg(x_2065, x_2132, x_5, x_6); lean_dec(x_2065); x_2134 = lean_ctor_get(x_2133, 0); @@ -12493,7 +12493,7 @@ lean_inc(x_2155); x_2159 = l_Lean_Elab_Term_mkExplicitBinder(x_2155, x_2158); x_2160 = lean_array_push(x_4, x_2159); lean_inc(x_5); -x_2161 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2157, x_2160, x_5, x_2156); +x_2161 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2157, x_2160, x_5, x_2156); if (lean_obj_tag(x_2161) == 0) { lean_object* x_2162; lean_object* x_2163; lean_object* x_2164; lean_object* x_2165; lean_object* x_2166; lean_object* x_2167; lean_object* x_2168; lean_object* x_2169; lean_object* x_2170; lean_object* x_2171; lean_object* x_2172; lean_object* x_2173; lean_object* x_2174; lean_object* x_2175; lean_object* x_2176; lean_object* x_2177; lean_object* x_2178; lean_object* x_2179; lean_object* x_2180; lean_object* x_2181; lean_object* x_2182; lean_object* x_2183; lean_object* x_2184; lean_object* x_2185; lean_object* x_2186; lean_object* x_2187; lean_object* x_2188; lean_object* x_2189; lean_object* x_2190; lean_object* x_2191; lean_object* x_2192; lean_object* x_2193; lean_object* x_2194; lean_object* x_2195; lean_object* x_2196; lean_object* x_2197; lean_object* x_2198; lean_object* x_2199; lean_object* x_2200; lean_object* x_2201; lean_object* x_2202; lean_object* x_2203; @@ -12532,7 +12532,7 @@ if (lean_is_exclusive(x_2169)) { } x_2172 = l_Array_empty___closed__1; x_2173 = lean_array_push(x_2172, x_2155); -x_2174 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2174 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2175 = lean_array_push(x_2173, x_2174); x_2176 = l_Lean_mkTermIdFromIdent___closed__2; x_2177 = lean_alloc_ctor(1, 2, 0); @@ -12543,12 +12543,12 @@ x_2179 = l_Lean_nullKind___closed__2; x_2180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2180, 0, x_2179); lean_ctor_set(x_2180, 1, x_2178); -x_2181 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2181 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2182 = lean_array_push(x_2181, x_2180); x_2183 = lean_array_push(x_2182, x_2174); -x_2184 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2184 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2185 = lean_array_push(x_2183, x_2184); -x_2186 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2186 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2187 = lean_array_push(x_2185, x_2186); lean_inc(x_11); x_2188 = lean_array_push(x_2172, x_11); @@ -12633,7 +12633,7 @@ else lean_object* x_2208; lean_object* x_2209; lean_object* x_2210; x_2208 = l_Lean_Syntax_getArg(x_2146, x_2139); lean_dec(x_2146); -x_2209 = l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_2143, x_5, x_6); +x_2209 = l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_2143, x_5, x_6); x_2210 = lean_ctor_get(x_2209, 0); lean_inc(x_2210); if (lean_obj_tag(x_2210) == 0) @@ -12656,7 +12656,7 @@ lean_inc(x_2213); x_2217 = l_Lean_Elab_Term_mkExplicitBinder(x_2213, x_2216); x_2218 = lean_array_push(x_4, x_2217); lean_inc(x_5); -x_2219 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2215, x_2218, x_5, x_2214); +x_2219 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2215, x_2218, x_5, x_2214); if (lean_obj_tag(x_2219) == 0) { lean_object* x_2220; lean_object* x_2221; lean_object* x_2222; lean_object* x_2223; lean_object* x_2224; lean_object* x_2225; lean_object* x_2226; lean_object* x_2227; lean_object* x_2228; lean_object* x_2229; lean_object* x_2230; lean_object* x_2231; lean_object* x_2232; lean_object* x_2233; lean_object* x_2234; lean_object* x_2235; lean_object* x_2236; lean_object* x_2237; lean_object* x_2238; lean_object* x_2239; lean_object* x_2240; lean_object* x_2241; lean_object* x_2242; lean_object* x_2243; lean_object* x_2244; lean_object* x_2245; lean_object* x_2246; lean_object* x_2247; lean_object* x_2248; lean_object* x_2249; lean_object* x_2250; lean_object* x_2251; lean_object* x_2252; lean_object* x_2253; lean_object* x_2254; lean_object* x_2255; lean_object* x_2256; lean_object* x_2257; lean_object* x_2258; lean_object* x_2259; lean_object* x_2260; lean_object* x_2261; @@ -12695,7 +12695,7 @@ if (lean_is_exclusive(x_2227)) { } x_2230 = l_Array_empty___closed__1; x_2231 = lean_array_push(x_2230, x_2213); -x_2232 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2232 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2233 = lean_array_push(x_2231, x_2232); x_2234 = l_Lean_mkTermIdFromIdent___closed__2; x_2235 = lean_alloc_ctor(1, 2, 0); @@ -12706,12 +12706,12 @@ x_2237 = l_Lean_nullKind___closed__2; x_2238 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2238, 0, x_2237); lean_ctor_set(x_2238, 1, x_2236); -x_2239 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2239 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2240 = lean_array_push(x_2239, x_2238); x_2241 = lean_array_push(x_2240, x_2232); -x_2242 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2242 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2243 = lean_array_push(x_2241, x_2242); -x_2244 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2244 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2245 = lean_array_push(x_2243, x_2244); lean_inc(x_11); x_2246 = lean_array_push(x_2230, x_11); @@ -12804,7 +12804,7 @@ lean_dec(x_2210); x_2268 = lean_nat_add(x_3, x_2139); lean_dec(x_3); x_2269 = x_2267; -x_2270 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_2208, x_2142, x_2269); +x_2270 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_2208, x_2142, x_2269); x_2271 = x_2270; x_2272 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_2271, x_2271, x_2142, x_4); lean_dec(x_2271); @@ -12833,7 +12833,7 @@ lean_inc(x_2275); x_2279 = l_Lean_Elab_Term_mkExplicitBinder(x_2275, x_2278); x_2280 = lean_array_push(x_4, x_2279); lean_inc(x_5); -x_2281 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2277, x_2280, x_5, x_2276); +x_2281 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2277, x_2280, x_5, x_2276); if (lean_obj_tag(x_2281) == 0) { lean_object* x_2282; lean_object* x_2283; lean_object* x_2284; lean_object* x_2285; lean_object* x_2286; lean_object* x_2287; lean_object* x_2288; lean_object* x_2289; lean_object* x_2290; lean_object* x_2291; lean_object* x_2292; lean_object* x_2293; lean_object* x_2294; lean_object* x_2295; lean_object* x_2296; lean_object* x_2297; lean_object* x_2298; lean_object* x_2299; lean_object* x_2300; lean_object* x_2301; lean_object* x_2302; lean_object* x_2303; lean_object* x_2304; lean_object* x_2305; lean_object* x_2306; lean_object* x_2307; lean_object* x_2308; lean_object* x_2309; lean_object* x_2310; lean_object* x_2311; lean_object* x_2312; lean_object* x_2313; lean_object* x_2314; lean_object* x_2315; lean_object* x_2316; lean_object* x_2317; lean_object* x_2318; lean_object* x_2319; lean_object* x_2320; lean_object* x_2321; lean_object* x_2322; lean_object* x_2323; @@ -12872,7 +12872,7 @@ if (lean_is_exclusive(x_2289)) { } x_2292 = l_Array_empty___closed__1; x_2293 = lean_array_push(x_2292, x_2275); -x_2294 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2294 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2295 = lean_array_push(x_2293, x_2294); x_2296 = l_Lean_mkTermIdFromIdent___closed__2; x_2297 = lean_alloc_ctor(1, 2, 0); @@ -12883,12 +12883,12 @@ x_2299 = l_Lean_nullKind___closed__2; x_2300 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2300, 0, x_2299); lean_ctor_set(x_2300, 1, x_2298); -x_2301 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2301 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2302 = lean_array_push(x_2301, x_2300); x_2303 = lean_array_push(x_2302, x_2294); -x_2304 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2304 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2305 = lean_array_push(x_2303, x_2304); -x_2306 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2306 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2307 = lean_array_push(x_2305, x_2306); lean_inc(x_11); x_2308 = lean_array_push(x_2292, x_11); @@ -12986,7 +12986,7 @@ lean_inc(x_2329); x_2333 = l_Lean_Elab_Term_mkExplicitBinder(x_2329, x_2332); x_2334 = lean_array_push(x_4, x_2333); lean_inc(x_5); -x_2335 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2331, x_2334, x_5, x_2330); +x_2335 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2331, x_2334, x_5, x_2330); if (lean_obj_tag(x_2335) == 0) { lean_object* x_2336; lean_object* x_2337; lean_object* x_2338; lean_object* x_2339; lean_object* x_2340; lean_object* x_2341; lean_object* x_2342; lean_object* x_2343; lean_object* x_2344; lean_object* x_2345; lean_object* x_2346; lean_object* x_2347; lean_object* x_2348; lean_object* x_2349; lean_object* x_2350; lean_object* x_2351; lean_object* x_2352; lean_object* x_2353; lean_object* x_2354; lean_object* x_2355; lean_object* x_2356; lean_object* x_2357; lean_object* x_2358; lean_object* x_2359; lean_object* x_2360; lean_object* x_2361; lean_object* x_2362; lean_object* x_2363; lean_object* x_2364; lean_object* x_2365; lean_object* x_2366; lean_object* x_2367; lean_object* x_2368; lean_object* x_2369; lean_object* x_2370; lean_object* x_2371; lean_object* x_2372; lean_object* x_2373; lean_object* x_2374; lean_object* x_2375; lean_object* x_2376; lean_object* x_2377; @@ -13025,7 +13025,7 @@ if (lean_is_exclusive(x_2343)) { } x_2346 = l_Array_empty___closed__1; x_2347 = lean_array_push(x_2346, x_2329); -x_2348 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2348 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2349 = lean_array_push(x_2347, x_2348); x_2350 = l_Lean_mkTermIdFromIdent___closed__2; x_2351 = lean_alloc_ctor(1, 2, 0); @@ -13036,12 +13036,12 @@ x_2353 = l_Lean_nullKind___closed__2; x_2354 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2354, 0, x_2353); lean_ctor_set(x_2354, 1, x_2352); -x_2355 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2355 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2356 = lean_array_push(x_2355, x_2354); x_2357 = lean_array_push(x_2356, x_2348); -x_2358 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2358 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2359 = lean_array_push(x_2357, x_2358); -x_2360 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2360 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2361 = lean_array_push(x_2359, x_2360); lean_inc(x_11); x_2362 = lean_array_push(x_2346, x_11); @@ -13248,7 +13248,7 @@ lean_inc(x_2411); x_2416 = l_Lean_Elab_Term_mkExplicitBinder(x_2411, x_2415); x_2417 = lean_array_push(x_4, x_2416); lean_inc(x_5); -x_2418 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2414, x_2417, x_5, x_2412); +x_2418 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2414, x_2417, x_5, x_2412); if (lean_obj_tag(x_2418) == 0) { lean_object* x_2419; lean_object* x_2420; lean_object* x_2421; lean_object* x_2422; lean_object* x_2423; lean_object* x_2424; lean_object* x_2425; lean_object* x_2426; lean_object* x_2427; lean_object* x_2428; lean_object* x_2429; lean_object* x_2430; lean_object* x_2431; lean_object* x_2432; lean_object* x_2433; lean_object* x_2434; lean_object* x_2435; lean_object* x_2436; lean_object* x_2437; lean_object* x_2438; lean_object* x_2439; lean_object* x_2440; lean_object* x_2441; lean_object* x_2442; lean_object* x_2443; lean_object* x_2444; lean_object* x_2445; lean_object* x_2446; lean_object* x_2447; lean_object* x_2448; lean_object* x_2449; lean_object* x_2450; lean_object* x_2451; lean_object* x_2452; lean_object* x_2453; lean_object* x_2454; lean_object* x_2455; lean_object* x_2456; lean_object* x_2457; lean_object* x_2458; lean_object* x_2459; lean_object* x_2460; @@ -13287,7 +13287,7 @@ if (lean_is_exclusive(x_2426)) { } x_2429 = l_Array_empty___closed__1; x_2430 = lean_array_push(x_2429, x_2411); -x_2431 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2431 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2432 = lean_array_push(x_2430, x_2431); x_2433 = l_Lean_mkTermIdFromIdent___closed__2; x_2434 = lean_alloc_ctor(1, 2, 0); @@ -13298,12 +13298,12 @@ x_2436 = l_Lean_nullKind___closed__2; x_2437 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2437, 0, x_2436); lean_ctor_set(x_2437, 1, x_2435); -x_2438 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2438 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2439 = lean_array_push(x_2438, x_2437); x_2440 = lean_array_push(x_2439, x_2431); -x_2441 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2441 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2442 = lean_array_push(x_2440, x_2441); -x_2443 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2443 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2444 = lean_array_push(x_2442, x_2443); lean_inc(x_11); x_2445 = lean_array_push(x_2429, x_11); @@ -13408,7 +13408,7 @@ lean_object* x_2474; lean_object* x_2475; lean_object* x_2476; lean_object* x_24 lean_dec(x_2473); lean_dec(x_2471); lean_dec(x_2); -x_2474 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2474 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_2475 = l_Lean_Elab_Term_throwError___rarg(x_11, x_2474, x_5, x_6); lean_dec(x_11); x_2476 = lean_ctor_get(x_2475, 0); @@ -13494,7 +13494,7 @@ lean_inc(x_2490); x_2495 = l_Lean_Elab_Term_mkExplicitBinder(x_2490, x_2494); x_2496 = lean_array_push(x_4, x_2495); lean_inc(x_5); -x_2497 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2493, x_2496, x_5, x_2491); +x_2497 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2493, x_2496, x_5, x_2491); if (lean_obj_tag(x_2497) == 0) { lean_object* x_2498; lean_object* x_2499; lean_object* x_2500; lean_object* x_2501; lean_object* x_2502; lean_object* x_2503; lean_object* x_2504; lean_object* x_2505; lean_object* x_2506; lean_object* x_2507; lean_object* x_2508; lean_object* x_2509; lean_object* x_2510; lean_object* x_2511; lean_object* x_2512; lean_object* x_2513; lean_object* x_2514; lean_object* x_2515; lean_object* x_2516; lean_object* x_2517; lean_object* x_2518; lean_object* x_2519; lean_object* x_2520; lean_object* x_2521; lean_object* x_2522; lean_object* x_2523; lean_object* x_2524; lean_object* x_2525; lean_object* x_2526; lean_object* x_2527; lean_object* x_2528; lean_object* x_2529; lean_object* x_2530; lean_object* x_2531; lean_object* x_2532; lean_object* x_2533; lean_object* x_2534; lean_object* x_2535; lean_object* x_2536; lean_object* x_2537; lean_object* x_2538; lean_object* x_2539; @@ -13533,7 +13533,7 @@ if (lean_is_exclusive(x_2505)) { } x_2508 = l_Array_empty___closed__1; x_2509 = lean_array_push(x_2508, x_2490); -x_2510 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2510 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2511 = lean_array_push(x_2509, x_2510); x_2512 = l_Lean_mkTermIdFromIdent___closed__2; x_2513 = lean_alloc_ctor(1, 2, 0); @@ -13544,12 +13544,12 @@ x_2515 = l_Lean_nullKind___closed__2; x_2516 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2516, 0, x_2515); lean_ctor_set(x_2516, 1, x_2514); -x_2517 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2517 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2518 = lean_array_push(x_2517, x_2516); x_2519 = lean_array_push(x_2518, x_2510); -x_2520 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2520 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2521 = lean_array_push(x_2519, x_2520); -x_2522 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2522 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2523 = lean_array_push(x_2521, x_2522); lean_inc(x_11); x_2524 = lean_array_push(x_2508, x_11); @@ -13655,7 +13655,7 @@ lean_object* x_2553; lean_object* x_2554; lean_object* x_2555; lean_object* x_25 lean_dec(x_2552); lean_dec(x_2550); lean_dec(x_2); -x_2553 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2553 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_2554 = l_Lean_Elab_Term_throwError___rarg(x_2486, x_2553, x_5, x_6); lean_dec(x_2486); x_2555 = lean_ctor_get(x_2554, 0); @@ -13742,7 +13742,7 @@ lean_inc(x_2569); x_2574 = l_Lean_Elab_Term_mkExplicitBinder(x_2569, x_2573); x_2575 = lean_array_push(x_4, x_2574); lean_inc(x_5); -x_2576 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2572, x_2575, x_5, x_2570); +x_2576 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2572, x_2575, x_5, x_2570); if (lean_obj_tag(x_2576) == 0) { lean_object* x_2577; lean_object* x_2578; lean_object* x_2579; lean_object* x_2580; lean_object* x_2581; lean_object* x_2582; lean_object* x_2583; lean_object* x_2584; lean_object* x_2585; lean_object* x_2586; lean_object* x_2587; lean_object* x_2588; lean_object* x_2589; lean_object* x_2590; lean_object* x_2591; lean_object* x_2592; lean_object* x_2593; lean_object* x_2594; lean_object* x_2595; lean_object* x_2596; lean_object* x_2597; lean_object* x_2598; lean_object* x_2599; lean_object* x_2600; lean_object* x_2601; lean_object* x_2602; lean_object* x_2603; lean_object* x_2604; lean_object* x_2605; lean_object* x_2606; lean_object* x_2607; lean_object* x_2608; lean_object* x_2609; lean_object* x_2610; lean_object* x_2611; lean_object* x_2612; lean_object* x_2613; lean_object* x_2614; lean_object* x_2615; lean_object* x_2616; lean_object* x_2617; lean_object* x_2618; @@ -13781,7 +13781,7 @@ if (lean_is_exclusive(x_2584)) { } x_2587 = l_Array_empty___closed__1; x_2588 = lean_array_push(x_2587, x_2569); -x_2589 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2589 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2590 = lean_array_push(x_2588, x_2589); x_2591 = l_Lean_mkTermIdFromIdent___closed__2; x_2592 = lean_alloc_ctor(1, 2, 0); @@ -13792,12 +13792,12 @@ x_2594 = l_Lean_nullKind___closed__2; x_2595 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2595, 0, x_2594); lean_ctor_set(x_2595, 1, x_2593); -x_2596 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2596 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2597 = lean_array_push(x_2596, x_2595); x_2598 = lean_array_push(x_2597, x_2589); -x_2599 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2599 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2600 = lean_array_push(x_2598, x_2599); -x_2601 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2601 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2602 = lean_array_push(x_2600, x_2601); lean_inc(x_11); x_2603 = lean_array_push(x_2587, x_11); @@ -13903,7 +13903,7 @@ lean_object* x_2632; lean_object* x_2633; lean_object* x_2634; lean_object* x_26 lean_dec(x_2631); lean_dec(x_2629); lean_dec(x_2); -x_2632 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2632 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_2633 = l_Lean_Elab_Term_throwError___rarg(x_2565, x_2632, x_5, x_6); lean_dec(x_2565); x_2634 = lean_ctor_get(x_2633, 0); @@ -14005,7 +14005,7 @@ lean_inc(x_2654); x_2659 = l_Lean_Elab_Term_mkExplicitBinder(x_2654, x_2658); x_2660 = lean_array_push(x_4, x_2659); lean_inc(x_5); -x_2661 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2657, x_2660, x_5, x_2655); +x_2661 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2657, x_2660, x_5, x_2655); if (lean_obj_tag(x_2661) == 0) { lean_object* x_2662; lean_object* x_2663; lean_object* x_2664; lean_object* x_2665; lean_object* x_2666; lean_object* x_2667; lean_object* x_2668; lean_object* x_2669; lean_object* x_2670; lean_object* x_2671; lean_object* x_2672; lean_object* x_2673; lean_object* x_2674; lean_object* x_2675; lean_object* x_2676; lean_object* x_2677; lean_object* x_2678; lean_object* x_2679; lean_object* x_2680; lean_object* x_2681; lean_object* x_2682; lean_object* x_2683; lean_object* x_2684; lean_object* x_2685; lean_object* x_2686; lean_object* x_2687; lean_object* x_2688; lean_object* x_2689; lean_object* x_2690; lean_object* x_2691; lean_object* x_2692; lean_object* x_2693; lean_object* x_2694; lean_object* x_2695; lean_object* x_2696; lean_object* x_2697; lean_object* x_2698; lean_object* x_2699; lean_object* x_2700; lean_object* x_2701; lean_object* x_2702; lean_object* x_2703; @@ -14044,7 +14044,7 @@ if (lean_is_exclusive(x_2669)) { } x_2672 = l_Array_empty___closed__1; x_2673 = lean_array_push(x_2672, x_2654); -x_2674 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2674 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2675 = lean_array_push(x_2673, x_2674); x_2676 = l_Lean_mkTermIdFromIdent___closed__2; x_2677 = lean_alloc_ctor(1, 2, 0); @@ -14055,12 +14055,12 @@ x_2679 = l_Lean_nullKind___closed__2; x_2680 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2680, 0, x_2679); lean_ctor_set(x_2680, 1, x_2678); -x_2681 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2681 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2682 = lean_array_push(x_2681, x_2680); x_2683 = lean_array_push(x_2682, x_2674); -x_2684 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2684 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2685 = lean_array_push(x_2683, x_2684); -x_2686 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2686 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2687 = lean_array_push(x_2685, x_2686); lean_inc(x_11); x_2688 = lean_array_push(x_2672, x_11); @@ -14166,7 +14166,7 @@ lean_object* x_2717; lean_object* x_2718; lean_object* x_2719; lean_object* x_27 lean_dec(x_2716); lean_dec(x_2714); lean_dec(x_2); -x_2717 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_2717 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_2718 = l_Lean_Elab_Term_throwError___rarg(x_2650, x_2717, x_5, x_6); lean_dec(x_2650); x_2719 = lean_ctor_get(x_2718, 0); @@ -14251,7 +14251,7 @@ lean_inc(x_2740); x_2744 = l_Lean_Elab_Term_mkExplicitBinder(x_2740, x_2743); x_2745 = lean_array_push(x_4, x_2744); lean_inc(x_5); -x_2746 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2742, x_2745, x_5, x_2741); +x_2746 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2742, x_2745, x_5, x_2741); if (lean_obj_tag(x_2746) == 0) { lean_object* x_2747; lean_object* x_2748; lean_object* x_2749; lean_object* x_2750; lean_object* x_2751; lean_object* x_2752; lean_object* x_2753; lean_object* x_2754; lean_object* x_2755; lean_object* x_2756; lean_object* x_2757; lean_object* x_2758; lean_object* x_2759; lean_object* x_2760; lean_object* x_2761; lean_object* x_2762; lean_object* x_2763; lean_object* x_2764; lean_object* x_2765; lean_object* x_2766; lean_object* x_2767; lean_object* x_2768; lean_object* x_2769; lean_object* x_2770; lean_object* x_2771; lean_object* x_2772; lean_object* x_2773; lean_object* x_2774; lean_object* x_2775; lean_object* x_2776; lean_object* x_2777; lean_object* x_2778; lean_object* x_2779; lean_object* x_2780; lean_object* x_2781; lean_object* x_2782; lean_object* x_2783; lean_object* x_2784; lean_object* x_2785; lean_object* x_2786; lean_object* x_2787; lean_object* x_2788; @@ -14290,7 +14290,7 @@ if (lean_is_exclusive(x_2754)) { } x_2757 = l_Array_empty___closed__1; x_2758 = lean_array_push(x_2757, x_2740); -x_2759 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2759 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2760 = lean_array_push(x_2758, x_2759); x_2761 = l_Lean_mkTermIdFromIdent___closed__2; x_2762 = lean_alloc_ctor(1, 2, 0); @@ -14301,12 +14301,12 @@ x_2764 = l_Lean_nullKind___closed__2; x_2765 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2765, 0, x_2764); lean_ctor_set(x_2765, 1, x_2763); -x_2766 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2766 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2767 = lean_array_push(x_2766, x_2765); x_2768 = lean_array_push(x_2767, x_2759); -x_2769 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2769 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2770 = lean_array_push(x_2768, x_2769); -x_2771 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2771 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2772 = lean_array_push(x_2770, x_2771); lean_inc(x_11); x_2773 = lean_array_push(x_2757, x_11); @@ -14391,7 +14391,7 @@ else lean_object* x_2793; lean_object* x_2794; lean_object* x_2795; x_2793 = l_Lean_Syntax_getArg(x_2731, x_2724); lean_dec(x_2731); -x_2794 = l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_2728, x_5, x_6); +x_2794 = l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_2728, x_5, x_6); x_2795 = lean_ctor_get(x_2794, 0); lean_inc(x_2795); if (lean_obj_tag(x_2795) == 0) @@ -14414,7 +14414,7 @@ lean_inc(x_2798); x_2802 = l_Lean_Elab_Term_mkExplicitBinder(x_2798, x_2801); x_2803 = lean_array_push(x_4, x_2802); lean_inc(x_5); -x_2804 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2800, x_2803, x_5, x_2799); +x_2804 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2800, x_2803, x_5, x_2799); if (lean_obj_tag(x_2804) == 0) { lean_object* x_2805; lean_object* x_2806; lean_object* x_2807; lean_object* x_2808; lean_object* x_2809; lean_object* x_2810; lean_object* x_2811; lean_object* x_2812; lean_object* x_2813; lean_object* x_2814; lean_object* x_2815; lean_object* x_2816; lean_object* x_2817; lean_object* x_2818; lean_object* x_2819; lean_object* x_2820; lean_object* x_2821; lean_object* x_2822; lean_object* x_2823; lean_object* x_2824; lean_object* x_2825; lean_object* x_2826; lean_object* x_2827; lean_object* x_2828; lean_object* x_2829; lean_object* x_2830; lean_object* x_2831; lean_object* x_2832; lean_object* x_2833; lean_object* x_2834; lean_object* x_2835; lean_object* x_2836; lean_object* x_2837; lean_object* x_2838; lean_object* x_2839; lean_object* x_2840; lean_object* x_2841; lean_object* x_2842; lean_object* x_2843; lean_object* x_2844; lean_object* x_2845; lean_object* x_2846; @@ -14453,7 +14453,7 @@ if (lean_is_exclusive(x_2812)) { } x_2815 = l_Array_empty___closed__1; x_2816 = lean_array_push(x_2815, x_2798); -x_2817 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2817 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2818 = lean_array_push(x_2816, x_2817); x_2819 = l_Lean_mkTermIdFromIdent___closed__2; x_2820 = lean_alloc_ctor(1, 2, 0); @@ -14464,12 +14464,12 @@ x_2822 = l_Lean_nullKind___closed__2; x_2823 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2823, 0, x_2822); lean_ctor_set(x_2823, 1, x_2821); -x_2824 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2824 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2825 = lean_array_push(x_2824, x_2823); x_2826 = lean_array_push(x_2825, x_2817); -x_2827 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2827 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2828 = lean_array_push(x_2826, x_2827); -x_2829 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2829 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2830 = lean_array_push(x_2828, x_2829); lean_inc(x_11); x_2831 = lean_array_push(x_2815, x_11); @@ -14562,7 +14562,7 @@ lean_dec(x_2795); x_2853 = lean_nat_add(x_3, x_2724); lean_dec(x_3); x_2854 = x_2852; -x_2855 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_2793, x_2727, x_2854); +x_2855 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_2793, x_2727, x_2854); x_2856 = x_2855; x_2857 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_2856, x_2856, x_2727, x_4); lean_dec(x_2856); @@ -14591,7 +14591,7 @@ lean_inc(x_2860); x_2864 = l_Lean_Elab_Term_mkExplicitBinder(x_2860, x_2863); x_2865 = lean_array_push(x_4, x_2864); lean_inc(x_5); -x_2866 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2862, x_2865, x_5, x_2861); +x_2866 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2862, x_2865, x_5, x_2861); if (lean_obj_tag(x_2866) == 0) { lean_object* x_2867; lean_object* x_2868; lean_object* x_2869; lean_object* x_2870; lean_object* x_2871; lean_object* x_2872; lean_object* x_2873; lean_object* x_2874; lean_object* x_2875; lean_object* x_2876; lean_object* x_2877; lean_object* x_2878; lean_object* x_2879; lean_object* x_2880; lean_object* x_2881; lean_object* x_2882; lean_object* x_2883; lean_object* x_2884; lean_object* x_2885; lean_object* x_2886; lean_object* x_2887; lean_object* x_2888; lean_object* x_2889; lean_object* x_2890; lean_object* x_2891; lean_object* x_2892; lean_object* x_2893; lean_object* x_2894; lean_object* x_2895; lean_object* x_2896; lean_object* x_2897; lean_object* x_2898; lean_object* x_2899; lean_object* x_2900; lean_object* x_2901; lean_object* x_2902; lean_object* x_2903; lean_object* x_2904; lean_object* x_2905; lean_object* x_2906; lean_object* x_2907; lean_object* x_2908; @@ -14630,7 +14630,7 @@ if (lean_is_exclusive(x_2874)) { } x_2877 = l_Array_empty___closed__1; x_2878 = lean_array_push(x_2877, x_2860); -x_2879 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2879 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2880 = lean_array_push(x_2878, x_2879); x_2881 = l_Lean_mkTermIdFromIdent___closed__2; x_2882 = lean_alloc_ctor(1, 2, 0); @@ -14641,12 +14641,12 @@ x_2884 = l_Lean_nullKind___closed__2; x_2885 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2885, 0, x_2884); lean_ctor_set(x_2885, 1, x_2883); -x_2886 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2886 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2887 = lean_array_push(x_2886, x_2885); x_2888 = lean_array_push(x_2887, x_2879); -x_2889 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2889 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2890 = lean_array_push(x_2888, x_2889); -x_2891 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2891 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2892 = lean_array_push(x_2890, x_2891); lean_inc(x_11); x_2893 = lean_array_push(x_2877, x_11); @@ -14744,7 +14744,7 @@ lean_inc(x_2914); x_2918 = l_Lean_Elab_Term_mkExplicitBinder(x_2914, x_2917); x_2919 = lean_array_push(x_4, x_2918); lean_inc(x_5); -x_2920 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2916, x_2919, x_5, x_2915); +x_2920 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_2916, x_2919, x_5, x_2915); if (lean_obj_tag(x_2920) == 0) { lean_object* x_2921; lean_object* x_2922; lean_object* x_2923; lean_object* x_2924; lean_object* x_2925; lean_object* x_2926; lean_object* x_2927; lean_object* x_2928; lean_object* x_2929; lean_object* x_2930; lean_object* x_2931; lean_object* x_2932; lean_object* x_2933; lean_object* x_2934; lean_object* x_2935; lean_object* x_2936; lean_object* x_2937; lean_object* x_2938; lean_object* x_2939; lean_object* x_2940; lean_object* x_2941; lean_object* x_2942; lean_object* x_2943; lean_object* x_2944; lean_object* x_2945; lean_object* x_2946; lean_object* x_2947; lean_object* x_2948; lean_object* x_2949; lean_object* x_2950; lean_object* x_2951; lean_object* x_2952; lean_object* x_2953; lean_object* x_2954; lean_object* x_2955; lean_object* x_2956; lean_object* x_2957; lean_object* x_2958; lean_object* x_2959; lean_object* x_2960; lean_object* x_2961; lean_object* x_2962; @@ -14783,7 +14783,7 @@ if (lean_is_exclusive(x_2928)) { } x_2931 = l_Array_empty___closed__1; x_2932 = lean_array_push(x_2931, x_2914); -x_2933 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2933 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_2934 = lean_array_push(x_2932, x_2933); x_2935 = l_Lean_mkTermIdFromIdent___closed__2; x_2936 = lean_alloc_ctor(1, 2, 0); @@ -14794,12 +14794,12 @@ x_2938 = l_Lean_nullKind___closed__2; x_2939 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2939, 0, x_2938); lean_ctor_set(x_2939, 1, x_2937); -x_2940 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_2940 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_2941 = lean_array_push(x_2940, x_2939); x_2942 = lean_array_push(x_2941, x_2933); -x_2943 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_2943 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_2944 = lean_array_push(x_2942, x_2943); -x_2945 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2945 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_2946 = lean_array_push(x_2944, x_2945); lean_inc(x_11); x_2947 = lean_array_push(x_2931, x_11); @@ -15017,7 +15017,7 @@ lean_inc(x_2999); x_3004 = l_Lean_Elab_Term_mkExplicitBinder(x_2999, x_3003); x_3005 = lean_array_push(x_4, x_3004); lean_inc(x_5); -x_3006 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3002, x_3005, x_5, x_3000); +x_3006 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3002, x_3005, x_5, x_3000); if (lean_obj_tag(x_3006) == 0) { lean_object* x_3007; lean_object* x_3008; lean_object* x_3009; lean_object* x_3010; lean_object* x_3011; lean_object* x_3012; lean_object* x_3013; lean_object* x_3014; lean_object* x_3015; lean_object* x_3016; lean_object* x_3017; lean_object* x_3018; lean_object* x_3019; lean_object* x_3020; lean_object* x_3021; lean_object* x_3022; lean_object* x_3023; lean_object* x_3024; lean_object* x_3025; lean_object* x_3026; lean_object* x_3027; lean_object* x_3028; lean_object* x_3029; lean_object* x_3030; lean_object* x_3031; lean_object* x_3032; lean_object* x_3033; lean_object* x_3034; lean_object* x_3035; lean_object* x_3036; lean_object* x_3037; lean_object* x_3038; lean_object* x_3039; lean_object* x_3040; lean_object* x_3041; lean_object* x_3042; lean_object* x_3043; lean_object* x_3044; lean_object* x_3045; lean_object* x_3046; lean_object* x_3047; lean_object* x_3048; @@ -15056,7 +15056,7 @@ if (lean_is_exclusive(x_3014)) { } x_3017 = l_Array_empty___closed__1; x_3018 = lean_array_push(x_3017, x_2999); -x_3019 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3019 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3020 = lean_array_push(x_3018, x_3019); x_3021 = l_Lean_mkTermIdFromIdent___closed__2; x_3022 = lean_alloc_ctor(1, 2, 0); @@ -15067,12 +15067,12 @@ x_3024 = l_Lean_nullKind___closed__2; x_3025 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3025, 0, x_3024); lean_ctor_set(x_3025, 1, x_3023); -x_3026 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3026 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3027 = lean_array_push(x_3026, x_3025); x_3028 = lean_array_push(x_3027, x_3019); -x_3029 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3029 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3030 = lean_array_push(x_3028, x_3029); -x_3031 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3031 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3032 = lean_array_push(x_3030, x_3031); lean_inc(x_11); x_3033 = lean_array_push(x_3017, x_11); @@ -15177,7 +15177,7 @@ lean_object* x_3062; lean_object* x_3063; lean_object* x_3064; lean_object* x_30 lean_dec(x_3061); lean_dec(x_3059); lean_dec(x_2); -x_3062 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_3062 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_3063 = l_Lean_Elab_Term_throwError___rarg(x_11, x_3062, x_5, x_6); lean_dec(x_11); x_3064 = lean_ctor_get(x_3063, 0); @@ -15270,7 +15270,7 @@ lean_inc(x_3079); x_3084 = l_Lean_Elab_Term_mkExplicitBinder(x_3079, x_3083); x_3085 = lean_array_push(x_4, x_3084); lean_inc(x_5); -x_3086 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3082, x_3085, x_5, x_3080); +x_3086 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3082, x_3085, x_5, x_3080); if (lean_obj_tag(x_3086) == 0) { lean_object* x_3087; lean_object* x_3088; lean_object* x_3089; lean_object* x_3090; lean_object* x_3091; lean_object* x_3092; lean_object* x_3093; lean_object* x_3094; lean_object* x_3095; lean_object* x_3096; lean_object* x_3097; lean_object* x_3098; lean_object* x_3099; lean_object* x_3100; lean_object* x_3101; lean_object* x_3102; lean_object* x_3103; lean_object* x_3104; lean_object* x_3105; lean_object* x_3106; lean_object* x_3107; lean_object* x_3108; lean_object* x_3109; lean_object* x_3110; lean_object* x_3111; lean_object* x_3112; lean_object* x_3113; lean_object* x_3114; lean_object* x_3115; lean_object* x_3116; lean_object* x_3117; lean_object* x_3118; lean_object* x_3119; lean_object* x_3120; lean_object* x_3121; lean_object* x_3122; lean_object* x_3123; lean_object* x_3124; lean_object* x_3125; lean_object* x_3126; lean_object* x_3127; lean_object* x_3128; @@ -15309,7 +15309,7 @@ if (lean_is_exclusive(x_3094)) { } x_3097 = l_Array_empty___closed__1; x_3098 = lean_array_push(x_3097, x_3079); -x_3099 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3099 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3100 = lean_array_push(x_3098, x_3099); x_3101 = l_Lean_mkTermIdFromIdent___closed__2; x_3102 = lean_alloc_ctor(1, 2, 0); @@ -15320,12 +15320,12 @@ x_3104 = l_Lean_nullKind___closed__2; x_3105 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3105, 0, x_3104); lean_ctor_set(x_3105, 1, x_3103); -x_3106 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3106 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3107 = lean_array_push(x_3106, x_3105); x_3108 = lean_array_push(x_3107, x_3099); -x_3109 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3109 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3110 = lean_array_push(x_3108, x_3109); -x_3111 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3111 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3112 = lean_array_push(x_3110, x_3111); lean_inc(x_11); x_3113 = lean_array_push(x_3097, x_11); @@ -15431,7 +15431,7 @@ lean_object* x_3142; lean_object* x_3143; lean_object* x_3144; lean_object* x_31 lean_dec(x_3141); lean_dec(x_3139); lean_dec(x_2); -x_3142 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_3142 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_3143 = l_Lean_Elab_Term_throwError___rarg(x_3075, x_3142, x_5, x_6); lean_dec(x_3075); x_3144 = lean_ctor_get(x_3143, 0); @@ -15525,7 +15525,7 @@ lean_inc(x_3159); x_3164 = l_Lean_Elab_Term_mkExplicitBinder(x_3159, x_3163); x_3165 = lean_array_push(x_4, x_3164); lean_inc(x_5); -x_3166 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3162, x_3165, x_5, x_3160); +x_3166 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3162, x_3165, x_5, x_3160); if (lean_obj_tag(x_3166) == 0) { lean_object* x_3167; lean_object* x_3168; lean_object* x_3169; lean_object* x_3170; lean_object* x_3171; lean_object* x_3172; lean_object* x_3173; lean_object* x_3174; lean_object* x_3175; lean_object* x_3176; lean_object* x_3177; lean_object* x_3178; lean_object* x_3179; lean_object* x_3180; lean_object* x_3181; lean_object* x_3182; lean_object* x_3183; lean_object* x_3184; lean_object* x_3185; lean_object* x_3186; lean_object* x_3187; lean_object* x_3188; lean_object* x_3189; lean_object* x_3190; lean_object* x_3191; lean_object* x_3192; lean_object* x_3193; lean_object* x_3194; lean_object* x_3195; lean_object* x_3196; lean_object* x_3197; lean_object* x_3198; lean_object* x_3199; lean_object* x_3200; lean_object* x_3201; lean_object* x_3202; lean_object* x_3203; lean_object* x_3204; lean_object* x_3205; lean_object* x_3206; lean_object* x_3207; lean_object* x_3208; @@ -15564,7 +15564,7 @@ if (lean_is_exclusive(x_3174)) { } x_3177 = l_Array_empty___closed__1; x_3178 = lean_array_push(x_3177, x_3159); -x_3179 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3179 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3180 = lean_array_push(x_3178, x_3179); x_3181 = l_Lean_mkTermIdFromIdent___closed__2; x_3182 = lean_alloc_ctor(1, 2, 0); @@ -15575,12 +15575,12 @@ x_3184 = l_Lean_nullKind___closed__2; x_3185 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3185, 0, x_3184); lean_ctor_set(x_3185, 1, x_3183); -x_3186 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3186 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3187 = lean_array_push(x_3186, x_3185); x_3188 = lean_array_push(x_3187, x_3179); -x_3189 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3189 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3190 = lean_array_push(x_3188, x_3189); -x_3191 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3191 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3192 = lean_array_push(x_3190, x_3191); lean_inc(x_11); x_3193 = lean_array_push(x_3177, x_11); @@ -15686,7 +15686,7 @@ lean_object* x_3222; lean_object* x_3223; lean_object* x_3224; lean_object* x_32 lean_dec(x_3221); lean_dec(x_3219); lean_dec(x_2); -x_3222 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_3222 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_3223 = l_Lean_Elab_Term_throwError___rarg(x_3155, x_3222, x_5, x_6); lean_dec(x_3155); x_3224 = lean_ctor_get(x_3223, 0); @@ -15795,7 +15795,7 @@ lean_inc(x_3245); x_3250 = l_Lean_Elab_Term_mkExplicitBinder(x_3245, x_3249); x_3251 = lean_array_push(x_4, x_3250); lean_inc(x_5); -x_3252 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3248, x_3251, x_5, x_3246); +x_3252 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3248, x_3251, x_5, x_3246); if (lean_obj_tag(x_3252) == 0) { lean_object* x_3253; lean_object* x_3254; lean_object* x_3255; lean_object* x_3256; lean_object* x_3257; lean_object* x_3258; lean_object* x_3259; lean_object* x_3260; lean_object* x_3261; lean_object* x_3262; lean_object* x_3263; lean_object* x_3264; lean_object* x_3265; lean_object* x_3266; lean_object* x_3267; lean_object* x_3268; lean_object* x_3269; lean_object* x_3270; lean_object* x_3271; lean_object* x_3272; lean_object* x_3273; lean_object* x_3274; lean_object* x_3275; lean_object* x_3276; lean_object* x_3277; lean_object* x_3278; lean_object* x_3279; lean_object* x_3280; lean_object* x_3281; lean_object* x_3282; lean_object* x_3283; lean_object* x_3284; lean_object* x_3285; lean_object* x_3286; lean_object* x_3287; lean_object* x_3288; lean_object* x_3289; lean_object* x_3290; lean_object* x_3291; lean_object* x_3292; lean_object* x_3293; lean_object* x_3294; @@ -15834,7 +15834,7 @@ if (lean_is_exclusive(x_3260)) { } x_3263 = l_Array_empty___closed__1; x_3264 = lean_array_push(x_3263, x_3245); -x_3265 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3265 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3266 = lean_array_push(x_3264, x_3265); x_3267 = l_Lean_mkTermIdFromIdent___closed__2; x_3268 = lean_alloc_ctor(1, 2, 0); @@ -15845,12 +15845,12 @@ x_3270 = l_Lean_nullKind___closed__2; x_3271 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3271, 0, x_3270); lean_ctor_set(x_3271, 1, x_3269); -x_3272 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3272 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3273 = lean_array_push(x_3272, x_3271); x_3274 = lean_array_push(x_3273, x_3265); -x_3275 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3275 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3276 = lean_array_push(x_3274, x_3275); -x_3277 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3277 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3278 = lean_array_push(x_3276, x_3277); lean_inc(x_11); x_3279 = lean_array_push(x_3263, x_11); @@ -15956,7 +15956,7 @@ lean_object* x_3308; lean_object* x_3309; lean_object* x_3310; lean_object* x_33 lean_dec(x_3307); lean_dec(x_3305); lean_dec(x_2); -x_3308 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_3308 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_3309 = l_Lean_Elab_Term_throwError___rarg(x_3241, x_3308, x_5, x_6); lean_dec(x_3241); x_3310 = lean_ctor_get(x_3309, 0); @@ -16041,7 +16041,7 @@ lean_inc(x_3331); x_3335 = l_Lean_Elab_Term_mkExplicitBinder(x_3331, x_3334); x_3336 = lean_array_push(x_4, x_3335); lean_inc(x_5); -x_3337 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3333, x_3336, x_5, x_3332); +x_3337 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3333, x_3336, x_5, x_3332); if (lean_obj_tag(x_3337) == 0) { lean_object* x_3338; lean_object* x_3339; lean_object* x_3340; lean_object* x_3341; lean_object* x_3342; lean_object* x_3343; lean_object* x_3344; lean_object* x_3345; lean_object* x_3346; lean_object* x_3347; lean_object* x_3348; lean_object* x_3349; lean_object* x_3350; lean_object* x_3351; lean_object* x_3352; lean_object* x_3353; lean_object* x_3354; lean_object* x_3355; lean_object* x_3356; lean_object* x_3357; lean_object* x_3358; lean_object* x_3359; lean_object* x_3360; lean_object* x_3361; lean_object* x_3362; lean_object* x_3363; lean_object* x_3364; lean_object* x_3365; lean_object* x_3366; lean_object* x_3367; lean_object* x_3368; lean_object* x_3369; lean_object* x_3370; lean_object* x_3371; lean_object* x_3372; lean_object* x_3373; lean_object* x_3374; lean_object* x_3375; lean_object* x_3376; lean_object* x_3377; lean_object* x_3378; lean_object* x_3379; @@ -16080,7 +16080,7 @@ if (lean_is_exclusive(x_3345)) { } x_3348 = l_Array_empty___closed__1; x_3349 = lean_array_push(x_3348, x_3331); -x_3350 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3350 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3351 = lean_array_push(x_3349, x_3350); x_3352 = l_Lean_mkTermIdFromIdent___closed__2; x_3353 = lean_alloc_ctor(1, 2, 0); @@ -16091,12 +16091,12 @@ x_3355 = l_Lean_nullKind___closed__2; x_3356 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3356, 0, x_3355); lean_ctor_set(x_3356, 1, x_3354); -x_3357 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3357 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3358 = lean_array_push(x_3357, x_3356); x_3359 = lean_array_push(x_3358, x_3350); -x_3360 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3360 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3361 = lean_array_push(x_3359, x_3360); -x_3362 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3362 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3363 = lean_array_push(x_3361, x_3362); lean_inc(x_11); x_3364 = lean_array_push(x_3348, x_11); @@ -16181,7 +16181,7 @@ else lean_object* x_3384; lean_object* x_3385; lean_object* x_3386; x_3384 = l_Lean_Syntax_getArg(x_3322, x_3315); lean_dec(x_3322); -x_3385 = l___private_Init_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_3319, x_5, x_6); +x_3385 = l___private_Lean_Elab_Binders_10__getFunBinderIds_x3f(x_3319, x_5, x_6); x_3386 = lean_ctor_get(x_3385, 0); lean_inc(x_3386); if (lean_obj_tag(x_3386) == 0) @@ -16204,7 +16204,7 @@ lean_inc(x_3389); x_3393 = l_Lean_Elab_Term_mkExplicitBinder(x_3389, x_3392); x_3394 = lean_array_push(x_4, x_3393); lean_inc(x_5); -x_3395 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3391, x_3394, x_5, x_3390); +x_3395 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3391, x_3394, x_5, x_3390); if (lean_obj_tag(x_3395) == 0) { lean_object* x_3396; lean_object* x_3397; lean_object* x_3398; lean_object* x_3399; lean_object* x_3400; lean_object* x_3401; lean_object* x_3402; lean_object* x_3403; lean_object* x_3404; lean_object* x_3405; lean_object* x_3406; lean_object* x_3407; lean_object* x_3408; lean_object* x_3409; lean_object* x_3410; lean_object* x_3411; lean_object* x_3412; lean_object* x_3413; lean_object* x_3414; lean_object* x_3415; lean_object* x_3416; lean_object* x_3417; lean_object* x_3418; lean_object* x_3419; lean_object* x_3420; lean_object* x_3421; lean_object* x_3422; lean_object* x_3423; lean_object* x_3424; lean_object* x_3425; lean_object* x_3426; lean_object* x_3427; lean_object* x_3428; lean_object* x_3429; lean_object* x_3430; lean_object* x_3431; lean_object* x_3432; lean_object* x_3433; lean_object* x_3434; lean_object* x_3435; lean_object* x_3436; lean_object* x_3437; @@ -16243,7 +16243,7 @@ if (lean_is_exclusive(x_3403)) { } x_3406 = l_Array_empty___closed__1; x_3407 = lean_array_push(x_3406, x_3389); -x_3408 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3408 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3409 = lean_array_push(x_3407, x_3408); x_3410 = l_Lean_mkTermIdFromIdent___closed__2; x_3411 = lean_alloc_ctor(1, 2, 0); @@ -16254,12 +16254,12 @@ x_3413 = l_Lean_nullKind___closed__2; x_3414 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3414, 0, x_3413); lean_ctor_set(x_3414, 1, x_3412); -x_3415 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3415 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3416 = lean_array_push(x_3415, x_3414); x_3417 = lean_array_push(x_3416, x_3408); -x_3418 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3418 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3419 = lean_array_push(x_3417, x_3418); -x_3420 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3420 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3421 = lean_array_push(x_3419, x_3420); lean_inc(x_11); x_3422 = lean_array_push(x_3406, x_11); @@ -16352,7 +16352,7 @@ lean_dec(x_3386); x_3444 = lean_nat_add(x_3, x_3315); lean_dec(x_3); x_3445 = x_3443; -x_3446 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_3384, x_3318, x_3445); +x_3446 = l_Array_umapMAux___main___at___private_Lean_Elab_Binders_11__expandFunBindersAux___main___spec__1(x_3384, x_3318, x_3445); x_3447 = x_3446; x_3448 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_3447, x_3447, x_3318, x_4); lean_dec(x_3447); @@ -16381,7 +16381,7 @@ lean_inc(x_3451); x_3455 = l_Lean_Elab_Term_mkExplicitBinder(x_3451, x_3454); x_3456 = lean_array_push(x_4, x_3455); lean_inc(x_5); -x_3457 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3453, x_3456, x_5, x_3452); +x_3457 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3453, x_3456, x_5, x_3452); if (lean_obj_tag(x_3457) == 0) { lean_object* x_3458; lean_object* x_3459; lean_object* x_3460; lean_object* x_3461; lean_object* x_3462; lean_object* x_3463; lean_object* x_3464; lean_object* x_3465; lean_object* x_3466; lean_object* x_3467; lean_object* x_3468; lean_object* x_3469; lean_object* x_3470; lean_object* x_3471; lean_object* x_3472; lean_object* x_3473; lean_object* x_3474; lean_object* x_3475; lean_object* x_3476; lean_object* x_3477; lean_object* x_3478; lean_object* x_3479; lean_object* x_3480; lean_object* x_3481; lean_object* x_3482; lean_object* x_3483; lean_object* x_3484; lean_object* x_3485; lean_object* x_3486; lean_object* x_3487; lean_object* x_3488; lean_object* x_3489; lean_object* x_3490; lean_object* x_3491; lean_object* x_3492; lean_object* x_3493; lean_object* x_3494; lean_object* x_3495; lean_object* x_3496; lean_object* x_3497; lean_object* x_3498; lean_object* x_3499; @@ -16420,7 +16420,7 @@ if (lean_is_exclusive(x_3465)) { } x_3468 = l_Array_empty___closed__1; x_3469 = lean_array_push(x_3468, x_3451); -x_3470 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3470 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3471 = lean_array_push(x_3469, x_3470); x_3472 = l_Lean_mkTermIdFromIdent___closed__2; x_3473 = lean_alloc_ctor(1, 2, 0); @@ -16431,12 +16431,12 @@ x_3475 = l_Lean_nullKind___closed__2; x_3476 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3476, 0, x_3475); lean_ctor_set(x_3476, 1, x_3474); -x_3477 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3477 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3478 = lean_array_push(x_3477, x_3476); x_3479 = lean_array_push(x_3478, x_3470); -x_3480 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3480 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3481 = lean_array_push(x_3479, x_3480); -x_3482 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3482 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3483 = lean_array_push(x_3481, x_3482); lean_inc(x_11); x_3484 = lean_array_push(x_3468, x_11); @@ -16534,7 +16534,7 @@ lean_inc(x_3505); x_3509 = l_Lean_Elab_Term_mkExplicitBinder(x_3505, x_3508); x_3510 = lean_array_push(x_4, x_3509); lean_inc(x_5); -x_3511 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3507, x_3510, x_5, x_3506); +x_3511 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3507, x_3510, x_5, x_3506); if (lean_obj_tag(x_3511) == 0) { lean_object* x_3512; lean_object* x_3513; lean_object* x_3514; lean_object* x_3515; lean_object* x_3516; lean_object* x_3517; lean_object* x_3518; lean_object* x_3519; lean_object* x_3520; lean_object* x_3521; lean_object* x_3522; lean_object* x_3523; lean_object* x_3524; lean_object* x_3525; lean_object* x_3526; lean_object* x_3527; lean_object* x_3528; lean_object* x_3529; lean_object* x_3530; lean_object* x_3531; lean_object* x_3532; lean_object* x_3533; lean_object* x_3534; lean_object* x_3535; lean_object* x_3536; lean_object* x_3537; lean_object* x_3538; lean_object* x_3539; lean_object* x_3540; lean_object* x_3541; lean_object* x_3542; lean_object* x_3543; lean_object* x_3544; lean_object* x_3545; lean_object* x_3546; lean_object* x_3547; lean_object* x_3548; lean_object* x_3549; lean_object* x_3550; lean_object* x_3551; lean_object* x_3552; lean_object* x_3553; @@ -16573,7 +16573,7 @@ if (lean_is_exclusive(x_3519)) { } x_3522 = l_Array_empty___closed__1; x_3523 = lean_array_push(x_3522, x_3505); -x_3524 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3524 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3525 = lean_array_push(x_3523, x_3524); x_3526 = l_Lean_mkTermIdFromIdent___closed__2; x_3527 = lean_alloc_ctor(1, 2, 0); @@ -16584,12 +16584,12 @@ x_3529 = l_Lean_nullKind___closed__2; x_3530 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3530, 0, x_3529); lean_ctor_set(x_3530, 1, x_3528); -x_3531 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3531 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3532 = lean_array_push(x_3531, x_3530); x_3533 = lean_array_push(x_3532, x_3524); -x_3534 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3534 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3535 = lean_array_push(x_3533, x_3534); -x_3536 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3536 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3537 = lean_array_push(x_3535, x_3536); lean_inc(x_11); x_3538 = lean_array_push(x_3522, x_11); @@ -16762,7 +16762,7 @@ lean_inc(x_3577); x_3582 = l_Lean_Elab_Term_mkExplicitBinder(x_3577, x_3581); x_3583 = lean_array_push(x_4, x_3582); lean_inc(x_5); -x_3584 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3580, x_3583, x_5, x_3578); +x_3584 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3580, x_3583, x_5, x_3578); if (lean_obj_tag(x_3584) == 0) { lean_object* x_3585; lean_object* x_3586; uint8_t x_3587; @@ -16790,7 +16790,7 @@ x_3593 = lean_ctor_get(x_3591, 0); lean_dec(x_3593); x_3594 = l_Array_empty___closed__1; x_3595 = lean_array_push(x_3594, x_3577); -x_3596 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3596 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3597 = lean_array_push(x_3595, x_3596); x_3598 = l_Lean_mkTermIdFromIdent___closed__2; x_3599 = lean_alloc_ctor(1, 2, 0); @@ -16801,12 +16801,12 @@ x_3601 = l_Lean_nullKind___closed__2; x_3602 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3602, 0, x_3601); lean_ctor_set(x_3602, 1, x_3600); -x_3603 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3603 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3604 = lean_array_push(x_3603, x_3602); x_3605 = lean_array_push(x_3604, x_3596); -x_3606 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3606 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3607 = lean_array_push(x_3605, x_3606); -x_3608 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3608 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3609 = lean_array_push(x_3607, x_3608); lean_inc(x_11); x_3610 = lean_array_push(x_3594, x_11); @@ -16878,7 +16878,7 @@ lean_inc(x_3637); lean_dec(x_3591); x_3638 = l_Array_empty___closed__1; x_3639 = lean_array_push(x_3638, x_3577); -x_3640 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3640 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3641 = lean_array_push(x_3639, x_3640); x_3642 = l_Lean_mkTermIdFromIdent___closed__2; x_3643 = lean_alloc_ctor(1, 2, 0); @@ -16889,12 +16889,12 @@ x_3645 = l_Lean_nullKind___closed__2; x_3646 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3646, 0, x_3645); lean_ctor_set(x_3646, 1, x_3644); -x_3647 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3647 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3648 = lean_array_push(x_3647, x_3646); x_3649 = lean_array_push(x_3648, x_3640); -x_3650 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3650 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3651 = lean_array_push(x_3649, x_3650); -x_3652 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3652 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3653 = lean_array_push(x_3651, x_3652); lean_inc(x_11); x_3654 = lean_array_push(x_3638, x_11); @@ -16963,7 +16963,7 @@ if (lean_is_exclusive(x_3673)) { } x_3676 = l_Array_empty___closed__1; x_3677 = lean_array_push(x_3676, x_3577); -x_3678 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3678 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3679 = lean_array_push(x_3677, x_3678); x_3680 = l_Lean_mkTermIdFromIdent___closed__2; x_3681 = lean_alloc_ctor(1, 2, 0); @@ -16974,12 +16974,12 @@ x_3683 = l_Lean_nullKind___closed__2; x_3684 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3684, 0, x_3683); lean_ctor_set(x_3684, 1, x_3682); -x_3685 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3685 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3686 = lean_array_push(x_3685, x_3684); x_3687 = lean_array_push(x_3686, x_3678); -x_3688 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3688 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3689 = lean_array_push(x_3687, x_3688); -x_3690 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3690 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3691 = lean_array_push(x_3689, x_3690); lean_inc(x_11); x_3692 = lean_array_push(x_3676, x_11); @@ -17079,7 +17079,7 @@ lean_object* x_3721; lean_object* x_3722; uint8_t x_3723; lean_dec(x_3720); lean_dec(x_3718); lean_dec(x_2); -x_3721 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_3721 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_3722 = l_Lean_Elab_Term_throwError___rarg(x_11, x_3721, x_5, x_6); lean_dec(x_11); x_3723 = !lean_is_exclusive(x_3722); @@ -17138,7 +17138,7 @@ lean_inc(x_3731); x_3736 = l_Lean_Elab_Term_mkExplicitBinder(x_3731, x_3735); x_3737 = lean_array_push(x_4, x_3736); lean_inc(x_5); -x_3738 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3734, x_3737, x_5, x_3732); +x_3738 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3734, x_3737, x_5, x_3732); if (lean_obj_tag(x_3738) == 0) { lean_object* x_3739; lean_object* x_3740; uint8_t x_3741; @@ -17166,7 +17166,7 @@ x_3747 = lean_ctor_get(x_3745, 0); lean_dec(x_3747); x_3748 = l_Array_empty___closed__1; x_3749 = lean_array_push(x_3748, x_3731); -x_3750 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3750 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3751 = lean_array_push(x_3749, x_3750); x_3752 = l_Lean_mkTermIdFromIdent___closed__2; x_3753 = lean_alloc_ctor(1, 2, 0); @@ -17177,12 +17177,12 @@ x_3755 = l_Lean_nullKind___closed__2; x_3756 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3756, 0, x_3755); lean_ctor_set(x_3756, 1, x_3754); -x_3757 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3757 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3758 = lean_array_push(x_3757, x_3756); x_3759 = lean_array_push(x_3758, x_3750); -x_3760 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3760 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3761 = lean_array_push(x_3759, x_3760); -x_3762 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3762 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3763 = lean_array_push(x_3761, x_3762); lean_inc(x_11); x_3764 = lean_array_push(x_3748, x_11); @@ -17254,7 +17254,7 @@ lean_inc(x_3791); lean_dec(x_3745); x_3792 = l_Array_empty___closed__1; x_3793 = lean_array_push(x_3792, x_3731); -x_3794 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3794 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3795 = lean_array_push(x_3793, x_3794); x_3796 = l_Lean_mkTermIdFromIdent___closed__2; x_3797 = lean_alloc_ctor(1, 2, 0); @@ -17265,12 +17265,12 @@ x_3799 = l_Lean_nullKind___closed__2; x_3800 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3800, 0, x_3799); lean_ctor_set(x_3800, 1, x_3798); -x_3801 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3801 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3802 = lean_array_push(x_3801, x_3800); x_3803 = lean_array_push(x_3802, x_3794); -x_3804 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3804 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3805 = lean_array_push(x_3803, x_3804); -x_3806 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3806 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3807 = lean_array_push(x_3805, x_3806); lean_inc(x_11); x_3808 = lean_array_push(x_3792, x_11); @@ -17339,7 +17339,7 @@ if (lean_is_exclusive(x_3827)) { } x_3830 = l_Array_empty___closed__1; x_3831 = lean_array_push(x_3830, x_3731); -x_3832 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3832 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3833 = lean_array_push(x_3831, x_3832); x_3834 = l_Lean_mkTermIdFromIdent___closed__2; x_3835 = lean_alloc_ctor(1, 2, 0); @@ -17350,12 +17350,12 @@ x_3837 = l_Lean_nullKind___closed__2; x_3838 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3838, 0, x_3837); lean_ctor_set(x_3838, 1, x_3836); -x_3839 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3839 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3840 = lean_array_push(x_3839, x_3838); x_3841 = lean_array_push(x_3840, x_3832); -x_3842 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3842 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3843 = lean_array_push(x_3841, x_3842); -x_3844 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3844 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3845 = lean_array_push(x_3843, x_3844); lean_inc(x_11); x_3846 = lean_array_push(x_3830, x_11); @@ -17455,7 +17455,7 @@ lean_object* x_3875; lean_object* x_3876; uint8_t x_3877; lean_dec(x_3874); lean_dec(x_3872); lean_dec(x_2); -x_3875 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_3875 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_3876 = l_Lean_Elab_Term_throwError___rarg(x_11, x_3875, x_5, x_6); lean_dec(x_11); x_3877 = !lean_is_exclusive(x_3876); @@ -17513,7 +17513,7 @@ lean_inc(x_3885); x_3890 = l_Lean_Elab_Term_mkExplicitBinder(x_3885, x_3889); x_3891 = lean_array_push(x_4, x_3890); lean_inc(x_5); -x_3892 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3888, x_3891, x_5, x_3886); +x_3892 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3888, x_3891, x_5, x_3886); if (lean_obj_tag(x_3892) == 0) { lean_object* x_3893; lean_object* x_3894; uint8_t x_3895; @@ -17541,7 +17541,7 @@ x_3901 = lean_ctor_get(x_3899, 0); lean_dec(x_3901); x_3902 = l_Array_empty___closed__1; x_3903 = lean_array_push(x_3902, x_3885); -x_3904 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3904 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3905 = lean_array_push(x_3903, x_3904); x_3906 = l_Lean_mkTermIdFromIdent___closed__2; x_3907 = lean_alloc_ctor(1, 2, 0); @@ -17552,12 +17552,12 @@ x_3909 = l_Lean_nullKind___closed__2; x_3910 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3910, 0, x_3909); lean_ctor_set(x_3910, 1, x_3908); -x_3911 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3911 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3912 = lean_array_push(x_3911, x_3910); x_3913 = lean_array_push(x_3912, x_3904); -x_3914 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3914 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3915 = lean_array_push(x_3913, x_3914); -x_3916 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3916 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3917 = lean_array_push(x_3915, x_3916); lean_inc(x_11); x_3918 = lean_array_push(x_3902, x_11); @@ -17629,7 +17629,7 @@ lean_inc(x_3945); lean_dec(x_3899); x_3946 = l_Array_empty___closed__1; x_3947 = lean_array_push(x_3946, x_3885); -x_3948 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3948 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3949 = lean_array_push(x_3947, x_3948); x_3950 = l_Lean_mkTermIdFromIdent___closed__2; x_3951 = lean_alloc_ctor(1, 2, 0); @@ -17640,12 +17640,12 @@ x_3953 = l_Lean_nullKind___closed__2; x_3954 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3954, 0, x_3953); lean_ctor_set(x_3954, 1, x_3952); -x_3955 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3955 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3956 = lean_array_push(x_3955, x_3954); x_3957 = lean_array_push(x_3956, x_3948); -x_3958 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3958 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3959 = lean_array_push(x_3957, x_3958); -x_3960 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3960 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3961 = lean_array_push(x_3959, x_3960); lean_inc(x_11); x_3962 = lean_array_push(x_3946, x_11); @@ -17714,7 +17714,7 @@ if (lean_is_exclusive(x_3981)) { } x_3984 = l_Array_empty___closed__1; x_3985 = lean_array_push(x_3984, x_3885); -x_3986 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_3986 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3987 = lean_array_push(x_3985, x_3986); x_3988 = l_Lean_mkTermIdFromIdent___closed__2; x_3989 = lean_alloc_ctor(1, 2, 0); @@ -17725,12 +17725,12 @@ x_3991 = l_Lean_nullKind___closed__2; x_3992 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3992, 0, x_3991); lean_ctor_set(x_3992, 1, x_3990); -x_3993 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_3993 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_3994 = lean_array_push(x_3993, x_3992); x_3995 = lean_array_push(x_3994, x_3986); -x_3996 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_3996 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_3997 = lean_array_push(x_3995, x_3996); -x_3998 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_3998 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3999 = lean_array_push(x_3997, x_3998); lean_inc(x_11); x_4000 = lean_array_push(x_3984, x_11); @@ -17830,7 +17830,7 @@ lean_object* x_4029; lean_object* x_4030; uint8_t x_4031; lean_dec(x_4028); lean_dec(x_4026); lean_dec(x_2); -x_4029 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_4029 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_4030 = l_Lean_Elab_Term_throwError___rarg(x_11, x_4029, x_5, x_6); lean_dec(x_11); x_4031 = !lean_is_exclusive(x_4030); @@ -17887,7 +17887,7 @@ lean_inc(x_4039); x_4044 = l_Lean_Elab_Term_mkExplicitBinder(x_4039, x_4043); x_4045 = lean_array_push(x_4, x_4044); lean_inc(x_5); -x_4046 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_4042, x_4045, x_5, x_4040); +x_4046 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_4042, x_4045, x_5, x_4040); if (lean_obj_tag(x_4046) == 0) { lean_object* x_4047; lean_object* x_4048; uint8_t x_4049; @@ -17915,7 +17915,7 @@ x_4055 = lean_ctor_get(x_4053, 0); lean_dec(x_4055); x_4056 = l_Array_empty___closed__1; x_4057 = lean_array_push(x_4056, x_4039); -x_4058 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4058 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4059 = lean_array_push(x_4057, x_4058); x_4060 = l_Lean_mkTermIdFromIdent___closed__2; x_4061 = lean_alloc_ctor(1, 2, 0); @@ -17926,12 +17926,12 @@ x_4063 = l_Lean_nullKind___closed__2; x_4064 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4064, 0, x_4063); lean_ctor_set(x_4064, 1, x_4062); -x_4065 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4065 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4066 = lean_array_push(x_4065, x_4064); x_4067 = lean_array_push(x_4066, x_4058); -x_4068 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4068 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4069 = lean_array_push(x_4067, x_4068); -x_4070 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4070 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4071 = lean_array_push(x_4069, x_4070); lean_inc(x_11); x_4072 = lean_array_push(x_4056, x_11); @@ -18003,7 +18003,7 @@ lean_inc(x_4099); lean_dec(x_4053); x_4100 = l_Array_empty___closed__1; x_4101 = lean_array_push(x_4100, x_4039); -x_4102 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4102 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4103 = lean_array_push(x_4101, x_4102); x_4104 = l_Lean_mkTermIdFromIdent___closed__2; x_4105 = lean_alloc_ctor(1, 2, 0); @@ -18014,12 +18014,12 @@ x_4107 = l_Lean_nullKind___closed__2; x_4108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4108, 0, x_4107); lean_ctor_set(x_4108, 1, x_4106); -x_4109 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4109 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4110 = lean_array_push(x_4109, x_4108); x_4111 = lean_array_push(x_4110, x_4102); -x_4112 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4112 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4113 = lean_array_push(x_4111, x_4112); -x_4114 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4114 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4115 = lean_array_push(x_4113, x_4114); lean_inc(x_11); x_4116 = lean_array_push(x_4100, x_11); @@ -18088,7 +18088,7 @@ if (lean_is_exclusive(x_4135)) { } x_4138 = l_Array_empty___closed__1; x_4139 = lean_array_push(x_4138, x_4039); -x_4140 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4140 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4141 = lean_array_push(x_4139, x_4140); x_4142 = l_Lean_mkTermIdFromIdent___closed__2; x_4143 = lean_alloc_ctor(1, 2, 0); @@ -18099,12 +18099,12 @@ x_4145 = l_Lean_nullKind___closed__2; x_4146 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4146, 0, x_4145); lean_ctor_set(x_4146, 1, x_4144); -x_4147 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4147 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4148 = lean_array_push(x_4147, x_4146); x_4149 = lean_array_push(x_4148, x_4140); -x_4150 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4150 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4151 = lean_array_push(x_4149, x_4150); -x_4152 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4152 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4153 = lean_array_push(x_4151, x_4152); lean_inc(x_11); x_4154 = lean_array_push(x_4138, x_11); @@ -18204,7 +18204,7 @@ lean_object* x_4183; lean_object* x_4184; uint8_t x_4185; lean_dec(x_4182); lean_dec(x_4180); lean_dec(x_2); -x_4183 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_4183 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_4184 = l_Lean_Elab_Term_throwError___rarg(x_11, x_4183, x_5, x_6); lean_dec(x_11); x_4185 = !lean_is_exclusive(x_4184); @@ -18260,7 +18260,7 @@ lean_inc(x_4193); x_4198 = l_Lean_Elab_Term_mkExplicitBinder(x_4193, x_4197); x_4199 = lean_array_push(x_4, x_4198); lean_inc(x_5); -x_4200 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_4196, x_4199, x_5, x_4194); +x_4200 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_4196, x_4199, x_5, x_4194); if (lean_obj_tag(x_4200) == 0) { lean_object* x_4201; lean_object* x_4202; uint8_t x_4203; @@ -18288,7 +18288,7 @@ x_4209 = lean_ctor_get(x_4207, 0); lean_dec(x_4209); x_4210 = l_Array_empty___closed__1; x_4211 = lean_array_push(x_4210, x_4193); -x_4212 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4212 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4213 = lean_array_push(x_4211, x_4212); x_4214 = l_Lean_mkTermIdFromIdent___closed__2; x_4215 = lean_alloc_ctor(1, 2, 0); @@ -18299,12 +18299,12 @@ x_4217 = l_Lean_nullKind___closed__2; x_4218 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4218, 0, x_4217); lean_ctor_set(x_4218, 1, x_4216); -x_4219 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4219 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4220 = lean_array_push(x_4219, x_4218); x_4221 = lean_array_push(x_4220, x_4212); -x_4222 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4222 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4223 = lean_array_push(x_4221, x_4222); -x_4224 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4224 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4225 = lean_array_push(x_4223, x_4224); lean_inc(x_11); x_4226 = lean_array_push(x_4210, x_11); @@ -18376,7 +18376,7 @@ lean_inc(x_4253); lean_dec(x_4207); x_4254 = l_Array_empty___closed__1; x_4255 = lean_array_push(x_4254, x_4193); -x_4256 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4256 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4257 = lean_array_push(x_4255, x_4256); x_4258 = l_Lean_mkTermIdFromIdent___closed__2; x_4259 = lean_alloc_ctor(1, 2, 0); @@ -18387,12 +18387,12 @@ x_4261 = l_Lean_nullKind___closed__2; x_4262 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4262, 0, x_4261); lean_ctor_set(x_4262, 1, x_4260); -x_4263 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4263 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4264 = lean_array_push(x_4263, x_4262); x_4265 = lean_array_push(x_4264, x_4256); -x_4266 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4266 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4267 = lean_array_push(x_4265, x_4266); -x_4268 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4268 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4269 = lean_array_push(x_4267, x_4268); lean_inc(x_11); x_4270 = lean_array_push(x_4254, x_11); @@ -18461,7 +18461,7 @@ if (lean_is_exclusive(x_4289)) { } x_4292 = l_Array_empty___closed__1; x_4293 = lean_array_push(x_4292, x_4193); -x_4294 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4294 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4295 = lean_array_push(x_4293, x_4294); x_4296 = l_Lean_mkTermIdFromIdent___closed__2; x_4297 = lean_alloc_ctor(1, 2, 0); @@ -18472,12 +18472,12 @@ x_4299 = l_Lean_nullKind___closed__2; x_4300 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4300, 0, x_4299); lean_ctor_set(x_4300, 1, x_4298); -x_4301 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4301 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4302 = lean_array_push(x_4301, x_4300); x_4303 = lean_array_push(x_4302, x_4294); -x_4304 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4304 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4305 = lean_array_push(x_4303, x_4304); -x_4306 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4306 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4307 = lean_array_push(x_4305, x_4306); lean_inc(x_11); x_4308 = lean_array_push(x_4292, x_11); @@ -18577,7 +18577,7 @@ lean_object* x_4337; lean_object* x_4338; uint8_t x_4339; lean_dec(x_4336); lean_dec(x_4334); lean_dec(x_2); -x_4337 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_4337 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_4338 = l_Lean_Elab_Term_throwError___rarg(x_11, x_4337, x_5, x_6); lean_dec(x_11); x_4339 = !lean_is_exclusive(x_4338); @@ -18632,7 +18632,7 @@ lean_inc(x_4347); x_4352 = l_Lean_Elab_Term_mkExplicitBinder(x_4347, x_4351); x_4353 = lean_array_push(x_4, x_4352); lean_inc(x_5); -x_4354 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_4350, x_4353, x_5, x_4348); +x_4354 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_4350, x_4353, x_5, x_4348); if (lean_obj_tag(x_4354) == 0) { lean_object* x_4355; lean_object* x_4356; uint8_t x_4357; @@ -18660,7 +18660,7 @@ x_4363 = lean_ctor_get(x_4361, 0); lean_dec(x_4363); x_4364 = l_Array_empty___closed__1; x_4365 = lean_array_push(x_4364, x_4347); -x_4366 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4366 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4367 = lean_array_push(x_4365, x_4366); x_4368 = l_Lean_mkTermIdFromIdent___closed__2; x_4369 = lean_alloc_ctor(1, 2, 0); @@ -18671,12 +18671,12 @@ x_4371 = l_Lean_nullKind___closed__2; x_4372 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4372, 0, x_4371); lean_ctor_set(x_4372, 1, x_4370); -x_4373 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4373 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4374 = lean_array_push(x_4373, x_4372); x_4375 = lean_array_push(x_4374, x_4366); -x_4376 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4376 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4377 = lean_array_push(x_4375, x_4376); -x_4378 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4378 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4379 = lean_array_push(x_4377, x_4378); lean_inc(x_11); x_4380 = lean_array_push(x_4364, x_11); @@ -18749,7 +18749,7 @@ lean_inc(x_4407); lean_dec(x_4361); x_4408 = l_Array_empty___closed__1; x_4409 = lean_array_push(x_4408, x_4347); -x_4410 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4410 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4411 = lean_array_push(x_4409, x_4410); x_4412 = l_Lean_mkTermIdFromIdent___closed__2; x_4413 = lean_alloc_ctor(1, 2, 0); @@ -18760,12 +18760,12 @@ x_4415 = l_Lean_nullKind___closed__2; x_4416 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4416, 0, x_4415); lean_ctor_set(x_4416, 1, x_4414); -x_4417 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4417 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4418 = lean_array_push(x_4417, x_4416); x_4419 = lean_array_push(x_4418, x_4410); -x_4420 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4420 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4421 = lean_array_push(x_4419, x_4420); -x_4422 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4422 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4423 = lean_array_push(x_4421, x_4422); lean_inc(x_11); x_4424 = lean_array_push(x_4408, x_11); @@ -18835,7 +18835,7 @@ if (lean_is_exclusive(x_4443)) { } x_4446 = l_Array_empty___closed__1; x_4447 = lean_array_push(x_4446, x_4347); -x_4448 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4448 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4449 = lean_array_push(x_4447, x_4448); x_4450 = l_Lean_mkTermIdFromIdent___closed__2; x_4451 = lean_alloc_ctor(1, 2, 0); @@ -18846,12 +18846,12 @@ x_4453 = l_Lean_nullKind___closed__2; x_4454 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4454, 0, x_4453); lean_ctor_set(x_4454, 1, x_4452); -x_4455 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4455 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4456 = lean_array_push(x_4455, x_4454); x_4457 = lean_array_push(x_4456, x_4448); -x_4458 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4458 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4459 = lean_array_push(x_4457, x_4458); -x_4460 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4460 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4461 = lean_array_push(x_4459, x_4460); lean_inc(x_11); x_4462 = lean_array_push(x_4446, x_11); @@ -18952,7 +18952,7 @@ lean_object* x_4491; lean_object* x_4492; uint8_t x_4493; lean_dec(x_4490); lean_dec(x_4488); lean_dec(x_2); -x_4491 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_4491 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_4492 = l_Lean_Elab_Term_throwError___rarg(x_11, x_4491, x_5, x_6); lean_dec(x_11); x_4493 = !lean_is_exclusive(x_4492); @@ -19006,7 +19006,7 @@ lean_inc(x_4501); x_4506 = l_Lean_Elab_Term_mkExplicitBinder(x_4501, x_4505); x_4507 = lean_array_push(x_4, x_4506); lean_inc(x_5); -x_4508 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_4504, x_4507, x_5, x_4502); +x_4508 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_4504, x_4507, x_5, x_4502); if (lean_obj_tag(x_4508) == 0) { lean_object* x_4509; lean_object* x_4510; uint8_t x_4511; @@ -19034,7 +19034,7 @@ x_4517 = lean_ctor_get(x_4515, 0); lean_dec(x_4517); x_4518 = l_Array_empty___closed__1; x_4519 = lean_array_push(x_4518, x_4501); -x_4520 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4520 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4521 = lean_array_push(x_4519, x_4520); x_4522 = l_Lean_mkTermIdFromIdent___closed__2; x_4523 = lean_alloc_ctor(1, 2, 0); @@ -19045,12 +19045,12 @@ x_4525 = l_Lean_nullKind___closed__2; x_4526 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4526, 0, x_4525); lean_ctor_set(x_4526, 1, x_4524); -x_4527 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4527 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4528 = lean_array_push(x_4527, x_4526); x_4529 = lean_array_push(x_4528, x_4520); -x_4530 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4530 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4531 = lean_array_push(x_4529, x_4530); -x_4532 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4532 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4533 = lean_array_push(x_4531, x_4532); x_4534 = lean_array_push(x_4518, x_11); x_4535 = lean_alloc_ctor(1, 2, 0); @@ -19085,7 +19085,7 @@ lean_inc(x_4547); lean_dec(x_4515); x_4548 = l_Array_empty___closed__1; x_4549 = lean_array_push(x_4548, x_4501); -x_4550 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4550 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4551 = lean_array_push(x_4549, x_4550); x_4552 = l_Lean_mkTermIdFromIdent___closed__2; x_4553 = lean_alloc_ctor(1, 2, 0); @@ -19096,12 +19096,12 @@ x_4555 = l_Lean_nullKind___closed__2; x_4556 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4556, 0, x_4555); lean_ctor_set(x_4556, 1, x_4554); -x_4557 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4557 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4558 = lean_array_push(x_4557, x_4556); x_4559 = lean_array_push(x_4558, x_4550); -x_4560 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4560 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4561 = lean_array_push(x_4559, x_4560); -x_4562 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4562 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4563 = lean_array_push(x_4561, x_4562); x_4564 = lean_array_push(x_4548, x_11); x_4565 = lean_alloc_ctor(1, 2, 0); @@ -19157,7 +19157,7 @@ if (lean_is_exclusive(x_4582)) { } x_4585 = l_Array_empty___closed__1; x_4586 = lean_array_push(x_4585, x_4501); -x_4587 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_4587 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_4588 = lean_array_push(x_4586, x_4587); x_4589 = l_Lean_mkTermIdFromIdent___closed__2; x_4590 = lean_alloc_ctor(1, 2, 0); @@ -19168,12 +19168,12 @@ x_4592 = l_Lean_nullKind___closed__2; x_4593 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_4593, 0, x_4592); lean_ctor_set(x_4593, 1, x_4591); -x_4594 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_4594 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_4595 = lean_array_push(x_4594, x_4593); x_4596 = lean_array_push(x_4595, x_4587); -x_4597 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_4597 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_4598 = lean_array_push(x_4596, x_4597); -x_4599 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_4599 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_4600 = lean_array_push(x_4598, x_4599); x_4601 = lean_array_push(x_4585, x_11); x_4602 = lean_alloc_ctor(1, 2, 0); @@ -19260,7 +19260,7 @@ lean_object* x_4629; lean_object* x_4630; uint8_t x_4631; lean_dec(x_4628); lean_dec(x_4626); lean_dec(x_2); -x_4629 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; +x_4629 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9; x_4630 = l_Lean_Elab_Term_throwError___rarg(x_11, x_4629, x_5, x_6); lean_dec(x_11); x_4631 = !lean_is_exclusive(x_4630); @@ -19295,28 +19295,28 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Binders_11__expandFunBindersAux(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); return x_7; } @@ -19327,7 +19327,7 @@ _start: lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_unsigned_to_nat(0u); x_6 = l_Array_empty___closed__1; -x_7 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_5, x_6, x_3, x_4); +x_7 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main(x_1, x_2, x_5, x_6, x_3, x_4); return x_7; } } @@ -19340,7 +19340,7 @@ lean_dec(x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1() { +lean_object* _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1() { _start: { lean_object* x_1; @@ -19348,27 +19348,27 @@ x_1 = lean_mk_string("autoParam is not allowed at 'fun/λ' binders"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2() { +lean_object* _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1; +x_1 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3() { +lean_object* _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2; +x_1 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4() { +lean_object* _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4() { _start: { lean_object* x_1; @@ -19376,27 +19376,27 @@ x_1 = lean_mk_string("optParam is not allowed at 'fun/λ' binders"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5() { +lean_object* _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4; +x_1 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6() { +lean_object* _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5; +x_1 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -19425,7 +19425,7 @@ else { lean_object* x_12; lean_object* x_13; lean_free_object(x_5); -x_12 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3; +x_12 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3; x_13 = l_Lean_Elab_Term_throwError___rarg(x_1, x_12, x_3, x_8); return x_13; } @@ -19434,7 +19434,7 @@ else { lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_free_object(x_5); -x_14 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6; +x_14 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6; x_15 = l_Lean_Elab_Term_throwError___rarg(x_1, x_14, x_3, x_8); x_16 = !lean_is_exclusive(x_15); if (x_16 == 0) @@ -19482,7 +19482,7 @@ return x_25; else { lean_object* x_26; lean_object* x_27; -x_26 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3; +x_26 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3; x_27 = l_Lean_Elab_Term_throwError___rarg(x_1, x_26, x_3, x_21); return x_27; } @@ -19490,7 +19490,7 @@ return x_27; else { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_28 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6; +x_28 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6; x_29 = l_Lean_Elab_Term_throwError___rarg(x_1, x_28, x_3, x_21); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); @@ -19516,16 +19516,16 @@ return x_33; } } } -lean_object* l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___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___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Binders_13__propagateExpectedType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Binders_13__propagateExpectedType(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; @@ -19609,7 +19609,7 @@ lean_ctor_set(x_29, 0, x_9); lean_ctor_set(x_29, 1, x_10); lean_ctor_set(x_29, 2, x_11); lean_ctor_set(x_29, 3, x_7); -x_30 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam(x_1, x_3, x_5, x_27); +x_30 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam(x_1, x_3, x_5, x_27); if (lean_obj_tag(x_30) == 0) { uint8_t x_31; @@ -19804,7 +19804,7 @@ lean_ctor_set(x_64, 0, x_9); lean_ctor_set(x_64, 1, x_10); lean_ctor_set(x_64, 2, x_11); lean_ctor_set(x_64, 3, x_63); -x_65 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam(x_1, x_3, x_5, x_61); +x_65 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam(x_1, x_3, x_5, x_61); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; @@ -19952,17 +19952,17 @@ return x_81; } } } -lean_object* l___private_Init_Lean_Elab_Binders_13__propagateExpectedType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Binders_13__propagateExpectedType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Binders_13__propagateExpectedType(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Binders_13__propagateExpectedType(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Binders_14__elabFunBinderViews___main(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; @@ -20026,7 +20026,7 @@ lean_inc(x_24); lean_dec(x_22); lean_inc(x_4); lean_inc(x_23); -x_25 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam(x_16, x_23, x_4, x_24); +x_25 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam(x_16, x_23, x_4, x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; @@ -20054,7 +20054,7 @@ lean_inc(x_23); x_35 = lean_local_ctx_mk_local_decl(x_13, x_28, x_33, x_23, x_34); lean_inc(x_4); lean_inc(x_23); -x_36 = l___private_Init_Lean_Elab_Binders_13__propagateExpectedType(x_32, x_30, x_23, x_3, x_4, x_29); +x_36 = l___private_Lean_Elab_Binders_13__propagateExpectedType(x_32, x_30, x_23, x_3, x_4, x_29); lean_dec(x_32); if (lean_obj_tag(x_36) == 0) { @@ -20406,7 +20406,7 @@ lean_inc(x_106); lean_dec(x_104); lean_inc(x_4); lean_inc(x_105); -x_107 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam(x_16, x_105, x_4, x_106); +x_107 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam(x_16, x_105, x_4, x_106); if (lean_obj_tag(x_107) == 0) { lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_object* x_117; lean_object* x_118; @@ -20434,7 +20434,7 @@ lean_inc(x_105); x_117 = lean_local_ctx_mk_local_decl(x_13, x_110, x_115, x_105, x_116); lean_inc(x_4); lean_inc(x_105); -x_118 = l___private_Init_Lean_Elab_Binders_13__propagateExpectedType(x_114, x_112, x_105, x_3, x_4, x_111); +x_118 = l___private_Lean_Elab_Binders_13__propagateExpectedType(x_114, x_112, x_105, x_3, x_4, x_111); lean_dec(x_114); if (lean_obj_tag(x_118) == 0) { @@ -20747,7 +20747,7 @@ lean_inc(x_178); lean_dec(x_176); lean_inc(x_175); lean_inc(x_177); -x_179 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam(x_16, x_177, x_175, x_178); +x_179 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam(x_16, x_177, x_175, x_178); if (lean_obj_tag(x_179) == 0) { lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_189; lean_object* x_190; @@ -20775,7 +20775,7 @@ lean_inc(x_177); x_189 = lean_local_ctx_mk_local_decl(x_13, x_182, x_187, x_177, x_188); lean_inc(x_175); lean_inc(x_177); -x_190 = l___private_Init_Lean_Elab_Binders_13__propagateExpectedType(x_186, x_184, x_177, x_3, x_175, x_183); +x_190 = l___private_Lean_Elab_Binders_13__propagateExpectedType(x_186, x_184, x_177, x_3, x_175, x_183); lean_dec(x_186); if (lean_obj_tag(x_190) == 0) { @@ -21120,7 +21120,7 @@ lean_inc(x_256); lean_dec(x_254); lean_inc(x_253); lean_inc(x_255); -x_257 = l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam(x_234, x_255, x_253, x_256); +x_257 = l___private_Lean_Elab_Binders_12__checkNoOptAutoParam(x_234, x_255, x_253, x_256); if (lean_obj_tag(x_257) == 0) { 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; uint8_t x_267; lean_object* x_268; lean_object* x_269; @@ -21152,7 +21152,7 @@ lean_inc(x_255); x_268 = lean_local_ctx_mk_local_decl(x_231, x_260, x_266, x_255, x_267); lean_inc(x_253); lean_inc(x_255); -x_269 = l___private_Init_Lean_Elab_Binders_13__propagateExpectedType(x_265, x_262, x_255, x_264, x_253, x_261); +x_269 = l___private_Lean_Elab_Binders_13__propagateExpectedType(x_265, x_262, x_255, x_264, x_253, x_261); lean_dec(x_265); if (lean_obj_tag(x_269) == 0) { @@ -21386,28 +21386,28 @@ return x_308; } } } -lean_object* l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Binders_14__elabFunBinderViews___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Binders_14__elabFunBinderViews___main(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Binders_14__elabFunBinderViews(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Binders_14__elabFunBinderViews___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Binders_14__elabFunBinderViews___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Binders_14__elabFunBinderViews(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } @@ -21434,7 +21434,7 @@ else lean_object* x_9; lean_object* x_10; x_9 = lean_array_fget(x_1, x_2); lean_inc(x_4); -x_10 = l___private_Init_Lean_Elab_Binders_6__matchBinder(x_9, x_4, x_5); +x_10 = l___private_Lean_Elab_Binders_6__matchBinder(x_9, x_4, x_5); lean_dec(x_9); if (lean_obj_tag(x_10) == 0) { @@ -21446,7 +21446,7 @@ lean_inc(x_12); lean_dec(x_10); x_13 = lean_unsigned_to_nat(0u); lean_inc(x_4); -x_14 = l___private_Init_Lean_Elab_Binders_14__elabFunBinderViews___main(x_11, x_13, x_3, x_4, x_12); +x_14 = l___private_Lean_Elab_Binders_14__elabFunBinderViews___main(x_11, x_13, x_3, x_4, x_12); lean_dec(x_11); if (lean_obj_tag(x_14) == 0) { @@ -23432,7 +23432,7 @@ lean_object* _init_l_Lean_Elab_Term_elabLetDeclAux___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Parser_Term_let___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -23517,7 +23517,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean lean_inc(x_2); x_41 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_41, 0, x_2); -x_42 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_42 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_43 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_42); @@ -23527,7 +23527,7 @@ lean_ctor_set(x_44, 0, x_15); x_45 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_45, 0, x_43); lean_ctor_set(x_45, 1, x_44); -x_46 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_46 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_47 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_47, 0, x_45); lean_ctor_set(x_47, 1, x_46); @@ -23952,7 +23952,7 @@ lean_ctor_set(x_41, 2, x_37); lean_ctor_set(x_41, 3, x_38); x_42 = l_Array_empty___closed__1; x_43 = lean_array_push(x_42, x_41); -x_44 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_44 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_45 = lean_array_push(x_43, x_44); x_46 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; x_47 = lean_array_push(x_46, x_25); @@ -23967,16 +23967,16 @@ lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); lean_inc(x_45); x_53 = lean_array_push(x_45, x_52); -x_54 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_54 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_55 = lean_array_push(x_53, x_54); x_56 = lean_array_push(x_55, x_27); x_57 = l_Lean_Parser_Term_letIdDecl___closed__2; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_59 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_60 = lean_array_push(x_59, x_58); -x_61 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_61 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_62 = lean_array_push(x_60, x_61); x_63 = l_Lean_mkTermIdFromIdent___closed__2; x_64 = lean_alloc_ctor(1, 2, 0); @@ -23986,10 +23986,10 @@ x_65 = lean_array_push(x_42, x_64); x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_51); lean_ctor_set(x_66, 1, x_65); -x_67 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_67 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_68 = lean_array_push(x_67, x_66); x_69 = lean_array_push(x_68, x_44); -x_70 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_70 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_71 = lean_array_push(x_69, x_70); x_72 = lean_array_push(x_71, x_44); x_73 = lean_array_push(x_42, x_12); @@ -24147,20 +24147,20 @@ lean_ctor_set(x_143, 2, x_139); lean_ctor_set(x_143, 3, x_140); x_144 = l_Array_empty___closed__1; x_145 = lean_array_push(x_144, x_143); -x_146 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_146 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_147 = lean_array_push(x_145, x_146); lean_inc(x_147); x_148 = lean_array_push(x_147, x_146); -x_149 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_149 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_150 = lean_array_push(x_148, x_149); x_151 = lean_array_push(x_150, x_129); x_152 = l_Lean_Parser_Term_letIdDecl___closed__2; x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); -x_154 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_154 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_155 = lean_array_push(x_154, x_153); -x_156 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_156 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_157 = lean_array_push(x_155, x_156); x_158 = l_Lean_mkTermIdFromIdent___closed__2; x_159 = lean_alloc_ctor(1, 2, 0); @@ -24170,10 +24170,10 @@ x_160 = lean_array_push(x_144, x_159); x_161 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_161, 0, x_121); lean_ctor_set(x_161, 1, x_160); -x_162 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_162 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_163 = lean_array_push(x_162, x_161); x_164 = lean_array_push(x_163, x_146); -x_165 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_165 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_166 = lean_array_push(x_164, x_165); x_167 = lean_array_push(x_166, x_146); x_168 = lean_array_push(x_144, x_12); @@ -24693,7 +24693,7 @@ lean_ctor_set(x_41, 2, x_37); lean_ctor_set(x_41, 3, x_38); x_42 = l_Array_empty___closed__1; x_43 = lean_array_push(x_42, x_41); -x_44 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_44 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_45 = lean_array_push(x_43, x_44); x_46 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; x_47 = lean_array_push(x_46, x_25); @@ -24708,7 +24708,7 @@ lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); lean_inc(x_45); x_53 = lean_array_push(x_45, x_52); -x_54 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_54 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_55 = lean_array_push(x_53, x_54); x_56 = lean_array_push(x_55, x_27); x_57 = l_Lean_Parser_Term_letIdDecl___closed__2; @@ -24717,7 +24717,7 @@ lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); x_59 = l_Lean_Elab_Term_elabLetBangDecl___closed__2; x_60 = lean_array_push(x_59, x_58); -x_61 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_61 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_62 = lean_array_push(x_60, x_61); x_63 = l_Lean_mkTermIdFromIdent___closed__2; x_64 = lean_alloc_ctor(1, 2, 0); @@ -24727,10 +24727,10 @@ x_65 = lean_array_push(x_42, x_64); x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_51); lean_ctor_set(x_66, 1, x_65); -x_67 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_67 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_68 = lean_array_push(x_67, x_66); x_69 = lean_array_push(x_68, x_44); -x_70 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_70 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_71 = lean_array_push(x_69, x_70); x_72 = lean_array_push(x_71, x_44); x_73 = lean_array_push(x_42, x_12); @@ -24888,11 +24888,11 @@ lean_ctor_set(x_143, 2, x_139); lean_ctor_set(x_143, 3, x_140); x_144 = l_Array_empty___closed__1; x_145 = lean_array_push(x_144, x_143); -x_146 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_146 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_147 = lean_array_push(x_145, x_146); lean_inc(x_147); x_148 = lean_array_push(x_147, x_146); -x_149 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_149 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_150 = lean_array_push(x_148, x_149); x_151 = lean_array_push(x_150, x_129); x_152 = l_Lean_Parser_Term_letIdDecl___closed__2; @@ -24901,7 +24901,7 @@ lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); x_154 = l_Lean_Elab_Term_elabLetBangDecl___closed__2; x_155 = lean_array_push(x_154, x_153); -x_156 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_156 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_157 = lean_array_push(x_155, x_156); x_158 = l_Lean_mkTermIdFromIdent___closed__2; x_159 = lean_alloc_ctor(1, 2, 0); @@ -24911,10 +24911,10 @@ x_160 = lean_array_push(x_144, x_159); x_161 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_161, 0, x_121); lean_ctor_set(x_161, 1, x_160); -x_162 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_162 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_163 = lean_array_push(x_162, x_161); x_164 = lean_array_push(x_163, x_146); -x_165 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_165 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_166 = lean_array_push(x_164, x_165); x_167 = lean_array_push(x_166, x_146); x_168 = lean_array_push(x_144, x_12); @@ -25174,7 +25174,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Binders_15__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Binders_15__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -25230,17 +25230,17 @@ return x_13; } } } -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); -lean_object* initialize_Init_Lean_Elab_Quotation(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Elab_Quotation(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Binders(lean_object* w) { +lean_object* initialize_Lean_Elab_Binders(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Quotation(lean_io_mk_world()); +res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Array_iterateMAux___main___at_Lean_Elab_Term_quoteAutoTactic___main___spec__1___closed__1 = _init_l_Array_iterateMAux___main___at_Lean_Elab_Term_quoteAutoTactic___main___spec__1___closed__1(); @@ -25285,28 +25285,28 @@ l_Lean_Elab_Term_declareTacticSyntax___closed__4 = _init_l_Lean_Elab_Term_declar lean_mark_persistent(l_Lean_Elab_Term_declareTacticSyntax___closed__4); l_Lean_Elab_Term_declareTacticSyntax___closed__5 = _init_l_Lean_Elab_Term_declareTacticSyntax___closed__5(); lean_mark_persistent(l_Lean_Elab_Term_declareTacticSyntax___closed__5); -l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__1 = _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__1); -l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__2 = _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__2); -l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__3 = _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__3); -l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__4 = _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__4); -l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__5 = _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__5); -l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__6 = _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__6); -l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__7 = _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__7); -l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__8 = _init_l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_4__expandBinderModifier___closed__8); -l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1(); -lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1); -l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2(); -lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2); -l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3(); -lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3); +l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__1 = _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__1); +l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__2 = _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__2); +l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__3 = _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__3); +l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__4 = _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__4); +l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__5 = _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__5); +l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__6 = _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__6); +l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__7 = _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__7); +l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__8 = _init_l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Binders_4__expandBinderModifier___closed__8); +l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1 = _init_l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1(); +lean_mark_persistent(l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__1); +l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2 = _init_l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2(); +lean_mark_persistent(l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__2); +l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3 = _init_l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3(); +lean_mark_persistent(l_Array_umapMAux___main___at___private_Lean_Elab_Binders_5__getBinderIds___spec__1___closed__3); l___regBuiltin_Lean_Elab_Term_elabForall___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabForall___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabForall___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabForall(lean_io_mk_world()); @@ -25334,36 +25334,36 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabDepArrow(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1 = _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1); -l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2 = _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2); -l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3 = _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3); -l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4 = _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4); -l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5 = _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5); -l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6 = _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6); -l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7 = _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7); -l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8 = _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8); -l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9 = _init_l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9); -l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1 = _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1); -l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2 = _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2); -l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3 = _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3); -l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4 = _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4); -l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5 = _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5); -l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6 = _init_l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__1); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__5); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__7); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__8); +l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9 = _init_l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__9); +l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1 = _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__1); +l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2 = _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__2); +l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3 = _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__3); +l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4 = _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__4); +l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5 = _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__5); +l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6 = _init_l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Binders_12__checkNoOptAutoParam___closed__6); l___regBuiltin_Lean_Elab_Term_elabFun___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabFun___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabFun___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabFun(lean_io_mk_world()); @@ -25393,7 +25393,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetBangDecl___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabLetBangDecl(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l___private_Init_Lean_Elab_Binders_15__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_Elab_Binders_15__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c similarity index 93% rename from stage0/stdlib/Init/Lean/Elab/BuiltinNotation.c rename to stage0/stdlib/Lean/Elab/BuiltinNotation.c index 4791810b4d..5e3b55dc3e 100644 --- a/stage0/stdlib/Init/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.BuiltinNotation -// Imports: Init.Lean.Elab.Term Init.Lean.Elab.Quotation Init.Lean.Elab.SyntheticMVars +// Module: Lean.Elab.BuiltinNotation +// Imports: Lean.Elab.Term Lean.Elab.Quotation Lean.Elab.SyntheticMVars #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -28,11 +28,9 @@ lean_object* l_Lean_Elab_Term_elabseqLeft___closed__1; lean_object* l_Lean_Elab_Term_elabBind___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_prod_x3f___closed__2; lean_object* l_Lean_mkAppStx(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6; lean_object* l_Lean_extractMacroScopes(lean_object*); lean_object* l_Lean_Elab_Term_elabAdd___closed__1; extern lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; lean_object* l_Lean_Elab_Term_elabModN___closed__1; lean_object* l_Lean_Elab_Term_elabIff(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_reduceNative_x3f___closed__2; @@ -49,18 +47,17 @@ lean_object* l_Lean_Elab_Term_expandIf___closed__5; lean_object* l_Lean_Elab_Term_elabseqLeft___closed__2; lean_object* l_Lean_Elab_Term_elabMod___closed__2; lean_object* l_Lean_Elab_Term_elabPow(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_7__quoteName___main(lean_object*); lean_object* l_Lean_Elab_Term_elabModN___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_elabNativeRefl___closed__1; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__2; lean_object* l_Lean_Elab_Term_elabBOr___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main(lean_object*); lean_object* l_Lean_Elab_Term_elabInfix(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__5; lean_object* l_Lean_Elab_Term_expandSubtype___closed__9; lean_object* l___regBuiltin_Lean_Elab_Term_elabMapConstRev(lean_object*); lean_object* l_Lean_Elab_Term_inferType(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__30; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4; extern lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabBAnd(lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__28; @@ -68,7 +65,6 @@ lean_object* l_Lean_Elab_Term_elabInfixOp(lean_object*, lean_object*, lean_objec lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__18; lean_object* l_Lean_Elab_Term_expandHave___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__14; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__1; lean_object* l_Lean_Elab_Term_elabBOr___closed__1; @@ -87,7 +83,6 @@ extern lean_object* l_Lean_Parser_Term_show___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabMul___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandDollarProj(lean_object*); extern lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4; extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Elab_Term_elabPow___closed__3; lean_object* lean_environment_find(lean_object*, lean_object*); @@ -99,13 +94,16 @@ lean_object* l_Lean_Elab_Term_elabTermAndSynthesize(lean_object*, lean_object*, lean_object* l_Lean_Elab_Term_expandDollar(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_ElabFComp___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; extern lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabGT(lean_object*); extern lean_object* l_Lean_Parser_Term_mul___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_andM___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_elabEquiv___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__17; lean_object* l_Lean_Elab_Term_elabNativeRefl(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1; lean_object* l_Lean_Elab_Term_elabEquiv___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__2; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); @@ -114,7 +112,6 @@ extern lean_object* l_Lean_Parser_Term_pow___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_expandSubtype(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_compileDecl(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; lean_object* l_Lean_Elab_Term_elabMul___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__8; lean_object* l_Lean_Elab_Term_expandIf___closed__7; @@ -134,15 +131,17 @@ lean_object* l_Lean_Expr_getAppFn___main(lean_object*); extern lean_object* l_Lean_Expr_listLitAux___main___closed__5; lean_object* l___regBuiltin_Lean_Elab_Term_elabAppend___closed__1; lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__6; +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; +extern lean_object* l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__6; lean_object* l_Lean_Elab_Term_mkAuxName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnd(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandSubtype___closed__11; lean_object* l_Lean_Elab_Term_elabLT___closed__3; extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabAppend(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; lean_object* l_Lean_Elab_Term_elabDiv___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_elabHEq___closed__1; lean_object* l_Lean_Elab_Term_elabBNe(lean_object*, lean_object*, lean_object*); @@ -154,7 +153,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabMul(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__4; lean_object* l_Lean_Elab_Term_elabEquiv___closed__4; extern lean_object* l_Lean_Parser_Term_andM___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3; lean_object* l_Lean_Elab_Term_elabNativeRefl___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_ElabFComp(lean_object*); lean_object* l_Lean_Elab_Term_elabLT___closed__1; @@ -177,6 +175,7 @@ lean_object* l_Lean_Elab_Term_expandSubtype___closed__1; lean_object* l_Lean_Elab_Term_mkExpectedTypeHint(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabMap(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandShow___closed__1; +lean_object* l___private_Lean_Elab_Term_3__fromMetaState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabBNe___closed__1; lean_object* l_Lean_Elab_Term_elabMapRev(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__2; @@ -187,12 +186,9 @@ lean_object* l_Lean_Elab_Term_expandDollarProj(lean_object*, lean_object*, lean_ lean_object* l_Lean_Elab_Term_whnf(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_or___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabCons___closed__1; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabAndThen(lean_object*); lean_object* l_Lean_Elab_Term_elabseq___closed__1; lean_object* l_Lean_Elab_Term_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5; extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; lean_object* l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__19; @@ -201,14 +197,13 @@ extern lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_add___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_add___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_expandShow___closed__2; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_beq___main___at_Lean_Elab_Term_elabParserMacro___spec__1___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandHave(lean_object*); lean_object* l_Lean_Elab_Term_elabDecide___closed__2; +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2; lean_object* l_Lean_Elab_Term_elabOr___closed__2; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__9; -lean_object* l___private_Init_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabMul___closed__3; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__21; lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object*, lean_object*); @@ -226,6 +221,7 @@ lean_object* l_Lean_Elab_Term_elabseq___boxed(lean_object*, lean_object*, lean_o uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabMap___closed__1; lean_object* l_Lean_Elab_Term_elabNativeRefl___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; lean_object* l_Lean_Elab_Term_elabMul(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabseq___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabOrElse___closed__1; @@ -247,6 +243,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabSub(lean_object*); extern lean_object* l_Lean_Parser_Term_div___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabNativeRefl___closed__9; +lean_object* l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4; extern lean_object* l_Lean_Parser_Tactic_seq___elambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabseq___closed__3; @@ -255,6 +252,7 @@ lean_object* l_Lean_Elab_Term_elabDiv___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabseqLeft___closed__1; lean_object* l_Lean_Elab_Term_expandIf___closed__4; extern lean_object* l_Lean_Parser_Term_sub___elambda__1___closed__1; +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3; lean_object* l_Lean_Elab_Term_elabNativeRefl___closed__4; lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__10; lean_object* l_Lean_Elab_Term_elabLE___closed__1; @@ -273,11 +271,13 @@ lean_object* l_Lean_Elab_Term_elabDiv___closed__1; lean_object* l_Lean_Elab_Term_elabBind(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabEquiv___closed__3; lean_object* l_Lean_Elab_Term_elabTParserMacro___closed__1; +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6; lean_object* l_Lean_Elab_Term_expandIf___closed__6; lean_object* l_Lean_Elab_Term_elabDecide___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabDecide(lean_object*); lean_object* l_Lean_Elab_Term_ElabFComp(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabLE___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__8; lean_object* l_Lean_Elab_Term_expandIf___closed__9; lean_object* l_Lean_Elab_Term_elabProd___boxed(lean_object*, lean_object*, lean_object*); @@ -293,7 +293,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabNativeDecide(lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__27; lean_object* l___regBuiltin_Lean_Elab_Term_elabMapConst___closed__1; lean_object* l_Lean_Elab_Term_elabSub(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; extern lean_object* l_Lean_Parser_Term_fcomp___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabMapRev___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabMod___closed__3; @@ -302,9 +301,9 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabAnd___closed__1; lean_object* l_Lean_Elab_Term_elabseqRight___closed__1; extern lean_object* l_Lean_mkDecIsTrue___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabBOr(lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_Elab_Term_expandSubtype___closed__8; lean_object* l_Lean_Elab_Term_elabHEq(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -313,12 +312,14 @@ lean_object* l_Lean_Elab_Term_expandDollar___boxed(lean_object*, lean_object*, l lean_object* l_Lean_Elab_Term_elabMapConstRev(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabseqRight___closed__2; lean_object* l_Lean_Elab_Term_elabIff___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLT___closed__2; lean_object* l_Lean_Elab_Term_elabBAnd(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__31; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_orM___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_orM___elambda__1___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; lean_object* l_Lean_Elab_Term_expandSubtype___closed__4; extern lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__9; @@ -331,6 +332,7 @@ extern lean_object* l_Lean_mkAppStx___closed__6; lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_elabMap___closed__3; lean_object* l_Lean_Elab_Term_elabOr___boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; extern lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_elabAppend___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__15; @@ -343,22 +345,24 @@ extern lean_object* l_Lean_Parser_Term_append___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_expandSubtype(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabModN(lean_object*); extern lean_object* l_Lean_Parser_Term_mapConstRev___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_bor___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabAdd(lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabCons(lean_object*); lean_object* l_Lean_Elab_Term_elabCons___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandDollarProj___closed__1; lean_object* l_Lean_Elab_Term_elabPow___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabMod(lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2; lean_object* l_Lean_Elab_Term_elabGE(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5; lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLT___closed__4; lean_object* l_Lean_Elab_Term_elabMapConstRev___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabOr(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabMap___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__26; lean_object* l_Lean_Elab_Term_elabAnd___closed__2; @@ -367,10 +371,10 @@ lean_object* l_Lean_Elab_Term_elabMapConstRev___closed__1; lean_object* l_Lean_Elab_Term_elabDecide___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBOr(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_seq___elambda__1___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; extern lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__10; lean_object* l_Lean_Elab_Term_elabAndM(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; lean_object* l_Lean_Elab_Term_elabOrElse___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabOrM___closed__1; @@ -402,9 +406,11 @@ lean_object* l_Lean_Elab_Term_elabMap___closed__2; lean_object* l_Lean_Elab_Term_expandSubtype___closed__3; lean_object* l_Lean_Elab_Term_expandHave(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_le___elambda__1___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__20; lean_object* l_Lean_Elab_Term_elabTParserMacro(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnd___closed__1; +lean_object* l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3; extern lean_object* l_Lean_Expr_listLitAux___main___closed__6; extern lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; lean_object* l___regBuiltin_Lean_Elab_Term_elabseq___closed__1; @@ -417,15 +423,15 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabOr___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabPow___closed__1; lean_object* l_Lean_Elab_Term_expandSubtype___closed__2; +extern lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8; +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; extern lean_object* l_Lean_Parser_Term_if___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__16; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3; lean_object* l_Lean_Elab_Term_elabLE___closed__3; lean_object* l_Lean_Elab_Term_elabLT(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabDiv(lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5; uint8_t l_Lean_Expr_hasMVar(lean_object*); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabAndM(lean_object*); @@ -434,20 +440,23 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Elab_Term_expandIf___closed__1; lean_object* l_Lean_Elab_Term_elabLE___closed__4; lean_object* l_Lean_Elab_Term_elabOrM___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2; extern lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; lean_object* l_Lean_Elab_Term_elabGE___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_seqRight___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_expandIf___closed__2; extern lean_object* l_Lean_Parser_Term_mapRev___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_expandIf___closed__8; lean_object* l___regBuiltin_Lean_Elab_Term_elabOrM(lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5; extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; extern lean_object* l_Lean_Parser_Term_append___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabseqLeft(lean_object*); lean_object* l_Lean_Elab_Term_elabGE___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__10; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__32; +extern lean_object* l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; lean_object* l_Lean_Elab_Term_elabNativeRefl___closed__10; lean_object* l_Lean_Elab_Term_expandSubtype___closed__5; lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -457,7 +466,6 @@ lean_object* l_Lean_mkStxStrLit(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabBind(lean_object*); lean_object* l_Lean_Elab_Term_elabInfix___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ElabFComp___boxed(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8; extern lean_object* l_Lean_Parser_Term_mapConst___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_ElabFComp___closed__1; lean_object* l_Lean_Elab_Term_elabBEq(lean_object*, lean_object*, lean_object*); @@ -469,6 +477,8 @@ extern lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabDiv___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro___closed__1; lean_object* l_Lean_Elab_Term_ElabFComp___closed__3; +lean_object* l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1; lean_object* l_Lean_Elab_Term_elabAndThen___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__9; extern lean_object* l_Lean_Parser_Term_and___elambda__1___closed__2; @@ -488,7 +498,6 @@ lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__15; lean_object* l_Lean_Elab_Term_elabHEq___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabOrM(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandShow___closed__4; -extern lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3; lean_object* l_Lean_Elab_Term_elabAndThen___closed__2; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabMapConst___boxed(lean_object*, lean_object*, lean_object*); @@ -499,21 +508,20 @@ lean_object* l_Lean_Elab_Term_elabseqLeft(lean_object*, lean_object*, lean_objec lean_object* l_Lean_Elab_Term_elabMapConst___closed__1; extern lean_object* l_Lean_mkHole___closed__2; lean_object* l_Lean_Elab_Term_elabNativeDecide___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; lean_object* l_Lean_Elab_Term_elabseqRight(lean_object*, lean_object*, lean_object*); uint8_t l_List_beq___main___at_Lean_Elab_Term_elabParserMacro___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNativeDecide___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandIf(lean_object*); lean_object* l_Lean_Elab_Term_elabseqRight___boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabIff___closed__1; lean_object* l_Lean_Meta_reduceNative_x3f(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabAndM___closed__1; extern lean_object* l_Lean_Meta_reduceNative_x3f___closed__4; -extern lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_elabParserMacro___closed__1; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__5; extern lean_object* l_Lean_optionToExpr___rarg___lambda__1___closed__2; +lean_object* l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; lean_object* l___regBuiltin_Lean_Elab_Term_elabGE(lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__14; lean_object* l___regBuiltin_Lean_Elab_Term_elabNe(lean_object*); @@ -521,29 +529,22 @@ lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_expandWhere___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Elab_Term_elabNativeRefl___closed__7; -lean_object* l___private_Init_Lean_Elab_Term_3__fromMetaState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_bne___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabProd(lean_object*); extern lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4; extern lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__2; lean_object* l_Lean_mkCTermIdFrom(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1; lean_object* l_Lean_Elab_Term_elabCons(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_expandIf___closed__1; lean_object* l_Lean_Elab_Term_elabMod(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__7; extern lean_object* l_Lean_Parser_Term_map___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_elabPow(lean_object*); extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBEq___closed__2; lean_object* l_Lean_Elab_Term_elabBNe___closed__1; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabBEq___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabMod___closed__1; lean_object* l_Lean_Elab_Term_elabBNe___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabMapConst(lean_object*); @@ -554,7 +555,6 @@ lean_object* l_Lean_Elab_Term_elabMap(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabMapRev(lean_object*); extern lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__2; lean_object* l_Lean_indentExpr(lean_object*); -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabseqRight___closed__3; uint8_t l_Lean_Expr_hasFVar(lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__29; @@ -564,15 +564,17 @@ lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__25; extern lean_object* l_Lean_Parser_Term_map___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_elabAndThen(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabTParserMacro___closed__1; +lean_object* l___private_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNativeRefl___closed__3; extern lean_object* l_Lean_Parser_Term_bindOp___elambda__1___closed__2; lean_object* l_Lean_mkConst(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4; extern lean_object* l_Lean_Parser_Term_modN___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabseqRight(lean_object*); lean_object* l_Lean_Elab_Term_elabNe___closed__2; extern lean_object* l_Lean_Parser_Term_and___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__7; -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; lean_object* l_Lean_Elab_Term_elabNe(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_ElabFComp___closed__2; @@ -581,9 +583,8 @@ lean_object* l_Lean_Elab_Term_elabProd(lean_object*, lean_object*, lean_object*) lean_object* l_Lean_Elab_Term_elabSub___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__24; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +lean_object* l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabOrM___closed__1; -extern lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; extern lean_object* l_Lean_Parser_Term_dollar___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabEquiv___closed__1; lean_object* l_Lean_Elab_Term_elabNe___closed__1; @@ -592,7 +593,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabseq(lean_object*); lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_elabBEq___closed__1; lean_object* l_Lean_Elab_Term_elabNe___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1; lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSub___closed__3; lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_expandWhere___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -869,7 +869,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; +x_2 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -1060,7 +1060,7 @@ lean_dec(x_2); x_20 = l_Lean_Elab_Term_expandIf___closed__1; x_21 = l_Lean_addMacroScope(x_19, x_20, x_18); x_22 = l_Lean_SourceInfo_inhabited___closed__1; -x_23 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3; +x_23 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3; x_24 = l_Lean_Elab_Term_expandIf___closed__3; x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_22); @@ -1069,7 +1069,7 @@ lean_ctor_set(x_25, 2, x_21); lean_ctor_set(x_25, 3, x_24); x_26 = l_Array_empty___closed__1; x_27 = lean_array_push(x_26, x_25); -x_28 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_28 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_29 = lean_array_push(x_27, x_28); x_30 = l_Lean_mkTermIdFromIdent___closed__2; x_31 = lean_alloc_ctor(1, 2, 0); @@ -1150,7 +1150,7 @@ lean_ctor_set(x_66, 2, x_62); lean_ctor_set(x_66, 3, x_65); x_67 = l_Array_empty___closed__1; x_68 = lean_array_push(x_67, x_66); -x_69 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_69 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_70 = lean_array_push(x_68, x_69); x_71 = l_Lean_mkTermIdFromIdent___closed__2; x_72 = lean_alloc_ctor(1, 2, 0); @@ -1182,9 +1182,9 @@ x_88 = lean_array_push(x_87, x_69); x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_43); lean_ctor_set(x_89, 1, x_88); -x_90 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_90 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_91 = lean_array_push(x_90, x_89); -x_92 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_92 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_93 = lean_array_push(x_91, x_92); x_94 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_95 = lean_alloc_ctor(1, 2, 0); @@ -1335,7 +1335,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandSubtype___closed__8; -x_2 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; +x_2 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1478,7 +1478,7 @@ lean_ctor_set(x_23, 2, x_19); lean_ctor_set(x_23, 3, x_22); x_24 = l_Array_empty___closed__1; x_25 = lean_array_push(x_24, x_23); -x_26 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_26 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_27 = lean_array_push(x_25, x_26); x_28 = l_Lean_mkTermIdFromIdent___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); @@ -1497,9 +1497,9 @@ x_37 = l_Lean_nullKind___closed__2; x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); -x_39 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_39 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_40 = lean_array_push(x_39, x_38); -x_41 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_41 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_42 = lean_array_push(x_40, x_41); x_43 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_44 = lean_alloc_ctor(1, 2, 0); @@ -1636,7 +1636,7 @@ lean_ctor_set(x_90, 2, x_86); lean_ctor_set(x_90, 3, x_89); x_91 = l_Array_empty___closed__1; x_92 = lean_array_push(x_91, x_90); -x_93 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_93 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_94 = lean_array_push(x_92, x_93); x_95 = l_Lean_mkTermIdFromIdent___closed__2; x_96 = lean_alloc_ctor(1, 2, 0); @@ -1663,9 +1663,9 @@ x_108 = lean_array_push(x_101, x_107); x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_67); lean_ctor_set(x_109, 1, x_108); -x_110 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_110 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_111 = lean_array_push(x_110, x_109); -x_112 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_112 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_113 = lean_array_push(x_111, x_112); x_114 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_115 = lean_alloc_ctor(1, 2, 0); @@ -2478,7 +2478,7 @@ lean_dec(x_1); x_17 = l_Array_empty___closed__1; lean_inc(x_16); x_18 = lean_array_push(x_17, x_16); -x_19 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_19 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_20 = lean_array_push(x_18, x_19); x_21 = l_Lean_Elab_Term_expandSubtype___closed__8; x_22 = lean_array_push(x_21, x_8); @@ -2492,7 +2492,7 @@ x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); x_28 = lean_array_push(x_20, x_27); -x_29 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_29 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_30 = lean_array_push(x_28, x_29); x_31 = lean_array_push(x_30, x_14); x_32 = l_Lean_Parser_Term_letIdDecl___closed__2; @@ -2501,7 +2501,7 @@ lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); x_34 = l_Lean_Elab_Term_expandShow___closed__4; x_35 = lean_array_push(x_34, x_33); -x_36 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_36 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_37 = lean_array_push(x_35, x_36); x_38 = lean_array_push(x_37, x_16); x_39 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; @@ -2680,7 +2680,7 @@ x_23 = l_Lean_Syntax_getArg(x_1, x_22); lean_dec(x_1); x_24 = l_Array_empty___closed__1; x_25 = lean_array_push(x_24, x_13); -x_26 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_26 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_27 = lean_array_push(x_25, x_26); x_28 = l_Lean_Elab_Term_expandSubtype___closed__8; x_29 = lean_array_push(x_28, x_15); @@ -2694,7 +2694,7 @@ x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_27, x_34); -x_36 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_36 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_37 = lean_array_push(x_35, x_36); x_38 = lean_array_push(x_37, x_21); x_39 = l_Lean_Parser_Term_letIdDecl___closed__2; @@ -2703,7 +2703,7 @@ lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); x_41 = l_Lean_Elab_Term_expandShow___closed__4; x_42 = lean_array_push(x_41, x_40); -x_43 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_43 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_44 = lean_array_push(x_42, x_43); x_45 = lean_array_push(x_44, x_23); x_46 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; @@ -2753,7 +2753,7 @@ x_59 = l_Lean_Syntax_getArg(x_1, x_58); lean_dec(x_1); x_60 = l_Array_empty___closed__1; x_61 = lean_array_push(x_60, x_13); -x_62 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_62 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_63 = lean_array_push(x_61, x_62); x_64 = l_Lean_Elab_Term_expandSubtype___closed__8; x_65 = lean_array_push(x_64, x_15); @@ -2767,7 +2767,7 @@ x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); x_71 = lean_array_push(x_63, x_70); -x_72 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_72 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_73 = lean_array_push(x_71, x_72); x_74 = lean_array_push(x_73, x_57); x_75 = l_Lean_Parser_Term_letIdDecl___closed__2; @@ -2776,7 +2776,7 @@ lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); x_77 = l_Lean_Elab_Term_expandShow___closed__4; x_78 = lean_array_push(x_77, x_76); -x_79 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_79 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_80 = lean_array_push(x_78, x_79); x_81 = lean_array_push(x_80, x_59); x_82 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; @@ -2870,7 +2870,7 @@ x_112 = l_Lean_mkIdentFrom(x_1, x_111); lean_dec(x_1); x_113 = l_Array_empty___closed__1; x_114 = lean_array_push(x_113, x_112); -x_115 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_115 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_116 = lean_array_push(x_114, x_115); x_117 = l_Lean_Elab_Term_expandSubtype___closed__8; x_118 = lean_array_push(x_117, x_102); @@ -2883,7 +2883,7 @@ x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_93); lean_ctor_set(x_122, 1, x_121); x_123 = lean_array_push(x_116, x_122); -x_124 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_124 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_125 = lean_array_push(x_123, x_124); x_126 = lean_array_push(x_125, x_108); x_127 = l_Lean_Parser_Term_letIdDecl___closed__2; @@ -2892,7 +2892,7 @@ lean_ctor_set(x_128, 0, x_127); lean_ctor_set(x_128, 1, x_126); x_129 = l_Lean_Elab_Term_expandShow___closed__4; x_130 = lean_array_push(x_129, x_128); -x_131 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_131 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_132 = lean_array_push(x_130, x_131); x_133 = lean_array_push(x_132, x_110); x_134 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; @@ -2944,7 +2944,7 @@ x_149 = l_Lean_mkIdentFrom(x_1, x_148); lean_dec(x_1); x_150 = l_Array_empty___closed__1; x_151 = lean_array_push(x_150, x_149); -x_152 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_152 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_153 = lean_array_push(x_151, x_152); x_154 = l_Lean_Elab_Term_expandSubtype___closed__8; x_155 = lean_array_push(x_154, x_102); @@ -2957,7 +2957,7 @@ x_159 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_159, 0, x_93); lean_ctor_set(x_159, 1, x_158); x_160 = lean_array_push(x_153, x_159); -x_161 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_161 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_162 = lean_array_push(x_160, x_161); x_163 = lean_array_push(x_162, x_145); x_164 = l_Lean_Parser_Term_letIdDecl___closed__2; @@ -2966,7 +2966,7 @@ lean_ctor_set(x_165, 0, x_164); lean_ctor_set(x_165, 1, x_163); x_166 = l_Lean_Elab_Term_expandShow___closed__4; x_167 = lean_array_push(x_166, x_165); -x_168 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_168 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_169 = lean_array_push(x_167, x_168); x_170 = lean_array_push(x_169, x_147); x_171 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; @@ -3029,11 +3029,11 @@ x_14 = lean_array_fget(x_4, x_13); x_15 = l_Lean_Parser_Term_let___elambda__1___closed__1; lean_inc(x_2); x_16 = lean_name_mk_string(x_2, x_15); -x_17 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1; +x_17 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1; lean_inc(x_3); x_18 = lean_array_push(x_3, x_17); x_19 = lean_array_push(x_18, x_14); -x_20 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_20 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_21 = lean_array_push(x_19, x_20); x_22 = lean_array_push(x_21, x_7); x_23 = lean_alloc_ctor(1, 2, 0); @@ -3495,7 +3495,7 @@ lean_object* _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; +x_1 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } @@ -3504,7 +3504,7 @@ lean_object* _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; +x_1 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__29; x_4 = lean_alloc_ctor(0, 3, 0); @@ -3519,7 +3519,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; +x_2 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -3529,7 +3529,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_optionToExpr___rarg___lambda__1___closed__2; -x_2 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; +x_2 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -3637,7 +3637,7 @@ lean_dec(x_15); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l___private_Init_Lean_Syntax_7__quoteName___main(x_14); +x_19 = l___private_Lean_Syntax_7__quoteName___main(x_14); x_20 = l_Lean_SourceInfo_inhabited___closed__1; x_21 = l_Lean_mkStxStrLit(x_18, x_20); x_22 = l_Lean_mkOptionalNode___closed__2; @@ -3670,7 +3670,7 @@ lean_ctor_set(x_37, 2, x_33); lean_ctor_set(x_37, 3, x_36); x_38 = l_Array_empty___closed__1; x_39 = lean_array_push(x_38, x_37); -x_40 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_40 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_41 = lean_array_push(x_39, x_40); x_42 = l_Lean_mkTermIdFromIdent___closed__2; x_43 = lean_alloc_ctor(1, 2, 0); @@ -3743,10 +3743,10 @@ lean_ctor_set(x_75, 0, x_42); lean_ctor_set(x_75, 1, x_74); x_76 = lean_array_push(x_38, x_75); x_77 = lean_array_push(x_38, x_25); -x_78 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; +x_78 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; x_79 = l_Lean_addMacroScope(x_58, x_78, x_54); -x_80 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; -x_81 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; +x_80 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; +x_81 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; x_82 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_82, 0, x_20); lean_ctor_set(x_82, 1, x_80); @@ -3770,9 +3770,9 @@ x_91 = lean_array_push(x_90, x_40); x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_47); lean_ctor_set(x_92, 1, x_91); -x_93 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_93 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_94 = lean_array_push(x_93, x_92); -x_95 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_95 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_96 = lean_array_push(x_94, x_95); x_97 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_98 = lean_alloc_ctor(1, 2, 0); @@ -3833,10 +3833,10 @@ lean_ctor_set(x_122, 0, x_42); lean_ctor_set(x_122, 1, x_121); x_123 = lean_array_push(x_38, x_122); x_124 = lean_array_push(x_38, x_25); -x_125 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; +x_125 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; x_126 = l_Lean_addMacroScope(x_104, x_125, x_54); -x_127 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; -x_128 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; +x_127 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; +x_128 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; x_129 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_129, 0, x_20); lean_ctor_set(x_129, 1, x_127); @@ -3860,9 +3860,9 @@ x_138 = lean_array_push(x_137, x_40); x_139 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_139, 0, x_47); lean_ctor_set(x_139, 1, x_138); -x_140 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_140 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_141 = lean_array_push(x_140, x_139); -x_142 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_142 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_143 = lean_array_push(x_141, x_142); x_144 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_145 = lean_alloc_ctor(1, 2, 0); @@ -3961,9 +3961,9 @@ x_190 = lean_array_push(x_189, x_40); x_191 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_191, 0, x_47); lean_ctor_set(x_191, 1, x_190); -x_192 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_192 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_193 = lean_array_push(x_192, x_191); -x_194 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_194 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_195 = lean_array_push(x_193, x_194); x_196 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_197 = lean_alloc_ctor(1, 2, 0); @@ -4069,9 +4069,9 @@ x_247 = lean_array_push(x_246, x_40); x_248 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_248, 0, x_47); lean_ctor_set(x_248, 1, x_247); -x_249 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_249 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_250 = lean_array_push(x_249, x_248); -x_251 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_251 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_252 = lean_array_push(x_250, x_251); x_253 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_254 = lean_alloc_ctor(1, 2, 0); @@ -4342,7 +4342,7 @@ lean_dec(x_8); x_14 = lean_ctor_get(x_9, 0); lean_inc(x_14); lean_dec(x_9); -x_15 = l___private_Init_Lean_Syntax_7__quoteName___main(x_14); +x_15 = l___private_Lean_Syntax_7__quoteName___main(x_14); x_16 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_13); lean_dec(x_2); x_17 = lean_ctor_get(x_16, 0); @@ -4368,7 +4368,7 @@ lean_ctor_set(x_27, 2, x_23); lean_ctor_set(x_27, 3, x_26); x_28 = l_Array_empty___closed__1; x_29 = lean_array_push(x_28, x_27); -x_30 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_30 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_31 = lean_array_push(x_29, x_30); x_32 = l_Lean_mkTermIdFromIdent___closed__2; x_33 = lean_alloc_ctor(1, 2, 0); @@ -4409,7 +4409,7 @@ lean_ctor_set(x_49, 2, x_45); lean_ctor_set(x_49, 3, x_48); x_50 = l_Array_empty___closed__1; x_51 = lean_array_push(x_50, x_49); -x_52 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_52 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_53 = lean_array_push(x_51, x_52); x_54 = l_Lean_mkTermIdFromIdent___closed__2; x_55 = lean_alloc_ctor(1, 2, 0); @@ -4473,7 +4473,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1() { _start: { lean_object* x_1; @@ -4481,21 +4481,21 @@ x_1 = lean_mk_string("_nativeRefl"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___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_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1; +x_2 = l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(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___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2; +x_6 = l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2; lean_inc(x_4); x_7 = l_Lean_Elab_Term_mkAuxName(x_1, x_6, x_4, x_5); if (lean_obj_tag(x_7) == 0) @@ -4632,16 +4632,16 @@ return x_34; } } } -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1() { _start: { lean_object* x_1; @@ -4649,27 +4649,27 @@ x_1 = lean_mk_string("invalid macro application, term contains free variables"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1; +x_1 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2; +x_1 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4() { _start: { lean_object* x_1; @@ -4677,27 +4677,27 @@ x_1 = lean_mk_string("invalid macro application, term contains metavariables"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4; +x_1 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5; +x_1 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -4741,7 +4741,7 @@ lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean x_32 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_32, 0, x_7); x_33 = l_Lean_indentExpr(x_32); -x_34 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; +x_34 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; x_35 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); @@ -4782,7 +4782,7 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean x_11 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_11, 0, x_7); x_12 = l_Lean_indentExpr(x_11); -x_13 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3; +x_13 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3; x_14 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_12); @@ -4813,7 +4813,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean x_20 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_20, 0, x_7); x_21 = l_Lean_indentExpr(x_20); -x_22 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; +x_22 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; x_23 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); @@ -4878,7 +4878,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean x_68 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_68, 0, x_42); x_69 = l_Lean_indentExpr(x_68); -x_70 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; +x_70 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; x_71 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); @@ -4921,7 +4921,7 @@ lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean x_46 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_46, 0, x_42); x_47 = l_Lean_indentExpr(x_46); -x_48 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3; +x_48 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3; x_49 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -4954,7 +4954,7 @@ lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean x_55 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_55, 0, x_42); x_56 = l_Lean_indentExpr(x_55); -x_57 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; +x_57 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6; x_58 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -5110,7 +5110,7 @@ x_5 = lean_unsigned_to_nat(1u); x_6 = l_Lean_Syntax_getArg(x_1, x_5); x_7 = lean_box(0); lean_inc(x_3); -x_8 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm(x_6, x_7, x_3, x_4); +x_8 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm(x_6, x_7, x_3, x_4); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -5194,7 +5194,7 @@ block_242: lean_object* x_20; lean_inc(x_3); lean_inc(x_9); -x_20 = l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(x_1, x_15, x_9, x_3, x_19); +x_20 = l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(x_1, x_15, x_9, x_3, x_19); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; @@ -5279,7 +5279,7 @@ x_37 = lean_ctor_get(x_34, 1); lean_inc(x_37); lean_dec(x_34); lean_inc(x_3); -x_38 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_37, x_27); +x_38 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_37, x_27); if (lean_obj_tag(x_36) == 0) { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; @@ -5322,7 +5322,7 @@ x_50 = lean_ctor_get(x_48, 1); lean_inc(x_50); lean_dec(x_48); lean_inc(x_3); -x_51 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_50, x_47); +x_51 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_50, x_47); x_52 = l_Lean_mkConst(x_35, x_23); lean_inc(x_45); x_53 = l_Lean_mkApp3(x_52, x_24, x_45, x_49); @@ -5344,7 +5344,7 @@ x_59 = lean_ctor_get(x_57, 1); lean_inc(x_59); lean_dec(x_57); lean_inc(x_3); -x_60 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_59, x_56); +x_60 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_59, x_56); x_61 = l_Lean_Elab_Term_mkExpectedTypeHint(x_1, x_53, x_58, x_3, x_60); return x_61; } @@ -5359,8 +5359,8 @@ lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; x_63 = lean_ctor_get(x_57, 0); x_64 = lean_ctor_get(x_57, 1); lean_inc(x_3); -x_65 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_63); -x_66 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_64, x_56); +x_65 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_63); +x_66 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_64, x_56); lean_ctor_set(x_57, 1, x_66); lean_ctor_set(x_57, 0, x_65); return x_57; @@ -5374,8 +5374,8 @@ lean_inc(x_68); lean_inc(x_67); lean_dec(x_57); lean_inc(x_3); -x_69 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_67); -x_70 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_68, x_56); +x_69 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_67); +x_70 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_68, x_56); x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); @@ -5416,7 +5416,7 @@ x_81 = lean_ctor_get(x_79, 1); lean_inc(x_81); lean_dec(x_79); lean_inc(x_3); -x_82 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_81, x_76); +x_82 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_81, x_76); x_83 = l_Lean_Elab_Term_mkExpectedTypeHint(x_1, x_53, x_80, x_3, x_82); return x_83; } @@ -5437,8 +5437,8 @@ if (lean_is_exclusive(x_79)) { x_86 = lean_box(0); } lean_inc(x_3); -x_87 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_84); -x_88 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_85, x_76); +x_87 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_84); +x_88 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_51, x_85, x_76); if (lean_is_scalar(x_86)) { x_89 = lean_alloc_ctor(1, 2, 0); } else { @@ -5465,8 +5465,8 @@ lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; x_91 = lean_ctor_get(x_48, 0); x_92 = lean_ctor_get(x_48, 1); lean_inc(x_3); -x_93 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_91); -x_94 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_92, x_47); +x_93 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_91); +x_94 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_92, x_47); lean_ctor_set(x_48, 1, x_94); lean_ctor_set(x_48, 0, x_93); return x_48; @@ -5480,8 +5480,8 @@ lean_inc(x_96); lean_inc(x_95); lean_dec(x_48); lean_inc(x_3); -x_97 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_95); -x_98 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_96, x_47); +x_97 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_95); +x_98 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_96, x_47); x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_97); lean_ctor_set(x_99, 1, x_98); @@ -5524,7 +5524,7 @@ x_109 = lean_ctor_get(x_107, 1); lean_inc(x_109); lean_dec(x_107); lean_inc(x_3); -x_110 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_109, x_104); +x_110 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_109, x_104); x_111 = l_Lean_mkConst(x_35, x_23); lean_inc(x_45); x_112 = l_Lean_mkApp3(x_111, x_24, x_45, x_108); @@ -5575,7 +5575,7 @@ x_124 = lean_ctor_get(x_122, 1); lean_inc(x_124); lean_dec(x_122); lean_inc(x_3); -x_125 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_110, x_124, x_118); +x_125 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_110, x_124, x_118); x_126 = l_Lean_Elab_Term_mkExpectedTypeHint(x_1, x_112, x_123, x_3, x_125); return x_126; } @@ -5596,8 +5596,8 @@ if (lean_is_exclusive(x_122)) { x_129 = lean_box(0); } lean_inc(x_3); -x_130 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_127); -x_131 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_110, x_128, x_118); +x_130 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_127); +x_131 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_110, x_128, x_118); if (lean_is_scalar(x_129)) { x_132 = lean_alloc_ctor(1, 2, 0); } else { @@ -5629,8 +5629,8 @@ if (lean_is_exclusive(x_107)) { x_135 = lean_box(0); } lean_inc(x_3); -x_136 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_133); -x_137 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_134, x_104); +x_136 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_133); +x_137 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_38, x_134, x_104); if (lean_is_scalar(x_135)) { x_138 = lean_alloc_ctor(1, 2, 0); } else { @@ -5657,8 +5657,8 @@ lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; x_140 = lean_ctor_get(x_34, 0); x_141 = lean_ctor_get(x_34, 1); lean_inc(x_3); -x_142 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_140); -x_143 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_141, x_27); +x_142 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_140); +x_143 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_141, x_27); lean_ctor_set(x_34, 1, x_143); lean_ctor_set(x_34, 0, x_142); return x_34; @@ -5672,8 +5672,8 @@ lean_inc(x_145); lean_inc(x_144); lean_dec(x_34); lean_inc(x_3); -x_146 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_144); -x_147 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_145, x_27); +x_146 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_144); +x_147 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_145, x_27); x_148 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_148, 0, x_146); lean_ctor_set(x_148, 1, x_147); @@ -5773,7 +5773,7 @@ x_174 = lean_ctor_get(x_171, 1); lean_inc(x_174); lean_dec(x_171); lean_inc(x_3); -x_175 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_174, x_162); +x_175 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_174, x_162); if (lean_obj_tag(x_173) == 0) { lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; @@ -5845,7 +5845,7 @@ x_193 = lean_ctor_get(x_191, 1); lean_inc(x_193); lean_dec(x_191); lean_inc(x_3); -x_194 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_175, x_193, x_187); +x_194 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_175, x_193, x_187); x_195 = l_Lean_mkConst(x_172, x_23); lean_inc(x_182); x_196 = l_Lean_mkApp3(x_195, x_24, x_182, x_192); @@ -5896,7 +5896,7 @@ x_208 = lean_ctor_get(x_206, 1); lean_inc(x_208); lean_dec(x_206); lean_inc(x_3); -x_209 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_194, x_208, x_202); +x_209 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_194, x_208, x_202); x_210 = l_Lean_Elab_Term_mkExpectedTypeHint(x_1, x_196, x_207, x_3, x_209); return x_210; } @@ -5917,8 +5917,8 @@ if (lean_is_exclusive(x_206)) { x_213 = lean_box(0); } lean_inc(x_3); -x_214 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_211); -x_215 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_194, x_212, x_202); +x_214 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_211); +x_215 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_194, x_212, x_202); if (lean_is_scalar(x_213)) { x_216 = lean_alloc_ctor(1, 2, 0); } else { @@ -5950,8 +5950,8 @@ if (lean_is_exclusive(x_191)) { x_219 = lean_box(0); } lean_inc(x_3); -x_220 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_217); -x_221 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_175, x_218, x_187); +x_220 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_217); +x_221 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_175, x_218, x_187); if (lean_is_scalar(x_219)) { x_222 = lean_alloc_ctor(1, 2, 0); } else { @@ -5983,8 +5983,8 @@ if (lean_is_exclusive(x_171)) { x_225 = lean_box(0); } lean_inc(x_3); -x_226 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_223); -x_227 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_224, x_162); +x_226 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_223); +x_227 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_22, x_224, x_162); if (lean_is_scalar(x_225)) { x_228 = lean_alloc_ctor(1, 2, 0); } else { @@ -6129,7 +6129,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -6139,7 +6139,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2() { _start: { lean_object* x_1; @@ -6147,27 +6147,27 @@ x_1 = lean_mk_string("invalid macro, expected type is not available"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2; +x_1 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3; +x_1 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5() { _start: { lean_object* x_1; @@ -6175,27 +6175,27 @@ x_1 = lean_mk_string("expected type must not contain free or meta variables"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5; +x_1 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7() { +lean_object* _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6; +x_1 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide(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; @@ -6206,8 +6206,8 @@ if (x_7 == 0) { lean_object* x_8; lean_object* x_9; lean_dec(x_3); -x_8 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1; -x_9 = l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm(x_2, x_8, x_4, x_5); +x_8 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1; +x_9 = l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm(x_2, x_8, x_4, x_5); return x_9; } else @@ -6223,7 +6223,7 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = lean_ctor_get(x_10, 1); lean_inc(x_11); lean_dec(x_10); -x_12 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4; +x_12 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4; x_13 = l_Lean_Elab_Term_throwError___rarg(x_1, x_12, x_4, x_11); return x_13; } @@ -6261,7 +6261,7 @@ lean_free_object(x_16); x_22 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_22, 0, x_18); x_23 = l_Lean_indentExpr(x_22); -x_24 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; +x_24 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; x_25 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -6293,7 +6293,7 @@ lean_free_object(x_16); x_31 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_31, 0, x_18); x_32 = l_Lean_indentExpr(x_31); -x_33 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; +x_33 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; x_34 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -6346,7 +6346,7 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean x_45 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_45, 0, x_40); x_46 = l_Lean_indentExpr(x_45); -x_47 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; +x_47 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; x_48 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -6379,7 +6379,7 @@ lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean x_54 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_54, 0, x_40); x_55 = l_Lean_indentExpr(x_54); -x_56 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; +x_56 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7; x_57 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); @@ -6435,11 +6435,11 @@ return x_66; } } } -lean_object* l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } @@ -6471,7 +6471,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_unsigned_to_nat(1u); x_6 = l_Lean_Syntax_getArg(x_1, x_5); lean_inc(x_3); -x_7 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide(x_1, x_6, x_2, x_3, x_4); +x_7 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide(x_1, x_6, x_2, x_3, x_4); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -6498,7 +6498,7 @@ lean_dec(x_13); x_16 = lean_box(0); x_17 = l_Lean_boolToExpr___closed__1; lean_inc(x_3); -x_18 = l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(x_1, x_17, x_14, x_3, x_15); +x_18 = l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl(x_1, x_17, x_14, x_3, x_15); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; @@ -6518,7 +6518,7 @@ x_24 = lean_ctor_get(x_3, 0); lean_inc(x_24); x_25 = l_Lean_TraceState_Inhabited___closed__1; lean_ctor_set(x_20, 4, x_25); -x_26 = l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1; +x_26 = l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1; x_27 = l_Lean_Meta_mkEqRefl(x_26, x_24, x_20); if (lean_obj_tag(x_27) == 0) { @@ -6529,7 +6529,7 @@ x_29 = lean_ctor_get(x_27, 1); lean_inc(x_29); lean_dec(x_27); lean_inc(x_3); -x_30 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_29, x_23); +x_30 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_29, x_23); x_31 = l_Lean_mkConst(x_21, x_16); x_32 = l_Lean_Elab_Term_elabNativeDecide___closed__2; x_33 = l_Lean_mkApp3(x_32, x_31, x_26, x_28); @@ -6548,8 +6548,8 @@ lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; x_36 = lean_ctor_get(x_27, 0); x_37 = lean_ctor_get(x_27, 1); lean_inc(x_3); -x_38 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_36); -x_39 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_37, x_23); +x_38 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_36); +x_39 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_37, x_23); lean_ctor_set(x_27, 1, x_39); lean_ctor_set(x_27, 0, x_38); return x_27; @@ -6563,8 +6563,8 @@ lean_inc(x_41); lean_inc(x_40); lean_dec(x_27); lean_inc(x_3); -x_42 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_40); -x_43 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_41, x_23); +x_42 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_40); +x_43 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_41, x_23); x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_42); lean_ctor_set(x_44, 1, x_43); @@ -6598,7 +6598,7 @@ lean_ctor_set(x_53, 2, x_47); lean_ctor_set(x_53, 3, x_48); lean_ctor_set(x_53, 4, x_52); lean_ctor_set(x_53, 5, x_50); -x_54 = l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1; +x_54 = l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1; x_55 = l_Lean_Meta_mkEqRefl(x_54, x_51, x_53); if (lean_obj_tag(x_55) == 0) { @@ -6609,7 +6609,7 @@ x_57 = lean_ctor_get(x_55, 1); lean_inc(x_57); lean_dec(x_55); lean_inc(x_3); -x_58 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_57, x_49); +x_58 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_57, x_49); x_59 = l_Lean_mkConst(x_21, x_16); x_60 = l_Lean_Elab_Term_elabNativeDecide___closed__2; x_61 = l_Lean_mkApp3(x_60, x_59, x_54, x_56); @@ -6634,8 +6634,8 @@ if (lean_is_exclusive(x_55)) { x_65 = lean_box(0); } lean_inc(x_3); -x_66 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_63); -x_67 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_64, x_49); +x_66 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_63); +x_67 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_19, x_64, x_49); if (lean_is_scalar(x_65)) { x_68 = lean_alloc_ctor(1, 2, 0); } else { @@ -6785,7 +6785,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_unsigned_to_nat(1u); x_6 = l_Lean_Syntax_getArg(x_1, x_5); lean_inc(x_3); -x_7 = l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide(x_1, x_6, x_2, x_3, x_4); +x_7 = l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide(x_1, x_6, x_2, x_3, x_4); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -6840,7 +6840,7 @@ if (x_27 == 0) lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_28 = lean_ctor_get(x_26, 0); x_29 = lean_ctor_get(x_26, 1); -x_30 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_29, x_22); +x_30 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_29, x_22); x_31 = l_Lean_Elab_Term_elabDecide___closed__3; x_32 = l_Lean_mkApp3(x_31, x_8, x_19, x_28); lean_ctor_set(x_26, 1, x_30); @@ -6855,7 +6855,7 @@ x_34 = lean_ctor_get(x_26, 1); lean_inc(x_34); lean_inc(x_33); lean_dec(x_26); -x_35 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_34, x_22); +x_35 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_34, x_22); x_36 = l_Lean_Elab_Term_elabDecide___closed__3; x_37 = l_Lean_mkApp3(x_36, x_8, x_19, x_33); x_38 = lean_alloc_ctor(0, 2, 0); @@ -6876,8 +6876,8 @@ lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; x_40 = lean_ctor_get(x_26, 0); x_41 = lean_ctor_get(x_26, 1); lean_inc(x_3); -x_42 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_40); -x_43 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_41, x_22); +x_42 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_40); +x_43 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_41, x_22); lean_ctor_set(x_26, 1, x_43); lean_ctor_set(x_26, 0, x_42); return x_26; @@ -6891,8 +6891,8 @@ lean_inc(x_45); lean_inc(x_44); lean_dec(x_26); lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_44); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_45, x_22); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_44); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_45, x_22); x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_46); lean_ctor_set(x_48, 1, x_47); @@ -6943,7 +6943,7 @@ if (lean_is_exclusive(x_59)) { lean_dec_ref(x_59); x_62 = lean_box(0); } -x_63 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_61, x_53); +x_63 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_61, x_53); x_64 = l_Lean_Elab_Term_elabDecide___closed__3; x_65 = l_Lean_mkApp3(x_64, x_8, x_19, x_60); if (lean_is_scalar(x_62)) { @@ -6973,8 +6973,8 @@ if (lean_is_exclusive(x_59)) { x_69 = lean_box(0); } lean_inc(x_3); -x_70 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_67); -x_71 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_68, x_53); +x_70 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_67); +x_71 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_18, x_68, x_53); if (lean_is_scalar(x_69)) { x_72 = lean_alloc_ctor(1, 2, 0); } else { @@ -7230,7 +7230,7 @@ lean_object* _init_l_Lean_Elab_Term_elabAdd___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8; +x_1 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8; x_2 = l_Lean_Parser_Term_add___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8037,7 +8037,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4; +x_2 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -9256,21 +9256,21 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); -lean_object* initialize_Init_Lean_Elab_Quotation(lean_object*); -lean_object* initialize_Init_Lean_Elab_SyntheticMVars(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Elab_Quotation(lean_object*); +lean_object* initialize_Lean_Elab_SyntheticMVars(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_BuiltinNotation(lean_object* w) { +lean_object* initialize_Lean_Elab_BuiltinNotation(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Quotation(lean_io_mk_world()); +res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_SyntheticMVars(lean_io_mk_world()); +res = initialize_Lean_Elab_SyntheticMVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___regBuiltin_Lean_Elab_Term_expandDollar___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_expandDollar___closed__1(); @@ -9497,22 +9497,22 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabTParserMacro___closed__1) res = l___regBuiltin_Lean_Elab_Term_elabTParserMacro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1 = _init_l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1); -l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2 = _init_l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2); -l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1 = _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1); -l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2 = _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2); -l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3 = _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3); -l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4 = _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4); -l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5 = _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5); -l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6 = _init_l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6); +l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1 = _init_l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__1); +l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2 = _init_l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_1__mkNativeReflAuxDecl___closed__2); +l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1 = _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__1); +l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2 = _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__2); +l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3 = _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__3); +l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4 = _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__4); +l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5 = _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__5); +l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6 = _init_l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_2__elabClosedTerm___closed__6); l_Lean_Elab_Term_elabNativeRefl___closed__1 = _init_l_Lean_Elab_Term_elabNativeRefl___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_elabNativeRefl___closed__1); l_Lean_Elab_Term_elabNativeRefl___closed__2 = _init_l_Lean_Elab_Term_elabNativeRefl___closed__2(); @@ -9538,20 +9538,20 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabNativeRefl___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabNativeRefl(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1 = _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1); -l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2 = _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2); -l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3 = _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3); -l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4 = _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4); -l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5 = _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5); -l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6 = _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6); -l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7 = _init_l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7); +l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1 = _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__1); +l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2 = _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__2); +l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3 = _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__3); +l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4 = _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__4); +l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5 = _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__5); +l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6 = _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__6); +l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7 = _init_l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_3__getPropToDecide___closed__7); l_Lean_Elab_Term_elabNativeDecide___closed__1 = _init_l_Lean_Elab_Term_elabNativeDecide___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_elabNativeDecide___closed__1); l_Lean_Elab_Term_elabNativeDecide___closed__2 = _init_l_Lean_Elab_Term_elabNativeDecide___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c similarity index 95% rename from stage0/stdlib/Init/Lean/Elab/Command.c rename to stage0/stdlib/Lean/Elab/Command.c index 906f0f928d..69db370e54 100644 --- a/stage0/stdlib/Init/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Command -// Imports: Init.Lean.Elab.Alias Init.Lean.Elab.Log Init.Lean.Elab.ResolveName Init.Lean.Elab.Term Init.Lean.Elab.Binders Init.Lean.Elab.SyntheticMVars +// Module: Lean.Elab.Command +// Imports: Lean.Elab.Alias Lean.Elab.Log Lean.Elab.ResolveName Lean.Elab.Term Lean.Elab.Binders Lean.Elab.SyntheticMVars #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,21 +15,22 @@ extern "C" { #endif lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabVariable(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_5__elabCommandUsing___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Array_forMAux___main___at_Lean_Elab_Command_elabCommand___main___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSection(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_extractMacroScopes(lean_object*); +lean_object* l___private_Lean_Elab_Command_8__updateState___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_commandElabAttribute___closed__3; lean_object* l_List_head_x21___at_Lean_Elab_Command_getScope___spec__1(lean_object*); lean_object* l_Lean_Elab_Command_catchExceptions(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Elab_Command_elabCommand___main___spec__3___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_check___closed__1; lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; lean_object* l_Lean_Elab_Command_getOptions(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_4__modifyGetState(lean_object*); lean_object* l_PersistentArray_mapM___at_Lean_MessageLog_errorsToWarnings___spec__1(lean_object*); extern lean_object* l_Lean_Elab_Tactic_evalTactic___main___closed__3; -lean_object* l___private_Init_Lean_Elab_Command_8__updateState(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); @@ -39,9 +40,11 @@ extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Elab_Command_withNamespace(lean_object*); lean_object* l_Lean_Elab_Command_CommandElabCoreM_monadState___closed__1; lean_object* l_Lean_Elab_Command_liftTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_12__addScopes(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_trace___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_addContext(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_registerNamespace___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_5__elabCommandUsing(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_ofList___closed__3; lean_object* l_Lean_Elab_Command_CommandElabCoreM_monadState___closed__2; lean_object* lean_array_uget(lean_object*, size_t); @@ -49,6 +52,7 @@ lean_object* l_mkHashMap___at_Lean_Elab_Command_commandElabAttribute___spec__2(l lean_object* lean_io_error_to_string(lean_object*); lean_object* l_Lean_Elab_Term_inferType(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabNamespace___closed__1; +lean_object* l___private_Lean_Elab_Command_7__mkTermState___boxed(lean_object*); uint8_t l_Lean_Name_lt___main(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_liftIOCore(lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); @@ -66,7 +70,7 @@ lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind___closed__2; uint8_t l_List_elem___main___at_Lean_NameHashSet_insert___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withNamespace___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_10__toCommandResult(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_15__checkEndHeader___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCheck___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_logUnknownDecl(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withIncRecDepth___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -84,6 +88,7 @@ lean_object* l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter; lean_object* l_Lean_Elab_Command_runTermElabM(lean_object*); extern lean_object* l_Lean_Parser_Command_section___elambda__1___closed__2; lean_object* lean_dbg_trace(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_6__mkTermContext(lean_object*, lean_object*, lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSetOption(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Command_logTrace___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -96,10 +101,9 @@ lean_object* l_Lean_Elab_Command_liftTermElabM(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabSection(lean_object*); lean_object* l_Lean_Elab_Command_getCurrMacroScope___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_compileDecl(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_9__getVarDecls(lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__3; +lean_object* l___private_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_State_inhabited___closed__4; -lean_object* l___private_Init_Lean_Elab_Command_5__elabCommandUsing(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_11__addScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabVariables___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabExport___closed__1; @@ -118,7 +122,6 @@ lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* lean_add_alias(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_setOption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Command_13__addNamespace(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_failIfSucceeds(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_commandElabAttribute___closed__2; @@ -128,6 +131,8 @@ lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_addOpenDecl_ size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_getPos___at_Lean_Elab_Command_throwError___spec__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_4__modifyGetState___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Exception_inhabited___closed__1; lean_object* l_Lean_Elab_Command_Scope_inhabited; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -135,6 +140,7 @@ extern lean_object* l_Lean_Parser_Command_section___elambda__1___closed__1; lean_object* l_Lean_SMap_empty___at_Lean_Elab_Command_commandElabAttribute___spec__1; lean_object* l_Lean_Name_getNumParts___main(lean_object*); lean_object* l_Lean_Elab_Command_elabOpen(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_12__addScopes___main___closed__3; lean_object* l_Lean_Elab_mkMessageAt___at_Lean_Elab_Command_throwError___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSetOption___closed__3; extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; @@ -145,22 +151,26 @@ lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabVariable lean_object* l_Lean_Elab_Command_elabUniverses___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___main___spec__5___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabVariables___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_3__fromMetaState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEnd___closed__9; lean_object* l_Lean_Elab_Command_throwUnsupportedSyntax___rarg(lean_object*); lean_object* l_Lean_Elab_Command_elabCheckFailure(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttribute___closed__9; lean_object* l_Lean_Elab_Command_State_inhabited___closed__3; +lean_object* l___private_Lean_Elab_Command_14__checkAnonymousScope___boxed(lean_object*); lean_object* l_Lean_Elab_Command_elabCheck___closed__3; lean_object* l_Lean_Elab_Command_withIncRecDepth___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_setOption___closed__1; lean_object* l___regBuiltin_Lean_Elab_Command_elabUniverses(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabCheckFailure___closed__1; -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Elab_Command_sortDeclLevelParams___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEnd___closed__4; lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_elabOpenOnly___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Elab_Command_15__checkEndHeader(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_12__addScopes___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter___closed__1; +extern lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; lean_object* l_Lean_Elab_Term_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_forMAux___main___at_Lean_Meta_clear___spec__5___closed__8; lean_object* l_Lean_Elab_Command_State_inhabited___closed__1; @@ -168,20 +178,22 @@ lean_object* l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__ extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__1; lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Elab_Command_sortDeclLevelParams___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_setOption___closed__2; +lean_object* l___private_Lean_Elab_Command_10__toCommandResult___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_LocalContext_Inhabited___closed__2; -lean_object* l___private_Init_Lean_Elab_Command_10__toCommandResult___rarg___closed__1; lean_object* l_Lean_Elab_Command_elabSynth(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_9__getVarDecls___boxed(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_elabUniverses___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_foldl___main___at_Lean_Elab_Command_elabExport___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_run___rarg___closed__5; +lean_object* l___private_Lean_Elab_Command_12__addScopes___main___closed__2; extern lean_object* l_Lean_Meta_dbgTrace___rarg___closed__1; lean_object* l_Lean_Elab_Command_setOption___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_CommandElabCoreM_monadState___closed__3; -lean_object* l___private_Init_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_elabExport___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_Elab_Command_CommandElabM_inhabited(lean_object*); lean_object* l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter___closed__2; lean_object* l_Lean_Elab_Command_addOpenDecl(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_5__elabCommandUsing___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_withIncRecDepth___rarg___closed__2; lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___closed__9; lean_object* lean_array_fget(lean_object*, lean_object*); @@ -192,6 +204,7 @@ lean_object* l_Lean_Elab_Command_getCurrNamespace(lean_object*, lean_object*); lean_object* l_List_foldl___main___at_Lean_Elab_Command_sortDeclLevelParams___spec__1(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withoutModifyingEnv___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_1__ioErrorToMessage___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCheck___closed__1; lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_withDeclId___spec__2(lean_object*, lean_object*, lean_object*); extern lean_object* l_List_Monad; @@ -214,7 +227,6 @@ lean_object* l_Lean_Elab_Command_elabEnd___closed__8; lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_elabUniverses___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___closed__8; extern lean_object* l_Lean_choiceKind___closed__2; -lean_object* l___private_Init_Lean_Elab_Command_4__modifyGetState(lean_object*); lean_object* l_Lean_Elab_Command_elabCheck___closed__2; lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__2; @@ -233,12 +245,12 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabOpen___closed__1; lean_object* l___regBuiltin_Lean_Elab_Command_elabVariables___closed__1; lean_object* l_Lean_KernelException_toMessageData(lean_object*, lean_object*); lean_object* l_Lean_Elab_getPos___at_Lean_Elab_Command_throwError___spec__2(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Elab_Command_15__checkEndHeader___main(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_throwAlreadyDeclaredUniverseLevel(lean_object*); lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___closed__4; +lean_object* l___private_Lean_Elab_Command_10__toCommandResult___rarg___closed__1; lean_object* l_Lean_Elab_Command_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +lean_object* l___private_Lean_Elab_Command_10__toCommandResult___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandDeclId___boxed(lean_object*); lean_object* l_Lean_Elab_Command_elabOpenRenaming(lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); @@ -251,25 +263,26 @@ lean_object* l_Lean_Elab_Command_mkCommandElabAttribute___closed__6; lean_object* l_Lean_Elab_Command_CommandElabCoreM_monadState; lean_object* l___regBuiltin_Lean_Elab_Command_elabSetOption(lean_object*); size_t l_Lean_Name_hash(lean_object*); +lean_object* l___private_Lean_Elab_Command_13__addNamespace(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___main(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabUsingElabFns___closed__6; lean_object* l___regBuiltin_Lean_Elab_Command_elabCheck___closed__2; lean_object* l_Lean_Elab_getMacros(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_1__ioErrorToMessage___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_1__ioErrorToMessage(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elbChoice___closed__1; lean_object* l___regBuiltin_Lean_Elab_Command_elabVariable___closed__1; -uint8_t l___private_Init_Lean_Elab_Command_14__checkAnonymousScope(lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Elab_Command_elabCommand___main___spec__6(lean_object*, lean_object*); lean_object* l_Lean_Syntax_prettyPrint(lean_object*); lean_object* l_Lean_Elab_Command_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter___closed__5; lean_object* lean_name_mk_string(lean_object*, lean_object*); +uint8_t l___private_Lean_Elab_Command_15__checkEndHeader___main(lean_object*, lean_object*); lean_object* l_Lean_KVMap_insertCore___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter___closed__3; lean_object* l_Lean_Elab_Command_runTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Exception_hasToString___closed__1; +lean_object* l___private_Lean_Elab_Command_12__addScopes___main___closed__1; extern lean_object* l_PersistentArray_empty___closed__3; extern lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_elabVariables___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -281,7 +294,6 @@ lean_object* l_Lean_Elab_Command_getScopes(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elbChoice(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabExport(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_6__mkTermContext(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCheck___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabOpenOnly(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_hasNoErrorMessages(lean_object*, lean_object*); @@ -294,7 +306,6 @@ lean_object* l_ReaderT_read___at_Lean_Elab_Command_CommandElabM_monadLog___spec_ lean_object* l_Lean_Elab_Command_addUnivLevel___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabInitQuot(lean_object*); size_t lean_usize_modn(size_t, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_15__checkEndHeader___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCommand___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withLogging(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); @@ -321,13 +332,13 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabSection___closed__1; lean_object* l_Lean_Elab_Command_liftIOCore___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_liftIO___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_mkHashMapImp___rarg(lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Command_elabEnd(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___closed__1; lean_object* l_Array_filterAux___main___at_Lean_Elab_Command_sortDeclLevelParams___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerAttributeImplBuilder___closed__2; lean_object* l_Lean_Elab_Command_throwAlreadyDeclaredUniverseLevel___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Command_13__addNamespace___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__3; lean_object* l_Lean_Elab_Command_withMacroExpansion(lean_object*); lean_object* l_Lean_Elab_Command_withDeclId___closed__3; @@ -339,6 +350,7 @@ lean_object* l_Lean_Elab_Command_CommandElabM_MonadQuotation___closed__4; lean_object* l_Lean_Elab_Command_elabOpenHiding(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabChoiceAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttribute___closed__4; +lean_object* l___private_Lean_Elab_Command_2__getState(lean_object*, lean_object*); size_t l_USize_land(size_t, size_t); lean_object* l___regBuiltin_Lean_Elab_Command_elabEnd(lean_object*); lean_object* l_List_head_x21___at_Lean_Elab_Command_getScope___spec__1___boxed(lean_object*); @@ -346,12 +358,12 @@ lean_object* l_Lean_Elab_Command_throwUnsupportedSyntax(lean_object*, lean_objec lean_object* l_Lean_Elab_Command_throwAlreadyDeclaredUniverseLevel___rarg___closed__2; lean_object* l_Lean_Elab_Command_commandElabAttribute___closed__4; extern lean_object* l_Lean_nullKind___closed__2; +lean_object* l___private_Lean_Elab_Command_6__mkTermContext___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_elabOpenHiding___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_CommandElabM_monadLog; lean_object* l_Lean_Elab_Command_addUnivLevel(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_CommandElabCoreM_monadState___closed__4; -lean_object* l___private_Init_Lean_Elab_Command_2__getState(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__2; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Elab_Command_elabCommand___main___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_failIfSucceeds___closed__1; @@ -360,7 +372,6 @@ extern lean_object* l_Bool_HasRepr___closed__1; extern lean_object* l_Lean_Syntax_inhabited; lean_object* l___regBuiltin_Lean_Elab_Command_elabCheck___closed__1; lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_8__updateState___boxed(lean_object*, lean_object*); lean_object* l_List_drop___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_addUnivLevel___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabExport___closed__2; @@ -369,12 +380,14 @@ lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_withDeclId__ lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_setOption___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Elab_Command_elabCommand___main___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttribute___closed__1; +lean_object* l___private_Lean_Elab_Command_15__checkEndHeader___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withMacroExpansion___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); lean_object* l_Lean_Elab_Command_elabVariables___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_end___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_elabExport___closed__1; lean_object* l_Lean_Elab_Command_getScope(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_7__mkTermState(lean_object*); lean_object* l_Lean_Elab_Command_elabEnd___closed__6; lean_object* l_Lean_Elab_Command_elabExport___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -401,7 +414,6 @@ lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_withDeclId___spec lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___closed__5; lean_object* l_Lean_MacroScopesView_review(lean_object*); lean_object* l_Lean_Elab_Command_elabEnd___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withIncRecDepth(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Term_logTrace___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); @@ -416,20 +428,21 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabOpen(lean_object*); lean_object* l_Lean_Elab_Command_withDeclId___closed__2; lean_object* l_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___main___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withNamespace___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_9__getVarDecls___boxed(lean_object*); lean_object* l_Lean_Elab_Command_compileDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_failIfSucceeds___closed__4; +lean_object* l___private_Lean_Elab_Command_8__updateState(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttribute___closed__8; lean_object* l_Lean_Elab_Command_logUnknownDecl___closed__1; lean_object* l_Lean_Syntax_getPos(lean_object*); lean_object* l_Lean_Elab_Command_State_inhabited; -extern lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; +uint8_t l___private_Lean_Elab_Command_14__checkAnonymousScope(lean_object*); lean_object* l_Lean_Elab_Command_elabOpenHiding___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getOpenDecls(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_throwAlreadyDeclaredUniverseLevel___rarg___closed__4; lean_object* l_Lean_Elab_Command_trace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Elab_Command_elabCommand___main___spec__3(lean_object*, size_t, lean_object*); extern lean_object* l_Lean_Parser_Command_export___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Command_9__getVarDecls(lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Elab_Command_getEnv(lean_object*, lean_object*); extern lean_object* l_Lean_TraceState_Inhabited___closed__1; @@ -438,8 +451,8 @@ extern lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabEnd___closed__3; lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__1; -lean_object* l___private_Init_Lean_Elab_Command_6__mkTermContext___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getLevelNames(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_10__toCommandResult(lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___main___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttribute___closed__3; lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___main___spec__1(lean_object*, lean_object*); @@ -449,26 +462,21 @@ extern lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__2; lean_object* l_Array_toList___rarg(lean_object*); lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___lambda__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_setOption___closed__3; -lean_object* l___private_Init_Lean_Elab_Command_4__modifyGetState___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_12__addScopes___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabCheckFailure(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabSynth(lean_object*); lean_object* l_Lean_Elab_Command_elabVariable___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter___closed__7; uint8_t l_Lean_DataValue_sameCtor(lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___main___spec__5(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_14__checkAnonymousScope___boxed(lean_object*); lean_object* l_Lean_Elab_Term_elabBinders___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Elab_Command_elabCommand___main___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_Elab_Command_sortDeclLevelParams___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_setEnv(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_10__toCommandResult___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_withDeclId(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_11__addScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkMessageAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_variables___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_failIfSucceeds___closed__3; @@ -483,21 +491,17 @@ extern lean_object* l_Lean_MetavarContext_Inhabited___closed__1; lean_object* l_ReaderT_bind___at_Lean_Elab_Command_CommandElabM_monadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Elab_Command_elabChoiceAux(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_3__fromMetaState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___lambda__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabVariable___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Unhygienic_run___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Command_15__checkEndHeader___main___boxed(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabVariables(lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); lean_object* l_Lean_Syntax_asNode(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_elabExport___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter___lambda__2(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Elab_Command_15__checkEndHeader(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttribute___closed__5; lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_CommandElabM_inhabited___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Command_elabChoiceAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabVariable___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabInitQuot(lean_object*, lean_object*, lean_object*); @@ -506,8 +510,7 @@ lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_Elab_mkMessageAt___at_Lean_Elab_Command_throwError___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); extern lean_object* l_Lean_Elab_mkMacroAttribute___closed__2; -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__1; +lean_object* l___private_Lean_Elab_Command_13__addNamespace___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_addClass___closed__1; lean_object* l_Lean_Elab_Command_commandElabAttribute___closed__1; lean_object* l___regBuiltin_Lean_Elab_Command_elabUniverse(lean_object*); @@ -518,11 +521,11 @@ lean_object* l_Lean_Elab_Command_elabOpenRenaming___boxed(lean_object*, lean_obj lean_object* l_Lean_Elab_Command_failIfSucceeds___closed__5; lean_object* l_Lean_Elab_Command_elabOpenOnly___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSynth___closed__3; lean_object* l_Lean_Elab_Command_elabChoiceAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkMessageAux(lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Elab_Command_10__toCommandResult___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_7__mkTermState(lean_object*); +lean_object* l___private_Lean_Elab_Command_12__addScopes___main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_commandElabAttribute___closed__5; lean_object* l_Lean_Elab_Command_CommandElabM_MonadQuotation___closed__3; lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabVariables___spec__2___boxed(lean_object*, lean_object*, lean_object*); @@ -533,12 +536,9 @@ extern lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__2; extern lean_object* l_Lean_Parser_regBuiltinCommandParserAttr___closed__3; lean_object* l_Lean_Elab_Command_elabInitQuot___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_CommandElabM_MonadQuotation; -lean_object* l___private_Init_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_throwError___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_7__mkTermState___boxed(lean_object*); lean_object* l_Lean_Elab_resolveNamespace(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_elabOpenOnly___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__2; extern lean_object* l_Lean_NameGenerator_Inhabited___closed__3; lean_object* l_Lean_Elab_Command_Exception_inhabited; lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); @@ -729,7 +729,7 @@ lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Command_1__ioErrorToMessage(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; @@ -749,11 +749,11 @@ lean_dec(x_5); return x_11; } } -lean_object* l___private_Init_Lean_Elab_Command_1__ioErrorToMessage___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Command_1__ioErrorToMessage___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -794,7 +794,7 @@ if (x_10 == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = lean_ctor_get(x_5, 0); -x_12 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_2, x_11); +x_12 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_2, x_11); x_13 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_5, 0, x_13); @@ -808,7 +808,7 @@ x_15 = lean_ctor_get(x_5, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_5); -x_16 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_2, x_14); +x_16 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_2, x_14); x_17 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_17, 0, x_16); x_18 = lean_alloc_ctor(1, 2, 0); @@ -872,7 +872,7 @@ if (x_10 == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = lean_ctor_get(x_5, 0); -x_12 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_3, x_1, x_11); +x_12 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_3, x_1, x_11); x_13 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_5, 0, x_13); @@ -886,7 +886,7 @@ x_15 = lean_ctor_get(x_5, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_5); -x_16 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_3, x_1, x_14); +x_16 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_3, x_1, x_14); x_17 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_17, 0, x_16); x_18 = lean_alloc_ctor(1, 2, 0); @@ -914,7 +914,7 @@ lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Command_2__getState(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Command_2__getState(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -954,7 +954,7 @@ if (x_9 == 0) lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_10 = lean_ctor_get(x_4, 0); x_11 = lean_box(0); -x_12 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_11, x_10); +x_12 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_11, x_10); x_13 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_4, 0, x_13); @@ -969,7 +969,7 @@ lean_inc(x_15); lean_inc(x_14); lean_dec(x_4); x_16 = lean_box(0); -x_17 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_16, x_14); +x_17 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_1, x_16, x_14); x_18 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_18, 0, x_17); x_19 = lean_alloc_ctor(1, 2, 0); @@ -980,7 +980,7 @@ return x_19; } } } -lean_object* l___private_Init_Lean_Elab_Command_3__setState(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Command_3__setState(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -1020,7 +1020,7 @@ if (x_10 == 0) lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; x_11 = lean_ctor_get(x_5, 0); x_12 = lean_box(0); -x_13 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_12, x_11); +x_13 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_12, x_11); x_14 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_5, 0, x_14); @@ -1035,7 +1035,7 @@ lean_inc(x_16); lean_inc(x_15); lean_dec(x_5); x_17 = lean_box(0); -x_18 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_17, x_15); +x_18 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_17, x_15); x_19 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_19, 0, x_18); x_20 = lean_alloc_ctor(1, 2, 0); @@ -1046,12 +1046,12 @@ return x_20; } } } -lean_object* l___private_Init_Lean_Elab_Command_4__modifyGetState___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Command_4__modifyGetState___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(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_10; @@ -1066,7 +1066,7 @@ lean_inc(x_8); x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); -x_10 = l___private_Init_Lean_Elab_Command_3__setState(x_9, x_2, x_6); +x_10 = l___private_Lean_Elab_Command_3__setState(x_9, x_2, x_6); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -1141,11 +1141,11 @@ return x_22; } } } -lean_object* l___private_Init_Lean_Elab_Command_4__modifyGetState(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Command_4__modifyGetState(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Command_4__modifyGetState___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Command_4__modifyGetState___rarg), 3, 0); return x_2; } } @@ -1153,7 +1153,7 @@ lean_object* _init_l_Lean_Elab_Command_CommandElabCoreM_monadState___closed__1() _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Command_2__getState), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Command_2__getState), 2, 0); return x_1; } } @@ -1161,7 +1161,7 @@ lean_object* _init_l_Lean_Elab_Command_CommandElabCoreM_monadState___closed__2() _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Command_3__setState), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Command_3__setState), 3, 0); return x_1; } } @@ -1169,7 +1169,7 @@ lean_object* _init_l_Lean_Elab_Command_CommandElabCoreM_monadState___closed__3() _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Command_4__modifyGetState), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Command_4__modifyGetState), 1, 0); return x_1; } } @@ -1199,7 +1199,7 @@ lean_object* l_Lean_Elab_Command_getEnv(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_Command_2__getState(x_1, x_2); +x_3 = l___private_Lean_Elab_Command_2__getState(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -1279,7 +1279,7 @@ lean_object* l_Lean_Elab_Command_getScope(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_Command_2__getState(x_1, x_2); +x_3 = l___private_Lean_Elab_Command_2__getState(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -1621,7 +1621,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -1637,7 +1637,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = lean_ctor_get(x_5, 1); x_9 = l_PersistentArray_push___rarg(x_8, x_1); lean_ctor_set(x_5, 1, x_9); -x_10 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_6); +x_10 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_6); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -1708,7 +1708,7 @@ lean_ctor_set(x_27, 1, x_26); lean_ctor_set(x_27, 2, x_23); lean_ctor_set(x_27, 3, x_24); lean_ctor_set(x_27, 4, x_25); -x_28 = l___private_Init_Lean_Elab_Command_3__setState(x_27, x_2, x_6); +x_28 = l___private_Lean_Elab_Command_3__setState(x_27, x_2, x_6); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; @@ -2275,7 +2275,7 @@ x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); lean_inc(x_4); -x_10 = l___private_Init_Lean_Elab_Command_2__getState(x_4, x_9); +x_10 = l___private_Lean_Elab_Command_2__getState(x_4, x_9); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; uint8_t x_13; @@ -2291,7 +2291,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_ctor_get(x_11, 1); x_15 = l_PersistentArray_push___rarg(x_14, x_8); lean_ctor_set(x_11, 1, x_15); -x_16 = l___private_Init_Lean_Elab_Command_3__setState(x_11, x_4, x_12); +x_16 = l___private_Lean_Elab_Command_3__setState(x_11, x_4, x_12); if (lean_obj_tag(x_16) == 0) { uint8_t x_17; @@ -2362,7 +2362,7 @@ lean_ctor_set(x_33, 1, x_32); lean_ctor_set(x_33, 2, x_29); lean_ctor_set(x_33, 3, x_30); lean_ctor_set(x_33, 4, x_31); -x_34 = l___private_Init_Lean_Elab_Command_3__setState(x_33, x_4, x_12); +x_34 = l___private_Lean_Elab_Command_3__setState(x_33, x_4, x_12); if (lean_obj_tag(x_34) == 0) { lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; @@ -2769,7 +2769,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -2787,7 +2787,7 @@ x_9 = lean_unsigned_to_nat(1u); x_10 = lean_nat_add(x_8, x_9); lean_ctor_set(x_5, 3, x_10); lean_inc(x_2); -x_11 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_6); +x_11 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_6); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; uint8_t x_13; @@ -2881,7 +2881,7 @@ lean_ctor_set(x_35, 2, x_30); lean_ctor_set(x_35, 3, x_34); lean_ctor_set(x_35, 4, x_32); lean_inc(x_2); -x_36 = l___private_Init_Lean_Elab_Command_3__setState(x_35, x_2, x_6); +x_36 = l___private_Lean_Elab_Command_3__setState(x_35, x_2, x_6); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; @@ -3255,7 +3255,7 @@ _start: { lean_object* x_5; lean_inc(x_3); -x_5 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_4); +x_5 = l___private_Lean_Elab_Command_2__getState(x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -3406,7 +3406,7 @@ lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Command_5__elabCommandUsing___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Command_5__elabCommandUsing___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_3) == 0) @@ -3425,7 +3425,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); -x_12 = l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; +x_12 = l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; x_13 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_11); @@ -3492,7 +3492,7 @@ lean_inc(x_23); lean_dec(x_17); lean_inc(x_4); lean_inc(x_1); -x_24 = l___private_Init_Lean_Elab_Command_3__setState(x_1, x_4, x_23); +x_24 = l___private_Lean_Elab_Command_3__setState(x_1, x_4, x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; @@ -3534,11 +3534,11 @@ return x_30; } } } -lean_object* l___private_Init_Lean_Elab_Command_5__elabCommandUsing(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Command_5__elabCommandUsing(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Command_5__elabCommandUsing___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Command_5__elabCommandUsing___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } @@ -3623,7 +3623,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -3639,7 +3639,7 @@ lean_object* x_8; lean_object* x_9; x_8 = lean_ctor_get(x_5, 3); lean_dec(x_8); lean_ctor_set(x_5, 3, x_1); -x_9 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_6); +x_9 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_6); if (lean_obj_tag(x_9) == 0) { uint8_t x_10; @@ -3707,7 +3707,7 @@ lean_ctor_set(x_24, 1, x_21); lean_ctor_set(x_24, 2, x_22); lean_ctor_set(x_24, 3, x_1); lean_ctor_set(x_24, 4, x_23); -x_25 = l___private_Init_Lean_Elab_Command_3__setState(x_24, x_2, x_6); +x_25 = l___private_Lean_Elab_Command_3__setState(x_24, x_2, x_6); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; @@ -4159,7 +4159,7 @@ lean_object* _init_l_Lean_Elab_Command_elabCommand___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Meta_isLevelDefEqAux___main___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -4170,7 +4170,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -4230,7 +4230,7 @@ lean_inc(x_8); lean_inc(x_7); lean_ctor_set(x_2, 3, x_25); lean_inc(x_2); -x_26 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_6); +x_26 = l___private_Lean_Elab_Command_2__getState(x_2, x_6); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; uint8_t x_29; @@ -4246,7 +4246,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_27, 3); x_31 = lean_nat_add(x_30, x_24); lean_ctor_set(x_27, 3, x_31); -x_32 = l___private_Init_Lean_Elab_Command_3__setState(x_27, x_2, x_28); +x_32 = l___private_Lean_Elab_Command_3__setState(x_27, x_2, x_28); if (lean_obj_tag(x_32) == 0) { lean_object* x_33; lean_object* x_34; @@ -4385,7 +4385,7 @@ block_152: { lean_object* x_40; lean_inc(x_34); -x_40 = l___private_Init_Lean_Elab_Command_2__getState(x_34, x_39); +x_40 = l___private_Lean_Elab_Command_2__getState(x_34, x_39); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; @@ -4413,7 +4413,7 @@ x_74 = lean_ctor_get(x_72, 1); lean_inc(x_74); lean_dec(x_72); lean_inc(x_34); -x_75 = l___private_Init_Lean_Elab_Command_2__getState(x_34, x_74); +x_75 = l___private_Lean_Elab_Command_2__getState(x_34, x_74); if (lean_obj_tag(x_75) == 0) { lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; @@ -4440,7 +4440,7 @@ x_83 = lean_ctor_get(x_81, 1); lean_inc(x_83); lean_dec(x_81); lean_inc(x_34); -x_84 = l___private_Init_Lean_Elab_Command_2__getState(x_34, x_77); +x_84 = l___private_Lean_Elab_Command_2__getState(x_34, x_77); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; uint8_t x_87; @@ -4457,7 +4457,7 @@ x_88 = lean_ctor_get(x_85, 3); lean_dec(x_88); lean_ctor_set(x_85, 3, x_83); lean_inc(x_34); -x_89 = l___private_Init_Lean_Elab_Command_3__setState(x_85, x_34, x_86); +x_89 = l___private_Lean_Elab_Command_3__setState(x_85, x_34, x_86); if (lean_obj_tag(x_89) == 0) { lean_object* x_90; lean_object* x_91; @@ -4542,7 +4542,7 @@ lean_ctor_set(x_103, 2, x_101); lean_ctor_set(x_103, 3, x_83); lean_ctor_set(x_103, 4, x_102); lean_inc(x_34); -x_104 = l___private_Init_Lean_Elab_Command_3__setState(x_103, x_34, x_86); +x_104 = l___private_Lean_Elab_Command_3__setState(x_103, x_34, x_86); if (lean_obj_tag(x_104) == 0) { lean_object* x_105; lean_object* x_106; @@ -4900,7 +4900,7 @@ lean_dec(x_50); x_61 = lean_ctor_get(x_51, 0); lean_inc(x_61); lean_dec(x_51); -x_62 = l___private_Init_Lean_Elab_Command_5__elabCommandUsing___main(x_41, x_1, x_61, x_34, x_45); +x_62 = l___private_Lean_Elab_Command_5__elabCommandUsing___main(x_41, x_1, x_61, x_34, x_45); return x_62; } } @@ -5053,7 +5053,7 @@ lean_ctor_set(x_183, 1, x_178); lean_ctor_set(x_183, 2, x_179); lean_ctor_set(x_183, 3, x_182); lean_ctor_set(x_183, 4, x_181); -x_184 = l___private_Init_Lean_Elab_Command_3__setState(x_183, x_2, x_28); +x_184 = l___private_Lean_Elab_Command_3__setState(x_183, x_2, x_28); if (lean_obj_tag(x_184) == 0) { lean_object* x_185; lean_object* x_186; @@ -5196,7 +5196,7 @@ block_289: { lean_object* x_192; lean_inc(x_186); -x_192 = l___private_Init_Lean_Elab_Command_2__getState(x_186, x_191); +x_192 = l___private_Lean_Elab_Command_2__getState(x_186, x_191); if (lean_obj_tag(x_192) == 0) { lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; @@ -5224,7 +5224,7 @@ x_226 = lean_ctor_get(x_224, 1); lean_inc(x_226); lean_dec(x_224); lean_inc(x_186); -x_227 = l___private_Init_Lean_Elab_Command_2__getState(x_186, x_226); +x_227 = l___private_Lean_Elab_Command_2__getState(x_186, x_226); if (lean_obj_tag(x_227) == 0) { lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; @@ -5251,7 +5251,7 @@ x_235 = lean_ctor_get(x_233, 1); lean_inc(x_235); lean_dec(x_233); lean_inc(x_186); -x_236 = l___private_Init_Lean_Elab_Command_2__getState(x_186, x_229); +x_236 = l___private_Lean_Elab_Command_2__getState(x_186, x_229); if (lean_obj_tag(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; @@ -5290,7 +5290,7 @@ lean_ctor_set(x_244, 2, x_241); lean_ctor_set(x_244, 3, x_235); lean_ctor_set(x_244, 4, x_242); lean_inc(x_186); -x_245 = l___private_Init_Lean_Elab_Command_3__setState(x_244, x_186, x_238); +x_245 = l___private_Lean_Elab_Command_3__setState(x_244, x_186, x_238); if (lean_obj_tag(x_245) == 0) { lean_object* x_246; lean_object* x_247; @@ -5643,7 +5643,7 @@ lean_dec(x_202); x_213 = lean_ctor_get(x_203, 0); lean_inc(x_213); lean_dec(x_203); -x_214 = l___private_Init_Lean_Elab_Command_5__elabCommandUsing___main(x_193, x_1, x_213, x_186, x_197); +x_214 = l___private_Lean_Elab_Command_5__elabCommandUsing___main(x_193, x_1, x_213, x_186, x_197); return x_214; } } @@ -5833,7 +5833,7 @@ lean_ctor_set(x_320, 4, x_11); lean_ctor_set(x_320, 5, x_12); lean_ctor_set(x_320, 6, x_13); lean_inc(x_320); -x_321 = l___private_Init_Lean_Elab_Command_2__getState(x_320, x_6); +x_321 = l___private_Lean_Elab_Command_2__getState(x_320, x_6); if (lean_obj_tag(x_321) == 0) { lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; @@ -5874,7 +5874,7 @@ lean_ctor_set(x_331, 1, x_325); lean_ctor_set(x_331, 2, x_326); lean_ctor_set(x_331, 3, x_330); lean_ctor_set(x_331, 4, x_328); -x_332 = l___private_Init_Lean_Elab_Command_3__setState(x_331, x_320, x_323); +x_332 = l___private_Lean_Elab_Command_3__setState(x_331, x_320, x_323); if (lean_obj_tag(x_332) == 0) { lean_object* x_333; lean_object* x_334; @@ -6017,7 +6017,7 @@ block_437: { lean_object* x_340; lean_inc(x_334); -x_340 = l___private_Init_Lean_Elab_Command_2__getState(x_334, x_339); +x_340 = l___private_Lean_Elab_Command_2__getState(x_334, x_339); if (lean_obj_tag(x_340) == 0) { lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; @@ -6045,7 +6045,7 @@ x_374 = lean_ctor_get(x_372, 1); lean_inc(x_374); lean_dec(x_372); lean_inc(x_334); -x_375 = l___private_Init_Lean_Elab_Command_2__getState(x_334, x_374); +x_375 = l___private_Lean_Elab_Command_2__getState(x_334, x_374); if (lean_obj_tag(x_375) == 0) { lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; @@ -6072,7 +6072,7 @@ x_383 = lean_ctor_get(x_381, 1); lean_inc(x_383); lean_dec(x_381); lean_inc(x_334); -x_384 = l___private_Init_Lean_Elab_Command_2__getState(x_334, x_377); +x_384 = l___private_Lean_Elab_Command_2__getState(x_334, x_377); if (lean_obj_tag(x_384) == 0) { lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; @@ -6111,7 +6111,7 @@ lean_ctor_set(x_392, 2, x_389); lean_ctor_set(x_392, 3, x_383); lean_ctor_set(x_392, 4, x_390); lean_inc(x_334); -x_393 = l___private_Init_Lean_Elab_Command_3__setState(x_392, x_334, x_386); +x_393 = l___private_Lean_Elab_Command_3__setState(x_392, x_334, x_386); if (lean_obj_tag(x_393) == 0) { lean_object* x_394; lean_object* x_395; @@ -6464,7 +6464,7 @@ lean_dec(x_350); x_361 = lean_ctor_get(x_351, 0); lean_inc(x_361); lean_dec(x_351); -x_362 = l___private_Init_Lean_Elab_Command_5__elabCommandUsing___main(x_341, x_1, x_361, x_334, x_345); +x_362 = l___private_Lean_Elab_Command_5__elabCommandUsing___main(x_341, x_1, x_361, x_334, x_345); return x_362; } } @@ -6864,7 +6864,7 @@ return x_27; } } } -lean_object* l___private_Init_Lean_Elab_Command_6__mkTermContext(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Command_6__mkTermContext(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; uint8_t x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; @@ -6930,17 +6930,17 @@ lean_ctor_set_uint8(x_24, sizeof(void*)*10 + 2, x_8); return x_24; } } -lean_object* l___private_Init_Lean_Elab_Command_6__mkTermContext___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Command_6__mkTermContext___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Command_6__mkTermContext(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Command_7__mkTermState(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Command_7__mkTermState(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; lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -6974,16 +6974,16 @@ lean_ctor_set(x_13, 5, x_4); return x_13; } } -lean_object* l___private_Init_Lean_Elab_Command_7__mkTermState___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Command_7__mkTermState___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_1); +x_2 = l___private_Lean_Elab_Command_7__mkTermState(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Command_8__updateState(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Command_8__updateState(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -7034,16 +7034,16 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Elab_Command_8__updateState___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Command_8__updateState___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_Command_8__updateState(x_1, x_2); +x_3 = l___private_Lean_Elab_Command_8__updateState(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Command_9__getVarDecls(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Command_9__getVarDecls(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -7055,16 +7055,16 @@ lean_dec(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Command_9__getVarDecls___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Command_9__getVarDecls___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_1); +x_2 = l___private_Lean_Elab_Command_9__getVarDecls(x_1); lean_dec(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Command_10__toCommandResult___rarg___closed__1() { +lean_object* _init_l___private_Lean_Elab_Command_10__toCommandResult___rarg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7076,7 +7076,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Command_10__toCommandResult___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Command_10__toCommandResult___rarg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7087,7 +7087,7 @@ if (x_3 == 0) { lean_object* x_4; lean_object* x_5; x_4 = lean_ctor_get(x_2, 1); -x_5 = l___private_Init_Lean_Elab_Command_8__updateState(x_1, x_4); +x_5 = l___private_Lean_Elab_Command_8__updateState(x_1, x_4); lean_dec(x_4); lean_ctor_set(x_2, 1, x_5); return x_2; @@ -7100,7 +7100,7 @@ x_7 = lean_ctor_get(x_2, 1); lean_inc(x_7); lean_inc(x_6); lean_dec(x_2); -x_8 = l___private_Init_Lean_Elab_Command_8__updateState(x_1, x_7); +x_8 = l___private_Lean_Elab_Command_8__updateState(x_1, x_7); lean_dec(x_7); x_9 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_9, 0, x_6); @@ -7126,7 +7126,7 @@ lean_dec(x_13); x_14 = lean_ctor_get(x_10, 0); lean_inc(x_14); lean_dec(x_10); -x_15 = l___private_Init_Lean_Elab_Command_8__updateState(x_1, x_12); +x_15 = l___private_Lean_Elab_Command_8__updateState(x_1, x_12); lean_dec(x_12); lean_ctor_set(x_2, 1, x_15); lean_ctor_set(x_2, 0, x_14); @@ -7141,7 +7141,7 @@ lean_dec(x_2); x_17 = lean_ctor_get(x_10, 0); lean_inc(x_17); lean_dec(x_10); -x_18 = l___private_Init_Lean_Elab_Command_8__updateState(x_1, x_16); +x_18 = l___private_Lean_Elab_Command_8__updateState(x_1, x_16); lean_dec(x_16); x_19 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_19, 0, x_17); @@ -7154,26 +7154,26 @@ else lean_object* x_20; lean_object* x_21; lean_dec(x_2); lean_dec(x_1); -x_20 = l___private_Init_Lean_Elab_Command_10__toCommandResult___rarg___closed__1; +x_20 = l___private_Lean_Elab_Command_10__toCommandResult___rarg___closed__1; x_21 = l_unreachable_x21___rarg(x_20); return x_21; } } } } -lean_object* l___private_Init_Lean_Elab_Command_10__toCommandResult(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Command_10__toCommandResult(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Command_10__toCommandResult___rarg), 2, 0); +x_3 = lean_alloc_closure((void*)(l___private_Lean_Elab_Command_10__toCommandResult___rarg), 2, 0); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Command_10__toCommandResult___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Command_10__toCommandResult___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_Command_10__toCommandResult(x_1, x_2); +x_3 = l___private_Lean_Elab_Command_10__toCommandResult(x_1, x_2); lean_dec(x_2); return x_3; } @@ -7209,7 +7209,7 @@ _start: { lean_object* x_5; lean_inc(x_3); -x_5 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_4); +x_5 = l___private_Lean_Elab_Command_2__getState(x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -7218,8 +7218,8 @@ lean_inc(x_6); x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); -x_8 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_3, x_6, x_1); -x_9 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_6); +x_8 = l___private_Lean_Elab_Command_6__mkTermContext(x_3, x_6, x_1); +x_9 = l___private_Lean_Elab_Command_7__mkTermState(x_6); lean_dec(x_6); x_10 = lean_apply_2(x_2, x_8, x_9); if (lean_obj_tag(x_10) == 0) @@ -7231,7 +7231,7 @@ x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); lean_inc(x_3); -x_13 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_7); +x_13 = l___private_Lean_Elab_Command_2__getState(x_3, x_7); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -7258,7 +7258,7 @@ x_21 = lean_ctor_get(x_15, 0); lean_dec(x_21); lean_ctor_set(x_15, 1, x_18); lean_ctor_set(x_15, 0, x_17); -x_22 = l___private_Init_Lean_Elab_Command_3__setState(x_15, x_3, x_16); +x_22 = l___private_Lean_Elab_Command_3__setState(x_15, x_3, x_16); if (lean_obj_tag(x_22) == 0) { uint8_t x_23; @@ -7323,7 +7323,7 @@ lean_ctor_set(x_34, 1, x_18); lean_ctor_set(x_34, 2, x_31); lean_ctor_set(x_34, 3, x_32); lean_ctor_set(x_34, 4, x_33); -x_35 = l___private_Init_Lean_Elab_Command_3__setState(x_34, x_3, x_16); +x_35 = l___private_Lean_Elab_Command_3__setState(x_34, x_3, x_16); if (lean_obj_tag(x_35) == 0) { lean_object* x_36; lean_object* x_37; lean_object* x_38; @@ -7414,7 +7414,7 @@ x_49 = lean_ctor_get(x_47, 0); lean_inc(x_49); lean_dec(x_47); lean_inc(x_3); -x_50 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_7); +x_50 = l___private_Lean_Elab_Command_2__getState(x_3, x_7); if (lean_obj_tag(x_50) == 0) { lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; @@ -7441,7 +7441,7 @@ x_58 = lean_ctor_get(x_52, 0); lean_dec(x_58); lean_ctor_set(x_52, 1, x_55); lean_ctor_set(x_52, 0, x_54); -x_59 = l___private_Init_Lean_Elab_Command_3__setState(x_52, x_3, x_53); +x_59 = l___private_Lean_Elab_Command_3__setState(x_52, x_3, x_53); if (lean_obj_tag(x_59) == 0) { uint8_t x_60; @@ -7507,7 +7507,7 @@ lean_ctor_set(x_71, 1, x_55); lean_ctor_set(x_71, 2, x_68); lean_ctor_set(x_71, 3, x_69); lean_ctor_set(x_71, 4, x_70); -x_72 = l___private_Init_Lean_Elab_Command_3__setState(x_71, x_3, x_53); +x_72 = l___private_Lean_Elab_Command_3__setState(x_71, x_3, x_53); if (lean_obj_tag(x_72) == 0) { lean_object* x_73; lean_object* x_74; lean_object* x_75; @@ -7635,7 +7635,7 @@ _start: { lean_object* x_5; lean_inc(x_3); -x_5 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_4); +x_5 = l___private_Lean_Elab_Command_2__getState(x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -7644,10 +7644,10 @@ lean_inc(x_6); x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); -x_8 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_6); +x_8 = l___private_Lean_Elab_Command_9__getVarDecls(x_6); lean_dec(x_6); lean_inc(x_3); -x_9 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_7); +x_9 = l___private_Lean_Elab_Command_2__getState(x_3, x_7); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7656,8 +7656,8 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); -x_12 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_3, x_10, x_1); -x_13 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_10); +x_12 = l___private_Lean_Elab_Command_6__mkTermContext(x_3, x_10, x_1); +x_13 = l___private_Lean_Elab_Command_7__mkTermState(x_10); lean_dec(x_10); x_14 = l_Lean_Elab_Term_elabBinders___rarg(x_8, x_2, x_12, x_13); lean_dec(x_8); @@ -7670,7 +7670,7 @@ x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec(x_14); lean_inc(x_3); -x_17 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_11); +x_17 = l___private_Lean_Elab_Command_2__getState(x_3, x_11); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; @@ -7697,7 +7697,7 @@ x_25 = lean_ctor_get(x_19, 0); lean_dec(x_25); lean_ctor_set(x_19, 1, x_22); lean_ctor_set(x_19, 0, x_21); -x_26 = l___private_Init_Lean_Elab_Command_3__setState(x_19, x_3, x_20); +x_26 = l___private_Lean_Elab_Command_3__setState(x_19, x_3, x_20); if (lean_obj_tag(x_26) == 0) { uint8_t x_27; @@ -7762,7 +7762,7 @@ lean_ctor_set(x_38, 1, x_22); lean_ctor_set(x_38, 2, x_35); lean_ctor_set(x_38, 3, x_36); lean_ctor_set(x_38, 4, x_37); -x_39 = l___private_Init_Lean_Elab_Command_3__setState(x_38, x_3, x_20); +x_39 = l___private_Lean_Elab_Command_3__setState(x_38, x_3, x_20); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; lean_object* x_41; lean_object* x_42; @@ -7853,7 +7853,7 @@ x_53 = lean_ctor_get(x_51, 0); lean_inc(x_53); lean_dec(x_51); lean_inc(x_3); -x_54 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_11); +x_54 = l___private_Lean_Elab_Command_2__getState(x_3, x_11); if (lean_obj_tag(x_54) == 0) { lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; @@ -7880,7 +7880,7 @@ x_62 = lean_ctor_get(x_56, 0); lean_dec(x_62); lean_ctor_set(x_56, 1, x_59); lean_ctor_set(x_56, 0, x_58); -x_63 = l___private_Init_Lean_Elab_Command_3__setState(x_56, x_3, x_57); +x_63 = l___private_Lean_Elab_Command_3__setState(x_56, x_3, x_57); if (lean_obj_tag(x_63) == 0) { uint8_t x_64; @@ -7946,7 +7946,7 @@ lean_ctor_set(x_75, 1, x_59); lean_ctor_set(x_75, 2, x_72); lean_ctor_set(x_75, 3, x_73); lean_ctor_set(x_75, 4, x_74); -x_76 = l___private_Init_Lean_Elab_Command_3__setState(x_75, x_3, x_57); +x_76 = l___private_Lean_Elab_Command_3__setState(x_75, x_3, x_57); if (lean_obj_tag(x_76) == 0) { lean_object* x_77; lean_object* x_78; lean_object* x_79; @@ -8122,7 +8122,7 @@ x_7 = lean_ctor_get(x_5, 0); lean_inc(x_7); lean_dec(x_5); lean_inc(x_2); -x_8 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_6); +x_8 = l___private_Lean_Elab_Command_2__getState(x_2, x_6); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; uint8_t x_11; @@ -8138,7 +8138,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_9, 1); x_13 = l_PersistentArray_push___rarg(x_12, x_7); lean_ctor_set(x_9, 1, x_13); -x_14 = l___private_Init_Lean_Elab_Command_3__setState(x_9, x_2, x_10); +x_14 = l___private_Lean_Elab_Command_3__setState(x_9, x_2, x_10); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; @@ -8209,7 +8209,7 @@ lean_ctor_set(x_31, 1, x_30); lean_ctor_set(x_31, 2, x_27); lean_ctor_set(x_31, 3, x_28); lean_ctor_set(x_31, 4, x_29); -x_32 = l___private_Init_Lean_Elab_Command_3__setState(x_31, x_2, x_10); +x_32 = l___private_Lean_Elab_Command_3__setState(x_31, x_2, x_10); if (lean_obj_tag(x_32) == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -8342,7 +8342,7 @@ x_11 = lean_ctor_get(x_9, 0); lean_inc(x_11); lean_dec(x_9); lean_inc(x_2); -x_12 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_10); +x_12 = l___private_Lean_Elab_Command_2__getState(x_2, x_10); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -8358,7 +8358,7 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; x_16 = lean_ctor_get(x_13, 1); x_17 = l_PersistentArray_push___rarg(x_16, x_11); lean_ctor_set(x_13, 1, x_17); -x_18 = l___private_Init_Lean_Elab_Command_3__setState(x_13, x_2, x_14); +x_18 = l___private_Lean_Elab_Command_3__setState(x_13, x_2, x_14); if (lean_obj_tag(x_18) == 0) { uint8_t x_19; @@ -8434,7 +8434,7 @@ lean_ctor_set(x_37, 1, x_36); lean_ctor_set(x_37, 2, x_33); lean_ctor_set(x_37, 3, x_34); lean_ctor_set(x_37, 4, x_35); -x_38 = l___private_Init_Lean_Elab_Command_3__setState(x_37, x_2, x_14); +x_38 = l___private_Lean_Elab_Command_3__setState(x_37, x_2, x_14); if (lean_obj_tag(x_38) == 0) { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; @@ -8600,7 +8600,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -8616,7 +8616,7 @@ lean_object* x_8; lean_object* x_9; x_8 = lean_ctor_get(x_5, 0); lean_dec(x_8); lean_ctor_set(x_5, 0, x_1); -x_9 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_6); +x_9 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_6); if (lean_obj_tag(x_9) == 0) { uint8_t x_10; @@ -8684,7 +8684,7 @@ lean_ctor_set(x_24, 1, x_20); lean_ctor_set(x_24, 2, x_21); lean_ctor_set(x_24, 3, x_22); lean_ctor_set(x_24, 4, x_23); -x_25 = l___private_Init_Lean_Elab_Command_3__setState(x_24, x_2, x_6); +x_25 = l___private_Lean_Elab_Command_3__setState(x_24, x_2, x_6); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; @@ -8820,12 +8820,12 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Elab_Command_11__addScope(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Command_11__addScope(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_inc(x_4); -x_6 = l___private_Init_Lean_Elab_Command_2__getState(x_4, x_5); +x_6 = l___private_Lean_Elab_Command_2__getState(x_4, x_5); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -8861,7 +8861,7 @@ lean_ctor_set(x_18, 0, x_13); lean_ctor_set(x_18, 1, x_11); lean_ctor_set(x_7, 2, x_18); lean_ctor_set(x_7, 0, x_12); -x_19 = l___private_Init_Lean_Elab_Command_3__setState(x_7, x_4, x_8); +x_19 = l___private_Lean_Elab_Command_3__setState(x_7, x_4, x_8); if (lean_obj_tag(x_19) == 0) { uint8_t x_20; @@ -8936,7 +8936,7 @@ lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_11); lean_ctor_set(x_7, 2, x_35); lean_ctor_set(x_7, 0, x_12); -x_36 = l___private_Init_Lean_Elab_Command_3__setState(x_7, x_4, x_8); +x_36 = l___private_Lean_Elab_Command_3__setState(x_7, x_4, x_8); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; @@ -9045,7 +9045,7 @@ lean_ctor_set(x_59, 1, x_46); lean_ctor_set(x_59, 2, x_58); lean_ctor_set(x_59, 3, x_48); lean_ctor_set(x_59, 4, x_49); -x_60 = l___private_Init_Lean_Elab_Command_3__setState(x_59, x_4, x_8); +x_60 = l___private_Lean_Elab_Command_3__setState(x_59, x_4, x_8); if (lean_obj_tag(x_60) == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; @@ -9123,7 +9123,7 @@ return x_72; } } } -lean_object* _init_l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Command_12__addScopes___main___closed__1() { _start: { lean_object* x_1; @@ -9131,27 +9131,27 @@ x_1 = lean_mk_string("invalid scope"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Command_12__addScopes___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__1; +x_1 = l___private_Lean_Elab_Command_12__addScopes___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Command_12__addScopes___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__2; +x_1 = l___private_Lean_Elab_Command_12__addScopes___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___main(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Command_12__addScopes___main(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: { switch (lean_obj_tag(x_4)) { @@ -9176,7 +9176,7 @@ lean_inc(x_10); lean_dec(x_4); lean_inc(x_5); lean_inc(x_2); -x_11 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_1, x_2, x_3, x_9, x_5, x_6); +x_11 = l___private_Lean_Elab_Command_12__addScopes___main(x_1, x_2, x_3, x_9, x_5, x_6); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; lean_object* x_13; @@ -9195,7 +9195,7 @@ lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); lean_inc(x_15); lean_dec(x_13); -x_16 = l___private_Init_Lean_Elab_Command_11__addScope(x_2, x_10, x_14, x_5, x_15); +x_16 = l___private_Lean_Elab_Command_11__addScope(x_2, x_10, x_14, x_5, x_15); return x_16; } else @@ -9211,7 +9211,7 @@ lean_inc(x_10); x_20 = lean_name_mk_string(x_19, x_10); x_21 = l_Lean_Name_append___main(x_17, x_20); lean_dec(x_17); -x_22 = l___private_Init_Lean_Elab_Command_11__addScope(x_2, x_10, x_21, x_5, x_18); +x_22 = l___private_Lean_Elab_Command_11__addScope(x_2, x_10, x_21, x_5, x_18); return x_22; } } @@ -9272,58 +9272,58 @@ default: lean_object* x_31; lean_object* x_32; lean_dec(x_4); lean_dec(x_2); -x_31 = l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__3; +x_31 = l___private_Lean_Elab_Command_12__addScopes___main___closed__3; x_32 = l_Lean_Elab_Command_throwError___rarg(x_1, x_31, x_5, x_6); return x_32; } } } } -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Command_12__addScopes___main___boxed(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___private_Init_Lean_Elab_Command_12__addScopes___main(x_1, x_2, x_7, x_4, x_5, x_6); +x_8 = l___private_Lean_Elab_Command_12__addScopes___main(x_1, x_2, x_7, x_4, x_5, x_6); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Command_12__addScopes(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; -x_7 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Command_12__addScopes___main(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Command_12__addScopes___boxed(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___private_Init_Lean_Elab_Command_12__addScopes(x_1, x_2, x_7, x_4, x_5, x_6); +x_8 = l___private_Lean_Elab_Command_12__addScopes(x_1, x_2, x_7, x_4, x_5, x_6); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Command_13__addNamespace(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Command_13__addNamespace(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; lean_object* x_7; x_5 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_6 = 1; -x_7 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_1, x_5, x_6, x_2, x_3, x_4); +x_7 = l___private_Lean_Elab_Command_12__addScopes___main(x_1, x_5, x_6, x_2, x_3, x_4); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Command_13__addNamespace___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Command_13__addNamespace___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___private_Init_Lean_Elab_Command_13__addNamespace(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Command_13__addNamespace(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -9375,7 +9375,7 @@ x_16 = l_Lean_Syntax_getId(x_15); lean_dec(x_15); x_17 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_18 = 1; -x_19 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_1, x_17, x_18, x_16, x_2, x_3); +x_19 = l___private_Lean_Elab_Command_12__addScopes___main(x_1, x_17, x_18, x_16, x_2, x_3); lean_dec(x_1); return x_19; } @@ -9517,7 +9517,7 @@ lean_inc(x_22); lean_dec(x_20); x_23 = l_Lean_Parser_Command_section___elambda__1___closed__1; x_24 = l_String_splitAux___main___closed__1; -x_25 = l___private_Init_Lean_Elab_Command_11__addScope(x_23, x_24, x_21, x_2, x_22); +x_25 = l___private_Lean_Elab_Command_11__addScope(x_23, x_24, x_21, x_2, x_22); return x_25; } else @@ -9574,7 +9574,7 @@ x_36 = l_Lean_Syntax_getId(x_31); lean_dec(x_31); x_37 = l_Lean_Parser_Command_section___elambda__1___closed__1; x_38 = 0; -x_39 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_1, x_37, x_38, x_36, x_2, x_3); +x_39 = l___private_Lean_Elab_Command_12__addScopes___main(x_1, x_37, x_38, x_36, x_2, x_3); lean_dec(x_1); return x_39; } @@ -9607,7 +9607,7 @@ lean_object* l_Lean_Elab_Command_getScopes(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_Command_2__getState(x_1, x_2); +x_3 = l___private_Lean_Elab_Command_2__getState(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -9663,7 +9663,7 @@ return x_14; } } } -uint8_t l___private_Init_Lean_Elab_Command_14__checkAnonymousScope(lean_object* x_1) { +uint8_t l___private_Lean_Elab_Command_14__checkAnonymousScope(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -9683,17 +9683,17 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Elab_Command_14__checkAnonymousScope___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Command_14__checkAnonymousScope___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Command_14__checkAnonymousScope(x_1); +x_2 = l___private_Lean_Elab_Command_14__checkAnonymousScope(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Elab_Command_15__checkEndHeader___main(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Elab_Command_15__checkEndHeader___main(lean_object* x_1, lean_object* x_2) { _start: { switch (lean_obj_tag(x_1)) { @@ -9743,30 +9743,30 @@ return x_13; } } } -lean_object* l___private_Init_Lean_Elab_Command_15__checkEndHeader___main___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Command_15__checkEndHeader___main___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Elab_Command_15__checkEndHeader___main(x_1, x_2); +x_3 = l___private_Lean_Elab_Command_15__checkEndHeader___main(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Elab_Command_15__checkEndHeader(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Elab_Command_15__checkEndHeader(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; -x_3 = l___private_Init_Lean_Elab_Command_15__checkEndHeader___main(x_1, x_2); +x_3 = l___private_Lean_Elab_Command_15__checkEndHeader___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Command_15__checkEndHeader___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Command_15__checkEndHeader___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Elab_Command_15__checkEndHeader(x_1, x_2); +x_3 = l___private_Lean_Elab_Command_15__checkEndHeader(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); @@ -9964,7 +9964,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_inc(x_2); -x_26 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_9); +x_26 = l___private_Lean_Elab_Command_2__getState(x_2, x_9); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; uint8_t x_29; @@ -9985,7 +9985,7 @@ x_33 = l_List_drop___main___rarg(x_32, x_30); lean_dec(x_30); lean_ctor_set(x_27, 2, x_33); lean_inc(x_2); -x_34 = l___private_Init_Lean_Elab_Command_3__setState(x_27, x_2, x_28); +x_34 = l___private_Lean_Elab_Command_3__setState(x_27, x_2, x_28); if (lean_obj_tag(x_34) == 0) { lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; @@ -10063,7 +10063,7 @@ lean_ctor_set(x_54, 2, x_53); lean_ctor_set(x_54, 3, x_49); lean_ctor_set(x_54, 4, x_50); lean_inc(x_2); -x_55 = l___private_Init_Lean_Elab_Command_3__setState(x_54, x_2, x_28); +x_55 = l___private_Lean_Elab_Command_3__setState(x_54, x_2, x_28); if (lean_obj_tag(x_55) == 0) { lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; @@ -10148,7 +10148,7 @@ else { lean_object* x_71; lean_inc(x_2); -x_71 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_9); +x_71 = l___private_Lean_Elab_Command_2__getState(x_2, x_9); if (lean_obj_tag(x_71) == 0) { lean_object* x_72; lean_object* x_73; uint8_t x_74; @@ -10166,7 +10166,7 @@ x_76 = l_List_drop___main___rarg(x_7, x_75); lean_dec(x_75); lean_ctor_set(x_72, 2, x_76); lean_inc(x_2); -x_77 = l___private_Init_Lean_Elab_Command_3__setState(x_72, x_2, x_73); +x_77 = l___private_Lean_Elab_Command_3__setState(x_72, x_2, x_73); if (lean_obj_tag(x_77) == 0) { lean_object* x_78; @@ -10225,7 +10225,7 @@ lean_ctor_set(x_89, 2, x_88); lean_ctor_set(x_89, 3, x_86); lean_ctor_set(x_89, 4, x_87); lean_inc(x_2); -x_90 = l___private_Init_Lean_Elab_Command_3__setState(x_89, x_2, x_73); +x_90 = l___private_Lean_Elab_Command_3__setState(x_89, x_2, x_73); if (lean_obj_tag(x_90) == 0) { lean_object* x_91; @@ -10296,7 +10296,7 @@ block_25: if (lean_obj_tag(x_6) == 0) { uint8_t x_14; -x_14 = l___private_Init_Lean_Elab_Command_14__checkAnonymousScope(x_8); +x_14 = l___private_Lean_Elab_Command_14__checkAnonymousScope(x_8); lean_dec(x_8); if (x_14 == 0) { @@ -10322,7 +10322,7 @@ lean_object* x_19; uint8_t x_20; x_19 = lean_ctor_get(x_6, 0); lean_inc(x_19); lean_dec(x_6); -x_20 = l___private_Init_Lean_Elab_Command_15__checkEndHeader___main(x_19, x_8); +x_20 = l___private_Lean_Elab_Command_15__checkEndHeader___main(x_19, x_8); lean_dec(x_8); lean_dec(x_19); if (x_20 == 0) @@ -10383,7 +10383,7 @@ x_6 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_7 = 1; lean_inc(x_4); lean_inc(x_2); -x_8 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_1, x_6, x_7, x_2, x_4, x_5); +x_8 = l___private_Lean_Elab_Command_12__addScopes___main(x_1, x_6, x_7, x_2, x_4, x_5); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; @@ -10401,7 +10401,7 @@ x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); lean_inc(x_4); -x_13 = l___private_Init_Lean_Elab_Command_2__getState(x_4, x_12); +x_13 = l___private_Lean_Elab_Command_2__getState(x_4, x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -10420,7 +10420,7 @@ lean_dec(x_2); x_19 = l_List_drop___main___rarg(x_18, x_17); lean_dec(x_17); lean_ctor_set(x_14, 2, x_19); -x_20 = l___private_Init_Lean_Elab_Command_3__setState(x_14, x_4, x_15); +x_20 = l___private_Lean_Elab_Command_3__setState(x_14, x_4, x_15); if (lean_obj_tag(x_20) == 0) { uint8_t x_21; @@ -10493,7 +10493,7 @@ lean_ctor_set(x_36, 1, x_30); lean_ctor_set(x_36, 2, x_35); lean_ctor_set(x_36, 3, x_32); lean_ctor_set(x_36, 4, x_33); -x_37 = l___private_Init_Lean_Elab_Command_3__setState(x_36, x_4, x_15); +x_37 = l___private_Lean_Elab_Command_3__setState(x_36, x_4, x_15); if (lean_obj_tag(x_37) == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; @@ -10653,7 +10653,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -10677,7 +10677,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -10747,7 +10747,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -10816,7 +10816,7 @@ lean_object* x_43; lean_object* x_44; lean_object* x_45; x_43 = lean_ctor_get(x_6, 0); x_44 = lean_apply_1(x_1, x_43); lean_ctor_set(x_6, 0, x_44); -x_45 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_39); +x_45 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_39); if (lean_obj_tag(x_45) == 0) { uint8_t x_46; @@ -10879,7 +10879,7 @@ x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); lean_ctor_set(x_5, 2, x_59); -x_60 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_39); +x_60 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_39); if (lean_obj_tag(x_60) == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; @@ -10967,7 +10967,7 @@ lean_ctor_set(x_78, 1, x_70); lean_ctor_set(x_78, 2, x_77); lean_ctor_set(x_78, 3, x_71); lean_ctor_set(x_78, 4, x_72); -x_79 = l___private_Init_Lean_Elab_Command_3__setState(x_78, x_2, x_39); +x_79 = l___private_Lean_Elab_Command_3__setState(x_78, x_2, x_39); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; @@ -11196,7 +11196,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -11220,7 +11220,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -11290,7 +11290,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -11373,7 +11373,7 @@ x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_39); lean_ctor_set(x_48, 1, x_44); lean_ctor_set(x_5, 2, x_48); -x_49 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_49 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_49) == 0) { uint8_t x_50; @@ -11455,7 +11455,7 @@ x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_44); lean_ctor_set(x_5, 2, x_68); -x_69 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_69 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; @@ -11557,7 +11557,7 @@ x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_78); lean_ctor_set(x_5, 2, x_89); -x_90 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_90 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_90) == 0) { lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; @@ -11684,7 +11684,7 @@ lean_ctor_set(x_116, 1, x_100); lean_ctor_set(x_116, 2, x_115); lean_ctor_set(x_116, 3, x_101); lean_ctor_set(x_116, 4, x_102); -x_117 = l___private_Init_Lean_Elab_Command_3__setState(x_116, x_2, x_40); +x_117 = l___private_Lean_Elab_Command_3__setState(x_116, x_2, x_40); if (lean_obj_tag(x_117) == 0) { lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; @@ -12769,7 +12769,7 @@ x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec(x_22); lean_inc(x_2); -x_25 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_24); +x_25 = l___private_Lean_Elab_Command_2__getState(x_2, x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; uint8_t x_28; @@ -12785,7 +12785,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_26, 0); x_30 = l_List_foldl___main___at_Lean_Elab_Command_elabExport___spec__2(x_29, x_23); lean_ctor_set(x_26, 0, x_30); -x_31 = l___private_Init_Lean_Elab_Command_3__setState(x_26, x_2, x_27); +x_31 = l___private_Lean_Elab_Command_3__setState(x_26, x_2, x_27); if (lean_obj_tag(x_31) == 0) { uint8_t x_32; @@ -12856,7 +12856,7 @@ lean_ctor_set(x_48, 1, x_43); lean_ctor_set(x_48, 2, x_44); lean_ctor_set(x_48, 3, x_45); lean_ctor_set(x_48, 4, x_46); -x_49 = l___private_Init_Lean_Elab_Command_3__setState(x_48, x_2, x_27); +x_49 = l___private_Lean_Elab_Command_3__setState(x_48, x_2, x_27); if (lean_obj_tag(x_49) == 0) { lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; @@ -13077,7 +13077,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -13101,7 +13101,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -13171,7 +13171,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -13254,7 +13254,7 @@ x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_39); lean_ctor_set(x_48, 1, x_44); lean_ctor_set(x_5, 2, x_48); -x_49 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_49 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_49) == 0) { uint8_t x_50; @@ -13336,7 +13336,7 @@ x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_44); lean_ctor_set(x_5, 2, x_68); -x_69 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_69 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; @@ -13438,7 +13438,7 @@ x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_78); lean_ctor_set(x_5, 2, x_89); -x_90 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_90 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_90) == 0) { lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; @@ -13565,7 +13565,7 @@ lean_ctor_set(x_116, 1, x_100); lean_ctor_set(x_116, 2, x_115); lean_ctor_set(x_116, 3, x_101); lean_ctor_set(x_116, 4, x_102); -x_117 = l___private_Init_Lean_Elab_Command_3__setState(x_116, x_2, x_40); +x_117 = l___private_Lean_Elab_Command_3__setState(x_116, x_2, x_40); if (lean_obj_tag(x_117) == 0) { lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; @@ -14596,7 +14596,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -14620,7 +14620,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -14690,7 +14690,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -14767,7 +14767,7 @@ lean_object* x_46; lean_object* x_47; lean_object* x_48; x_46 = lean_ctor_get(x_39, 6); x_47 = lean_array_push(x_46, x_1); lean_ctor_set(x_39, 6, x_47); -x_48 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_48 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_48) == 0) { uint8_t x_49; @@ -14845,7 +14845,7 @@ lean_ctor_set(x_67, 4, x_63); lean_ctor_set(x_67, 5, x_64); lean_ctor_set(x_67, 6, x_66); lean_ctor_set(x_6, 0, x_67); -x_68 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_68 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_68) == 0) { lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; @@ -14945,7 +14945,7 @@ x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_87); lean_ctor_set(x_88, 1, x_77); lean_ctor_set(x_5, 2, x_88); -x_89 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_89 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_89) == 0) { lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; @@ -15070,7 +15070,7 @@ lean_ctor_set(x_115, 1, x_99); lean_ctor_set(x_115, 2, x_114); lean_ctor_set(x_115, 3, x_100); lean_ctor_set(x_115, 4, x_101); -x_116 = l___private_Init_Lean_Elab_Command_3__setState(x_115, x_2, x_40); +x_116 = l___private_Lean_Elab_Command_3__setState(x_115, x_2, x_40); if (lean_obj_tag(x_116) == 0) { lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; @@ -15152,7 +15152,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -15176,7 +15176,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -15246,7 +15246,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -15323,7 +15323,7 @@ lean_object* x_46; lean_object* x_47; lean_object* x_48; x_46 = lean_ctor_get(x_39, 6); x_47 = lean_array_push(x_46, x_1); lean_ctor_set(x_39, 6, x_47); -x_48 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_48 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_48) == 0) { uint8_t x_49; @@ -15401,7 +15401,7 @@ lean_ctor_set(x_67, 4, x_63); lean_ctor_set(x_67, 5, x_64); lean_ctor_set(x_67, 6, x_66); lean_ctor_set(x_6, 0, x_67); -x_68 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_68 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_68) == 0) { lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; @@ -15501,7 +15501,7 @@ x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_87); lean_ctor_set(x_88, 1, x_77); lean_ctor_set(x_5, 2, x_88); -x_89 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_89 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_89) == 0) { lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; @@ -15626,7 +15626,7 @@ lean_ctor_set(x_115, 1, x_99); lean_ctor_set(x_115, 2, x_114); lean_ctor_set(x_115, 3, x_100); lean_ctor_set(x_115, 4, x_101); -x_116 = l___private_Init_Lean_Elab_Command_3__setState(x_115, x_2, x_40); +x_116 = l___private_Lean_Elab_Command_3__setState(x_115, x_2, x_40); if (lean_obj_tag(x_116) == 0) { lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; @@ -15726,7 +15726,7 @@ lean_inc(x_5); x_7 = lean_alloc_closure((void*)(l_Lean_Elab_Command_elabVariable___lambda__1___boxed), 4, 1); lean_closure_set(x_7, 0, x_5); lean_inc(x_2); -x_8 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_8 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -15735,10 +15735,10 @@ lean_inc(x_9); x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); lean_dec(x_8); -x_11 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_9); +x_11 = l___private_Lean_Elab_Command_9__getVarDecls(x_9); lean_dec(x_9); lean_inc(x_2); -x_12 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_10); +x_12 = l___private_Lean_Elab_Command_2__getState(x_2, x_10); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; @@ -15747,8 +15747,8 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec(x_12); -x_15 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_2, x_13, x_6); -x_16 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_13); +x_15 = l___private_Lean_Elab_Command_6__mkTermContext(x_2, x_13, x_6); +x_16 = l___private_Lean_Elab_Command_7__mkTermState(x_13); lean_dec(x_13); x_17 = l_Lean_Elab_Term_elabBinders___rarg(x_11, x_7, x_15, x_16); lean_dec(x_11); @@ -15759,7 +15759,7 @@ x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); lean_inc(x_2); -x_19 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_14); +x_19 = l___private_Lean_Elab_Command_2__getState(x_2, x_14); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; @@ -15787,7 +15787,7 @@ lean_dec(x_27); lean_ctor_set(x_21, 1, x_24); lean_ctor_set(x_21, 0, x_23); lean_inc(x_2); -x_28 = l___private_Init_Lean_Elab_Command_3__setState(x_21, x_2, x_22); +x_28 = l___private_Lean_Elab_Command_3__setState(x_21, x_2, x_22); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; lean_object* x_30; @@ -15839,7 +15839,7 @@ lean_ctor_set(x_38, 2, x_35); lean_ctor_set(x_38, 3, x_36); lean_ctor_set(x_38, 4, x_37); lean_inc(x_2); -x_39 = l___private_Init_Lean_Elab_Command_3__setState(x_38, x_2, x_22); +x_39 = l___private_Lean_Elab_Command_3__setState(x_38, x_2, x_22); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; lean_object* x_41; @@ -15919,7 +15919,7 @@ x_52 = lean_ctor_get(x_50, 0); lean_inc(x_52); lean_dec(x_50); lean_inc(x_2); -x_53 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_14); +x_53 = l___private_Lean_Elab_Command_2__getState(x_2, x_14); if (lean_obj_tag(x_53) == 0) { lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; @@ -15946,7 +15946,7 @@ x_61 = lean_ctor_get(x_55, 0); lean_dec(x_61); lean_ctor_set(x_55, 1, x_58); lean_ctor_set(x_55, 0, x_57); -x_62 = l___private_Init_Lean_Elab_Command_3__setState(x_55, x_2, x_56); +x_62 = l___private_Lean_Elab_Command_3__setState(x_55, x_2, x_56); if (lean_obj_tag(x_62) == 0) { uint8_t x_63; @@ -16012,7 +16012,7 @@ lean_ctor_set(x_74, 1, x_58); lean_ctor_set(x_74, 2, x_71); lean_ctor_set(x_74, 3, x_72); lean_ctor_set(x_74, 4, x_73); -x_75 = l___private_Init_Lean_Elab_Command_3__setState(x_74, x_2, x_56); +x_75 = l___private_Lean_Elab_Command_3__setState(x_74, x_2, x_56); if (lean_obj_tag(x_75) == 0) { lean_object* x_76; lean_object* x_77; lean_object* x_78; @@ -16229,7 +16229,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -16252,7 +16252,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -16322,7 +16322,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -16400,7 +16400,7 @@ x_46 = lean_ctor_get(x_39, 6); x_47 = lean_unsigned_to_nat(0u); x_48 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_1, x_1, x_47, x_46); lean_ctor_set(x_39, 6, x_48); -x_49 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_49 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_49) == 0) { uint8_t x_50; @@ -16479,7 +16479,7 @@ lean_ctor_set(x_69, 4, x_64); lean_ctor_set(x_69, 5, x_65); lean_ctor_set(x_69, 6, x_68); lean_ctor_set(x_6, 0, x_69); -x_70 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_70 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_70) == 0) { lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; @@ -16580,7 +16580,7 @@ x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_79); lean_ctor_set(x_5, 2, x_91); -x_92 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_92 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_92) == 0) { lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; @@ -16706,7 +16706,7 @@ lean_ctor_set(x_119, 1, x_102); lean_ctor_set(x_119, 2, x_118); lean_ctor_set(x_119, 3, x_103); lean_ctor_set(x_119, 4, x_104); -x_120 = l___private_Init_Lean_Elab_Command_3__setState(x_119, x_2, x_40); +x_120 = l___private_Lean_Elab_Command_3__setState(x_119, x_2, x_40); if (lean_obj_tag(x_120) == 0) { lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; @@ -16787,7 +16787,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -16810,7 +16810,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -16880,7 +16880,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -16958,7 +16958,7 @@ x_46 = lean_ctor_get(x_39, 6); x_47 = lean_unsigned_to_nat(0u); x_48 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_1, x_1, x_47, x_46); lean_ctor_set(x_39, 6, x_48); -x_49 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_49 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_49) == 0) { uint8_t x_50; @@ -17037,7 +17037,7 @@ lean_ctor_set(x_69, 4, x_64); lean_ctor_set(x_69, 5, x_65); lean_ctor_set(x_69, 6, x_68); lean_ctor_set(x_6, 0, x_69); -x_70 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_70 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_70) == 0) { lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; @@ -17138,7 +17138,7 @@ x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_79); lean_ctor_set(x_5, 2, x_91); -x_92 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_92 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_92) == 0) { lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; @@ -17264,7 +17264,7 @@ lean_ctor_set(x_119, 1, x_102); lean_ctor_set(x_119, 2, x_118); lean_ctor_set(x_119, 3, x_103); lean_ctor_set(x_119, 4, x_104); -x_120 = l___private_Init_Lean_Elab_Command_3__setState(x_119, x_2, x_40); +x_120 = l___private_Lean_Elab_Command_3__setState(x_119, x_2, x_40); if (lean_obj_tag(x_120) == 0) { lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; @@ -17362,7 +17362,7 @@ lean_inc(x_6); x_8 = lean_alloc_closure((void*)(l_Lean_Elab_Command_elabVariables___lambda__1___boxed), 4, 1); lean_closure_set(x_8, 0, x_6); lean_inc(x_2); -x_9 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_9 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -17371,10 +17371,10 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); -x_12 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_10); +x_12 = l___private_Lean_Elab_Command_9__getVarDecls(x_10); lean_dec(x_10); lean_inc(x_2); -x_13 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_11); +x_13 = l___private_Lean_Elab_Command_2__getState(x_2, x_11); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; @@ -17383,8 +17383,8 @@ lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); lean_inc(x_15); lean_dec(x_13); -x_16 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_2, x_14, x_7); -x_17 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_14); +x_16 = l___private_Lean_Elab_Command_6__mkTermContext(x_2, x_14, x_7); +x_17 = l___private_Lean_Elab_Command_7__mkTermState(x_14); lean_dec(x_14); x_18 = l_Lean_Elab_Term_elabBinders___rarg(x_12, x_8, x_16, x_17); lean_dec(x_12); @@ -17395,7 +17395,7 @@ x_19 = lean_ctor_get(x_18, 1); lean_inc(x_19); lean_dec(x_18); lean_inc(x_2); -x_20 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_15); +x_20 = l___private_Lean_Elab_Command_2__getState(x_2, x_15); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; @@ -17423,7 +17423,7 @@ lean_dec(x_28); lean_ctor_set(x_22, 1, x_25); lean_ctor_set(x_22, 0, x_24); lean_inc(x_2); -x_29 = l___private_Init_Lean_Elab_Command_3__setState(x_22, x_2, x_23); +x_29 = l___private_Lean_Elab_Command_3__setState(x_22, x_2, x_23); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; @@ -17476,7 +17476,7 @@ lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_37); lean_ctor_set(x_39, 4, x_38); lean_inc(x_2); -x_40 = l___private_Init_Lean_Elab_Command_3__setState(x_39, x_2, x_23); +x_40 = l___private_Lean_Elab_Command_3__setState(x_39, x_2, x_23); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; @@ -17557,7 +17557,7 @@ x_53 = lean_ctor_get(x_51, 0); lean_inc(x_53); lean_dec(x_51); lean_inc(x_2); -x_54 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_15); +x_54 = l___private_Lean_Elab_Command_2__getState(x_2, x_15); if (lean_obj_tag(x_54) == 0) { lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; @@ -17584,7 +17584,7 @@ x_62 = lean_ctor_get(x_56, 0); lean_dec(x_62); lean_ctor_set(x_56, 1, x_59); lean_ctor_set(x_56, 0, x_58); -x_63 = l___private_Init_Lean_Elab_Command_3__setState(x_56, x_2, x_57); +x_63 = l___private_Lean_Elab_Command_3__setState(x_56, x_2, x_57); if (lean_obj_tag(x_63) == 0) { uint8_t x_64; @@ -17650,7 +17650,7 @@ lean_ctor_set(x_75, 1, x_59); lean_ctor_set(x_75, 2, x_72); lean_ctor_set(x_75, 3, x_73); lean_ctor_set(x_75, 4, x_74); -x_76 = l___private_Init_Lean_Elab_Command_3__setState(x_75, x_2, x_57); +x_76 = l___private_Lean_Elab_Command_3__setState(x_75, x_2, x_57); if (lean_obj_tag(x_76) == 0) { lean_object* x_77; lean_object* x_78; lean_object* x_79; @@ -18107,7 +18107,7 @@ lean_dec(x_8); x_11 = 0; x_12 = lean_box(0); lean_inc(x_4); -x_13 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_11, x_12, x_4, x_10); +x_13 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_11, x_12, x_4, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; @@ -18127,7 +18127,7 @@ lean_inc(x_17); lean_dec(x_15); x_18 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_18, 0, x_9); -x_19 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_19 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_20 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); @@ -18282,7 +18282,7 @@ x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); lean_inc(x_2); -x_41 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_9); +x_41 = l___private_Lean_Elab_Command_2__getState(x_2, x_9); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; @@ -18291,10 +18291,10 @@ lean_inc(x_42); x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); lean_dec(x_41); -x_44 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_42); +x_44 = l___private_Lean_Elab_Command_9__getVarDecls(x_42); lean_dec(x_42); lean_inc(x_2); -x_45 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_43); +x_45 = l___private_Lean_Elab_Command_2__getState(x_2, x_43); if (lean_obj_tag(x_45) == 0) { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; @@ -18304,8 +18304,8 @@ x_47 = lean_ctor_get(x_45, 1); lean_inc(x_47); lean_dec(x_45); x_48 = l_Lean_Elab_Command_elabCheck___closed__3; -x_49 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_2, x_46, x_48); -x_50 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_46); +x_49 = l___private_Lean_Elab_Command_6__mkTermContext(x_2, x_46, x_48); +x_50 = l___private_Lean_Elab_Command_7__mkTermState(x_46); lean_dec(x_46); x_51 = l_Lean_Elab_Term_elabBinders___rarg(x_44, x_6, x_49, x_50); lean_dec(x_44); @@ -18318,7 +18318,7 @@ x_53 = lean_ctor_get(x_51, 1); lean_inc(x_53); lean_dec(x_51); lean_inc(x_2); -x_54 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_47); +x_54 = l___private_Lean_Elab_Command_2__getState(x_2, x_47); if (lean_obj_tag(x_54) == 0) { lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; @@ -18346,7 +18346,7 @@ lean_dec(x_62); lean_ctor_set(x_56, 1, x_59); lean_ctor_set(x_56, 0, x_58); lean_inc(x_2); -x_63 = l___private_Init_Lean_Elab_Command_3__setState(x_56, x_2, x_57); +x_63 = l___private_Lean_Elab_Command_3__setState(x_56, x_2, x_57); if (lean_obj_tag(x_63) == 0) { lean_object* x_64; @@ -18388,7 +18388,7 @@ lean_ctor_set(x_70, 2, x_67); lean_ctor_set(x_70, 3, x_68); lean_ctor_set(x_70, 4, x_69); lean_inc(x_2); -x_71 = l___private_Init_Lean_Elab_Command_3__setState(x_70, x_2, x_57); +x_71 = l___private_Lean_Elab_Command_3__setState(x_70, x_2, x_57); if (lean_obj_tag(x_71) == 0) { lean_object* x_72; @@ -18444,7 +18444,7 @@ x_79 = lean_ctor_get(x_77, 0); lean_inc(x_79); lean_dec(x_77); lean_inc(x_2); -x_80 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_47); +x_80 = l___private_Lean_Elab_Command_2__getState(x_2, x_47); if (lean_obj_tag(x_80) == 0) { lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; @@ -18472,7 +18472,7 @@ lean_dec(x_88); lean_ctor_set(x_82, 1, x_85); lean_ctor_set(x_82, 0, x_84); lean_inc(x_2); -x_89 = l___private_Init_Lean_Elab_Command_3__setState(x_82, x_2, x_83); +x_89 = l___private_Lean_Elab_Command_3__setState(x_82, x_2, x_83); if (lean_obj_tag(x_89) == 0) { lean_object* x_90; @@ -18514,7 +18514,7 @@ lean_ctor_set(x_96, 2, x_93); lean_ctor_set(x_96, 3, x_94); lean_ctor_set(x_96, 4, x_95); lean_inc(x_2); -x_97 = l___private_Init_Lean_Elab_Command_3__setState(x_96, x_2, x_83); +x_97 = l___private_Lean_Elab_Command_3__setState(x_96, x_2, x_83); if (lean_obj_tag(x_97) == 0) { lean_object* x_98; @@ -18833,7 +18833,7 @@ lean_object* l_Lean_Elab_Command_hasNoErrorMessages(lean_object* x_1, lean_objec _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_Command_2__getState(x_1, x_2); +x_3 = l___private_Lean_Elab_Command_2__getState(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -18976,7 +18976,7 @@ _start: { lean_object* x_5; lean_inc(x_3); -x_5 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_4); +x_5 = l___private_Lean_Elab_Command_2__getState(x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -18989,7 +18989,7 @@ x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); lean_inc(x_3); -x_9 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_7); +x_9 = l___private_Lean_Elab_Command_2__getState(x_3, x_7); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; uint8_t x_12; @@ -19007,7 +19007,7 @@ lean_dec(x_13); x_14 = l_PersistentArray_empty___closed__3; lean_ctor_set(x_10, 1, x_14); lean_inc(x_3); -x_15 = l___private_Init_Lean_Elab_Command_3__setState(x_10, x_3, x_11); +x_15 = l___private_Lean_Elab_Command_3__setState(x_10, x_3, x_11); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_56; lean_object* x_57; lean_object* x_98; lean_object* x_99; lean_object* x_134; @@ -19067,7 +19067,7 @@ block_55: { lean_object* x_19; lean_inc(x_3); -x_19 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_18); +x_19 = l___private_Lean_Elab_Command_2__getState(x_3, x_18); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; uint8_t x_22; @@ -19085,7 +19085,7 @@ x_24 = l_PersistentArray_mapM___at_Lean_MessageLog_errorsToWarnings___spec__1(x_ x_25 = l_PersistentArray_append___rarg(x_8, x_24); lean_dec(x_24); lean_ctor_set(x_20, 1, x_25); -x_26 = l___private_Init_Lean_Elab_Command_3__setState(x_20, x_3, x_21); +x_26 = l___private_Lean_Elab_Command_3__setState(x_20, x_3, x_21); if (lean_obj_tag(x_26) == 0) { uint8_t x_27; @@ -19158,7 +19158,7 @@ lean_ctor_set(x_42, 1, x_41); lean_ctor_set(x_42, 2, x_37); lean_ctor_set(x_42, 3, x_38); lean_ctor_set(x_42, 4, x_39); -x_43 = l___private_Init_Lean_Elab_Command_3__setState(x_42, x_3, x_21); +x_43 = l___private_Lean_Elab_Command_3__setState(x_42, x_3, x_21); if (lean_obj_tag(x_43) == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; @@ -19239,7 +19239,7 @@ block_97: { lean_object* x_58; lean_inc(x_3); -x_58 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_57); +x_58 = l___private_Lean_Elab_Command_2__getState(x_3, x_57); if (lean_obj_tag(x_58) == 0) { lean_object* x_59; lean_object* x_60; uint8_t x_61; @@ -19259,7 +19259,7 @@ x_64 = l_PersistentArray_append___rarg(x_8, x_63); lean_dec(x_63); lean_ctor_set(x_59, 1, x_64); lean_inc(x_3); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_59, x_3, x_60); +x_65 = l___private_Lean_Elab_Command_3__setState(x_59, x_3, x_60); if (lean_obj_tag(x_65) == 0) { lean_dec(x_8); @@ -19339,7 +19339,7 @@ lean_ctor_set(x_84, 2, x_79); lean_ctor_set(x_84, 3, x_80); lean_ctor_set(x_84, 4, x_81); lean_inc(x_3); -x_85 = l___private_Init_Lean_Elab_Command_3__setState(x_84, x_3, x_60); +x_85 = l___private_Lean_Elab_Command_3__setState(x_84, x_3, x_60); if (lean_obj_tag(x_85) == 0) { lean_dec(x_8); @@ -19414,7 +19414,7 @@ x_100 = lean_ctor_get(x_98, 0); lean_inc(x_100); lean_dec(x_98); lean_inc(x_3); -x_101 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_99); +x_101 = l___private_Lean_Elab_Command_2__getState(x_3, x_99); if (lean_obj_tag(x_101) == 0) { lean_object* x_102; lean_object* x_103; uint8_t x_104; @@ -19431,7 +19431,7 @@ x_105 = lean_ctor_get(x_102, 1); x_106 = l_PersistentArray_push___rarg(x_105, x_100); lean_ctor_set(x_102, 1, x_106); lean_inc(x_3); -x_107 = l___private_Init_Lean_Elab_Command_3__setState(x_102, x_3, x_103); +x_107 = l___private_Lean_Elab_Command_3__setState(x_102, x_3, x_103); if (lean_obj_tag(x_107) == 0) { lean_object* x_108; uint8_t x_109; @@ -19478,7 +19478,7 @@ lean_ctor_set(x_118, 2, x_114); lean_ctor_set(x_118, 3, x_115); lean_ctor_set(x_118, 4, x_116); lean_inc(x_3); -x_119 = l___private_Init_Lean_Elab_Command_3__setState(x_118, x_3, x_103); +x_119 = l___private_Lean_Elab_Command_3__setState(x_118, x_3, x_103); if (lean_obj_tag(x_119) == 0) { lean_object* x_120; uint8_t x_121; @@ -19597,7 +19597,7 @@ lean_ctor_set(x_153, 2, x_149); lean_ctor_set(x_153, 3, x_150); lean_ctor_set(x_153, 4, x_151); lean_inc(x_3); -x_154 = l___private_Init_Lean_Elab_Command_3__setState(x_153, x_3, x_11); +x_154 = l___private_Lean_Elab_Command_3__setState(x_153, x_3, x_11); if (lean_obj_tag(x_154) == 0) { lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_183; lean_object* x_184; lean_object* x_210; lean_object* x_211; lean_object* x_239; @@ -19657,7 +19657,7 @@ block_182: { lean_object* x_158; lean_inc(x_3); -x_158 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_157); +x_158 = l___private_Lean_Elab_Command_2__getState(x_3, x_157); if (lean_obj_tag(x_158) == 0) { lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; @@ -19700,7 +19700,7 @@ lean_ctor_set(x_169, 1, x_168); lean_ctor_set(x_169, 2, x_163); lean_ctor_set(x_169, 3, x_164); lean_ctor_set(x_169, 4, x_165); -x_170 = l___private_Init_Lean_Elab_Command_3__setState(x_169, x_3, x_160); +x_170 = l___private_Lean_Elab_Command_3__setState(x_169, x_3, x_160); if (lean_obj_tag(x_170) == 0) { lean_object* x_171; lean_object* x_172; lean_object* x_173; @@ -19782,7 +19782,7 @@ block_209: { lean_object* x_185; lean_inc(x_3); -x_185 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_184); +x_185 = l___private_Lean_Elab_Command_2__getState(x_3, x_184); if (lean_obj_tag(x_185) == 0) { 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; @@ -19827,7 +19827,7 @@ lean_ctor_set(x_196, 2, x_190); lean_ctor_set(x_196, 3, x_191); lean_ctor_set(x_196, 4, x_192); lean_inc(x_3); -x_197 = l___private_Init_Lean_Elab_Command_3__setState(x_196, x_3, x_187); +x_197 = l___private_Lean_Elab_Command_3__setState(x_196, x_3, x_187); if (lean_obj_tag(x_197) == 0) { lean_dec(x_8); @@ -19901,7 +19901,7 @@ x_212 = lean_ctor_get(x_210, 0); lean_inc(x_212); lean_dec(x_210); lean_inc(x_3); -x_213 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_211); +x_213 = l___private_Lean_Elab_Command_2__getState(x_3, x_211); if (lean_obj_tag(x_213) == 0) { lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; @@ -19943,7 +19943,7 @@ lean_ctor_set(x_223, 2, x_218); lean_ctor_set(x_223, 3, x_219); lean_ctor_set(x_223, 4, x_220); lean_inc(x_3); -x_224 = l___private_Init_Lean_Elab_Command_3__setState(x_223, x_3, x_215); +x_224 = l___private_Lean_Elab_Command_3__setState(x_223, x_3, x_215); if (lean_obj_tag(x_224) == 0) { lean_object* x_225; uint8_t x_226; @@ -20155,7 +20155,7 @@ lean_dec(x_8); x_11 = 0; x_12 = lean_box(0); lean_inc(x_4); -x_13 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_11, x_12, x_4, x_10); +x_13 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_11, x_12, x_4, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -20190,7 +20190,7 @@ x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); lean_dec(x_23); lean_inc(x_4); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_25, x_20); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_25, x_20); x_27 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_27, 0, x_24); x_28 = 0; @@ -20226,8 +20226,8 @@ lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; x_35 = lean_ctor_get(x_23, 0); x_36 = lean_ctor_get(x_23, 1); lean_inc(x_4); -x_37 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_2, x_35); -x_38 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_36, x_20); +x_37 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_2, x_35); +x_38 = l___private_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_36, x_20); lean_ctor_set(x_23, 1, x_38); lean_ctor_set(x_23, 0, x_37); return x_23; @@ -20241,8 +20241,8 @@ lean_inc(x_40); lean_inc(x_39); lean_dec(x_23); lean_inc(x_4); -x_41 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_2, x_39); -x_42 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_40, x_20); +x_41 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_2, x_39); +x_42 = l___private_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_40, x_20); x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_42); @@ -20286,7 +20286,7 @@ x_55 = lean_ctor_get(x_53, 1); lean_inc(x_55); lean_dec(x_53); lean_inc(x_4); -x_56 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_55, x_48); +x_56 = l___private_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_55, x_48); x_57 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_57, 0, x_54); x_58 = 0; @@ -20326,8 +20326,8 @@ if (lean_is_exclusive(x_53)) { x_65 = lean_box(0); } lean_inc(x_4); -x_66 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_2, x_63); -x_67 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_64, x_48); +x_66 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_2, x_63); +x_67 = l___private_Lean_Elab_Term_3__fromMetaState(x_2, x_4, x_16, x_64, x_48); if (lean_is_scalar(x_65)) { x_68 = lean_alloc_ctor(1, 2, 0); } else { @@ -20437,7 +20437,7 @@ x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); lean_inc(x_2); -x_41 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_9); +x_41 = l___private_Lean_Elab_Command_2__getState(x_2, x_9); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; @@ -20446,10 +20446,10 @@ lean_inc(x_42); x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); lean_dec(x_41); -x_44 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_42); +x_44 = l___private_Lean_Elab_Command_9__getVarDecls(x_42); lean_dec(x_42); lean_inc(x_2); -x_45 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_43); +x_45 = l___private_Lean_Elab_Command_2__getState(x_2, x_43); if (lean_obj_tag(x_45) == 0) { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; @@ -20459,8 +20459,8 @@ x_47 = lean_ctor_get(x_45, 1); lean_inc(x_47); lean_dec(x_45); x_48 = l_Lean_Elab_Command_elabSynth___closed__3; -x_49 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_2, x_46, x_48); -x_50 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_46); +x_49 = l___private_Lean_Elab_Command_6__mkTermContext(x_2, x_46, x_48); +x_50 = l___private_Lean_Elab_Command_7__mkTermState(x_46); lean_dec(x_46); x_51 = l_Lean_Elab_Term_elabBinders___rarg(x_44, x_6, x_49, x_50); lean_dec(x_44); @@ -20473,7 +20473,7 @@ x_53 = lean_ctor_get(x_51, 1); lean_inc(x_53); lean_dec(x_51); lean_inc(x_2); -x_54 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_47); +x_54 = l___private_Lean_Elab_Command_2__getState(x_2, x_47); if (lean_obj_tag(x_54) == 0) { lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; @@ -20501,7 +20501,7 @@ lean_dec(x_62); lean_ctor_set(x_56, 1, x_59); lean_ctor_set(x_56, 0, x_58); lean_inc(x_2); -x_63 = l___private_Init_Lean_Elab_Command_3__setState(x_56, x_2, x_57); +x_63 = l___private_Lean_Elab_Command_3__setState(x_56, x_2, x_57); if (lean_obj_tag(x_63) == 0) { lean_object* x_64; @@ -20543,7 +20543,7 @@ lean_ctor_set(x_70, 2, x_67); lean_ctor_set(x_70, 3, x_68); lean_ctor_set(x_70, 4, x_69); lean_inc(x_2); -x_71 = l___private_Init_Lean_Elab_Command_3__setState(x_70, x_2, x_57); +x_71 = l___private_Lean_Elab_Command_3__setState(x_70, x_2, x_57); if (lean_obj_tag(x_71) == 0) { lean_object* x_72; @@ -20599,7 +20599,7 @@ x_79 = lean_ctor_get(x_77, 0); lean_inc(x_79); lean_dec(x_77); lean_inc(x_2); -x_80 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_47); +x_80 = l___private_Lean_Elab_Command_2__getState(x_2, x_47); if (lean_obj_tag(x_80) == 0) { lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; @@ -20627,7 +20627,7 @@ lean_dec(x_88); lean_ctor_set(x_82, 1, x_85); lean_ctor_set(x_82, 0, x_84); lean_inc(x_2); -x_89 = l___private_Init_Lean_Elab_Command_3__setState(x_82, x_2, x_83); +x_89 = l___private_Lean_Elab_Command_3__setState(x_82, x_2, x_83); if (lean_obj_tag(x_89) == 0) { lean_object* x_90; @@ -20669,7 +20669,7 @@ lean_ctor_set(x_96, 2, x_93); lean_ctor_set(x_96, 3, x_94); lean_ctor_set(x_96, 4, x_95); lean_inc(x_2); -x_97 = l___private_Init_Lean_Elab_Command_3__setState(x_96, x_2, x_83); +x_97 = l___private_Lean_Elab_Command_3__setState(x_96, x_2, x_83); if (lean_obj_tag(x_97) == 0) { lean_object* x_98; @@ -20979,7 +20979,7 @@ _start: { lean_object* x_5; lean_inc(x_3); -x_5 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_4); +x_5 = l___private_Lean_Elab_Command_2__getState(x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; @@ -21004,7 +21004,7 @@ lean_dec(x_10); x_11 = l_Lean_Elab_Command_modifyScope___closed__1; x_12 = l_unreachable_x21___rarg(x_11); lean_ctor_set(x_6, 2, x_12); -x_13 = l___private_Init_Lean_Elab_Command_3__setState(x_6, x_3, x_8); +x_13 = l___private_Lean_Elab_Command_3__setState(x_6, x_3, x_8); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -21074,7 +21074,7 @@ lean_ctor_set(x_30, 1, x_25); lean_ctor_set(x_30, 2, x_29); lean_ctor_set(x_30, 3, x_26); lean_ctor_set(x_30, 4, x_27); -x_31 = l___private_Init_Lean_Elab_Command_3__setState(x_30, x_3, x_8); +x_31 = l___private_Lean_Elab_Command_3__setState(x_30, x_3, x_8); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; @@ -21151,7 +21151,7 @@ lean_object* x_47; lean_object* x_48; lean_object* x_49; x_47 = lean_ctor_get(x_40, 2); x_48 = l_Lean_KVMap_insertCore___main(x_47, x_1, x_2); lean_ctor_set(x_40, 2, x_48); -x_49 = l___private_Init_Lean_Elab_Command_3__setState(x_6, x_3, x_41); +x_49 = l___private_Lean_Elab_Command_3__setState(x_6, x_3, x_41); if (lean_obj_tag(x_49) == 0) { uint8_t x_50; @@ -21229,7 +21229,7 @@ lean_ctor_set(x_68, 4, x_64); lean_ctor_set(x_68, 5, x_65); lean_ctor_set(x_68, 6, x_66); lean_ctor_set(x_7, 0, x_68); -x_69 = l___private_Init_Lean_Elab_Command_3__setState(x_6, x_3, x_41); +x_69 = l___private_Lean_Elab_Command_3__setState(x_6, x_3, x_41); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; @@ -21329,7 +21329,7 @@ x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_78); lean_ctor_set(x_6, 2, x_89); -x_90 = l___private_Init_Lean_Elab_Command_3__setState(x_6, x_3, x_41); +x_90 = l___private_Lean_Elab_Command_3__setState(x_6, x_3, x_41); if (lean_obj_tag(x_90) == 0) { lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; @@ -21454,7 +21454,7 @@ lean_ctor_set(x_116, 1, x_100); lean_ctor_set(x_116, 2, x_115); lean_ctor_set(x_116, 3, x_101); lean_ctor_set(x_116, 4, x_102); -x_117 = l___private_Init_Lean_Elab_Command_3__setState(x_116, x_3, x_41); +x_117 = l___private_Lean_Elab_Command_3__setState(x_116, x_3, x_41); if (lean_obj_tag(x_117) == 0) { lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; @@ -21659,7 +21659,7 @@ x_21 = lean_ctor_get(x_3, 0); lean_inc(x_21); lean_dec(x_3); lean_inc(x_4); -x_22 = l___private_Init_Lean_Elab_Command_2__getState(x_4, x_15); +x_22 = l___private_Lean_Elab_Command_2__getState(x_4, x_15); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; uint8_t x_25; @@ -21675,7 +21675,7 @@ lean_object* x_26; lean_object* x_27; x_26 = lean_ctor_get(x_23, 4); lean_dec(x_26); lean_ctor_set(x_23, 4, x_21); -x_27 = l___private_Init_Lean_Elab_Command_3__setState(x_23, x_4, x_24); +x_27 = l___private_Lean_Elab_Command_3__setState(x_23, x_4, x_24); if (lean_obj_tag(x_27) == 0) { uint8_t x_28; @@ -21743,7 +21743,7 @@ lean_ctor_set(x_42, 1, x_39); lean_ctor_set(x_42, 2, x_40); lean_ctor_set(x_42, 3, x_41); lean_ctor_set(x_42, 4, x_21); -x_43 = l___private_Init_Lean_Elab_Command_3__setState(x_42, x_4, x_24); +x_43 = l___private_Lean_Elab_Command_3__setState(x_42, x_4, x_24); if (lean_obj_tag(x_43) == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; @@ -21861,7 +21861,7 @@ x_63 = lean_ctor_get(x_3, 0); lean_inc(x_63); lean_dec(x_3); lean_inc(x_4); -x_64 = l___private_Init_Lean_Elab_Command_2__getState(x_4, x_57); +x_64 = l___private_Lean_Elab_Command_2__getState(x_4, x_57); if (lean_obj_tag(x_64) == 0) { 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; @@ -21899,7 +21899,7 @@ lean_ctor_set(x_72, 1, x_68); lean_ctor_set(x_72, 2, x_69); lean_ctor_set(x_72, 3, x_70); lean_ctor_set(x_72, 4, x_63); -x_73 = l___private_Init_Lean_Elab_Command_3__setState(x_72, x_4, x_66); +x_73 = l___private_Lean_Elab_Command_3__setState(x_72, x_4, x_66); if (lean_obj_tag(x_73) == 0) { lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; @@ -22087,7 +22087,7 @@ if (x_111 == 0) { lean_object* x_112; lean_object* x_113; lean_object* x_114; x_112 = lean_ctor_get(x_6, 0); -x_113 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_4, x_1, x_112); +x_113 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_4, x_1, x_112); x_114 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_6, 0, x_114); @@ -22101,7 +22101,7 @@ x_116 = lean_ctor_get(x_6, 1); lean_inc(x_116); lean_inc(x_115); lean_dec(x_6); -x_117 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_4, x_1, x_115); +x_117 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_4, x_1, x_115); x_118 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_118, 0, x_117); x_119 = lean_alloc_ctor(1, 2, 0); @@ -22336,7 +22336,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -22360,7 +22360,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -22430,7 +22430,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -22507,7 +22507,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -22582,7 +22582,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -22679,7 +22679,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -22801,7 +22801,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -22883,7 +22883,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -22907,7 +22907,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -22977,7 +22977,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -23054,7 +23054,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -23129,7 +23129,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -23226,7 +23226,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -23348,7 +23348,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -23430,7 +23430,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -23454,7 +23454,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -23524,7 +23524,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -23601,7 +23601,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -23676,7 +23676,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -23773,7 +23773,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -23895,7 +23895,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -23977,7 +23977,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -24001,7 +24001,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -24071,7 +24071,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -24148,7 +24148,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -24223,7 +24223,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -24320,7 +24320,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -24442,7 +24442,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -24726,7 +24726,7 @@ x_22 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_23 = 1; lean_inc(x_3); lean_inc(x_17); -x_24 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_1, x_22, x_23, x_17, x_3, x_12); +x_24 = l___private_Lean_Elab_Command_12__addScopes___main(x_1, x_22, x_23, x_17, x_3, x_12); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; lean_object* x_26; @@ -24762,7 +24762,7 @@ x_32 = lean_ctor_get(x_31, 1); lean_inc(x_32); lean_dec(x_31); lean_inc(x_3); -x_33 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_32); +x_33 = l___private_Lean_Elab_Command_2__getState(x_3, x_32); if (lean_obj_tag(x_33) == 0) { lean_object* x_34; lean_object* x_35; uint8_t x_36; @@ -24781,7 +24781,7 @@ lean_dec(x_17); x_39 = l_List_drop___main___rarg(x_38, x_37); lean_dec(x_37); lean_ctor_set(x_34, 2, x_39); -x_40 = l___private_Init_Lean_Elab_Command_3__setState(x_34, x_3, x_35); +x_40 = l___private_Lean_Elab_Command_3__setState(x_34, x_3, x_35); if (lean_obj_tag(x_40) == 0) { uint8_t x_41; @@ -24854,7 +24854,7 @@ lean_ctor_set(x_56, 1, x_50); lean_ctor_set(x_56, 2, x_55); lean_ctor_set(x_56, 3, x_52); lean_ctor_set(x_56, 4, x_53); -x_57 = l___private_Init_Lean_Elab_Command_3__setState(x_56, x_3, x_35); +x_57 = l___private_Lean_Elab_Command_3__setState(x_56, x_3, x_35); if (lean_obj_tag(x_57) == 0) { lean_object* x_58; lean_object* x_59; lean_object* x_60; @@ -25135,7 +25135,7 @@ x_108 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_109 = 1; lean_inc(x_3); lean_inc(x_102); -x_110 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_1, x_108, x_109, x_102, x_3, x_12); +x_110 = l___private_Lean_Elab_Command_12__addScopes___main(x_1, x_108, x_109, x_102, x_3, x_12); if (lean_obj_tag(x_110) == 0) { lean_object* x_111; lean_object* x_112; @@ -25171,7 +25171,7 @@ x_118 = lean_ctor_get(x_117, 1); lean_inc(x_118); lean_dec(x_117); lean_inc(x_3); -x_119 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_118); +x_119 = l___private_Lean_Elab_Command_2__getState(x_3, x_118); if (lean_obj_tag(x_119) == 0) { lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; @@ -25215,7 +25215,7 @@ lean_ctor_set(x_130, 1, x_123); lean_ctor_set(x_130, 2, x_129); lean_ctor_set(x_130, 3, x_125); lean_ctor_set(x_130, 4, x_126); -x_131 = l___private_Init_Lean_Elab_Command_3__setState(x_130, x_3, x_121); +x_131 = l___private_Lean_Elab_Command_3__setState(x_130, x_3, x_121); if (lean_obj_tag(x_131) == 0) { lean_object* x_132; lean_object* x_133; lean_object* x_134; @@ -25911,7 +25911,7 @@ _start: lean_object* x_5; lean_object* x_6; x_5 = lean_box(0); lean_inc(x_3); -x_6 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_4); +x_6 = l___private_Lean_Elab_Command_2__getState(x_3, x_4); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -25920,8 +25920,8 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_3, x_7, x_5); -x_10 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_7); +x_9 = l___private_Lean_Elab_Command_6__mkTermContext(x_3, x_7, x_5); +x_10 = l___private_Lean_Elab_Command_7__mkTermState(x_7); lean_dec(x_7); x_11 = l_Lean_Elab_Term_addDecl(x_1, x_2, x_9, x_10); if (lean_obj_tag(x_11) == 0) @@ -25933,7 +25933,7 @@ x_13 = lean_ctor_get(x_11, 1); lean_inc(x_13); lean_dec(x_11); lean_inc(x_3); -x_14 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_8); +x_14 = l___private_Lean_Elab_Command_2__getState(x_3, x_8); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; @@ -25960,7 +25960,7 @@ x_22 = lean_ctor_get(x_16, 0); lean_dec(x_22); lean_ctor_set(x_16, 1, x_19); lean_ctor_set(x_16, 0, x_18); -x_23 = l___private_Init_Lean_Elab_Command_3__setState(x_16, x_3, x_17); +x_23 = l___private_Lean_Elab_Command_3__setState(x_16, x_3, x_17); if (lean_obj_tag(x_23) == 0) { uint8_t x_24; @@ -26025,7 +26025,7 @@ lean_ctor_set(x_35, 1, x_19); lean_ctor_set(x_35, 2, x_32); lean_ctor_set(x_35, 3, x_33); lean_ctor_set(x_35, 4, x_34); -x_36 = l___private_Init_Lean_Elab_Command_3__setState(x_35, x_3, x_17); +x_36 = l___private_Lean_Elab_Command_3__setState(x_35, x_3, x_17); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; @@ -26113,7 +26113,7 @@ x_50 = lean_ctor_get(x_48, 0); lean_inc(x_50); lean_dec(x_48); lean_inc(x_3); -x_51 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_8); +x_51 = l___private_Lean_Elab_Command_2__getState(x_3, x_8); if (lean_obj_tag(x_51) == 0) { lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; @@ -26140,7 +26140,7 @@ x_59 = lean_ctor_get(x_53, 0); lean_dec(x_59); lean_ctor_set(x_53, 1, x_56); lean_ctor_set(x_53, 0, x_55); -x_60 = l___private_Init_Lean_Elab_Command_3__setState(x_53, x_3, x_54); +x_60 = l___private_Lean_Elab_Command_3__setState(x_53, x_3, x_54); if (lean_obj_tag(x_60) == 0) { uint8_t x_61; @@ -26206,7 +26206,7 @@ lean_ctor_set(x_72, 1, x_56); lean_ctor_set(x_72, 2, x_69); lean_ctor_set(x_72, 3, x_70); lean_ctor_set(x_72, 4, x_71); -x_73 = l___private_Init_Lean_Elab_Command_3__setState(x_72, x_3, x_54); +x_73 = l___private_Lean_Elab_Command_3__setState(x_72, x_3, x_54); if (lean_obj_tag(x_73) == 0) { lean_object* x_74; lean_object* x_75; lean_object* x_76; @@ -26325,7 +26325,7 @@ _start: lean_object* x_5; lean_object* x_6; x_5 = lean_box(0); lean_inc(x_3); -x_6 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_4); +x_6 = l___private_Lean_Elab_Command_2__getState(x_3, x_4); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -26334,8 +26334,8 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_3, x_7, x_5); -x_10 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_7); +x_9 = l___private_Lean_Elab_Command_6__mkTermContext(x_3, x_7, x_5); +x_10 = l___private_Lean_Elab_Command_7__mkTermState(x_7); lean_dec(x_7); x_11 = l_Lean_Elab_Term_compileDecl(x_1, x_2, x_9, x_10); if (lean_obj_tag(x_11) == 0) @@ -26347,7 +26347,7 @@ x_13 = lean_ctor_get(x_11, 1); lean_inc(x_13); lean_dec(x_11); lean_inc(x_3); -x_14 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_8); +x_14 = l___private_Lean_Elab_Command_2__getState(x_3, x_8); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; @@ -26374,7 +26374,7 @@ x_22 = lean_ctor_get(x_16, 0); lean_dec(x_22); lean_ctor_set(x_16, 1, x_19); lean_ctor_set(x_16, 0, x_18); -x_23 = l___private_Init_Lean_Elab_Command_3__setState(x_16, x_3, x_17); +x_23 = l___private_Lean_Elab_Command_3__setState(x_16, x_3, x_17); if (lean_obj_tag(x_23) == 0) { uint8_t x_24; @@ -26439,7 +26439,7 @@ lean_ctor_set(x_35, 1, x_19); lean_ctor_set(x_35, 2, x_32); lean_ctor_set(x_35, 3, x_33); lean_ctor_set(x_35, 4, x_34); -x_36 = l___private_Init_Lean_Elab_Command_3__setState(x_35, x_3, x_17); +x_36 = l___private_Lean_Elab_Command_3__setState(x_35, x_3, x_17); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; @@ -26527,7 +26527,7 @@ x_50 = lean_ctor_get(x_48, 0); lean_inc(x_50); lean_dec(x_48); lean_inc(x_3); -x_51 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_8); +x_51 = l___private_Lean_Elab_Command_2__getState(x_3, x_8); if (lean_obj_tag(x_51) == 0) { lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; @@ -26554,7 +26554,7 @@ x_59 = lean_ctor_get(x_53, 0); lean_dec(x_59); lean_ctor_set(x_53, 1, x_56); lean_ctor_set(x_53, 0, x_55); -x_60 = l___private_Init_Lean_Elab_Command_3__setState(x_53, x_3, x_54); +x_60 = l___private_Lean_Elab_Command_3__setState(x_53, x_3, x_54); if (lean_obj_tag(x_60) == 0) { uint8_t x_61; @@ -26620,7 +26620,7 @@ lean_ctor_set(x_72, 1, x_56); lean_ctor_set(x_72, 2, x_69); lean_ctor_set(x_72, 3, x_70); lean_ctor_set(x_72, 4, x_71); -x_73 = l___private_Init_Lean_Elab_Command_3__setState(x_72, x_3, x_54); +x_73 = l___private_Lean_Elab_Command_3__setState(x_72, x_3, x_54); if (lean_obj_tag(x_73) == 0) { lean_object* x_74; lean_object* x_75; lean_object* x_76; @@ -26733,33 +26733,33 @@ lean_dec(x_1); return x_5; } } -lean_object* initialize_Init_Lean_Elab_Alias(lean_object*); -lean_object* initialize_Init_Lean_Elab_Log(lean_object*); -lean_object* initialize_Init_Lean_Elab_ResolveName(lean_object*); -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); -lean_object* initialize_Init_Lean_Elab_Binders(lean_object*); -lean_object* initialize_Init_Lean_Elab_SyntheticMVars(lean_object*); +lean_object* initialize_Lean_Elab_Alias(lean_object*); +lean_object* initialize_Lean_Elab_Log(lean_object*); +lean_object* initialize_Lean_Elab_ResolveName(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Elab_Binders(lean_object*); +lean_object* initialize_Lean_Elab_SyntheticMVars(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Command(lean_object* w) { +lean_object* initialize_Lean_Elab_Command(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Alias(lean_io_mk_world()); +res = initialize_Lean_Elab_Alias(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Log(lean_io_mk_world()); +res = initialize_Lean_Elab_Log(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_ResolveName(lean_io_mk_world()); +res = initialize_Lean_Elab_ResolveName(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Binders(lean_io_mk_world()); +res = initialize_Lean_Elab_Binders(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_SyntheticMVars(lean_io_mk_world()); +res = initialize_Lean_Elab_SyntheticMVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_Scope_inhabited___closed__1 = _init_l_Lean_Elab_Command_Scope_inhabited___closed__1(); @@ -26881,18 +26881,18 @@ l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter = _init_l_Lean_Elab_Command_Lean lean_mark_persistent(l_Lean_Elab_Command_Lean_Elab_MonadMacroAdapter); l_Lean_Elab_Command_elabCommand___main___closed__1 = _init_l_Lean_Elab_Command_elabCommand___main___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_elabCommand___main___closed__1); -l___private_Init_Lean_Elab_Command_10__toCommandResult___rarg___closed__1 = _init_l___private_Init_Lean_Elab_Command_10__toCommandResult___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Command_10__toCommandResult___rarg___closed__1); +l___private_Lean_Elab_Command_10__toCommandResult___rarg___closed__1 = _init_l___private_Lean_Elab_Command_10__toCommandResult___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Command_10__toCommandResult___rarg___closed__1); l_Lean_Elab_Command_CommandElabM_inhabited___closed__1 = _init_l_Lean_Elab_Command_CommandElabM_inhabited___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_CommandElabM_inhabited___closed__1); l_Lean_Elab_Command_liftTermElabM___rarg___closed__1 = _init_l_Lean_Elab_Command_liftTermElabM___rarg___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_liftTermElabM___rarg___closed__1); -l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__1 = _init_l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__1); -l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__2 = _init_l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__2); -l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__3 = _init_l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Command_12__addScopes___main___closed__3); +l___private_Lean_Elab_Command_12__addScopes___main___closed__1 = _init_l___private_Lean_Elab_Command_12__addScopes___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Command_12__addScopes___main___closed__1); +l___private_Lean_Elab_Command_12__addScopes___main___closed__2 = _init_l___private_Lean_Elab_Command_12__addScopes___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Command_12__addScopes___main___closed__2); +l___private_Lean_Elab_Command_12__addScopes___main___closed__3 = _init_l___private_Lean_Elab_Command_12__addScopes___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Command_12__addScopes___main___closed__3); l___regBuiltin_Lean_Elab_Command_elabNamespace___closed__1 = _init_l___regBuiltin_Lean_Elab_Command_elabNamespace___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabNamespace___closed__1); res = l___regBuiltin_Lean_Elab_Command_elabNamespace(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Elab/DeclModifiers.c b/stage0/stdlib/Lean/Elab/DeclModifiers.c similarity index 98% rename from stage0/stdlib/Init/Lean/Elab/DeclModifiers.c rename to stage0/stdlib/Lean/Elab/DeclModifiers.c index 0f1348f8b8..27509fe9b8 100644 --- a/stage0/stdlib/Init/Lean/Elab/DeclModifiers.c +++ b/stage0/stdlib/Lean/Elab/DeclModifiers.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.DeclModifiers -// Imports: Init.Lean.Elab.Command +// Module: Lean.Elab.DeclModifiers +// Imports: Lean.Elab.Command #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -35,7 +35,6 @@ lean_object* l_List_append___rarg(lean_object*, lean_object*); lean_object* lean_private_to_user_name(lean_object*); extern lean_object* l_Lean_MessageData_arrayExpr_toMessageData___main___closed__1; lean_object* l_Lean_Elab_Command_Modifiers_hasFormat___closed__1; -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Modifiers_hasFormat___closed__3; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -55,6 +54,7 @@ lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Visibility_hasToString(uint8_t); lean_object* l_Lean_Elab_Command_getCurrNamespace(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Modifiers_hasToString; +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Modifiers_hasToString___lambda__1___boxed(lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); @@ -62,10 +62,10 @@ extern lean_object* l_Lean_Elab_Command_throwAlreadyDeclaredUniverseLevel___rarg lean_object* l_Lean_Elab_Command_elabModifiers___closed__4; lean_object* l_Lean_Elab_Command_Modifiers_hasFormat___closed__9; extern lean_object* l_Lean_Format_join___closed__1; +lean_object* l___private_Lean_Elab_Command_1__ioErrorToMessage(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkNotAlreadyDeclared___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Elab_Command_elabAttrs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Modifiers_hasFormat___closed__13; -lean_object* l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Visibility_hasToString___boxed(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Modifiers_hasToString___lambda__1(lean_object*); @@ -703,7 +703,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint x_17 = l_List_append___rarg(x_16, x_15); x_18 = l_List_append___rarg(x_17, x_9); x_19 = l_Lean_List_format___rarg___closed__4; -x_20 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_18, x_19); +x_20 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_18, x_19); lean_dec(x_18); x_21 = 0; x_22 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__2; @@ -730,7 +730,7 @@ x_29 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__5; x_30 = l_List_append___rarg(x_16, x_29); x_31 = l_List_append___rarg(x_30, x_9); x_32 = l_Lean_List_format___rarg___closed__4; -x_33 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_31, x_32); +x_33 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_31, x_32); lean_dec(x_31); x_34 = 0; x_35 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__2; @@ -763,7 +763,7 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint x_45 = l_List_append___rarg(x_44, x_42); x_46 = l_List_append___rarg(x_45, x_9); x_47 = l_Lean_List_format___rarg___closed__4; -x_48 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_46, x_47); +x_48 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_46, x_47); lean_dec(x_46); x_49 = 0; x_50 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__2; @@ -790,7 +790,7 @@ x_57 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__5; x_58 = l_List_append___rarg(x_44, x_57); x_59 = l_List_append___rarg(x_58, x_9); x_60 = l_Lean_List_format___rarg___closed__4; -x_61 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_59, x_60); +x_61 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_59, x_60); lean_dec(x_59); x_62 = 0; x_63 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__2; @@ -928,7 +928,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint x_17 = l_List_append___rarg(x_16, x_15); x_18 = l_List_append___rarg(x_17, x_9); x_19 = l_Lean_List_format___rarg___closed__4; -x_20 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_18, x_19); +x_20 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_18, x_19); lean_dec(x_18); x_21 = 0; x_22 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__2; @@ -955,7 +955,7 @@ x_29 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__5; x_30 = l_List_append___rarg(x_16, x_29); x_31 = l_List_append___rarg(x_30, x_9); x_32 = l_Lean_List_format___rarg___closed__4; -x_33 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_31, x_32); +x_33 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_31, x_32); lean_dec(x_31); x_34 = 0; x_35 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__2; @@ -988,7 +988,7 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint x_45 = l_List_append___rarg(x_44, x_42); x_46 = l_List_append___rarg(x_45, x_9); x_47 = l_Lean_List_format___rarg___closed__4; -x_48 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_46, x_47); +x_48 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_46, x_47); lean_dec(x_46); x_49 = 0; x_50 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__2; @@ -1015,7 +1015,7 @@ x_57 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__5; x_58 = l_List_append___rarg(x_44, x_57); x_59 = l_List_append___rarg(x_58, x_9); x_60 = l_Lean_List_format___rarg___closed__4; -x_61 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_59, x_60); +x_61 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_59, x_60); lean_dec(x_59); x_62 = 0; x_63 = l_Lean_Elab_Command_Modifiers_hasFormat___closed__2; @@ -2741,7 +2741,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; lean_object* x_52; x_50 = lean_ctor_get(x_39, 0); -x_51 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_6, x_1, x_50); +x_51 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_6, x_1, x_50); x_52 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_39, 0, x_52); @@ -2755,7 +2755,7 @@ x_54 = lean_ctor_get(x_39, 1); lean_inc(x_54); lean_inc(x_53); lean_dec(x_39); -x_55 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_6, x_1, x_53); +x_55 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_6, x_1, x_53); x_56 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_56, 0, x_55); x_57 = lean_alloc_ctor(1, 2, 0); @@ -2857,13 +2857,13 @@ lean_dec(x_1); return x_8; } } -lean_object* initialize_Init_Lean_Elab_Command(lean_object*); +lean_object* initialize_Lean_Elab_Command(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_DeclModifiers(lean_object* w) { +lean_object* initialize_Lean_Elab_DeclModifiers(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Command(lean_io_mk_world()); +res = initialize_Lean_Elab_Command(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_Attribute_hasFormat___closed__1 = _init_l_Lean_Elab_Command_Attribute_hasFormat___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Declaration.c b/stage0/stdlib/Lean/Elab/Declaration.c similarity index 96% rename from stage0/stdlib/Init/Lean/Elab/Declaration.c rename to stage0/stdlib/Lean/Elab/Declaration.c index 0bc30c72a9..37e3b83a18 100644 --- a/stage0/stdlib/Init/Lean/Elab/Declaration.c +++ b/stage0/stdlib/Lean/Elab/Declaration.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Declaration -// Imports: Init.Lean.Util.CollectLevelParams Init.Lean.Elab.Definition +// Module: Lean.Elab.Declaration +// Imports: Lean.Util.CollectLevelParams Lean.Elab.Definition #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -35,17 +35,19 @@ lean_object* l_Lean_Elab_Command_elabExample___closed__1; lean_object* l_Lean_Elab_Command_elabConstant___closed__1; extern lean_object* l_Array_empty___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_elabAxiom___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_6__mkTermContext(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandDeclSig(lean_object*); lean_object* l_Lean_Elab_Command_elabExample___closed__2; extern lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__2; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclaration(lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_9__getVarDecls(lean_object*); +lean_object* l___private_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Term_mkForallUsedOnly(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); extern lean_object* l_Lean_Parser_Command_example___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabAxiom___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_getNumParts___main(lean_object*); @@ -53,7 +55,7 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclaration___closed__1; lean_object* l_Lean_Elab_Command_elabInductive___rarg(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3; extern lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__2; extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; lean_object* l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -78,10 +80,10 @@ lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_Lean_Elab_Command_elabClassInductive(lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabAxiom___spec__4(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; extern lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Command_6__mkTermContext(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabAxiom___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabTheorem(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_modifyScope___closed__1; @@ -90,14 +92,16 @@ extern lean_object* l_Lean_Elab_Command_withDeclId___closed__3; lean_object* l_Lean_Elab_Command_elabAxiom___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_sortDeclLevelParams(lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_2__getState(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabClassInductive___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkReducibilityAttrs___closed__4; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_2__getState(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; lean_object* l_List_drop___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabAbbrev___closed__3; lean_object* l_Lean_Elab_Command_elabStructure___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabInstance(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_7__mkTermState(lean_object*); extern lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_getCurrMacroScope(lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; @@ -107,9 +111,7 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l_Lean_MacroScopesView_review(lean_object*); lean_object* l_Lean_Elab_Command_elabInductive___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabAbbrev___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; lean_object* l_Lean_Elab_Command_elabStructure(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Modifiers_addAttribute(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*); @@ -118,6 +120,7 @@ extern lean_object* l_Lean_mkAppStx___closed__9; lean_object* l_Lean_Elab_Command_elabConstant___closed__6; extern lean_object* l_Lean_Elab_Command_mkDef___lambda__1___closed__5; extern lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Command_9__getVarDecls(lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Array_forMAux___main___at_Lean_Elab_Command_applyAttributes___spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__1; @@ -131,7 +134,6 @@ lean_object* l_Lean_Elab_Term_elabBinders___rarg(lean_object*, lean_object*, lea lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabDeclaration___closed__2; lean_object* l_Lean_Elab_Command_elabAxiom___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_Elab_Command_elabConstant___closed__5; lean_object* l_Lean_Elab_Command_elabInductive(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabDeclaration___closed__1; @@ -139,16 +141,14 @@ lean_object* l_Lean_Elab_Command_elabDeclaration___closed__3; lean_object* l_Lean_Elab_Command_elabConstant___closed__3; lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabAxiom___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabAbbrev___closed__1; -lean_object* l___private_Init_Lean_Elab_Command_7__mkTermState(lean_object*); +lean_object* l___private_Lean_Elab_Command_12__addScopes___main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabAbbrev___closed__4; lean_object* l_Lean_CollectLevelParams_main___main(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_liftTermElabM___rarg___closed__1; lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabAxiom___spec__1(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3; extern lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabClassInductive___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_expandOptDeclSig(lean_object* x_1) { @@ -471,20 +471,20 @@ lean_ctor_set(x_24, 2, x_20); lean_ctor_set(x_24, 3, x_23); x_25 = l_Array_empty___closed__1; x_26 = lean_array_push(x_25, x_24); -x_27 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_27 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_28 = lean_array_push(x_26, x_27); x_29 = l_Lean_mkTermIdFromIdent___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); x_31 = lean_array_push(x_25, x_30); -x_32 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; +x_32 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; x_33 = lean_array_push(x_31, x_32); x_34 = l_Lean_mkAppStx___closed__8; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3; +x_36 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3; x_37 = l_Lean_mkAtomFrom(x_2, x_36); x_38 = l_Lean_mkAppStx___closed__9; x_39 = lean_array_push(x_38, x_37); @@ -784,7 +784,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -808,7 +808,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -878,7 +878,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -955,7 +955,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -1030,7 +1030,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -1127,7 +1127,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -1249,7 +1249,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -1331,7 +1331,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -1355,7 +1355,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -1425,7 +1425,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -1502,7 +1502,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -1577,7 +1577,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -1674,7 +1674,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -1796,7 +1796,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -1878,7 +1878,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -1902,7 +1902,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -1972,7 +1972,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -2049,7 +2049,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -2124,7 +2124,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -2221,7 +2221,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -2343,7 +2343,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -2425,7 +2425,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -2449,7 +2449,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -2519,7 +2519,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -2596,7 +2596,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -2671,7 +2671,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -2768,7 +2768,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -2890,7 +2890,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -3051,7 +3051,7 @@ lean_dec(x_9); x_12 = 0; x_13 = lean_box(0); lean_inc(x_7); -x_14 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_12, x_13, x_7, x_11); +x_14 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_12, x_13, x_7, x_11); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; @@ -3401,7 +3401,7 @@ x_41 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_42 = 1; lean_inc(x_3); lean_inc(x_24); -x_43 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_6, x_41, x_42, x_24, x_3, x_19); +x_43 = l___private_Lean_Elab_Command_12__addScopes___main(x_6, x_41, x_42, x_24, x_3, x_19); lean_dec(x_6); if (lean_obj_tag(x_43) == 0) { @@ -3461,7 +3461,7 @@ lean_closure_set(x_127, 2, x_124); lean_closure_set(x_127, 3, x_48); lean_closure_set(x_127, 4, x_1); lean_inc(x_3); -x_128 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_125); +x_128 = l___private_Lean_Elab_Command_2__getState(x_3, x_125); if (lean_obj_tag(x_128) == 0) { lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; @@ -3470,10 +3470,10 @@ lean_inc(x_129); x_130 = lean_ctor_get(x_128, 1); lean_inc(x_130); lean_dec(x_128); -x_131 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_129); +x_131 = l___private_Lean_Elab_Command_9__getVarDecls(x_129); lean_dec(x_129); lean_inc(x_3); -x_132 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_130); +x_132 = l___private_Lean_Elab_Command_2__getState(x_3, x_130); if (lean_obj_tag(x_132) == 0) { lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; @@ -3482,8 +3482,8 @@ lean_inc(x_133); x_134 = lean_ctor_get(x_132, 1); lean_inc(x_134); lean_dec(x_132); -x_135 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_3, x_133, x_126); -x_136 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_133); +x_135 = l___private_Lean_Elab_Command_6__mkTermContext(x_3, x_133, x_126); +x_136 = l___private_Lean_Elab_Command_7__mkTermState(x_133); lean_dec(x_133); x_137 = l_Lean_Elab_Term_elabBinders___rarg(x_131, x_127, x_135, x_136); lean_dec(x_131); @@ -3496,7 +3496,7 @@ x_139 = lean_ctor_get(x_137, 1); lean_inc(x_139); lean_dec(x_137); lean_inc(x_3); -x_140 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_134); +x_140 = l___private_Lean_Elab_Command_2__getState(x_3, x_134); 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; @@ -3524,7 +3524,7 @@ lean_dec(x_148); lean_ctor_set(x_142, 1, x_145); lean_ctor_set(x_142, 0, x_144); lean_inc(x_3); -x_149 = l___private_Init_Lean_Elab_Command_3__setState(x_142, x_3, x_143); +x_149 = l___private_Lean_Elab_Command_3__setState(x_142, x_3, x_143); if (lean_obj_tag(x_149) == 0) { lean_object* x_150; @@ -3569,7 +3569,7 @@ lean_ctor_set(x_156, 2, x_153); lean_ctor_set(x_156, 3, x_154); lean_ctor_set(x_156, 4, x_155); lean_inc(x_3); -x_157 = l___private_Init_Lean_Elab_Command_3__setState(x_156, x_3, x_143); +x_157 = l___private_Lean_Elab_Command_3__setState(x_156, x_3, x_143); if (lean_obj_tag(x_157) == 0) { lean_object* x_158; @@ -3634,7 +3634,7 @@ x_165 = lean_ctor_get(x_163, 0); lean_inc(x_165); lean_dec(x_163); lean_inc(x_3); -x_166 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_134); +x_166 = l___private_Lean_Elab_Command_2__getState(x_3, x_134); if (lean_obj_tag(x_166) == 0) { lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; uint8_t x_172; @@ -3662,7 +3662,7 @@ lean_dec(x_174); lean_ctor_set(x_168, 1, x_171); lean_ctor_set(x_168, 0, x_170); lean_inc(x_3); -x_175 = l___private_Init_Lean_Elab_Command_3__setState(x_168, x_3, x_169); +x_175 = l___private_Lean_Elab_Command_3__setState(x_168, x_3, x_169); if (lean_obj_tag(x_175) == 0) { lean_object* x_176; @@ -3704,7 +3704,7 @@ lean_ctor_set(x_182, 2, x_179); lean_ctor_set(x_182, 3, x_180); lean_ctor_set(x_182, 4, x_181); lean_inc(x_3); -x_183 = l___private_Init_Lean_Elab_Command_3__setState(x_182, x_3, x_169); +x_183 = l___private_Lean_Elab_Command_3__setState(x_182, x_3, x_169); if (lean_obj_tag(x_183) == 0) { lean_object* x_184; @@ -3903,7 +3903,7 @@ x_64 = lean_ctor_get(x_63, 1); lean_inc(x_64); lean_dec(x_63); lean_inc(x_3); -x_65 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_64); +x_65 = l___private_Lean_Elab_Command_2__getState(x_3, x_64); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; uint8_t x_68; @@ -3922,7 +3922,7 @@ lean_dec(x_24); x_71 = l_List_drop___main___rarg(x_70, x_69); lean_dec(x_69); lean_ctor_set(x_66, 2, x_71); -x_72 = l___private_Init_Lean_Elab_Command_3__setState(x_66, x_3, x_67); +x_72 = l___private_Lean_Elab_Command_3__setState(x_66, x_3, x_67); if (lean_obj_tag(x_72) == 0) { uint8_t x_73; @@ -3995,7 +3995,7 @@ lean_ctor_set(x_88, 1, x_82); lean_ctor_set(x_88, 2, x_87); lean_ctor_set(x_88, 3, x_84); lean_ctor_set(x_88, 4, x_85); -x_89 = l___private_Init_Lean_Elab_Command_3__setState(x_88, x_3, x_67); +x_89 = l___private_Lean_Elab_Command_3__setState(x_88, x_3, x_67); if (lean_obj_tag(x_89) == 0) { lean_object* x_90; lean_object* x_91; lean_object* x_92; @@ -4337,7 +4337,7 @@ x_234 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_235 = 1; lean_inc(x_3); lean_inc(x_217); -x_236 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_6, x_234, x_235, x_217, x_3, x_19); +x_236 = l___private_Lean_Elab_Command_12__addScopes___main(x_6, x_234, x_235, x_217, x_3, x_19); lean_dec(x_6); if (lean_obj_tag(x_236) == 0) { @@ -4397,7 +4397,7 @@ lean_closure_set(x_307, 2, x_304); lean_closure_set(x_307, 3, x_241); lean_closure_set(x_307, 4, x_1); lean_inc(x_3); -x_308 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_305); +x_308 = l___private_Lean_Elab_Command_2__getState(x_3, x_305); if (lean_obj_tag(x_308) == 0) { lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; @@ -4406,10 +4406,10 @@ lean_inc(x_309); x_310 = lean_ctor_get(x_308, 1); lean_inc(x_310); lean_dec(x_308); -x_311 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_309); +x_311 = l___private_Lean_Elab_Command_9__getVarDecls(x_309); lean_dec(x_309); lean_inc(x_3); -x_312 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_310); +x_312 = l___private_Lean_Elab_Command_2__getState(x_3, x_310); if (lean_obj_tag(x_312) == 0) { lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; @@ -4418,8 +4418,8 @@ lean_inc(x_313); x_314 = lean_ctor_get(x_312, 1); lean_inc(x_314); lean_dec(x_312); -x_315 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_3, x_313, x_306); -x_316 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_313); +x_315 = l___private_Lean_Elab_Command_6__mkTermContext(x_3, x_313, x_306); +x_316 = l___private_Lean_Elab_Command_7__mkTermState(x_313); lean_dec(x_313); x_317 = l_Lean_Elab_Term_elabBinders___rarg(x_311, x_307, x_315, x_316); lean_dec(x_311); @@ -4432,7 +4432,7 @@ x_319 = lean_ctor_get(x_317, 1); lean_inc(x_319); lean_dec(x_317); lean_inc(x_3); -x_320 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_314); +x_320 = l___private_Lean_Elab_Command_2__getState(x_3, x_314); if (lean_obj_tag(x_320) == 0) { lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; @@ -4477,7 +4477,7 @@ lean_ctor_set(x_330, 2, x_326); lean_ctor_set(x_330, 3, x_327); lean_ctor_set(x_330, 4, x_328); lean_inc(x_3); -x_331 = l___private_Init_Lean_Elab_Command_3__setState(x_330, x_3, x_323); +x_331 = l___private_Lean_Elab_Command_3__setState(x_330, x_3, x_323); if (lean_obj_tag(x_331) == 0) { lean_object* x_332; @@ -4541,7 +4541,7 @@ x_339 = lean_ctor_get(x_337, 0); lean_inc(x_339); lean_dec(x_337); lean_inc(x_3); -x_340 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_314); +x_340 = l___private_Lean_Elab_Command_2__getState(x_3, x_314); if (lean_obj_tag(x_340) == 0) { 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; @@ -4586,7 +4586,7 @@ lean_ctor_set(x_350, 2, x_346); lean_ctor_set(x_350, 3, x_347); lean_ctor_set(x_350, 4, x_348); lean_inc(x_3); -x_351 = l___private_Init_Lean_Elab_Command_3__setState(x_350, x_3, x_343); +x_351 = l___private_Lean_Elab_Command_3__setState(x_350, x_3, x_343); if (lean_obj_tag(x_351) == 0) { lean_object* x_352; @@ -4784,7 +4784,7 @@ x_257 = lean_ctor_get(x_256, 1); lean_inc(x_257); lean_dec(x_256); lean_inc(x_3); -x_258 = l___private_Init_Lean_Elab_Command_2__getState(x_3, x_257); +x_258 = l___private_Lean_Elab_Command_2__getState(x_3, x_257); if (lean_obj_tag(x_258) == 0) { 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; @@ -4828,7 +4828,7 @@ lean_ctor_set(x_269, 1, x_262); lean_ctor_set(x_269, 2, x_268); lean_ctor_set(x_269, 3, x_264); lean_ctor_set(x_269, 4, x_265); -x_270 = l___private_Init_Lean_Elab_Command_3__setState(x_269, x_3, x_260); +x_270 = l___private_Lean_Elab_Command_3__setState(x_269, x_3, x_260); if (lean_obj_tag(x_270) == 0) { lean_object* x_271; lean_object* x_272; lean_object* x_273; @@ -5750,17 +5750,17 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* initialize_Init_Lean_Util_CollectLevelParams(lean_object*); -lean_object* initialize_Init_Lean_Elab_Definition(lean_object*); +lean_object* initialize_Lean_Util_CollectLevelParams(lean_object*); +lean_object* initialize_Lean_Elab_Definition(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Declaration(lean_object* w) { +lean_object* initialize_Lean_Elab_Declaration(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Util_CollectLevelParams(lean_io_mk_world()); +res = initialize_Lean_Util_CollectLevelParams(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Definition(lean_io_mk_world()); +res = initialize_Lean_Elab_Definition(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_elabAbbrev___closed__1 = _init_l_Lean_Elab_Command_elabAbbrev___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Definition.c b/stage0/stdlib/Lean/Elab/Definition.c similarity index 96% rename from stage0/stdlib/Init/Lean/Elab/Definition.c rename to stage0/stdlib/Lean/Elab/Definition.c index 93d7625200..eaeb7d816c 100644 --- a/stage0/stdlib/Init/Lean/Elab/Definition.c +++ b/stage0/stdlib/Lean/Elab/Definition.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Definition -// Imports: Init.ShareCommon Init.Lean.Util.CollectLevelParams Init.Lean.Util.FoldConsts Init.Lean.Util.CollectFVars Init.Lean.Elab.DeclModifiers Init.Lean.Elab.Binders +// Module: Lean.Elab.Definition +// Imports: Init.ShareCommon Lean.Util.CollectLevelParams Lean.Util.FoldConsts Lean.Util.CollectFVars Lean.Elab.DeclModifiers Lean.Elab.Binders #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,11 +18,11 @@ lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); lean_object* l_Lean_Elab_Term_mkForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_extractMacroScopes(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; lean_object* l_Lean_Elab_Command_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); lean_object* l_Lean_Elab_Command_withUsedWhen_x27___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; extern lean_object* l_Lean_MessageData_ofList___closed__3; lean_object* l_Lean_Elab_Term_inferType(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_collectUsedFVarsAtFVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -35,11 +35,13 @@ uint8_t l_List_elem___main___at_Lean_NameHashSet_insert___spec__2(lean_object*, lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Command_removeUnused___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_erase(lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; +extern lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_6__mkTermContext(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabDefVal___closed__2; lean_object* l_Lean_Elab_Command_compileDecl(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_reverseAux___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_9__getVarDecls(lean_object*); +lean_object* l___private_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkLambda(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*); @@ -47,13 +49,13 @@ extern lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_DefKind_isDefOrAbbrevOrOpaque___boxed(lean_object*); lean_object* l_Lean_Elab_Command_elabDefVal___closed__1; lean_object* l_Lean_Elab_Command_elabDefVal(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_collectUsedFVarsAtFVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Command_DefKind_isExample(uint8_t); lean_object* l_Lean_Name_getNumParts___main(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshTypeMVar(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); uint32_t l_UInt32_add(uint32_t, uint32_t); lean_object* l_Lean_Elab_Term_getOptions(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Command_removeUnused___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -73,7 +75,6 @@ lean_object* l_Lean_Elab_Command_DefKind_isTheorem___boxed(lean_object*); lean_object* l_Lean_Elab_Command_expandDeclId(lean_object*); uint8_t l_Lean_Elab_Command_DefKind_isDefOrAbbrevOrOpaque(uint8_t); extern lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__2; -extern lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* l_Lean_Elab_Command_mkDef___lambda__1___closed__2; lean_object* l_Lean_Elab_Command_mkDef___lambda__1___closed__1; @@ -87,16 +88,15 @@ lean_object* l_Lean_Elab_Command_withUsedWhen(lean_object*); lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabTypeStx___rarg___closed__1; lean_object* l_Lean_Elab_Command_collectUsedFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Definition_1__regTraceClasses(lean_object*); lean_object* l_Lean_Elab_Command_withUsedWhen___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_iterateMAux___main___at_Lean_ppGoal___spec__6___closed__6; -lean_object* l___private_Init_Lean_Elab_Command_6__mkTermContext(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalInstances_erase(lean_object*, lean_object*); lean_object* l_Lean_CollectFVars_main___main(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withUsedWhen_x27(lean_object*); lean_object* l_Lean_getMaxHeight(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Term_getLocalInsts(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_modifyScope___closed__1; lean_object* l_Lean_Elab_Command_elabDefLike___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -106,21 +106,23 @@ extern lean_object* l_Lean_NameSet_empty; lean_object* l_Lean_Elab_Command_sortDeclLevelParams(lean_object*, lean_object*); extern lean_object* l_HashSet_Inhabited___closed__1; lean_object* l_Lean_Elab_Command_elabDefVal___closed__3; +lean_object* l___private_Lean_Elab_Command_2__getState(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabDefLike___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabDefLike___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_2__getState(lean_object*, lean_object*); lean_object* l_List_drop___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withUsedWhen___rarg___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_getLCtx(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_removeUnused___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Command_7__mkTermState(lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l_Lean_MacroScopesView_review(lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_12__addScopes___main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Definition_1__regTraceClasses(lean_object*); lean_object* l_Lean_Elab_Command_mkDef___lambda__1___closed__3; lean_object* l_Lean_Elab_Command_mkDef___lambda__1___closed__6; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkDef___lambda__1___closed__5; +lean_object* l___private_Lean_Elab_Command_9__getVarDecls(lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Elab_Command_mkDef(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_Lean_Elab_Command_applyAttributes___spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -134,16 +136,14 @@ lean_object* l_Lean_Elab_Command_removeUnused___closed__1; uint8_t l_Lean_NameSet_contains(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_ShareCommon_State_empty; -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* lean_state_sharecommon(lean_object*, lean_object*); lean_object* lean_task_pure(lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_7__mkTermState(lean_object*); +lean_object* l___private_Lean_Elab_Command_12__addScopes___main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_CollectLevelParams_main___main(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_liftTermElabM___rarg___closed__1; lean_object* l_Lean_Elab_Command_DefKind_isExample___boxed(lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabDefLike___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkDef___lambda__1(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* l___private_Init_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); uint8_t l_Lean_Elab_Command_DefKind_isTheorem(uint8_t x_1) { _start: @@ -1360,7 +1360,7 @@ lean_object* _init_l_Lean_Elab_Command_mkDef___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Elab_Command_mkDef___lambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1528,7 +1528,7 @@ lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_inc(x_8); x_108 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_108, 0, x_8); -x_109 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_109 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_110 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_110, 0, x_108); lean_ctor_set(x_110, 1, x_109); @@ -1670,7 +1670,7 @@ lean_dec(x_43); lean_dec(x_40); lean_dec(x_37); lean_dec(x_8); -x_84 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; +x_84 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; x_85 = l_unreachable_x21___rarg(x_84); x_86 = lean_apply_2(x_85, x_11, x_49); return x_86; @@ -1862,7 +1862,7 @@ lean_ctor_set(x_12, 0, x_6); x_13 = 1; x_14 = lean_box(0); lean_inc(x_8); -x_15 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_13, x_14, x_8, x_9); +x_15 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_13, x_14, x_8, x_9); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; @@ -1882,7 +1882,7 @@ lean_inc(x_19); lean_dec(x_17); x_20 = 0; lean_inc(x_8); -x_21 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_20, x_14, x_8, x_19); +x_21 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_20, x_14, x_8, x_19); if (lean_obj_tag(x_21) == 0) { lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; @@ -2197,7 +2197,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -2221,7 +2221,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -2291,7 +2291,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -2368,7 +2368,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -2443,7 +2443,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -2540,7 +2540,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -2662,7 +2662,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -2744,7 +2744,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -2768,7 +2768,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -2838,7 +2838,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -2915,7 +2915,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -2990,7 +2990,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -3087,7 +3087,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -3209,7 +3209,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -3291,7 +3291,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -3315,7 +3315,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -3385,7 +3385,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -3462,7 +3462,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -3537,7 +3537,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -3634,7 +3634,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -3756,7 +3756,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -3838,7 +3838,7 @@ _start: { lean_object* x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_3); +x_4 = l___private_Lean_Elab_Command_2__getState(x_2, x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; @@ -3862,7 +3862,7 @@ lean_dec(x_9); x_10 = l_Lean_Elab_Command_modifyScope___closed__1; x_11 = l_unreachable_x21___rarg(x_10); lean_ctor_set(x_5, 2, x_11); -x_12 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_7); +x_12 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_7); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -3932,7 +3932,7 @@ lean_ctor_set(x_29, 1, x_24); lean_ctor_set(x_29, 2, x_28); lean_ctor_set(x_29, 3, x_25); lean_ctor_set(x_29, 4, x_26); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_29, x_2, x_7); +x_30 = l___private_Lean_Elab_Command_3__setState(x_29, x_2, x_7); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -4009,7 +4009,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_39, 5); lean_dec(x_46); lean_ctor_set(x_39, 5, x_1); -x_47 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_47 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -4084,7 +4084,7 @@ lean_ctor_set(x_64, 4, x_62); lean_ctor_set(x_64, 5, x_1); lean_ctor_set(x_64, 6, x_63); lean_ctor_set(x_6, 0, x_64); -x_65 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_65 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -4181,7 +4181,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_74); lean_ctor_set(x_5, 2, x_83); -x_84 = l___private_Init_Lean_Elab_Command_3__setState(x_5, x_2, x_40); +x_84 = l___private_Lean_Elab_Command_3__setState(x_5, x_2, x_40); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -4303,7 +4303,7 @@ lean_ctor_set(x_108, 1, x_94); lean_ctor_set(x_108, 2, x_107); lean_ctor_set(x_108, 3, x_95); lean_ctor_set(x_108, 4, x_96); -x_109 = l___private_Init_Lean_Elab_Command_3__setState(x_108, x_2, x_40); +x_109 = l___private_Lean_Elab_Command_3__setState(x_108, x_2, x_40); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -4581,7 +4581,7 @@ lean_dec(x_26); x_29 = 0; x_30 = lean_box(0); lean_inc(x_8); -x_31 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_29, x_30, x_8, x_28); +x_31 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_29, x_30, x_8, x_28); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; @@ -4811,7 +4811,7 @@ x_87 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_88 = 1; lean_inc(x_2); lean_inc(x_18); -x_89 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_5, x_87, x_88, x_18, x_2, x_13); +x_89 = l___private_Lean_Elab_Command_12__addScopes___main(x_5, x_87, x_88, x_18, x_2, x_13); lean_dec(x_5); if (lean_obj_tag(x_89) == 0) { @@ -4883,7 +4883,7 @@ lean_closure_set(x_133, 1, x_95); lean_closure_set(x_133, 2, x_130); lean_closure_set(x_133, 3, x_4); lean_inc(x_2); -x_134 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_131); +x_134 = l___private_Lean_Elab_Command_2__getState(x_2, x_131); if (lean_obj_tag(x_134) == 0) { lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; @@ -4892,10 +4892,10 @@ lean_inc(x_135); x_136 = lean_ctor_get(x_134, 1); lean_inc(x_136); lean_dec(x_134); -x_137 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_135); +x_137 = l___private_Lean_Elab_Command_9__getVarDecls(x_135); lean_dec(x_135); lean_inc(x_2); -x_138 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_136); +x_138 = l___private_Lean_Elab_Command_2__getState(x_2, x_136); if (lean_obj_tag(x_138) == 0) { lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; @@ -4904,8 +4904,8 @@ lean_inc(x_139); x_140 = lean_ctor_get(x_138, 1); lean_inc(x_140); lean_dec(x_138); -x_141 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_2, x_139, x_132); -x_142 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_139); +x_141 = l___private_Lean_Elab_Command_6__mkTermContext(x_2, x_139, x_132); +x_142 = l___private_Lean_Elab_Command_7__mkTermState(x_139); lean_dec(x_139); x_143 = l_Lean_Elab_Term_elabBinders___rarg(x_137, x_133, x_141, x_142); lean_dec(x_137); @@ -4918,7 +4918,7 @@ x_145 = lean_ctor_get(x_143, 1); lean_inc(x_145); lean_dec(x_143); lean_inc(x_2); -x_146 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_140); +x_146 = l___private_Lean_Elab_Command_2__getState(x_2, x_140); if (lean_obj_tag(x_146) == 0) { lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; uint8_t x_152; @@ -4946,7 +4946,7 @@ lean_dec(x_154); lean_ctor_set(x_148, 1, x_151); lean_ctor_set(x_148, 0, x_150); lean_inc(x_2); -x_155 = l___private_Init_Lean_Elab_Command_3__setState(x_148, x_2, x_149); +x_155 = l___private_Lean_Elab_Command_3__setState(x_148, x_2, x_149); if (lean_obj_tag(x_155) == 0) { lean_object* x_156; @@ -4992,7 +4992,7 @@ lean_ctor_set(x_162, 2, x_159); lean_ctor_set(x_162, 3, x_160); lean_ctor_set(x_162, 4, x_161); lean_inc(x_2); -x_163 = l___private_Init_Lean_Elab_Command_3__setState(x_162, x_2, x_149); +x_163 = l___private_Lean_Elab_Command_3__setState(x_162, x_2, x_149); if (lean_obj_tag(x_163) == 0) { lean_object* x_164; @@ -5060,7 +5060,7 @@ x_171 = lean_ctor_get(x_169, 0); lean_inc(x_171); lean_dec(x_169); lean_inc(x_2); -x_172 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_140); +x_172 = l___private_Lean_Elab_Command_2__getState(x_2, x_140); if (lean_obj_tag(x_172) == 0) { lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; uint8_t x_178; @@ -5088,7 +5088,7 @@ lean_dec(x_180); lean_ctor_set(x_174, 1, x_177); lean_ctor_set(x_174, 0, x_176); lean_inc(x_2); -x_181 = l___private_Init_Lean_Elab_Command_3__setState(x_174, x_2, x_175); +x_181 = l___private_Lean_Elab_Command_3__setState(x_174, x_2, x_175); if (lean_obj_tag(x_181) == 0) { lean_object* x_182; @@ -5130,7 +5130,7 @@ lean_ctor_set(x_188, 2, x_185); lean_ctor_set(x_188, 3, x_186); lean_ctor_set(x_188, 4, x_187); lean_inc(x_2); -x_189 = l___private_Init_Lean_Elab_Command_3__setState(x_188, x_2, x_175); +x_189 = l___private_Lean_Elab_Command_3__setState(x_188, x_2, x_175); if (lean_obj_tag(x_189) == 0) { lean_object* x_190; @@ -5524,7 +5524,7 @@ x_26 = lean_ctor_get(x_25, 1); lean_inc(x_26); lean_dec(x_25); lean_inc(x_2); -x_27 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_26); +x_27 = l___private_Lean_Elab_Command_2__getState(x_2, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; uint8_t x_30; @@ -5543,7 +5543,7 @@ lean_dec(x_18); x_33 = l_List_drop___main___rarg(x_32, x_31); lean_dec(x_31); lean_ctor_set(x_28, 2, x_33); -x_34 = l___private_Init_Lean_Elab_Command_3__setState(x_28, x_2, x_29); +x_34 = l___private_Lean_Elab_Command_3__setState(x_28, x_2, x_29); if (lean_obj_tag(x_34) == 0) { uint8_t x_35; @@ -5616,7 +5616,7 @@ lean_ctor_set(x_50, 1, x_44); lean_ctor_set(x_50, 2, x_49); lean_ctor_set(x_50, 3, x_46); lean_ctor_set(x_50, 4, x_47); -x_51 = l___private_Init_Lean_Elab_Command_3__setState(x_50, x_2, x_29); +x_51 = l___private_Lean_Elab_Command_3__setState(x_50, x_2, x_29); if (lean_obj_tag(x_51) == 0) { lean_object* x_52; lean_object* x_53; lean_object* x_54; @@ -5834,7 +5834,7 @@ x_281 = l_Lean_Parser_Command_namespace___elambda__1___closed__1; x_282 = 1; lean_inc(x_2); lean_inc(x_225); -x_283 = l___private_Init_Lean_Elab_Command_12__addScopes___main(x_5, x_281, x_282, x_225, x_2, x_13); +x_283 = l___private_Lean_Elab_Command_12__addScopes___main(x_5, x_281, x_282, x_225, x_2, x_13); lean_dec(x_5); if (lean_obj_tag(x_283) == 0) { @@ -5906,7 +5906,7 @@ lean_closure_set(x_327, 1, x_289); lean_closure_set(x_327, 2, x_324); lean_closure_set(x_327, 3, x_4); lean_inc(x_2); -x_328 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_325); +x_328 = l___private_Lean_Elab_Command_2__getState(x_2, x_325); if (lean_obj_tag(x_328) == 0) { lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; @@ -5915,10 +5915,10 @@ lean_inc(x_329); x_330 = lean_ctor_get(x_328, 1); lean_inc(x_330); lean_dec(x_328); -x_331 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_329); +x_331 = l___private_Lean_Elab_Command_9__getVarDecls(x_329); lean_dec(x_329); lean_inc(x_2); -x_332 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_330); +x_332 = l___private_Lean_Elab_Command_2__getState(x_2, x_330); if (lean_obj_tag(x_332) == 0) { lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; @@ -5927,8 +5927,8 @@ lean_inc(x_333); x_334 = lean_ctor_get(x_332, 1); lean_inc(x_334); lean_dec(x_332); -x_335 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_2, x_333, x_326); -x_336 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_333); +x_335 = l___private_Lean_Elab_Command_6__mkTermContext(x_2, x_333, x_326); +x_336 = l___private_Lean_Elab_Command_7__mkTermState(x_333); lean_dec(x_333); x_337 = l_Lean_Elab_Term_elabBinders___rarg(x_331, x_327, x_335, x_336); lean_dec(x_331); @@ -5941,7 +5941,7 @@ x_339 = lean_ctor_get(x_337, 1); lean_inc(x_339); lean_dec(x_337); lean_inc(x_2); -x_340 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_334); +x_340 = l___private_Lean_Elab_Command_2__getState(x_2, x_334); if (lean_obj_tag(x_340) == 0) { 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; @@ -5986,7 +5986,7 @@ lean_ctor_set(x_350, 2, x_346); lean_ctor_set(x_350, 3, x_347); lean_ctor_set(x_350, 4, x_348); lean_inc(x_2); -x_351 = l___private_Init_Lean_Elab_Command_3__setState(x_350, x_2, x_343); +x_351 = l___private_Lean_Elab_Command_3__setState(x_350, x_2, x_343); if (lean_obj_tag(x_351) == 0) { lean_object* x_352; @@ -6053,7 +6053,7 @@ x_359 = lean_ctor_get(x_357, 0); lean_inc(x_359); lean_dec(x_357); lean_inc(x_2); -x_360 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_334); +x_360 = l___private_Lean_Elab_Command_2__getState(x_2, x_334); if (lean_obj_tag(x_360) == 0) { lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; @@ -6098,7 +6098,7 @@ lean_ctor_set(x_370, 2, x_366); lean_ctor_set(x_370, 3, x_367); lean_ctor_set(x_370, 4, x_368); lean_inc(x_2); -x_371 = l___private_Init_Lean_Elab_Command_3__setState(x_370, x_2, x_363); +x_371 = l___private_Lean_Elab_Command_3__setState(x_370, x_2, x_363); if (lean_obj_tag(x_371) == 0) { lean_object* x_372; @@ -6495,7 +6495,7 @@ x_234 = lean_ctor_get(x_233, 1); lean_inc(x_234); lean_dec(x_233); lean_inc(x_2); -x_235 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_234); +x_235 = l___private_Lean_Elab_Command_2__getState(x_2, x_234); if (lean_obj_tag(x_235) == 0) { 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; @@ -6539,7 +6539,7 @@ lean_ctor_set(x_246, 1, x_239); lean_ctor_set(x_246, 2, x_245); lean_ctor_set(x_246, 3, x_241); lean_ctor_set(x_246, 4, x_242); -x_247 = l___private_Init_Lean_Elab_Command_3__setState(x_246, x_2, x_237); +x_247 = l___private_Lean_Elab_Command_3__setState(x_246, x_2, x_237); if (lean_obj_tag(x_247) == 0) { lean_object* x_248; lean_object* x_249; lean_object* x_250; @@ -6798,7 +6798,7 @@ lean_dec(x_2); return x_10; } } -lean_object* l___private_Init_Lean_Elab_Definition_1__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Definition_1__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -6855,32 +6855,32 @@ return x_13; } } lean_object* initialize_Init_ShareCommon(lean_object*); -lean_object* initialize_Init_Lean_Util_CollectLevelParams(lean_object*); -lean_object* initialize_Init_Lean_Util_FoldConsts(lean_object*); -lean_object* initialize_Init_Lean_Util_CollectFVars(lean_object*); -lean_object* initialize_Init_Lean_Elab_DeclModifiers(lean_object*); -lean_object* initialize_Init_Lean_Elab_Binders(lean_object*); +lean_object* initialize_Lean_Util_CollectLevelParams(lean_object*); +lean_object* initialize_Lean_Util_FoldConsts(lean_object*); +lean_object* initialize_Lean_Util_CollectFVars(lean_object*); +lean_object* initialize_Lean_Elab_DeclModifiers(lean_object*); +lean_object* initialize_Lean_Elab_Binders(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Definition(lean_object* w) { +lean_object* initialize_Lean_Elab_Definition(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_ShareCommon(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_CollectLevelParams(lean_io_mk_world()); +res = initialize_Lean_Util_CollectLevelParams(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_FoldConsts(lean_io_mk_world()); +res = initialize_Lean_Util_FoldConsts(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_CollectFVars(lean_io_mk_world()); +res = initialize_Lean_Util_CollectFVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_DeclModifiers(lean_io_mk_world()); +res = initialize_Lean_Elab_DeclModifiers(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Binders(lean_io_mk_world()); +res = initialize_Lean_Elab_Binders(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_removeUnused___closed__1 = _init_l_Lean_Elab_Command_removeUnused___closed__1(); @@ -6903,7 +6903,7 @@ l_Lean_Elab_Command_elabDefVal___closed__2 = _init_l_Lean_Elab_Command_elabDefVa lean_mark_persistent(l_Lean_Elab_Command_elabDefVal___closed__2); l_Lean_Elab_Command_elabDefVal___closed__3 = _init_l_Lean_Elab_Command_elabDefVal___closed__3(); lean_mark_persistent(l_Lean_Elab_Command_elabDefVal___closed__3); -res = l___private_Init_Lean_Elab_Definition_1__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_Elab_Definition_1__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Elab/DoNotation.c b/stage0/stdlib/Lean/Elab/DoNotation.c similarity index 80% rename from stage0/stdlib/Init/Lean/Elab/DoNotation.c rename to stage0/stdlib/Lean/Elab/DoNotation.c index f74dbecdbc..8569d6498a 100644 --- a/stage0/stdlib/Init/Lean/Elab/DoNotation.c +++ b/stage0/stdlib/Lean/Elab/DoNotation.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.DoNotation -// Imports: Init.Lean.Elab.Term Init.Lean.Elab.Binders Init.Lean.Elab.Quotation +// Module: Lean.Elab.DoNotation +// Imports: Lean.Elab.Term Lean.Elab.Binders Lean.Elab.Quotation #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,108 +13,111 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Elab_DoNotation_2__extractBind___closed__3; lean_object* l_Lean_Elab_Term_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; -lean_object* l___private_Init_Lean_Elab_DoNotation_6__expandLiftMethod(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__3; -lean_object* l___private_Init_Lean_Elab_DoNotation_3__getDoElems(lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Elab_DoNotation_10__mkBind___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_2__extractBind(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_back___at___private_Lean_Elab_DoNotation_10__mkBind___spec__1___boxed(lean_object*); extern lean_object* l_Lean_MessageData_ofList___closed__3; lean_object* l_Lean_Elab_Term_inferType(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___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___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2; uint8_t lean_name_eq(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_do___elambda__1___closed__1; extern lean_object* l_Option_get_x21___rarg___closed__3; -lean_object* l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2; lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +lean_object* l___private_Lean_Elab_DoNotation_6__expandLiftMethod(lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentHashMap_mkCollisionNode___rarg___closed__1; extern lean_object* l_Lean_Parser_Term_doPat___elambda__1___closed__2; extern lean_object* l_Array_empty___closed__1; -lean_object* l___private_Init_Lean_Elab_DoNotation_10__mkBind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_12__processDoElems(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___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___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__2; -lean_object* l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1; -lean_object* l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3; +lean_object* l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; +lean_object* l___private_Lean_Elab_DoNotation_3__getDoElems___boxed(lean_object*); +uint8_t l___private_Lean_Elab_DoNotation_4__hasLiftMethod(lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_3__getDoElems(lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; lean_object* l_Lean_Elab_Term_getDecLevel(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ProcessedDoElem_inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_liftMethod___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1; +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; lean_object* l_Lean_Elab_Term_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -uint8_t l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod(lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4; lean_object* l_Lean_Expr_getAppFn___main(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; lean_object* l_Lean_Elab_Term_synthesizeInst(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_3__getDoElems___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6; +lean_object* l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_do___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3; +uint8_t l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_back___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___boxed(lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Elab_DoNotation_10__mkBind___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_1__mkIdBindFor(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_whnf(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getOptions(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3; extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; +lean_object* l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___boxed(lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ProcessedDoElem_inhabited; +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabDo___closed__1; lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getLevel(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +lean_object* l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5; +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_12__processDoElems(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_10__mkBind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__6; extern lean_object* l_Lean_Parser_Term_doId___elambda__1___closed__2; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_back___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__1___boxed(lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_10__mkBind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; lean_object* l_Lean_Elab_Term_elabTermAux___main(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__3; lean_object* l_Lean_Elab_Term_logTrace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7; -lean_object* l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__1; -lean_object* l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_2__extractBind___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOptType(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withLocalDecl___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_8__expandDoElems(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___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___private_Lean_Elab_DoNotation_11__processDoElemsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_13__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_8__expandDoElems(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_DoNotation_4__hasLiftMethod___boxed(lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; -lean_object* l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabDo___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_termElabAttribute; -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_inhabited; -lean_object* l___private_Init_Lean_Elab_DoNotation_10__mkBind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; extern lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7; lean_object* lean_environment_main_module(lean_object*); uint8_t l_Lean_Expr_isMVar(lean_object*); extern lean_object* l_Lean_Elab_Term_elabLetDecl___closed__2; @@ -123,57 +126,54 @@ lean_object* l_Lean_mkApp(lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; extern lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; lean_object* l_Lean_Syntax_getArgs(lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_13__regTraceClasses(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +lean_object* l_Array_back___at___private_Lean_Elab_DoNotation_10__mkBind___spec__1(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_2__extractBind___closed__1; extern lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; +lean_object* l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabDo(lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_2__extractBind(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_2__extractBind___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1; +lean_object* l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1; extern lean_object* l_Lean_Elab_Term_quoteAutoTactic___main___closed__7; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3; -lean_object* l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +lean_object* l___private_Lean_Elab_DoNotation_2__extractBind___closed__2; extern lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__2; uint8_t l_Lean_Syntax_isNone(lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_matchAlt___closed__2; -lean_object* l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1; +lean_object* l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2; extern lean_object* l_Lean_Expr_Inhabited; +lean_object* l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_pop(lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +lean_object* l___private_Lean_Elab_DoNotation_1__mkIdBindFor___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabDo(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1; -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4; extern lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__2; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5; extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4; -lean_object* l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1; -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +lean_object* l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3; +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6; +lean_object* l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1; lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4; -extern lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; -lean_object* l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main___boxed(lean_object*); +lean_object* l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1() { +lean_object* _init_l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1() { _start: { lean_object* x_1; @@ -181,17 +181,17 @@ x_1 = lean_mk_string("Id"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2() { +lean_object* _init_l___private_Lean_Elab_DoNotation_1__mkIdBindFor___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_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1; +x_2 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3() { +lean_object* _init_l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3() { _start: { lean_object* x_1; @@ -199,17 +199,17 @@ x_1 = lean_mk_string("hasBind"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4() { +lean_object* _init_l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2; -x_2 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3; +x_1 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2; +x_2 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_DoNotation_1__mkIdBindFor(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -227,10 +227,10 @@ x_8 = lean_box(0); x_9 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_9, 0, x_7); lean_ctor_set(x_9, 1, x_8); -x_10 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2; +x_10 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2; lean_inc(x_9); x_11 = l_Lean_mkConst(x_10, x_9); -x_12 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4; +x_12 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4; x_13 = l_Lean_mkConst(x_12, x_9); x_14 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_14, 0, x_11); @@ -251,10 +251,10 @@ x_17 = lean_box(0); x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_15); lean_ctor_set(x_18, 1, x_17); -x_19 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2; +x_19 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2; lean_inc(x_18); x_20 = l_Lean_mkConst(x_19, x_18); -x_21 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4; +x_21 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4; x_22 = l_Lean_mkConst(x_21, x_18); x_23 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_23, 0, x_20); @@ -291,16 +291,16 @@ return x_28; } } } -lean_object* l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_DoNotation_1__mkIdBindFor___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___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__1() { +lean_object* _init_l___private_Lean_Elab_DoNotation_2__extractBind___closed__1() { _start: { lean_object* x_1; @@ -308,33 +308,33 @@ x_1 = lean_mk_string("invalid do notation, expected type is not available"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__2() { +lean_object* _init_l___private_Lean_Elab_DoNotation_2__extractBind___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__1; +x_1 = l___private_Lean_Elab_DoNotation_2__extractBind___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__3() { +lean_object* _init_l___private_Lean_Elab_DoNotation_2__extractBind___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__2; +x_1 = l___private_Lean_Elab_DoNotation_2__extractBind___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_2__extractBind(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_DoNotation_2__extractBind(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__3; +x_5 = l___private_Lean_Elab_DoNotation_2__extractBind___closed__3; x_6 = l_Lean_Elab_Term_throwError___rarg(x_1, x_5, x_3, x_4); return x_6; } @@ -416,7 +416,7 @@ else { lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_dec(x_28); -x_55 = l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__3; +x_55 = l___private_Lean_Elab_DoNotation_2__extractBind___closed__3; x_56 = l_Lean_Elab_Term_throwError___rarg(x_1, x_55, x_3, x_29); x_57 = !lean_is_exclusive(x_56); if (x_57 == 0) @@ -506,7 +506,7 @@ lean_dec(x_33); x_49 = lean_ctor_get(x_41, 1); lean_inc(x_49); lean_dec(x_41); -x_50 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_28, x_3, x_49); +x_50 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_28, x_3, x_49); return x_50; } } @@ -518,14 +518,14 @@ lean_dec(x_33); x_51 = lean_ctor_get(x_38, 1); lean_inc(x_51); lean_dec(x_38); -x_52 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_28, x_3, x_51); +x_52 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_28, x_3, x_51); return x_52; } } else { lean_object* x_53; -x_53 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_28, x_3, x_32); +x_53 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_28, x_3, x_32); return x_53; } } @@ -612,7 +612,7 @@ else { lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_dec(x_76); -x_101 = l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__3; +x_101 = l___private_Lean_Elab_DoNotation_2__extractBind___closed__3; x_102 = l_Lean_Elab_Term_throwError___rarg(x_1, x_101, x_3, x_77); x_103 = lean_ctor_get(x_102, 0); lean_inc(x_103); @@ -699,7 +699,7 @@ lean_dec(x_81); x_95 = lean_ctor_get(x_89, 1); lean_inc(x_95); lean_dec(x_89); -x_96 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_76, x_3, x_95); +x_96 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_76, x_3, x_95); return x_96; } } @@ -711,14 +711,14 @@ lean_dec(x_81); x_97 = lean_ctor_get(x_86, 1); lean_inc(x_97); lean_dec(x_86); -x_98 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_76, x_3, x_97); +x_98 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_76, x_3, x_97); return x_98; } } else { lean_object* x_99; -x_99 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_76, x_3, x_80); +x_99 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_76, x_3, x_80); return x_99; } } @@ -835,7 +835,7 @@ else { lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_dec(x_131); -x_156 = l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__3; +x_156 = l___private_Lean_Elab_DoNotation_2__extractBind___closed__3; x_157 = l_Lean_Elab_Term_throwError___rarg(x_1, x_156, x_3, x_132); x_158 = lean_ctor_get(x_157, 0); lean_inc(x_158); @@ -922,7 +922,7 @@ lean_dec(x_136); x_150 = lean_ctor_get(x_144, 1); lean_inc(x_150); lean_dec(x_144); -x_151 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_131, x_3, x_150); +x_151 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_131, x_3, x_150); return x_151; } } @@ -934,14 +934,14 @@ lean_dec(x_136); x_152 = lean_ctor_get(x_141, 1); lean_inc(x_152); lean_dec(x_141); -x_153 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_131, x_3, x_152); +x_153 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_131, x_3, x_152); return x_153; } } else { lean_object* x_154; -x_154 = l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_131, x_3, x_135); +x_154 = l___private_Lean_Elab_DoNotation_1__mkIdBindFor(x_1, x_131, x_3, x_135); return x_154; } } @@ -975,16 +975,16 @@ return x_165; } } } -lean_object* l___private_Init_Lean_Elab_DoNotation_2__extractBind___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_DoNotation_2__extractBind___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___private_Init_Lean_Elab_DoNotation_2__extractBind(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_DoNotation_2__extractBind(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_3__getDoElems(lean_object* x_1) { +lean_object* l___private_Lean_Elab_DoNotation_3__getDoElems(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -1013,16 +1013,16 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Elab_DoNotation_3__getDoElems___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_DoNotation_3__getDoElems___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_DoNotation_3__getDoElems(x_1); +x_2 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_1); lean_dec(x_1); return x_2; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -1038,7 +1038,7 @@ else { lean_object* x_7; uint8_t x_8; x_7 = lean_array_fget(x_2, x_4); -x_8 = l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main(x_7); +x_8 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main(x_7); lean_dec(x_7); if (x_8 == 0) { @@ -1057,7 +1057,7 @@ return x_8; } } } -uint8_t l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main(lean_object* x_1) { +uint8_t l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -1077,7 +1077,7 @@ if (x_7 == 0) lean_object* x_8; lean_object* x_9; uint8_t x_10; x_8 = lean_array_get_size(x_3); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1(x_3, x_3, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1(x_3, x_3, x_8, x_9); lean_dec(x_8); return x_10; } @@ -1103,11 +1103,11 @@ return x_13; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -1115,35 +1115,35 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main(x_1); +x_2 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod(lean_object* x_1) { +uint8_t l___private_Lean_Elab_DoNotation_4__hasLiftMethod(lean_object* x_1) { _start: { uint8_t x_2; -x_2 = l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main(x_1); +x_2 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_DoNotation_4__hasLiftMethod___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod(x_1); +x_2 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -1172,7 +1172,7 @@ x_12 = lean_unsigned_to_nat(0u); x_13 = lean_array_fset(x_2, x_1, x_12); x_14 = x_11; lean_inc(x_4); -x_15 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_14, x_3, x_4, x_5); +x_15 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_14, x_3, x_4, x_5); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -1225,7 +1225,7 @@ return x_28; } } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1237,17 +1237,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1; +x_2 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3() { _start: { lean_object* x_1; @@ -1255,19 +1255,19 @@ x_1 = lean_mk_string("←"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3; +x_2 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_1) == 1) @@ -1297,7 +1297,7 @@ if (x_13 == 0) lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_14 = x_6; x_15 = lean_unsigned_to_nat(0u); -x_16 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___spec__1), 5, 2); +x_16 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___spec__1), 5, 2); lean_closure_set(x_16, 0, x_15); lean_closure_set(x_16, 1, x_14); x_17 = x_16; @@ -1413,7 +1413,7 @@ lean_dec(x_43); lean_inc(x_4); lean_inc(x_42); lean_ctor_set(x_3, 1, x_4); -x_44 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_39, x_2, x_3, x_40); +x_44 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_39, x_2, x_3, x_40); if (lean_obj_tag(x_44) == 0) { uint8_t x_45; @@ -1428,11 +1428,11 @@ if (x_47 == 0) lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; x_48 = lean_ctor_get(x_46, 0); x_49 = lean_ctor_get(x_46, 1); -x_50 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_50 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_51 = l_Lean_addMacroScope(x_42, x_50, x_4); x_52 = lean_box(0); x_53 = l_Lean_SourceInfo_inhabited___closed__1; -x_54 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +x_54 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_53); lean_ctor_set(x_55, 1, x_54); @@ -1440,9 +1440,9 @@ lean_ctor_set(x_55, 2, x_51); lean_ctor_set(x_55, 3, x_52); x_56 = l_Array_empty___closed__1; x_57 = lean_array_push(x_56, x_55); -x_58 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_58 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_59 = lean_array_push(x_57, x_58); -x_60 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_60 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_59); x_61 = lean_array_push(x_59, x_60); x_62 = lean_array_push(x_61, x_48); @@ -1450,7 +1450,7 @@ x_63 = l_Lean_Parser_Term_doId___elambda__1___closed__2; lean_ctor_set(x_1, 1, x_62); lean_ctor_set(x_1, 0, x_63); x_64 = lean_array_push(x_56, x_1); -x_65 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_65 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_66 = lean_array_push(x_64, x_65); x_67 = lean_box(0); x_68 = lean_array_push(x_66, x_67); @@ -1458,12 +1458,12 @@ x_69 = l_Lean_nullKind___closed__2; x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); -x_71 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_71 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_72 = lean_array_push(x_71, x_70); x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_7); lean_ctor_set(x_73, 1, x_72); -x_74 = l___private_Init_Lean_Elab_DoNotation_3__getDoElems(x_73); +x_74 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_73); lean_dec(x_73); x_75 = lean_array_pop(x_74); x_76 = lean_unsigned_to_nat(0u); @@ -1485,11 +1485,11 @@ x_81 = lean_ctor_get(x_46, 1); lean_inc(x_81); lean_inc(x_80); lean_dec(x_46); -x_82 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_82 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_83 = l_Lean_addMacroScope(x_42, x_82, x_4); x_84 = lean_box(0); x_85 = l_Lean_SourceInfo_inhabited___closed__1; -x_86 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +x_86 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; x_87 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_87, 0, x_85); lean_ctor_set(x_87, 1, x_86); @@ -1497,9 +1497,9 @@ lean_ctor_set(x_87, 2, x_83); lean_ctor_set(x_87, 3, x_84); x_88 = l_Array_empty___closed__1; x_89 = lean_array_push(x_88, x_87); -x_90 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_90 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_91 = lean_array_push(x_89, x_90); -x_92 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_92 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_91); x_93 = lean_array_push(x_91, x_92); x_94 = lean_array_push(x_93, x_80); @@ -1507,7 +1507,7 @@ x_95 = l_Lean_Parser_Term_doId___elambda__1___closed__2; lean_ctor_set(x_1, 1, x_94); lean_ctor_set(x_1, 0, x_95); x_96 = lean_array_push(x_88, x_1); -x_97 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_97 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_98 = lean_array_push(x_96, x_97); x_99 = lean_box(0); x_100 = lean_array_push(x_98, x_99); @@ -1515,12 +1515,12 @@ x_101 = l_Lean_nullKind___closed__2; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); -x_103 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_103 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_104 = lean_array_push(x_103, x_102); x_105 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_105, 0, x_7); lean_ctor_set(x_105, 1, x_104); -x_106 = l___private_Init_Lean_Elab_DoNotation_3__getDoElems(x_105); +x_106 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_105); lean_dec(x_105); x_107 = lean_array_pop(x_106); x_108 = lean_unsigned_to_nat(0u); @@ -1557,11 +1557,11 @@ if (lean_is_exclusive(x_113)) { lean_dec_ref(x_113); x_117 = lean_box(0); } -x_118 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_118 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_119 = l_Lean_addMacroScope(x_42, x_118, x_4); x_120 = lean_box(0); x_121 = l_Lean_SourceInfo_inhabited___closed__1; -x_122 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +x_122 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; x_123 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_123, 0, x_121); lean_ctor_set(x_123, 1, x_122); @@ -1569,9 +1569,9 @@ lean_ctor_set(x_123, 2, x_119); lean_ctor_set(x_123, 3, x_120); x_124 = l_Array_empty___closed__1; x_125 = lean_array_push(x_124, x_123); -x_126 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_126 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_127 = lean_array_push(x_125, x_126); -x_128 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_128 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_127); x_129 = lean_array_push(x_127, x_128); x_130 = lean_array_push(x_129, x_115); @@ -1579,7 +1579,7 @@ x_131 = l_Lean_Parser_Term_doId___elambda__1___closed__2; lean_ctor_set(x_1, 1, x_130); lean_ctor_set(x_1, 0, x_131); x_132 = lean_array_push(x_124, x_1); -x_133 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_133 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_134 = lean_array_push(x_132, x_133); x_135 = lean_box(0); x_136 = lean_array_push(x_134, x_135); @@ -1587,12 +1587,12 @@ x_137 = l_Lean_nullKind___closed__2; x_138 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_138, 0, x_137); lean_ctor_set(x_138, 1, x_136); -x_139 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_139 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_140 = lean_array_push(x_139, x_138); x_141 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_141, 0, x_7); lean_ctor_set(x_141, 1, x_140); -x_142 = l___private_Init_Lean_Elab_DoNotation_3__getDoElems(x_141); +x_142 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_141); lean_dec(x_141); x_143 = lean_array_pop(x_142); x_144 = lean_unsigned_to_nat(0u); @@ -1652,7 +1652,7 @@ lean_inc(x_154); x_155 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_155, 0, x_154); lean_ctor_set(x_155, 1, x_4); -x_156 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_39, x_2, x_155, x_40); +x_156 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_39, x_2, x_155, x_40); if (lean_obj_tag(x_156) == 0) { 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; @@ -1680,11 +1680,11 @@ if (lean_is_exclusive(x_157)) { lean_dec_ref(x_157); x_162 = lean_box(0); } -x_163 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_163 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_164 = l_Lean_addMacroScope(x_154, x_163, x_4); x_165 = lean_box(0); x_166 = l_Lean_SourceInfo_inhabited___closed__1; -x_167 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +x_167 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; x_168 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_168, 0, x_166); lean_ctor_set(x_168, 1, x_167); @@ -1692,9 +1692,9 @@ lean_ctor_set(x_168, 2, x_164); lean_ctor_set(x_168, 3, x_165); x_169 = l_Array_empty___closed__1; x_170 = lean_array_push(x_169, x_168); -x_171 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_171 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_172 = lean_array_push(x_170, x_171); -x_173 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_173 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_172); x_174 = lean_array_push(x_172, x_173); x_175 = lean_array_push(x_174, x_160); @@ -1702,7 +1702,7 @@ x_176 = l_Lean_Parser_Term_doId___elambda__1___closed__2; lean_ctor_set(x_1, 1, x_175); lean_ctor_set(x_1, 0, x_176); x_177 = lean_array_push(x_169, x_1); -x_178 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_178 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_179 = lean_array_push(x_177, x_178); x_180 = lean_box(0); x_181 = lean_array_push(x_179, x_180); @@ -1710,12 +1710,12 @@ x_182 = l_Lean_nullKind___closed__2; x_183 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_183, 0, x_182); lean_ctor_set(x_183, 1, x_181); -x_184 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_184 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_185 = lean_array_push(x_184, x_183); x_186 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_186, 0, x_7); lean_ctor_set(x_186, 1, x_185); -x_187 = l___private_Init_Lean_Elab_DoNotation_3__getDoElems(x_186); +x_187 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_186); lean_dec(x_186); x_188 = lean_array_pop(x_187); x_189 = lean_unsigned_to_nat(0u); @@ -1782,7 +1782,7 @@ if (x_200 == 0) lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; x_201 = x_6; x_202 = lean_unsigned_to_nat(0u); -x_203 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___spec__1), 5, 2); +x_203 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___spec__1), 5, 2); lean_closure_set(x_203, 0, x_202); lean_closure_set(x_203, 1, x_201); x_204 = x_203; @@ -1887,7 +1887,7 @@ if (lean_is_scalar(x_224)) { } lean_ctor_set(x_225, 0, x_223); lean_ctor_set(x_225, 1, x_4); -x_226 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_221, x_2, x_225, x_222); +x_226 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_221, x_2, x_225, x_222); if (lean_obj_tag(x_226) == 0) { lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; @@ -1915,11 +1915,11 @@ if (lean_is_exclusive(x_227)) { lean_dec_ref(x_227); x_232 = lean_box(0); } -x_233 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_233 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_234 = l_Lean_addMacroScope(x_223, x_233, x_4); x_235 = lean_box(0); x_236 = l_Lean_SourceInfo_inhabited___closed__1; -x_237 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +x_237 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; x_238 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_238, 0, x_236); lean_ctor_set(x_238, 1, x_237); @@ -1927,9 +1927,9 @@ lean_ctor_set(x_238, 2, x_234); lean_ctor_set(x_238, 3, x_235); x_239 = l_Array_empty___closed__1; x_240 = lean_array_push(x_239, x_238); -x_241 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_241 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_242 = lean_array_push(x_240, x_241); -x_243 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_243 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_242); x_244 = lean_array_push(x_242, x_243); x_245 = lean_array_push(x_244, x_230); @@ -1938,7 +1938,7 @@ x_247 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_247, 0, x_246); lean_ctor_set(x_247, 1, x_245); x_248 = lean_array_push(x_239, x_247); -x_249 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_249 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_250 = lean_array_push(x_248, x_249); x_251 = lean_box(0); x_252 = lean_array_push(x_250, x_251); @@ -1946,12 +1946,12 @@ x_253 = l_Lean_nullKind___closed__2; x_254 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_254, 0, x_253); lean_ctor_set(x_254, 1, x_252); -x_255 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_255 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_256 = lean_array_push(x_255, x_254); x_257 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_257, 0, x_7); lean_ctor_set(x_257, 1, x_256); -x_258 = l___private_Init_Lean_Elab_DoNotation_3__getDoElems(x_257); +x_258 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_257); lean_dec(x_257); x_259 = lean_array_pop(x_258); x_260 = lean_unsigned_to_nat(0u); @@ -2035,19 +2035,19 @@ return x_273; } } } -lean_object* l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_6__expandLiftMethod(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_DoNotation_6__expandLiftMethod(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; -x_4 = l___private_Init_Lean_Elab_DoNotation_4__hasLiftMethod___main(x_1); +x_4 = l___private_Lean_Elab_DoNotation_4__hasLiftMethod___main(x_1); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; @@ -2063,7 +2063,7 @@ else { lean_object* x_7; lean_object* x_8; x_7 = l_Array_empty___closed__1; -x_8 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_1, x_7, x_2, x_3); +x_8 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main(x_1, x_7, x_2, x_3); if (lean_obj_tag(x_8) == 0) { uint8_t x_9; @@ -2130,27 +2130,27 @@ return x_25; } } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1; +x_1 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1; x_2 = l_Lean_Elab_Term_expandCDot_x3f___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main(uint8_t 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_35; uint8_t x_36; @@ -2190,7 +2190,7 @@ x_48 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); -x_50 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_50 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_51 = lean_array_push(x_50, x_49); x_52 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_53 = lean_alloc_ctor(1, 2, 0); @@ -2210,7 +2210,7 @@ lean_object* x_56; lean_object* x_57; x_56 = lean_array_fget(x_2, x_3); lean_inc(x_4); lean_inc(x_56); -x_57 = l___private_Init_Lean_Elab_DoNotation_6__expandLiftMethod(x_56, x_4, x_5); +x_57 = l___private_Lean_Elab_DoNotation_6__expandLiftMethod(x_56, x_4, x_5); if (lean_obj_tag(x_57) == 0) { lean_object* x_58; @@ -2295,9 +2295,9 @@ lean_ctor_set(x_87, 2, x_83); lean_ctor_set(x_87, 3, x_84); x_88 = l_Array_empty___closed__1; x_89 = lean_array_push(x_88, x_87); -x_90 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_90 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_91 = lean_array_push(x_89, x_90); -x_92 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_92 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; x_93 = lean_array_push(x_91, x_92); x_94 = lean_array_push(x_93, x_79); x_95 = l_Lean_Parser_Term_doId___elambda__1___closed__2; @@ -2305,7 +2305,7 @@ x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); x_97 = lean_array_push(x_88, x_96); -x_98 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_98 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_99 = lean_array_push(x_97, x_98); x_100 = lean_box(0); x_101 = lean_array_push(x_99, x_100); @@ -2313,13 +2313,13 @@ x_102 = l_Lean_nullKind___closed__2; x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); -x_104 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_104 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_105 = lean_array_push(x_104, x_103); x_106 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); -x_108 = l___private_Init_Lean_Elab_DoNotation_3__getDoElems(x_107); +x_108 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_107); lean_dec(x_107); x_109 = l_Lean_Syntax_inhabited; x_110 = lean_array_get(x_109, x_108, x_78); @@ -2377,7 +2377,7 @@ x_137 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_138 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_138, 0, x_137); lean_ctor_set(x_138, 1, x_136); -x_139 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_139 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_140 = lean_array_push(x_139, x_138); x_141 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_142 = lean_alloc_ctor(1, 2, 0); @@ -2400,9 +2400,9 @@ lean_ctor_set(x_150, 1, x_149); lean_ctor_set(x_150, 2, x_146); lean_ctor_set(x_150, 3, x_147); x_151 = lean_array_push(x_129, x_150); -x_152 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_152 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_153 = lean_array_push(x_151, x_152); -x_154 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_154 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_153); x_155 = lean_array_push(x_153, x_154); x_156 = lean_array_push(x_155, x_119); @@ -2411,7 +2411,7 @@ x_158 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_156); x_159 = lean_array_push(x_129, x_158); -x_160 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_160 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_161 = lean_array_push(x_159, x_160); x_162 = l_Lean_mkTermIdFromIdent___closed__2; x_163 = lean_alloc_ctor(1, 2, 0); @@ -2421,12 +2421,12 @@ x_164 = lean_array_push(x_129, x_163); x_165 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_165, 0, x_131); lean_ctor_set(x_165, 1, x_164); -x_166 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_166 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_167 = lean_array_push(x_166, x_165); x_168 = lean_array_push(x_167, x_152); -x_169 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_169 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_170 = lean_array_push(x_168, x_169); -x_171 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_171 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_172 = lean_array_push(x_170, x_171); x_173 = lean_array_push(x_129, x_117); x_174 = lean_alloc_ctor(1, 2, 0); @@ -2441,9 +2441,9 @@ x_180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_180, 0, x_179); lean_ctor_set(x_180, 1, x_178); x_181 = lean_array_push(x_129, x_180); -x_182 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_182 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; x_183 = lean_array_push(x_181, x_182); -x_184 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_184 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; x_185 = lean_array_push(x_184, x_144); x_186 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_186, 0, x_179); @@ -2489,9 +2489,9 @@ lean_ctor_set(x_204, 1, x_203); lean_ctor_set(x_204, 2, x_200); lean_ctor_set(x_204, 3, x_201); x_205 = lean_array_push(x_129, x_204); -x_206 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_206 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_207 = lean_array_push(x_205, x_206); -x_208 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_208 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_207); x_209 = lean_array_push(x_207, x_208); x_210 = lean_array_push(x_209, x_119); @@ -2500,7 +2500,7 @@ x_212 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_212, 0, x_211); lean_ctor_set(x_212, 1, x_210); x_213 = lean_array_push(x_129, x_212); -x_214 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_214 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_215 = lean_array_push(x_213, x_214); x_216 = l_Lean_mkTermIdFromIdent___closed__2; x_217 = lean_alloc_ctor(1, 2, 0); @@ -2510,12 +2510,12 @@ x_218 = lean_array_push(x_129, x_217); x_219 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_219, 0, x_131); lean_ctor_set(x_219, 1, x_218); -x_220 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_220 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_221 = lean_array_push(x_220, x_219); x_222 = lean_array_push(x_221, x_206); -x_223 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_223 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_224 = lean_array_push(x_222, x_223); -x_225 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_225 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_226 = lean_array_push(x_224, x_225); x_227 = lean_array_push(x_129, x_117); x_228 = lean_alloc_ctor(1, 2, 0); @@ -2586,9 +2586,9 @@ lean_ctor_set(x_259, 2, x_255); lean_ctor_set(x_259, 3, x_256); x_260 = l_Array_empty___closed__1; x_261 = lean_array_push(x_260, x_259); -x_262 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_262 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_263 = lean_array_push(x_261, x_262); -x_264 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_264 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_263); x_265 = lean_array_push(x_263, x_264); x_266 = lean_array_push(x_265, x_119); @@ -2597,7 +2597,7 @@ x_268 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_268, 0, x_267); lean_ctor_set(x_268, 1, x_266); x_269 = lean_array_push(x_260, x_268); -x_270 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_270 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_271 = lean_array_push(x_269, x_270); x_272 = l_Lean_mkTermIdFromIdent___closed__2; x_273 = lean_alloc_ctor(1, 2, 0); @@ -2608,12 +2608,12 @@ x_275 = l_Lean_nullKind___closed__2; x_276 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_276, 0, x_275); lean_ctor_set(x_276, 1, x_274); -x_277 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_277 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_278 = lean_array_push(x_277, x_276); x_279 = lean_array_push(x_278, x_262); -x_280 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_280 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_281 = lean_array_push(x_279, x_280); -x_282 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_282 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_283 = lean_array_push(x_281, x_282); x_284 = lean_array_push(x_260, x_117); x_285 = lean_alloc_ctor(1, 2, 0); @@ -2628,9 +2628,9 @@ x_291 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_291, 0, x_290); lean_ctor_set(x_291, 1, x_289); x_292 = lean_array_push(x_260, x_291); -x_293 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_293 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; x_294 = lean_array_push(x_292, x_293); -x_295 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_295 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; x_296 = lean_array_push(x_295, x_253); x_297 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_297, 0, x_290); @@ -2653,7 +2653,7 @@ x_306 = lean_array_push(x_271, x_305); x_307 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_307, 0, x_275); lean_ctor_set(x_307, 1, x_306); -x_308 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_308 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_309 = lean_array_push(x_308, x_307); x_310 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_311 = lean_alloc_ctor(1, 2, 0); @@ -2679,9 +2679,9 @@ lean_ctor_set(x_317, 2, x_313); lean_ctor_set(x_317, 3, x_314); x_318 = l_Array_empty___closed__1; x_319 = lean_array_push(x_318, x_317); -x_320 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_320 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_321 = lean_array_push(x_319, x_320); -x_322 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_322 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_321); x_323 = lean_array_push(x_321, x_322); x_324 = lean_array_push(x_323, x_119); @@ -2690,7 +2690,7 @@ x_326 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_326, 0, x_325); lean_ctor_set(x_326, 1, x_324); x_327 = lean_array_push(x_318, x_326); -x_328 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_328 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_329 = lean_array_push(x_327, x_328); x_330 = l_Lean_mkTermIdFromIdent___closed__2; x_331 = lean_alloc_ctor(1, 2, 0); @@ -2701,12 +2701,12 @@ x_333 = l_Lean_nullKind___closed__2; x_334 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_334, 0, x_333); lean_ctor_set(x_334, 1, x_332); -x_335 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_335 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_336 = lean_array_push(x_335, x_334); x_337 = lean_array_push(x_336, x_320); -x_338 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_338 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_339 = lean_array_push(x_337, x_338); -x_340 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_340 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_341 = lean_array_push(x_339, x_340); x_342 = lean_array_push(x_318, x_117); x_343 = lean_alloc_ctor(1, 2, 0); @@ -2738,7 +2738,7 @@ x_358 = lean_array_push(x_329, x_357); x_359 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_359, 0, x_333); lean_ctor_set(x_359, 1, x_358); -x_360 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_360 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_361 = lean_array_push(x_360, x_359); x_362 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_363 = lean_alloc_ctor(1, 2, 0); @@ -2785,15 +2785,15 @@ x_380 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_381 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_381, 0, x_380); lean_ctor_set(x_381, 1, x_379); -x_382 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_382 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_383 = lean_array_push(x_382, x_381); x_384 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_385 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_385, 0, x_384); lean_ctor_set(x_385, 1, x_383); -x_386 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_386 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_387 = lean_array_push(x_386, x_365); -x_388 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_388 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_389 = lean_array_push(x_387, x_388); x_390 = lean_array_push(x_389, x_385); x_391 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -2853,9 +2853,9 @@ x_411 = lean_array_get(x_409, x_368, x_410); lean_dec(x_368); x_412 = l_Lean_Syntax_getArg(x_411, x_410); lean_dec(x_411); -x_413 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_413 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_414 = lean_array_push(x_413, x_365); -x_415 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_415 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_416 = lean_array_push(x_414, x_415); x_417 = lean_array_push(x_416, x_412); x_418 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -2891,7 +2891,7 @@ x_435 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_436 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_436, 0, x_435); lean_ctor_set(x_436, 1, x_434); -x_437 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_437 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_438 = lean_array_push(x_437, x_436); x_439 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_440 = lean_alloc_ctor(1, 2, 0); @@ -2989,9 +2989,9 @@ lean_ctor_set(x_469, 2, x_465); lean_ctor_set(x_469, 3, x_466); x_470 = l_Array_empty___closed__1; x_471 = lean_array_push(x_470, x_469); -x_472 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_472 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_473 = lean_array_push(x_471, x_472); -x_474 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_474 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; x_475 = lean_array_push(x_473, x_474); x_476 = lean_array_push(x_475, x_461); x_477 = l_Lean_Parser_Term_doId___elambda__1___closed__2; @@ -2999,7 +2999,7 @@ x_478 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_478, 0, x_477); lean_ctor_set(x_478, 1, x_476); x_479 = lean_array_push(x_470, x_478); -x_480 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_480 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_481 = lean_array_push(x_479, x_480); x_482 = lean_box(0); x_483 = lean_array_push(x_481, x_482); @@ -3007,13 +3007,13 @@ x_484 = l_Lean_nullKind___closed__2; x_485 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_485, 0, x_484); lean_ctor_set(x_485, 1, x_483); -x_486 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_486 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_487 = lean_array_push(x_486, x_485); x_488 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_489 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_489, 0, x_488); lean_ctor_set(x_489, 1, x_487); -x_490 = l___private_Init_Lean_Elab_DoNotation_3__getDoElems(x_489); +x_490 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_489); lean_dec(x_489); x_491 = l_Lean_Syntax_inhabited; x_492 = lean_array_get(x_491, x_490, x_460); @@ -3071,7 +3071,7 @@ x_519 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_520 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_520, 0, x_519); lean_ctor_set(x_520, 1, x_518); -x_521 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_521 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_522 = lean_array_push(x_521, x_520); x_523 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_524 = lean_alloc_ctor(1, 2, 0); @@ -3094,9 +3094,9 @@ lean_ctor_set(x_532, 1, x_531); lean_ctor_set(x_532, 2, x_528); lean_ctor_set(x_532, 3, x_529); x_533 = lean_array_push(x_511, x_532); -x_534 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_534 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_535 = lean_array_push(x_533, x_534); -x_536 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_536 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_535); x_537 = lean_array_push(x_535, x_536); x_538 = lean_array_push(x_537, x_501); @@ -3105,7 +3105,7 @@ x_540 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_540, 0, x_539); lean_ctor_set(x_540, 1, x_538); x_541 = lean_array_push(x_511, x_540); -x_542 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_542 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_543 = lean_array_push(x_541, x_542); x_544 = l_Lean_mkTermIdFromIdent___closed__2; x_545 = lean_alloc_ctor(1, 2, 0); @@ -3115,12 +3115,12 @@ x_546 = lean_array_push(x_511, x_545); x_547 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_547, 0, x_513); lean_ctor_set(x_547, 1, x_546); -x_548 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_548 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_549 = lean_array_push(x_548, x_547); x_550 = lean_array_push(x_549, x_534); -x_551 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_551 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_552 = lean_array_push(x_550, x_551); -x_553 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_553 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_554 = lean_array_push(x_552, x_553); x_555 = lean_array_push(x_511, x_499); x_556 = lean_alloc_ctor(1, 2, 0); @@ -3135,9 +3135,9 @@ x_562 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_562, 0, x_561); lean_ctor_set(x_562, 1, x_560); x_563 = lean_array_push(x_511, x_562); -x_564 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_564 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; x_565 = lean_array_push(x_563, x_564); -x_566 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_566 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; x_567 = lean_array_push(x_566, x_526); x_568 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_568, 0, x_561); @@ -3183,9 +3183,9 @@ lean_ctor_set(x_586, 1, x_585); lean_ctor_set(x_586, 2, x_582); lean_ctor_set(x_586, 3, x_583); x_587 = lean_array_push(x_511, x_586); -x_588 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_588 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_589 = lean_array_push(x_587, x_588); -x_590 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_590 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_589); x_591 = lean_array_push(x_589, x_590); x_592 = lean_array_push(x_591, x_501); @@ -3194,7 +3194,7 @@ x_594 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_594, 0, x_593); lean_ctor_set(x_594, 1, x_592); x_595 = lean_array_push(x_511, x_594); -x_596 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_596 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_597 = lean_array_push(x_595, x_596); x_598 = l_Lean_mkTermIdFromIdent___closed__2; x_599 = lean_alloc_ctor(1, 2, 0); @@ -3204,12 +3204,12 @@ x_600 = lean_array_push(x_511, x_599); x_601 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_601, 0, x_513); lean_ctor_set(x_601, 1, x_600); -x_602 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_602 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_603 = lean_array_push(x_602, x_601); x_604 = lean_array_push(x_603, x_588); -x_605 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_605 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_606 = lean_array_push(x_604, x_605); -x_607 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_607 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_608 = lean_array_push(x_606, x_607); x_609 = lean_array_push(x_511, x_499); x_610 = lean_alloc_ctor(1, 2, 0); @@ -3280,9 +3280,9 @@ lean_ctor_set(x_641, 2, x_637); lean_ctor_set(x_641, 3, x_638); x_642 = l_Array_empty___closed__1; x_643 = lean_array_push(x_642, x_641); -x_644 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_644 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_645 = lean_array_push(x_643, x_644); -x_646 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_646 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_645); x_647 = lean_array_push(x_645, x_646); x_648 = lean_array_push(x_647, x_501); @@ -3291,7 +3291,7 @@ x_650 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_650, 0, x_649); lean_ctor_set(x_650, 1, x_648); x_651 = lean_array_push(x_642, x_650); -x_652 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_652 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_653 = lean_array_push(x_651, x_652); x_654 = l_Lean_mkTermIdFromIdent___closed__2; x_655 = lean_alloc_ctor(1, 2, 0); @@ -3302,12 +3302,12 @@ x_657 = l_Lean_nullKind___closed__2; x_658 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_658, 0, x_657); lean_ctor_set(x_658, 1, x_656); -x_659 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_659 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_660 = lean_array_push(x_659, x_658); x_661 = lean_array_push(x_660, x_644); -x_662 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_662 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_663 = lean_array_push(x_661, x_662); -x_664 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_664 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_665 = lean_array_push(x_663, x_664); x_666 = lean_array_push(x_642, x_499); x_667 = lean_alloc_ctor(1, 2, 0); @@ -3322,9 +3322,9 @@ x_673 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_673, 0, x_672); lean_ctor_set(x_673, 1, x_671); x_674 = lean_array_push(x_642, x_673); -x_675 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_675 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; x_676 = lean_array_push(x_674, x_675); -x_677 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; +x_677 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2; x_678 = lean_array_push(x_677, x_635); x_679 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_679, 0, x_672); @@ -3347,7 +3347,7 @@ x_688 = lean_array_push(x_653, x_687); x_689 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_689, 0, x_657); lean_ctor_set(x_689, 1, x_688); -x_690 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_690 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_691 = lean_array_push(x_690, x_689); x_692 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_693 = lean_alloc_ctor(1, 2, 0); @@ -3373,9 +3373,9 @@ lean_ctor_set(x_699, 2, x_695); lean_ctor_set(x_699, 3, x_696); x_700 = l_Array_empty___closed__1; x_701 = lean_array_push(x_700, x_699); -x_702 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_702 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_703 = lean_array_push(x_701, x_702); -x_704 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; +x_704 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4; lean_inc(x_703); x_705 = lean_array_push(x_703, x_704); x_706 = lean_array_push(x_705, x_501); @@ -3384,7 +3384,7 @@ x_708 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_708, 0, x_707); lean_ctor_set(x_708, 1, x_706); x_709 = lean_array_push(x_700, x_708); -x_710 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_710 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_711 = lean_array_push(x_709, x_710); x_712 = l_Lean_mkTermIdFromIdent___closed__2; x_713 = lean_alloc_ctor(1, 2, 0); @@ -3395,12 +3395,12 @@ x_715 = l_Lean_nullKind___closed__2; x_716 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_716, 0, x_715); lean_ctor_set(x_716, 1, x_714); -x_717 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; +x_717 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__2; x_718 = lean_array_push(x_717, x_716); x_719 = lean_array_push(x_718, x_702); -x_720 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_720 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_721 = lean_array_push(x_719, x_720); -x_722 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_722 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_723 = lean_array_push(x_721, x_722); x_724 = lean_array_push(x_700, x_499); x_725 = lean_alloc_ctor(1, 2, 0); @@ -3432,7 +3432,7 @@ x_740 = lean_array_push(x_711, x_739); x_741 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_741, 0, x_715); lean_ctor_set(x_741, 1, x_740); -x_742 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_742 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_743 = lean_array_push(x_742, x_741); x_744 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_745 = lean_alloc_ctor(1, 2, 0); @@ -3479,15 +3479,15 @@ x_762 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_763 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_763, 0, x_762); lean_ctor_set(x_763, 1, x_761); -x_764 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_764 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_765 = lean_array_push(x_764, x_763); x_766 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_767 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_767, 0, x_766); lean_ctor_set(x_767, 1, x_765); -x_768 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_768 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_769 = lean_array_push(x_768, x_747); -x_770 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_770 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_771 = lean_array_push(x_769, x_770); x_772 = lean_array_push(x_771, x_767); x_773 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -3551,9 +3551,9 @@ x_795 = lean_array_get(x_793, x_750, x_794); lean_dec(x_750); x_796 = l_Lean_Syntax_getArg(x_795, x_794); lean_dec(x_795); -x_797 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_797 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_798 = lean_array_push(x_797, x_747); -x_799 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_799 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_800 = lean_array_push(x_798, x_799); x_801 = lean_array_push(x_800, x_796); x_802 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -3589,7 +3589,7 @@ x_819 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_820 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_820, 0, x_819); lean_ctor_set(x_820, 1, x_818); -x_821 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_821 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_822 = lean_array_push(x_821, x_820); x_823 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_824 = lean_alloc_ctor(1, 2, 0); @@ -3707,7 +3707,7 @@ x_24 = l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__2; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; +x_26 = l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2; x_27 = lean_array_push(x_26, x_25); x_28 = l_Lean_Parser_Term_do___elambda__1___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); @@ -3735,41 +3735,41 @@ return x_33; } } } -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_1); lean_dec(x_1); -x_7 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main(x_6, x_2, x_3, x_4, x_5); +x_7 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main(x_6, x_2, x_3, x_4, x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_1); lean_dec(x_1); -x_7 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux(x_6, x_2, x_3, x_4, x_5); +x_7 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux(x_6, x_2, x_3, x_4, x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_8__expandDoElems(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_DoNotation_8__expandDoElems(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; lean_object* x_6; x_4 = 0; x_5 = lean_unsigned_to_nat(0u); -x_6 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main(x_4, x_1, x_5, x_2, x_3); +x_6 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main(x_4, x_1, x_5, x_2, x_3); return x_6; } } @@ -3792,7 +3792,7 @@ x_1 = l_Lean_Elab_Term_ProcessedDoElem_inhabited___closed__1; return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1() { +lean_object* _init_l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1() { _start: { lean_object* x_1; @@ -3800,27 +3800,27 @@ x_1 = lean_mk_string("type former application expected"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2() { +lean_object* _init_l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1; +x_1 = l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3() { +lean_object* _init_l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2; +x_1 = l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -3910,7 +3910,7 @@ lean_dec(x_28); x_29 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_29, 0, x_26); x_30 = l_Lean_indentExpr(x_29); -x_31 = l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; +x_31 = l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; x_32 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -3952,7 +3952,7 @@ lean_dec(x_39); x_40 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_40, 0, x_37); x_41 = l_Lean_indentExpr(x_40); -x_42 = l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; +x_42 = l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; x_43 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); @@ -4069,7 +4069,7 @@ lean_dec(x_67); x_68 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_68, 0, x_64); x_69 = l_Lean_indentExpr(x_68); -x_70 = l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; +x_70 = l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; x_71 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); @@ -4215,7 +4215,7 @@ lean_dec(x_104); x_105 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_105, 0, x_101); x_106 = l_Lean_indentExpr(x_105); -x_107 = l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; +x_107 = l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3; x_108 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); @@ -4251,16 +4251,16 @@ return x_117; } } } -lean_object* l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___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___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_back___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__1(lean_object* x_1) { +lean_object* l_Array_back___at___private_Lean_Elab_DoNotation_10__mkBind___spec__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -4274,7 +4274,7 @@ lean_dec(x_4); return x_6; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Elab_DoNotation_10__mkBind___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; uint8_t x_11; @@ -4315,7 +4315,7 @@ x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec(x_20); lean_inc(x_8); -x_23 = l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg(x_1, x_21, x_8, x_22); +x_23 = l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg(x_1, x_21, x_8, x_22); if (lean_obj_tag(x_23) == 0) { lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; @@ -4481,7 +4481,7 @@ return x_54; } } } -lean_object* l___private_Init_Lean_Elab_DoNotation_10__mkBind(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_DoNotation_10__mkBind(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -4489,7 +4489,7 @@ x_8 = l_Array_isEmpty___rarg(x_4); if (x_8 == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = l_Array_back___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__1(x_4); +x_9 = l_Array_back___at___private_Lean_Elab_DoNotation_10__mkBind___spec__1(x_4); x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); @@ -4545,7 +4545,7 @@ x_26 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; x_27 = l_Lean_mkConst(x_26, x_25); x_28 = l_Lean_mkAppB(x_27, x_2, x_3); x_29 = lean_array_get_size(x_4); -x_30 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__2(x_1, x_4, x_28, x_4, x_29, lean_box(0), x_5, x_6, x_22); +x_30 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Elab_DoNotation_10__mkBind___spec__2(x_1, x_4, x_28, x_4, x_29, lean_box(0), x_5, x_6, x_22); return x_30; } else @@ -4671,37 +4671,37 @@ return x_47; } } } -lean_object* l_Array_back___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__1___boxed(lean_object* x_1) { +lean_object* l_Array_back___at___private_Lean_Elab_DoNotation_10__mkBind___spec__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Array_back___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__1(x_1); +x_2 = l_Array_back___at___private_Lean_Elab_DoNotation_10__mkBind___spec__1(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Elab_DoNotation_10__mkBind___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* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Elab_DoNotation_10__mkBind___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Elab_DoNotation_10__mkBind___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Elab_DoNotation_10__mkBind___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); return x_10; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_10__mkBind___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_DoNotation_10__mkBind___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_DoNotation_10__mkBind(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_DoNotation_10__mkBind(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___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_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -4711,11 +4711,11 @@ x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_2); lean_ctor_set(x_13, 1, x_8); x_14 = lean_array_push(x_3, x_13); -x_15 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main(x_4, x_5, x_6, x_7, x_12, x_14, x_9, x_10); +x_15 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main(x_4, x_5, x_6, x_7, x_12, x_14, x_9, x_10); return x_15; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1() { _start: { lean_object* x_1; @@ -4723,31 +4723,31 @@ x_1 = lean_mk_string("unexpected 'do' expression element"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1; +x_1 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2; +x_1 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3; +x_1 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3; x_2 = l_Lean_MessageData_ofList___closed__3; x_3 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -4755,7 +4755,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5() { _start: { lean_object* x_1; @@ -4763,27 +4763,27 @@ x_1 = lean_mk_string("the last statement in a 'do' block must be an expression") return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5; +x_1 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7() { +lean_object* _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6; +x_1 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main(lean_object* x_1, lean_object* x_2, 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; uint8_t x_13; @@ -4811,7 +4811,7 @@ lean_dec(x_1); lean_inc(x_10); x_16 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_16, 0, x_10); -x_17 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4; +x_17 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4; x_18 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); @@ -4893,7 +4893,7 @@ lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); -x_36 = l___private_Init_Lean_Elab_DoNotation_10__mkBind(x_10, x_2, x_3, x_6, x_34, x_7, x_35); +x_36 = l___private_Lean_Elab_DoNotation_10__mkBind(x_10, x_2, x_3, x_6, x_34, x_7, x_35); lean_dec(x_6); lean_dec(x_10); return x_36; @@ -4966,7 +4966,7 @@ lean_dec(x_2); lean_inc(x_10); x_45 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_45, 0, x_10); -x_46 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4; +x_46 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4; x_47 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); @@ -5053,7 +5053,7 @@ lean_inc(x_79); x_80 = lean_ctor_get(x_78, 1); lean_inc(x_80); lean_dec(x_78); -x_81 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___lambda__1___boxed), 10, 7); +x_81 = lean_alloc_closure((void*)(l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___lambda__1___boxed), 10, 7); lean_closure_set(x_81, 0, x_5); lean_closure_set(x_81, 1, x_79); lean_closure_set(x_81, 2, x_6); @@ -5179,7 +5179,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_96 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7; +x_96 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7; x_97 = l_Lean_Elab_Term_throwError___rarg(x_10, x_96, x_7, x_8); lean_dec(x_10); x_98 = !lean_is_exclusive(x_97); @@ -5204,30 +5204,30 @@ return x_101; } } } -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_1); return x_11; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_DoNotation_11__processDoElemsAux(lean_object* x_1, lean_object* x_2, 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___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_9; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_12__processDoElems(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_DoNotation_12__processDoElems(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; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Array_empty___closed__1; -x_9 = l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main(x_1, x_2, x_3, x_4, x_7, x_8, x_5, x_6); +x_9 = l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main(x_1, x_2, x_3, x_4, x_7, x_8, x_5, x_6); return x_9; } } @@ -5235,7 +5235,7 @@ lean_object* _init_l_Lean_Elab_Term_elabDo___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Parser_Term_do___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -5245,7 +5245,7 @@ lean_object* l_Lean_Elab_Term_elabDo(lean_object* x_1, lean_object* x_2, lean_ob _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_82; -x_5 = l___private_Init_Lean_Elab_DoNotation_3__getDoElems(x_1); +x_5 = l___private_Lean_Elab_DoNotation_3__getDoElems(x_1); x_82 = l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(x_2, x_3, x_4); if (lean_obj_tag(x_82) == 0) { @@ -5284,7 +5284,7 @@ lean_ctor_set(x_97, 1, x_85); x_98 = 0; x_99 = lean_unsigned_to_nat(0u); lean_inc(x_5); -x_100 = l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main(x_98, x_5, x_99, x_97, x_95); +x_100 = l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main(x_98, x_5, x_99, x_97, x_95); if (lean_obj_tag(x_100) == 0) { uint8_t x_101; @@ -5477,7 +5477,7 @@ block_47: lean_object* x_13; lean_inc(x_3); lean_inc(x_2); -x_13 = l___private_Init_Lean_Elab_DoNotation_2__extractBind(x_1, x_2, x_3, x_12); +x_13 = l___private_Lean_Elab_DoNotation_2__extractBind(x_1, x_2, x_3, x_12); lean_dec(x_1); if (lean_obj_tag(x_13) == 0) { @@ -5498,7 +5498,7 @@ lean_dec(x_14); x_18 = l_Lean_Expr_Inhabited; x_19 = l_Option_get_x21___rarg___closed__3; x_20 = lean_panic_fn(x_18, x_19); -x_21 = l___private_Init_Lean_Elab_DoNotation_12__processDoElems(x_11, x_16, x_17, x_20, x_3, x_15); +x_21 = l___private_Lean_Elab_DoNotation_12__processDoElems(x_11, x_16, x_17, x_20, x_3, x_15); if (lean_obj_tag(x_21) == 0) { uint8_t x_22; @@ -5558,7 +5558,7 @@ lean_dec(x_14); x_33 = lean_ctor_get(x_2, 0); lean_inc(x_33); lean_dec(x_2); -x_34 = l___private_Init_Lean_Elab_DoNotation_12__processDoElems(x_11, x_31, x_32, x_33, x_3, x_30); +x_34 = l___private_Lean_Elab_DoNotation_12__processDoElems(x_11, x_31, x_32, x_33, x_3, x_30); if (lean_obj_tag(x_34) == 0) { uint8_t x_35; @@ -5731,7 +5731,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_DoNotation_13__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Elab_DoNotation_13__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -5787,73 +5787,73 @@ return x_13; } } } -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); -lean_object* initialize_Init_Lean_Elab_Binders(lean_object*); -lean_object* initialize_Init_Lean_Elab_Quotation(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Elab_Binders(lean_object*); +lean_object* initialize_Lean_Elab_Quotation(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_DoNotation(lean_object* w) { +lean_object* initialize_Lean_Elab_DoNotation(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Binders(lean_io_mk_world()); +res = initialize_Lean_Elab_Binders(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Quotation(lean_io_mk_world()); +res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1 = _init_l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1); -l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2 = _init_l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2); -l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3 = _init_l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3); -l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4 = _init_l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4); -l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__1 = _init_l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__1); -l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__2 = _init_l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__2); -l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__3 = _init_l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_2__extractBind___closed__3); -l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1 = _init_l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1); -l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2 = _init_l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2); -l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3 = _init_l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3); -l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4 = _init_l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4); -l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1 = _init_l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1); -l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2 = _init_l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2); +l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1 = _init_l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__1); +l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2 = _init_l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__2); +l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3 = _init_l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__3); +l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4 = _init_l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_1__mkIdBindFor___closed__4); +l___private_Lean_Elab_DoNotation_2__extractBind___closed__1 = _init_l___private_Lean_Elab_DoNotation_2__extractBind___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_2__extractBind___closed__1); +l___private_Lean_Elab_DoNotation_2__extractBind___closed__2 = _init_l___private_Lean_Elab_DoNotation_2__extractBind___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_2__extractBind___closed__2); +l___private_Lean_Elab_DoNotation_2__extractBind___closed__3 = _init_l___private_Lean_Elab_DoNotation_2__extractBind___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_2__extractBind___closed__3); +l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1 = _init_l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__1); +l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2 = _init_l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__2); +l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3 = _init_l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__3); +l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4 = _init_l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_5__expandLiftMethodAux___main___closed__4); +l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1 = _init_l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__1); +l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2 = _init_l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_7__expandDoElemsAux___main___closed__2); l_Lean_Elab_Term_ProcessedDoElem_inhabited___closed__1 = _init_l_Lean_Elab_Term_ProcessedDoElem_inhabited___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_ProcessedDoElem_inhabited___closed__1); l_Lean_Elab_Term_ProcessedDoElem_inhabited = _init_l_Lean_Elab_Term_ProcessedDoElem_inhabited(); lean_mark_persistent(l_Lean_Elab_Term_ProcessedDoElem_inhabited); -l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1 = _init_l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1); -l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2 = _init_l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2); -l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3 = _init_l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3); -l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1 = _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1); -l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2 = _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2); -l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3 = _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3); -l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4 = _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4); -l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5 = _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5); -l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6 = _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6); -l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7 = _init_l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7); +l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1 = _init_l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__1); +l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2 = _init_l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__2); +l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3 = _init_l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_9__extractTypeFormerAppArg___closed__3); +l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1 = _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__1); +l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2 = _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__2); +l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3 = _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__3); +l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4 = _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__4); +l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5 = _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__5); +l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6 = _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__6); +l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7 = _init_l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_DoNotation_11__processDoElemsAux___main___closed__7); l_Lean_Elab_Term_elabDo___closed__1 = _init_l_Lean_Elab_Term_elabDo___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_elabDo___closed__1); l___regBuiltin_Lean_Elab_Term_elabDo___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabDo___closed__1(); @@ -5861,7 +5861,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabDo___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabDo(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l___private_Init_Lean_Elab_DoNotation_13__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_Elab_DoNotation_13__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Elab/Exception.c b/stage0/stdlib/Lean/Elab/Exception.c similarity index 94% rename from stage0/stdlib/Init/Lean/Elab/Exception.c rename to stage0/stdlib/Lean/Elab/Exception.c index f963892c9e..6f47838ac2 100644 --- a/stage0/stdlib/Init/Lean/Elab/Exception.c +++ b/stage0/stdlib/Lean/Elab/Exception.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Exception -// Imports: Init.Lean.Meta.Message +// Module: Lean.Elab.Exception +// Imports: Lean.Meta.Message #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -128,13 +128,13 @@ lean_dec(x_2); return x_5; } } -lean_object* initialize_Init_Lean_Meta_Message(lean_object*); +lean_object* initialize_Lean_Meta_Message(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Exception(lean_object* w) { +lean_object* initialize_Lean_Elab_Exception(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Message(lean_io_mk_world()); +res = initialize_Lean_Meta_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Exception_inhabited___closed__1 = _init_l_Lean_Elab_Exception_inhabited___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Frontend.c b/stage0/stdlib/Lean/Elab/Frontend.c similarity index 97% rename from stage0/stdlib/Init/Lean/Elab/Frontend.c rename to stage0/stdlib/Lean/Elab/Frontend.c index ac76de267d..1beb336501 100644 --- a/stage0/stdlib/Init/Lean/Elab/Frontend.c +++ b/stage0/stdlib/Lean/Elab/Frontend.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Frontend -// Imports: Init.Lean.Elab.Import Init.Lean.Elab.Command +// Module: Lean.Elab.Frontend +// Imports: Lean.Elab.Import Lean.Elab.Command #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -26,9 +26,9 @@ lean_object* l_Lean_Elab_Frontend_liftIOCore_x21(lean_object*); lean_object* lean_io_mk_ref(lean_object*, lean_object*); lean_object* lean_io_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_runCommandElabM___closed__1; +lean_object* l___private_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkInputContext(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_runCommandElabM(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_updateCmdPos___closed__1; lean_object* l_Lean_Elab_Frontend_processCommandsAux___main___rarg(lean_object*, lean_object*); @@ -42,21 +42,21 @@ lean_object* l_Lean_Parser_parseCommand___main(lean_object*, lean_object*, lean_ lean_object* l_Lean_Elab_Frontend_processCommandsAux___boxed(lean_object*); extern lean_object* l_PersistentArray_empty___closed__3; lean_object* l_Lean_Elab_Frontend_elabCommandAtFrontend(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; lean_object* l_Lean_Elab_Command_elabCommand___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_updateCmdPos(lean_object*, lean_object*); extern lean_object* l_Lean_firstFrontendMacroScope; lean_object* l_Lean_Elab_Frontend_processCommand(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_processCommandsAux___main(lean_object*); +lean_object* l___private_Lean_Elab_Command_2__getState(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_liftIOCore_x21___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_ModuleParserState_inhabited; -lean_object* l___private_Init_Lean_Elab_Command_2__getState(lean_object*, lean_object*); lean_object* lean_run_frontend(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_processCommandsAux___main___boxed(lean_object*); lean_object* l_Lean_Elab_Frontend_processCommandsAux(lean_object*); lean_object* l_Lean_Elab_Frontend_elabCommandAtFrontend___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_processCommand___boxed(lean_object*, lean_object*); uint8_t l_Lean_Parser_isExitCommand(lean_object*); -extern lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; lean_object* l_Lean_Elab_Frontend_getInputContext(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_getCommandState(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_getParserState(lean_object*, lean_object*); @@ -74,11 +74,11 @@ lean_object* l_Lean_Elab_Frontend_setMessages(lean_object*, lean_object*, lean_o lean_object* l_Lean_Elab_Frontend_setMessages___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); extern lean_object* l_Nat_Inhabited; +lean_object* l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_getParserState___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_process(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_liftTermElabM___rarg___closed__1; lean_object* l_Lean_Elab_Frontend_processCommands___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_processCommands(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_getCommandState___boxed(lean_object*, lean_object*); lean_object* l_monadInhabited___rarg(lean_object*, lean_object*); @@ -419,7 +419,7 @@ x_23 = lean_ctor_get(x_21, 0); lean_inc(x_23); lean_dec(x_21); lean_inc(x_15); -x_24 = l___private_Init_Lean_Elab_Command_2__getState(x_15, x_22); +x_24 = l___private_Lean_Elab_Command_2__getState(x_15, x_22); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; lean_object* x_26; uint8_t x_27; @@ -435,7 +435,7 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; x_28 = lean_ctor_get(x_25, 1); x_29 = l_PersistentArray_push___rarg(x_28, x_23); lean_ctor_set(x_25, 1, x_29); -x_30 = l___private_Init_Lean_Elab_Command_3__setState(x_25, x_15, x_26); +x_30 = l___private_Lean_Elab_Command_3__setState(x_25, x_15, x_26); if (lean_obj_tag(x_30) == 0) { uint8_t x_31; @@ -511,7 +511,7 @@ lean_ctor_set(x_49, 1, x_48); lean_ctor_set(x_49, 2, x_45); lean_ctor_set(x_49, 3, x_46); lean_ctor_set(x_49, 4, x_47); -x_50 = l___private_Init_Lean_Elab_Command_3__setState(x_49, x_15, x_26); +x_50 = l___private_Lean_Elab_Command_3__setState(x_49, x_15, x_26); if (lean_obj_tag(x_50) == 0) { lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; @@ -727,7 +727,7 @@ x_100 = lean_ctor_get(x_98, 0); lean_inc(x_100); lean_dec(x_98); lean_inc(x_92); -x_101 = l___private_Init_Lean_Elab_Command_2__getState(x_92, x_99); +x_101 = l___private_Lean_Elab_Command_2__getState(x_92, x_99); if (lean_obj_tag(x_101) == 0) { lean_object* x_102; lean_object* x_103; uint8_t x_104; @@ -743,7 +743,7 @@ lean_object* x_105; lean_object* x_106; lean_object* x_107; x_105 = lean_ctor_get(x_102, 1); x_106 = l_PersistentArray_push___rarg(x_105, x_100); lean_ctor_set(x_102, 1, x_106); -x_107 = l___private_Init_Lean_Elab_Command_3__setState(x_102, x_92, x_103); +x_107 = l___private_Lean_Elab_Command_3__setState(x_102, x_92, x_103); if (lean_obj_tag(x_107) == 0) { uint8_t x_108; @@ -819,7 +819,7 @@ lean_ctor_set(x_126, 1, x_125); lean_ctor_set(x_126, 2, x_122); lean_ctor_set(x_126, 3, x_123); lean_ctor_set(x_126, 4, x_124); -x_127 = l___private_Init_Lean_Elab_Command_3__setState(x_126, x_92, x_103); +x_127 = l___private_Lean_Elab_Command_3__setState(x_126, x_92, x_103); if (lean_obj_tag(x_127) == 0) { lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; @@ -2951,8 +2951,8 @@ if (x_12 == 0) lean_object* x_13; lean_object* x_14; lean_object* x_15; x_13 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_13, 0, x_10); -x_14 = l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; -x_15 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_14, x_11, x_9); +x_14 = l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; +x_15 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_14, x_11, x_9); lean_dec(x_11); if (lean_obj_tag(x_15) == 0) { @@ -3007,8 +3007,8 @@ else lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec(x_10); x_24 = lean_box(0); -x_25 = l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; -x_26 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_25, x_11, x_9); +x_25 = l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; +x_26 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_25, x_11, x_9); lean_dec(x_11); if (lean_obj_tag(x_26) == 0) { @@ -3082,17 +3082,17 @@ return x_38; } } } -lean_object* initialize_Init_Lean_Elab_Import(lean_object*); -lean_object* initialize_Init_Lean_Elab_Command(lean_object*); +lean_object* initialize_Lean_Elab_Import(lean_object*); +lean_object* initialize_Lean_Elab_Command(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Frontend(lean_object* w) { +lean_object* initialize_Lean_Elab_Frontend(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Import(lean_io_mk_world()); +res = initialize_Lean_Elab_Import(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Command(lean_io_mk_world()); +res = initialize_Lean_Elab_Command(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Frontend_runCommandElabM___closed__1 = _init_l_Lean_Elab_Frontend_runCommandElabM___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Import.c b/stage0/stdlib/Lean/Elab/Import.c similarity index 99% rename from stage0/stdlib/Init/Lean/Elab/Import.c rename to stage0/stdlib/Lean/Elab/Import.c index 1296e74e36..700bd38d92 100644 --- a/stage0/stdlib/Init/Lean/Elab/Import.c +++ b/stage0/stdlib/Lean/Elab/Import.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Import -// Imports: Init.Lean.Parser.Module +// Module: Lean.Elab.Import +// Imports: Lean.Parser.Module #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1094,13 +1094,13 @@ x_3 = l_List_forM___main___at_Lean_Elab_printDeps___spec__1(x_1, x_2); return x_3; } } -lean_object* initialize_Init_Lean_Parser_Module(lean_object*); +lean_object* initialize_Lean_Parser_Module(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Import(lean_object* w) { +lean_object* initialize_Lean_Elab_Import(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Parser_Module(lean_io_mk_world()); +res = initialize_Lean_Parser_Module(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_headerToImports___closed__1 = _init_l_Lean_Elab_headerToImports___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Level.c b/stage0/stdlib/Lean/Elab/Level.c similarity index 98% rename from stage0/stdlib/Init/Lean/Elab/Level.c rename to stage0/stdlib/Lean/Elab/Level.c index 840ce584e8..3a4c47cfd9 100644 --- a/stage0/stdlib/Init/Lean/Elab/Level.c +++ b/stage0/stdlib/Lean/Elab/Level.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Level -// Imports: Init.Lean.Meta.LevelDefEq Init.Lean.Elab.Exception Init.Lean.Elab.Log +// Module: Lean.Elab.Level +// Imports: Lean.Meta.LevelDefEq Lean.Elab.Exception Lean.Elab.Log #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1505,21 +1505,21 @@ x_4 = l_Lean_Elab_Level_elabLevel___main(x_1, x_2, x_3); return x_4; } } -lean_object* initialize_Init_Lean_Meta_LevelDefEq(lean_object*); -lean_object* initialize_Init_Lean_Elab_Exception(lean_object*); -lean_object* initialize_Init_Lean_Elab_Log(lean_object*); +lean_object* initialize_Lean_Meta_LevelDefEq(lean_object*); +lean_object* initialize_Lean_Elab_Exception(lean_object*); +lean_object* initialize_Lean_Elab_Log(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Level(lean_object* w) { +lean_object* initialize_Lean_Elab_Level(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_LevelDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_LevelDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Exception(lean_io_mk_world()); +res = initialize_Lean_Elab_Exception(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Log(lean_io_mk_world()); +res = initialize_Lean_Elab_Log(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Level_LevelElabM_MonadLog___closed__1 = _init_l_Lean_Elab_Level_LevelElabM_MonadLog___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Log.c b/stage0/stdlib/Lean/Elab/Log.c similarity index 98% rename from stage0/stdlib/Init/Lean/Elab/Log.c rename to stage0/stdlib/Lean/Elab/Log.c index 8327225299..105fe46615 100644 --- a/stage0/stdlib/Init/Lean/Elab/Log.c +++ b/stage0/stdlib/Lean/Elab/Log.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Log -// Imports: Init.Lean.Elab.Util Init.Lean.Elab.Exception +// Module: Lean.Elab.Log +// Imports: Lean.Elab.Util Lean.Elab.Exception #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -725,17 +725,17 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_throwErrorUsingCmdPos___rarg), 5, 0 return x_2; } } -lean_object* initialize_Init_Lean_Elab_Util(lean_object*); -lean_object* initialize_Init_Lean_Elab_Exception(lean_object*); +lean_object* initialize_Lean_Elab_Util(lean_object*); +lean_object* initialize_Lean_Elab_Exception(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Log(lean_object* w) { +lean_object* initialize_Lean_Elab_Log(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Util(lean_io_mk_world()); +res = initialize_Lean_Elab_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Exception(lean_io_mk_world()); +res = initialize_Lean_Elab_Exception(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c similarity index 86% rename from stage0/stdlib/Init/Lean/Elab/Match.c rename to stage0/stdlib/Lean/Elab/Match.c index 2e48f6a32c..875a8a1e67 100644 --- a/stage0/stdlib/Init/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Match -// Imports: Init.Lean.Elab.Term +// Module: Lean.Elab.Match +// Imports: Lean.Elab.Term #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,45 +13,45 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1; lean_object* l_Lean_Elab_Term_elabMatch(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1; extern lean_object* l_Lean_identKind___closed__2; extern lean_object* l_Array_empty___closed__1; -lean_object* l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__6; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1; extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabMatch(lean_object*); -lean_object* l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__1; lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__3; lean_object* l_Lean_Elab_Term_elabTermAux___main(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; +lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__6; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; extern lean_object* l_Lean_nullKind___closed__2; extern lean_object* l_Lean_Elab_Term_termElabAttribute; -lean_object* l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__2; +lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__3; extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__5; extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); -lean_object* l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__4; extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1; extern lean_object* l_Lean_Parser_Term_letIdDecl___closed__2; -lean_object* l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__5; extern lean_object* l_Lean_Parser_Term_matchAlt___closed__2; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Match_1__expandSimpleMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__4; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2; -lean_object* _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__1() { +lean_object* _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -63,17 +63,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__2() { +lean_object* _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__1; +x_2 = l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__3() { +lean_object* _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__3() { _start: { lean_object* x_1; @@ -81,19 +81,19 @@ x_1 = lean_mk_string(":="); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__4() { +lean_object* _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__3; +x_2 = l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__3; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__5() { +lean_object* _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__5() { _start: { lean_object* x_1; @@ -101,19 +101,19 @@ x_1 = lean_mk_string(";"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__6() { +lean_object* _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__5; +x_2 = l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__5; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Match_1__expandSimpleMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Match_1__expandSimpleMatch(lean_object* x_1, 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; lean_object* x_27; lean_object* x_28; uint8_t x_29; @@ -127,19 +127,19 @@ lean_inc(x_11); lean_dec(x_10); x_12 = l_Array_empty___closed__1; x_13 = lean_array_push(x_12, x_3); -x_14 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_14 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_15 = lean_array_push(x_13, x_14); x_16 = lean_array_push(x_15, x_14); -x_17 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__4; +x_17 = l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__4; x_18 = lean_array_push(x_16, x_17); x_19 = lean_array_push(x_18, x_2); x_20 = l_Lean_Parser_Term_letIdDecl___closed__2; x_21 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); -x_22 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__2; +x_22 = l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2; x_23 = lean_array_push(x_22, x_21); -x_24 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__6; +x_24 = l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__6; x_25 = lean_array_push(x_23, x_24); x_26 = lean_array_push(x_25, x_4); x_27 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -217,7 +217,7 @@ return x_52; } } } -lean_object* _init_l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1() { +lean_object* _init_l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -229,17 +229,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2() { +lean_object* _init_l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1; +x_2 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; @@ -253,9 +253,9 @@ lean_inc(x_12); lean_dec(x_11); x_13 = l_Array_empty___closed__1; x_14 = lean_array_push(x_13, x_3); -x_15 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_15 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_16 = lean_array_push(x_14, x_15); -x_17 = l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2; +x_17 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2; x_18 = lean_array_push(x_17, x_4); x_19 = l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; x_20 = lean_alloc_ctor(1, 2, 0); @@ -267,16 +267,16 @@ x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); x_24 = lean_array_push(x_16, x_23); -x_25 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__4; +x_25 = l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__4; x_26 = lean_array_push(x_24, x_25); x_27 = lean_array_push(x_26, x_2); x_28 = l_Lean_Parser_Term_letIdDecl___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__2; +x_30 = l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2; x_31 = lean_array_push(x_30, x_29); -x_32 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__6; +x_32 = l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__6; x_33 = lean_array_push(x_31, x_32); x_34 = lean_array_push(x_33, x_5); x_35 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -783,7 +783,7 @@ else lean_object* x_50; lean_object* x_51; x_50 = l_Lean_Syntax_getArg(x_29, x_13); lean_dec(x_29); -x_51 = l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_12, x_38, x_20, x_50, x_2, x_3, x_4); +x_51 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_12, x_38, x_20, x_50, x_2, x_3, x_4); return x_51; } } @@ -1053,7 +1053,7 @@ else lean_object* x_113; lean_object* x_114; x_113 = l_Lean_Syntax_getArg(x_93, x_13); lean_dec(x_93); -x_114 = l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_12, x_102, x_20, x_113, x_2, x_3, x_4); +x_114 = l___private_Lean_Elab_Match_2__expandSimpleMatchWithType(x_1, x_12, x_102, x_20, x_113, x_2, x_3, x_4); return x_114; } } @@ -1355,7 +1355,7 @@ else lean_object* x_190; lean_object* x_191; x_190 = l_Lean_Syntax_getArg(x_170, x_13); lean_dec(x_170); -x_191 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_12, x_179, x_190, x_2, x_3, x_4); +x_191 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_12, x_179, x_190, x_2, x_3, x_4); return x_191; } } @@ -1618,7 +1618,7 @@ else lean_object* x_250; lean_object* x_251; x_250 = l_Lean_Syntax_getArg(x_230, x_13); lean_dec(x_230); -x_251 = l___private_Init_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_12, x_239, x_250, x_2, x_3, x_4); +x_251 = l___private_Lean_Elab_Match_1__expandSimpleMatch(x_1, x_12, x_239, x_250, x_2, x_3, x_4); return x_251; } } @@ -1660,31 +1660,31 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Match(lean_object* w) { +lean_object* initialize_Lean_Elab_Match(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__1 = _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__1); -l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__2 = _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__2); -l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__3 = _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__3); -l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__4 = _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__4); -l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__5 = _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__5); -l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__6 = _init_l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Match_1__expandSimpleMatch___closed__6); -l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1 = _init_l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1); -l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2 = _init_l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2); +l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1 = _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__1); +l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2 = _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__2); +l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__3 = _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__3); +l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__4 = _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__4); +l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__5 = _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__5); +l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__6 = _init_l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Match_1__expandSimpleMatch___closed__6); +l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1 = _init_l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__1); +l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2 = _init_l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Match_2__expandSimpleMatchWithType___closed__2); l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabMatch(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c similarity index 77% rename from stage0/stdlib/Init/Lean/Elab/Quotation.c rename to stage0/stdlib/Lean/Elab/Quotation.c index 2337d9b4a7..1fe46dc110 100644 --- a/stage0/stdlib/Init/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Quotation -// Imports: Init.Lean.Syntax Init.Lean.Elab.ResolveName Init.Lean.Elab.Term Init.Lean.Parser +// Module: Lean.Elab.Quotation +// Imports: Lean.Syntax Lean.Elab.ResolveName Lean.Elab.Term Lean.Parser #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,583 +13,583 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6; lean_object* l_List_reverse___rarg(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4; extern lean_object* l_Lean_Expr_eq_x3f___closed__1; extern lean_object* l_Lean_mkHole___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_9__exprPlaceholder___closed__1; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; lean_object* l_List_tail_x21___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__11(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__14(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__2; lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__1; -extern lean_object* l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; extern lean_object* l_Lean_Parser_declareBuiltinParser___closed__8; extern lean_object* l_Lean_Parser_darrow___elambda__1___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; +lean_object* l_Array_findMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33; lean_object* l_Lean_mkTermIdFromIdent(lean_object*); extern lean_object* l_Lean_Nat_HasQuote___closed__2; lean_object* l_unreachable_x21___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__12; +lean_object* l___private_Lean_Syntax_7__quoteName___main(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__26; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind___closed__1; -lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3; -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main(lean_object*); +lean_object* l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_7__getPatternVarsAux___boxed(lean_object*); lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); extern lean_object* l_Option_HasRepr___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36; extern lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__2; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7; lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3; +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__1___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; extern lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5; lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); lean_object* lean_local_ctx_mk_let_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30; -lean_object* l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Prod_HasRepr___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_findMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(lean_object*); extern lean_object* l_PersistentHashMap_mkCollisionNode___rarg___closed__1; extern lean_object* l_Lean_Meta_mkPure___closed__4; lean_object* l_Lean_mkMVar(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13; extern lean_object* l_Array_empty___closed__1; lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_HeadInfo_Inhabited___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; extern lean_object* l_Lean_Literal_type___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__14; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__9; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabStxQuot___closed__1; lean_object* l_Lean_Parser_mkParserState(lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__1___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__27; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50; lean_object* l_Lean_Parser_mkInputContext(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_Inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_Inhabited___closed__2; +lean_object* l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__23; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9; lean_object* l_List_range(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__14; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Parser_checkStackTopFn___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; +lean_object* l___private_Lean_Elab_Quotation_7__getPatternVarsAux___main(lean_object*); extern lean_object* l_Lean_Elab_Term_mkFreshAnonymousName___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_unitToExpr___lambda__1___closed__3; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; -lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_antiquotKind_x3f___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; lean_object* l_Lean_Elab_Term_Quotation_antiquotKind_x3f___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabStxQuot(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAtom(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__13; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___lambda__1___boxed(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51; extern lean_object* l_Lean_mkTermIdFromIdent___closed__1; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25; -lean_object* l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__5; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_oldExpandMatchSyntax___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19; extern lean_object* l_Lean_mkAppStx___closed__8; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__9(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; extern lean_object* l_Lean_mkAppStx___closed__7; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__5; -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__18; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__5; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; extern lean_object* l_Lean_Meta_mkPure___closed__3; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1; lean_object* l_Lean_Elab_Term_Quotation_oldExpandStxQuot___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__30; +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27; lean_object* l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkMData(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1; +lean_object* l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3; lean_object* l_List_replicate___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_getPatternVars(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61; -lean_object* l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__10(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_run___rarg___closed__5; lean_object* l_List_map___main___at_Lean_Elab_Term_Quotation_oldGetPatternVars___spec__1(lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__6; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__2; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__7; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; lean_object* l_Lean_Parser_ParserState_setPos(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3; lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1; lean_object* l_Lean_Syntax_findAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23; extern lean_object* l_List_Monad; extern lean_object* l_Lean_Nat_HasQuote___closed__1; extern lean_object* l_Lean_Parser_Term_band___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo(lean_object*); extern lean_object* l_Lean_numLitKind; extern lean_object* l_Lean_choiceKind___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__9; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__2; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__17; lean_object* lean_expand_stx_quot(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17; lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__8; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_band___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__22; -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__8; lean_object* l_Lean_Elab_Term_Quotation_isAntiquotSplice___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__1; +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___boxed(lean_object*); extern lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM(lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_String_HasQuote___closed__1; lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__4; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47; +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__1; lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5; extern lean_object* l_Lean_Unhygienic_MonadQuotation___closed__4; lean_object* l_Lean_Elab_Term_Quotation_isAntiquotSplicePat___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotTerm(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder___closed__1; lean_object* lean_mk_empty_local_ctx(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36; +lean_object* l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Elab_Term_Quotation_isAntiquotSplicePat___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(lean_object*); +extern lean_object* l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; lean_object* l_Nat_repr(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__15; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29; lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_Inhabited; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__8(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__2; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27; extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__3; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__7(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1; lean_object* l_Lean_Syntax_getId(lean_object*); +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__14(lean_object*, lean_object*, lean_object*); lean_object* lean_get_antiquot_vars(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_termParser___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind; -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21; lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9; +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__28; extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_object*); -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6; extern lean_object* l_Lean_Elab_Exception_hasToString___closed__1; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__14; extern lean_object* l_PersistentArray_empty___closed__3; lean_object* l_Lean_Elab_Term_resolveName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49; +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6; lean_object* l_List_map___main___at_Lean_Elab_Term_Quotation_oldExpandMatchSyntax___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__1; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26; extern lean_object* l_Lean_mkAppStx___closed__6; extern lean_object* l_Lean_Options_empty; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1; lean_object* l_List_map___main___at_Lean_Elab_Term_Quotation_oldExpandMatchSyntax___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; extern lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__1; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__3; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; extern lean_object* l_Lean_Parser_Term_append___elambda__1___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__3; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3; +lean_object* l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; lean_object* l_Lean_Elab_Term_Quotation_isEscapedAntiquot___boxed(lean_object*); extern lean_object* l_List_head_x21___rarg___closed__2; uint8_t l_Array_isEmpty___rarg(lean_object*); uint8_t l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___lambda__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36; extern lean_object* l_Lean_firstFrontendMacroScope; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___boxed(lean_object*); +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__9(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__2; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64; +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; lean_object* l_Lean_FileMap_ofString(lean_object*); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; lean_object* l_List_redLength___main___rarg(lean_object*); lean_object* l_Lean_Parser_getTokenTable(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__10; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__6; lean_object* l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_listLitAux___main___closed__4; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47; uint8_t l_Lean_Elab_Term_Quotation_isAntiquot(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60; lean_object* l_Lean_mkFVar(lean_object*); extern lean_object* l_Lean_optionToExpr___rarg___lambda__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4; lean_object* l_Lean_Elab_Term_TermElabM_inhabited___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; extern lean_object* l_Lean_nullKind___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +lean_object* l___private_Lean_Elab_Quotation_7__getPatternVarsAux(lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__8(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46; extern lean_object* l_Lean_String_HasQuote___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; uint8_t l_Lean_Syntax_isAtom(lean_object*); extern lean_object* l_Lean_nullKind___closed__2; extern lean_object* l_Lean_Parser_Term_if___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3; lean_object* l_List_join___main___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__10(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25; +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_termElabAttribute; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__3; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__29; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3(lean_object*, lean_object*); lean_object* l_Lean_KVMap_setName(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__25; lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_appPrec; +lean_object* l___private_Lean_Elab_Quotation_9__exprPlaceholder; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29; extern lean_object* l_Option_HasRepr___rarg___closed__3; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__10; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28; -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(lean_object*); extern lean_object* l_Lean_Syntax_inhabited; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__4; extern lean_object* l_Lean_mkAppStx___closed__5; extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__3; +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString(lean_object*); extern lean_object* l_Lean_Expr_listLitAux___main___closed__6; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_isAntiquotSplicePat(lean_object*); lean_object* l_Lean_Elab_Term_getLCtx(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4; +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__1(lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__2; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__13(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__20; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_if___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___spec__1(lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__12(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2; +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2; extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__1; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6; lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_HeadInfo_Inhabited___spec__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); extern lean_object* l_Bool_HasRepr___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__2; lean_object* l_Lean_Syntax_getKind(lean_object*); extern lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12; extern lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3(lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__8; lean_object* lean_panic_fn(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +extern lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__4; lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_HeadInfo_Inhabited___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; extern lean_object* l_Lean_boolToExpr___lambda__1___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__12; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3; lean_object* l_Lean_Elab_Term_Quotation_oldParseExpr___closed__1; lean_object* l_Lean_LocalContext_mkLambda(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; extern lean_object* l_Lean_mkHole___closed__1; -lean_object* l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2; +extern lean_object* l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; +lean_object* l___private_Lean_Elab_Quotation_1__elimAntiquotChoices(lean_object*); lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_isAntiquot___boxed(lean_object*); lean_object* l_Lean_mkStxStrLit(lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_isAntiquotSplice(lean_object*); lean_object* lean_parse_expr(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50; -lean_object* l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6; extern lean_object* l_Lean_Parser_Term_letIdDecl___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7; -extern lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; lean_object* l_Lean_mkCAppStx(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; extern lean_object* l_Lean_mkAppStx___closed__9; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__3(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3___boxed(lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54; lean_object* l_Lean_Elab_Term_Quotation_elabStxQuot___closed__1; extern lean_object* l_Lean_Unhygienic_MonadQuotation___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; lean_object* lean_get_namespace(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; uint8_t l_Lean_Syntax_isNone(lean_object*); extern lean_object* l_Lean_TraceState_Inhabited___closed__1; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49; extern lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10; +lean_object* l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_letIdDecl___closed__1; -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33; extern lean_object* l_Lean_prodToExpr___rarg___lambda__1___closed__3; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1; +lean_object* l___private_Lean_Elab_Quotation_7__getPatternVarsAux___main___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; lean_object* l_Array_toList___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3; lean_object* lean_array_pop(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__16; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__4; lean_object* l_Lean_Elab_Term_resolveGlobalName(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main(lean_object*); +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7; extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; +extern lean_object* l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; extern lean_object* l_Lean_mkHole___closed__2; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24; extern lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46; extern lean_object* l_List_foldlM___main___at_Lean_parseSearchPath___spec__7___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabStxQuot(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__3; +lean_object* l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__1; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__9; lean_object* l_Lean_mkStxLit(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__24; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; extern lean_object* l_Lean_MetavarContext_Inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20; extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__1; +lean_object* l___private_Lean_Elab_Quotation_11__oldRunTermElabM(lean_object*); extern lean_object* l_Lean_Unhygienic_run___rarg___closed__1; -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkNatLit(lean_object*); lean_object* l_Lean_mkStrLit(lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_run___rarg___closed__1; lean_object* l_Lean_mkCTermIdFrom(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__7(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65; lean_object* l_Array_anyRangeMAux___main___at_Lean_Elab_Term_Quotation_isAntiquotSplicePat___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__12(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_11__oldRunTermElabM___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_arrayToExpr___rarg___closed__2; lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__12; -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4; +lean_object* l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37; lean_object* l_Lean_Message_toString(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36; lean_object* l_Lean_Elab_Term_Quotation_antiquotKind_x3f(lean_object*); -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__1; extern lean_object* l_Lean_mkAppStx___closed__2; +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__13(lean_object*, lean_object*, lean_object*); extern lean_object* l_List_zip___rarg___closed__1; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; +lean_object* l___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main(lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57; +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4; extern lean_object* l_Lean_Parser_Term_and___elambda__1___closed__1; +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotTerm___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; extern lean_object* l_Lean_Substring_HasQuote___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3; +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_isEscapedAntiquot(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__1; uint8_t l_Lean_Elab_Term_Quotation_HeadInfo_generalizes(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand(lean_object*, lean_object*, lean_object*); -lean_object* l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_zipWith___main___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__11; lean_object* lean_expand_match_syntax(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__2; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3; +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3; +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__10; extern lean_object* l_Lean_NameGenerator_Inhabited___closed__3; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5; lean_object* l_Lean_Elab_Term_Quotation_unescapeAntiquot(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_generalizes___boxed(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___boxed(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26; -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_monadInhabited___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; uint8_t l_Lean_Syntax_isIdent(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; extern lean_object* l_Lean_Parser_mkAntiquot___closed__1; uint8_t l_Lean_Elab_Term_Quotation_isAntiquot(lean_object* x_1) { _start: @@ -945,7 +945,7 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -966,7 +966,7 @@ x_6 = lean_array_fget(x_2, x_1); x_7 = lean_unsigned_to_nat(0u); x_8 = lean_array_fset(x_2, x_1, x_7); x_9 = x_6; -x_10 = l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_9); +x_10 = l___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_9); x_11 = lean_unsigned_to_nat(1u); x_12 = lean_nat_add(x_1, x_11); x_13 = x_10; @@ -978,7 +978,7 @@ goto _start; } } } -lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1066,7 +1066,7 @@ return x_23; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -1110,13 +1110,13 @@ lean_object* x_17; lean_object* x_18; lean_dec(x_4); lean_dec(x_2); x_17 = lean_unsigned_to_nat(0u); -x_18 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2(x_12, x_3, x_17); +x_18 = l_Array_findMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2(x_12, x_3, x_17); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_19 = lean_name_mk_string(x_12, x_14); x_20 = x_3; -x_21 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__1(x_17, x_20); +x_21 = l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__1(x_17, x_20); x_22 = x_21; x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_19); @@ -1156,7 +1156,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj lean_dec(x_5); x_6 = x_3; x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__1(x_7, x_6); +x_8 = l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__1(x_7, x_6); x_9 = x_8; if (lean_is_scalar(x_4)) { x_10 = lean_alloc_ctor(1, 2, 0); @@ -1174,25 +1174,25 @@ return x_1; } } } -lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2(x_1, x_2, x_3); +x_4 = l_Array_findMAux___main___at___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main___spec__2(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_1__elimAntiquotChoices(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_1); +x_2 = l___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_1); return x_2; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1() { _start: { lean_object* x_1; @@ -1200,22 +1200,22 @@ x_1 = lean_mk_string("Array.push"); return x_1; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2; +x_3 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1223,7 +1223,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4() { _start: { lean_object* x_1; @@ -1231,7 +1231,7 @@ x_1 = lean_mk_string("push"); return x_1; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5() { _start: { lean_object* x_1; @@ -1239,22 +1239,22 @@ x_1 = lean_mk_string("Array.append"); return x_1; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6; +x_3 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1262,7 +1262,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; uint8_t x_18; @@ -1346,7 +1346,7 @@ lean_inc(x_9); x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_9); -x_75 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7; +x_75 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7; lean_inc(x_6); x_76 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_76, 0, x_6); @@ -1387,7 +1387,7 @@ block_56: lean_object* x_24; lean_dec(x_23); lean_inc(x_15); -x_24 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main(x_20, x_15, x_16); +x_24 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main(x_20, x_15, x_16); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; @@ -1411,7 +1411,7 @@ lean_dec(x_30); x_33 = l_Lean_mkAppStx___closed__7; lean_inc(x_3); x_34 = lean_name_mk_string(x_3, x_33); -x_35 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4; +x_35 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4; lean_inc(x_7); x_36 = lean_name_mk_string(x_7, x_35); lean_inc(x_36); @@ -1424,7 +1424,7 @@ lean_inc(x_9); x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_9); -x_40 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3; +x_40 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3; lean_inc(x_6); x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_6); @@ -1495,7 +1495,7 @@ return x_55; } } } -lean_object* _init_l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1() { +lean_object* _init_l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1505,13 +1505,13 @@ x_3 = l_Lean_mkCTermIdFrom(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1; +x_2 = l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1; return x_2; } else @@ -1530,7 +1530,7 @@ x_9 = l_Lean_String_HasQuote___closed__2; x_10 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_8); -x_11 = l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3(x_4); +x_11 = l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3(x_4); x_12 = l_Lean_mkAppStx___closed__9; x_13 = lean_array_push(x_12, x_10); x_14 = lean_array_push(x_13, x_11); @@ -1540,13 +1540,13 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1; +x_2 = l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1; return x_2; } else @@ -1557,18 +1557,18 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(x_4); +x_5 = l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(x_4); x_6 = lean_ctor_get(x_3, 0); lean_inc(x_6); x_7 = lean_ctor_get(x_3, 1); lean_inc(x_7); lean_dec(x_3); -x_8 = l___private_Init_Lean_Syntax_7__quoteName___main(x_6); -x_9 = l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3(x_7); +x_8 = l___private_Lean_Syntax_7__quoteName___main(x_6); +x_9 = l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3(x_7); x_10 = l_Lean_mkAppStx___closed__9; x_11 = lean_array_push(x_10, x_8); x_12 = lean_array_push(x_11, x_9); -x_13 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4; +x_13 = l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__4; x_14 = l_Lean_mkCAppStx(x_13, x_12); x_15 = lean_array_push(x_10, x_14); x_16 = lean_array_push(x_15, x_5); @@ -1578,7 +1578,7 @@ return x_18; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1() { _start: { lean_object* x_1; @@ -1587,7 +1587,7 @@ lean_closure_set(x_1, 0, lean_box(0)); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2() { _start: { lean_object* x_1; @@ -1595,22 +1595,22 @@ x_1 = lean_mk_string("Array.empty"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3; +x_3 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1618,7 +1618,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5() { _start: { lean_object* x_1; @@ -1626,41 +1626,41 @@ x_1 = lean_mk_string("empty"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_arrayToExpr___rarg___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9() { _start: { lean_object* x_1; @@ -1668,22 +1668,22 @@ x_1 = lean_mk_string("Syntax.node"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10; +x_3 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1691,7 +1691,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1701,51 +1701,51 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; +x_1 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14; 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_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___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; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17() { _start: { lean_object* x_1; @@ -1753,27 +1753,27 @@ x_1 = lean_mk_string("unexpected antiquotation splice"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20() { _start: { lean_object* x_1; @@ -1781,22 +1781,22 @@ x_1 = lean_mk_string("Syntax.atom"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21; +x_3 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___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); @@ -1804,51 +1804,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; x_2 = l_Lean_Parser_Syntax_atom___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; +x_1 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; x_2 = l_Lean_Parser_Syntax_atom___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24; 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_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25; 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* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1860,17 +1860,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29() { _start: { lean_object* x_1; @@ -1878,22 +1878,22 @@ x_1 = lean_mk_string("SourceInfo.mk"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30; +x_3 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1901,7 +1901,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32() { _start: { lean_object* x_1; @@ -1909,71 +1909,71 @@ x_1 = lean_mk_string("SourceInfo"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33; x_2 = l_Lean_prodToExpr___rarg___lambda__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35; x_2 = l_Lean_prodToExpr___rarg___lambda__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36; 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_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37; 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* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39() { _start: { lean_object* x_1; lean_object* x_2; @@ -1982,13 +1982,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Option_HasRepr___rarg___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39; +x_3 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1996,7 +1996,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2006,7 +2006,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2018,19 +2018,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42; 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* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2042,7 +2042,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45() { _start: { lean_object* x_1; @@ -2050,22 +2050,22 @@ x_1 = lean_mk_string("Syntax.ident"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46; +x_3 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2073,51 +2073,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; x_2 = l_Lean_identKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; +x_1 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; x_2 = l_Lean_identKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49; 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_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___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; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2127,7 +2127,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53() { _start: { lean_object* x_1; @@ -2135,22 +2135,22 @@ x_1 = lean_mk_string("addMacroScope"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54; +x_3 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2158,51 +2158,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57; 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_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___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; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60() { _start: { lean_object* x_1; @@ -2210,22 +2210,22 @@ x_1 = lean_mk_string("mainModule"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61; +x_3 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2233,17 +2233,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64() { _start: { lean_object* x_1; @@ -2251,22 +2251,22 @@ x_1 = lean_mk_string("scp"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65; +x_3 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2274,24 +2274,24 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67() { +lean_object* _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_1)) { case 0: { lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_4 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_5 = l_unreachable_x21___rarg(x_4); x_6 = lean_apply_2(x_5, x_2, x_3); return x_6; @@ -2332,7 +2332,7 @@ return x_119; else { lean_object* x_120; lean_object* x_121; -x_120 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19; +x_120 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19; x_121 = l_Lean_Elab_Term_throwError___rarg(x_1, x_120, x_2, x_3); lean_dec(x_1); return x_121; @@ -2362,12 +2362,12 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec(x_12); -x_15 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; +x_15 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6; x_16 = l_Lean_addMacroScope(x_13, x_15, x_10); x_17 = lean_box(0); x_18 = l_Lean_SourceInfo_inhabited___closed__1; -x_19 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; -x_20 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; +x_19 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4; +x_20 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_18); lean_ctor_set(x_21, 1, x_19); @@ -2375,7 +2375,7 @@ lean_ctor_set(x_21, 2, x_16); lean_ctor_set(x_21, 3, x_20); x_22 = l_Array_empty___closed__1; x_23 = lean_array_push(x_22, x_21); -x_24 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_24 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_25 = lean_array_push(x_23, x_24); x_26 = l_Lean_mkTermIdFromIdent___closed__2; x_27 = lean_alloc_ctor(1, 2, 0); @@ -2390,7 +2390,7 @@ x_31 = l_Lean_arrayToExpr___rarg___closed__2; x_32 = l_Lean_nullKind___closed__2; x_33 = lean_unsigned_to_nat(0u); lean_inc(x_2); -x_34 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1(x_1, x_7, x_30, x_26, x_22, x_18, x_31, x_17, x_17, x_32, x_24, x_29, x_33, x_27, x_2, x_14); +x_34 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1(x_1, x_7, x_30, x_26, x_22, x_18, x_31, x_17, x_17, x_32, x_24, x_29, x_33, x_27, x_2, x_14); lean_dec(x_29); x_35 = !lean_is_exclusive(x_1); if (x_35 == 0) @@ -2421,10 +2421,10 @@ if (x_44 == 0) { lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; 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_45 = lean_ctor_get(x_43, 0); -x_46 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; +x_46 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; x_47 = l_Lean_addMacroScope(x_45, x_46, x_41); -x_48 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; -x_49 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; +x_48 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; +x_49 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; x_50 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_50, 0, x_18); lean_ctor_set(x_50, 1, x_48); @@ -2435,7 +2435,7 @@ x_52 = lean_array_push(x_51, x_24); lean_ctor_set(x_1, 1, x_52); lean_ctor_set(x_1, 0, x_26); x_53 = lean_array_push(x_22, x_1); -x_54 = l___private_Init_Lean_Syntax_7__quoteName___main(x_7); +x_54 = l___private_Lean_Syntax_7__quoteName___main(x_7); x_55 = lean_array_push(x_22, x_54); x_56 = lean_array_push(x_55, x_38); x_57 = lean_alloc_ctor(1, 2, 0); @@ -2457,10 +2457,10 @@ x_62 = lean_ctor_get(x_43, 1); lean_inc(x_62); lean_inc(x_61); lean_dec(x_43); -x_63 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; +x_63 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; x_64 = l_Lean_addMacroScope(x_61, x_63, x_41); -x_65 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; -x_66 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; +x_65 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; +x_66 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; x_67 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_67, 0, x_18); lean_ctor_set(x_67, 1, x_65); @@ -2471,7 +2471,7 @@ x_69 = lean_array_push(x_68, x_24); lean_ctor_set(x_1, 1, x_69); lean_ctor_set(x_1, 0, x_26); x_70 = lean_array_push(x_22, x_1); -x_71 = l___private_Init_Lean_Syntax_7__quoteName___main(x_7); +x_71 = l___private_Lean_Syntax_7__quoteName___main(x_7); x_72 = lean_array_push(x_22, x_71); x_73 = lean_array_push(x_72, x_38); x_74 = lean_alloc_ctor(1, 2, 0); @@ -2545,10 +2545,10 @@ if (lean_is_exclusive(x_88)) { lean_dec_ref(x_88); x_91 = lean_box(0); } -x_92 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; +x_92 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13; x_93 = l_Lean_addMacroScope(x_89, x_92, x_86); -x_94 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; -x_95 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; +x_94 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11; +x_95 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16; x_96 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_96, 0, x_18); lean_ctor_set(x_96, 1, x_94); @@ -2560,7 +2560,7 @@ x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_26); lean_ctor_set(x_99, 1, x_98); x_100 = lean_array_push(x_22, x_99); -x_101 = l___private_Init_Lean_Syntax_7__quoteName___main(x_7); +x_101 = l___private_Lean_Syntax_7__quoteName___main(x_7); x_102 = lean_array_push(x_22, x_101); x_103 = lean_array_push(x_102, x_83); x_104 = lean_alloc_ctor(1, 2, 0); @@ -2632,13 +2632,13 @@ if (x_130 == 0) { lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; x_131 = lean_ctor_get(x_129, 0); -x_132 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; +x_132 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; lean_inc(x_127); lean_inc(x_131); x_133 = l_Lean_addMacroScope(x_131, x_132, x_127); x_134 = l_Lean_SourceInfo_inhabited___closed__1; -x_135 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; -x_136 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; +x_135 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; +x_136 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; x_137 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_137, 0, x_134); lean_ctor_set(x_137, 1, x_135); @@ -2646,19 +2646,19 @@ lean_ctor_set(x_137, 2, x_133); lean_ctor_set(x_137, 3, x_136); x_138 = l_Array_empty___closed__1; x_139 = lean_array_push(x_138, x_137); -x_140 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_140 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_141 = lean_array_push(x_139, x_140); x_142 = l_Lean_mkTermIdFromIdent___closed__2; lean_ctor_set_tag(x_1, 1); lean_ctor_set(x_1, 1, x_141); lean_ctor_set(x_1, 0, x_142); x_143 = lean_array_push(x_138, x_1); -x_144 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; +x_144 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; lean_inc(x_127); lean_inc(x_131); x_145 = l_Lean_addMacroScope(x_131, x_144, x_127); -x_146 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; -x_147 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; +x_146 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; +x_147 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; x_148 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_148, 0, x_134); lean_ctor_set(x_148, 1, x_146); @@ -2670,10 +2670,10 @@ x_151 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_151, 0, x_142); lean_ctor_set(x_151, 1, x_150); x_152 = lean_array_push(x_138, x_151); -x_153 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; +x_153 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; x_154 = l_Lean_addMacroScope(x_131, x_153, x_127); -x_155 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; -x_156 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; +x_155 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; +x_156 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; x_157 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_157, 0, x_134); lean_ctor_set(x_157, 1, x_155); @@ -2703,9 +2703,9 @@ x_170 = lean_array_push(x_169, x_140); x_171 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_171, 0, x_164); lean_ctor_set(x_171, 1, x_170); -x_172 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_172 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_173 = lean_array_push(x_172, x_171); -x_174 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_174 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_175 = lean_array_push(x_173, x_174); x_176 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_177 = lean_alloc_ctor(1, 2, 0); @@ -2738,13 +2738,13 @@ x_189 = lean_ctor_get(x_129, 1); lean_inc(x_189); lean_inc(x_188); lean_dec(x_129); -x_190 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; +x_190 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; lean_inc(x_127); lean_inc(x_188); x_191 = l_Lean_addMacroScope(x_188, x_190, x_127); x_192 = l_Lean_SourceInfo_inhabited___closed__1; -x_193 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; -x_194 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; +x_193 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; +x_194 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; x_195 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_195, 0, x_192); lean_ctor_set(x_195, 1, x_193); @@ -2752,19 +2752,19 @@ lean_ctor_set(x_195, 2, x_191); lean_ctor_set(x_195, 3, x_194); x_196 = l_Array_empty___closed__1; x_197 = lean_array_push(x_196, x_195); -x_198 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_198 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_199 = lean_array_push(x_197, x_198); x_200 = l_Lean_mkTermIdFromIdent___closed__2; lean_ctor_set_tag(x_1, 1); lean_ctor_set(x_1, 1, x_199); lean_ctor_set(x_1, 0, x_200); x_201 = lean_array_push(x_196, x_1); -x_202 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; +x_202 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; lean_inc(x_127); lean_inc(x_188); x_203 = l_Lean_addMacroScope(x_188, x_202, x_127); -x_204 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; -x_205 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; +x_204 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; +x_205 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; x_206 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_206, 0, x_192); lean_ctor_set(x_206, 1, x_204); @@ -2776,10 +2776,10 @@ x_209 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_209, 0, x_200); lean_ctor_set(x_209, 1, x_208); x_210 = lean_array_push(x_196, x_209); -x_211 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; +x_211 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; x_212 = l_Lean_addMacroScope(x_188, x_211, x_127); -x_213 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; -x_214 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; +x_213 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; +x_214 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; x_215 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_215, 0, x_192); lean_ctor_set(x_215, 1, x_213); @@ -2809,9 +2809,9 @@ x_228 = lean_array_push(x_227, x_198); x_229 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_229, 0, x_222); lean_ctor_set(x_229, 1, x_228); -x_230 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_230 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_231 = lean_array_push(x_230, x_229); -x_232 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_232 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_233 = lean_array_push(x_231, x_232); x_234 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_235 = lean_alloc_ctor(1, 2, 0); @@ -2865,13 +2865,13 @@ if (lean_is_exclusive(x_251)) { lean_dec_ref(x_251); x_254 = lean_box(0); } -x_255 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; +x_255 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23; lean_inc(x_249); lean_inc(x_252); x_256 = l_Lean_addMacroScope(x_252, x_255, x_249); x_257 = l_Lean_SourceInfo_inhabited___closed__1; -x_258 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; -x_259 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; +x_258 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22; +x_259 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26; x_260 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_260, 0, x_257); lean_ctor_set(x_260, 1, x_258); @@ -2879,19 +2879,19 @@ lean_ctor_set(x_260, 2, x_256); lean_ctor_set(x_260, 3, x_259); x_261 = l_Array_empty___closed__1; x_262 = lean_array_push(x_261, x_260); -x_263 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_263 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_264 = lean_array_push(x_262, x_263); x_265 = l_Lean_mkTermIdFromIdent___closed__2; x_266 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_266, 0, x_265); lean_ctor_set(x_266, 1, x_264); x_267 = lean_array_push(x_261, x_266); -x_268 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; +x_268 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; lean_inc(x_249); lean_inc(x_252); x_269 = l_Lean_addMacroScope(x_252, x_268, x_249); -x_270 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; -x_271 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; +x_270 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; +x_271 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; x_272 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_272, 0, x_257); lean_ctor_set(x_272, 1, x_270); @@ -2903,10 +2903,10 @@ x_275 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_275, 0, x_265); lean_ctor_set(x_275, 1, x_274); x_276 = lean_array_push(x_261, x_275); -x_277 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; +x_277 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; x_278 = l_Lean_addMacroScope(x_252, x_277, x_249); -x_279 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; -x_280 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; +x_279 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; +x_280 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; x_281 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_281, 0, x_257); lean_ctor_set(x_281, 1, x_279); @@ -2936,9 +2936,9 @@ x_294 = lean_array_push(x_293, x_263); x_295 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_295, 0, x_288); lean_ctor_set(x_295, 1, x_294); -x_296 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_296 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_297 = lean_array_push(x_296, x_295); -x_298 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_298 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_299 = lean_array_push(x_297, x_298); x_300 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_301 = lean_alloc_ctor(1, 2, 0); @@ -2990,7 +2990,7 @@ x_320 = lean_ctor_get(x_318, 1); lean_inc(x_320); lean_dec(x_318); x_321 = l_List_append___rarg(x_319, x_316); -x_322 = l___private_Init_Lean_Syntax_7__quoteName___main(x_315); +x_322 = l___private_Lean_Syntax_7__quoteName___main(x_315); x_323 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_320); lean_dec(x_2); x_324 = lean_ctor_get(x_323, 0); @@ -3004,33 +3004,33 @@ if (x_327 == 0) { lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; x_328 = lean_ctor_get(x_326, 0); -x_329 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48; +x_329 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48; lean_inc(x_324); lean_inc(x_328); x_330 = l_Lean_addMacroScope(x_328, x_329, x_324); x_331 = lean_box(0); x_332 = l_Lean_SourceInfo_inhabited___closed__1; -x_333 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47; -x_334 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51; +x_333 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47; +x_334 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51; lean_ctor_set(x_1, 3, x_334); lean_ctor_set(x_1, 2, x_330); lean_ctor_set(x_1, 1, x_333); lean_ctor_set(x_1, 0, x_332); x_335 = l_Array_empty___closed__1; x_336 = lean_array_push(x_335, x_1); -x_337 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_337 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_338 = lean_array_push(x_336, x_337); x_339 = l_Lean_mkTermIdFromIdent___closed__2; x_340 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_340, 0, x_339); lean_ctor_set(x_340, 1, x_338); x_341 = lean_array_push(x_335, x_340); -x_342 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; +x_342 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; lean_inc(x_324); lean_inc(x_328); x_343 = l_Lean_addMacroScope(x_328, x_342, x_324); -x_344 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; -x_345 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; +x_344 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; +x_345 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; x_346 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_346, 0, x_332); lean_ctor_set(x_346, 1, x_344); @@ -3042,12 +3042,12 @@ x_349 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_349, 0, x_339); lean_ctor_set(x_349, 1, x_348); x_350 = lean_array_push(x_335, x_349); -x_351 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; +x_351 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; lean_inc(x_324); lean_inc(x_328); x_352 = l_Lean_addMacroScope(x_328, x_351, x_324); -x_353 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; -x_354 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; +x_353 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; +x_354 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; x_355 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_355, 0, x_332); lean_ctor_set(x_355, 1, x_353); @@ -3077,21 +3077,21 @@ x_368 = lean_array_push(x_367, x_337); x_369 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_369, 0, x_362); lean_ctor_set(x_369, 1, x_368); -x_370 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_370 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_371 = lean_array_push(x_370, x_369); -x_372 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_372 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_373 = lean_array_push(x_371, x_372); x_374 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_375 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_375, 0, x_374); lean_ctor_set(x_375, 1, x_373); x_376 = lean_array_push(x_335, x_375); -x_377 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56; +x_377 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56; lean_inc(x_324); lean_inc(x_328); x_378 = l_Lean_addMacroScope(x_328, x_377, x_324); -x_379 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55; -x_380 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59; +x_379 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55; +x_380 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59; x_381 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_381, 0, x_332); lean_ctor_set(x_381, 1, x_379); @@ -3103,11 +3103,11 @@ x_384 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_384, 0, x_339); lean_ctor_set(x_384, 1, x_383); x_385 = lean_array_push(x_335, x_384); -x_386 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; +x_386 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; lean_inc(x_324); lean_inc(x_328); x_387 = l_Lean_addMacroScope(x_328, x_386, x_324); -x_388 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; +x_388 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; x_389 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_389, 0, x_332); lean_ctor_set(x_389, 1, x_388); @@ -3120,9 +3120,9 @@ lean_ctor_set(x_392, 0, x_339); lean_ctor_set(x_392, 1, x_391); x_393 = lean_array_push(x_335, x_392); x_394 = lean_array_push(x_393, x_322); -x_395 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; +x_395 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; x_396 = l_Lean_addMacroScope(x_328, x_395, x_324); -x_397 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; +x_397 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; x_398 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_398, 0, x_332); lean_ctor_set(x_398, 1, x_397); @@ -3151,7 +3151,7 @@ x_410 = lean_array_push(x_409, x_372); x_411 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_411, 0, x_374); lean_ctor_set(x_411, 1, x_410); -x_412 = l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(x_321); +x_412 = l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(x_321); x_413 = lean_ctor_get(x_314, 0); lean_inc(x_413); x_414 = lean_ctor_get(x_314, 1); @@ -3171,7 +3171,7 @@ x_421 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_421, 0, x_420); lean_ctor_set(x_421, 1, x_419); x_422 = lean_array_push(x_418, x_421); -x_423 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52; +x_423 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52; x_424 = l_Lean_mkCAppStx(x_423, x_422); x_425 = lean_array_push(x_376, x_424); x_426 = lean_array_push(x_425, x_411); @@ -3194,33 +3194,33 @@ x_432 = lean_ctor_get(x_326, 1); lean_inc(x_432); lean_inc(x_431); lean_dec(x_326); -x_433 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48; +x_433 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48; lean_inc(x_324); lean_inc(x_431); x_434 = l_Lean_addMacroScope(x_431, x_433, x_324); x_435 = lean_box(0); x_436 = l_Lean_SourceInfo_inhabited___closed__1; -x_437 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47; -x_438 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51; +x_437 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47; +x_438 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51; lean_ctor_set(x_1, 3, x_438); lean_ctor_set(x_1, 2, x_434); lean_ctor_set(x_1, 1, x_437); lean_ctor_set(x_1, 0, x_436); x_439 = l_Array_empty___closed__1; x_440 = lean_array_push(x_439, x_1); -x_441 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_441 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_442 = lean_array_push(x_440, x_441); x_443 = l_Lean_mkTermIdFromIdent___closed__2; x_444 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_444, 0, x_443); lean_ctor_set(x_444, 1, x_442); x_445 = lean_array_push(x_439, x_444); -x_446 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; +x_446 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; lean_inc(x_324); lean_inc(x_431); x_447 = l_Lean_addMacroScope(x_431, x_446, x_324); -x_448 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; -x_449 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; +x_448 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; +x_449 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; x_450 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_450, 0, x_436); lean_ctor_set(x_450, 1, x_448); @@ -3232,12 +3232,12 @@ x_453 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_453, 0, x_443); lean_ctor_set(x_453, 1, x_452); x_454 = lean_array_push(x_439, x_453); -x_455 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; +x_455 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; lean_inc(x_324); lean_inc(x_431); x_456 = l_Lean_addMacroScope(x_431, x_455, x_324); -x_457 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; -x_458 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; +x_457 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; +x_458 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; x_459 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_459, 0, x_436); lean_ctor_set(x_459, 1, x_457); @@ -3267,21 +3267,21 @@ x_472 = lean_array_push(x_471, x_441); x_473 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_473, 0, x_466); lean_ctor_set(x_473, 1, x_472); -x_474 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_474 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_475 = lean_array_push(x_474, x_473); -x_476 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_476 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_477 = lean_array_push(x_475, x_476); x_478 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_479 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_479, 0, x_478); lean_ctor_set(x_479, 1, x_477); x_480 = lean_array_push(x_439, x_479); -x_481 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56; +x_481 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56; lean_inc(x_324); lean_inc(x_431); x_482 = l_Lean_addMacroScope(x_431, x_481, x_324); -x_483 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55; -x_484 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59; +x_483 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55; +x_484 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59; x_485 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_485, 0, x_436); lean_ctor_set(x_485, 1, x_483); @@ -3293,11 +3293,11 @@ x_488 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_488, 0, x_443); lean_ctor_set(x_488, 1, x_487); x_489 = lean_array_push(x_439, x_488); -x_490 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; +x_490 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; lean_inc(x_324); lean_inc(x_431); x_491 = l_Lean_addMacroScope(x_431, x_490, x_324); -x_492 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; +x_492 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; x_493 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_493, 0, x_436); lean_ctor_set(x_493, 1, x_492); @@ -3310,9 +3310,9 @@ lean_ctor_set(x_496, 0, x_443); lean_ctor_set(x_496, 1, x_495); x_497 = lean_array_push(x_439, x_496); x_498 = lean_array_push(x_497, x_322); -x_499 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; +x_499 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; x_500 = l_Lean_addMacroScope(x_431, x_499, x_324); -x_501 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; +x_501 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; x_502 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_502, 0, x_436); lean_ctor_set(x_502, 1, x_501); @@ -3341,7 +3341,7 @@ x_514 = lean_array_push(x_513, x_476); x_515 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_515, 0, x_478); lean_ctor_set(x_515, 1, x_514); -x_516 = l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(x_321); +x_516 = l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(x_321); x_517 = lean_ctor_get(x_314, 0); lean_inc(x_517); x_518 = lean_ctor_get(x_314, 1); @@ -3361,7 +3361,7 @@ x_525 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_525, 0, x_524); lean_ctor_set(x_525, 1, x_523); x_526 = lean_array_push(x_522, x_525); -x_527 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52; +x_527 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52; x_528 = l_Lean_mkCAppStx(x_527, x_526); x_529 = lean_array_push(x_480, x_528); x_530 = lean_array_push(x_529, x_515); @@ -3397,7 +3397,7 @@ x_541 = lean_ctor_get(x_539, 1); lean_inc(x_541); lean_dec(x_539); x_542 = l_List_append___rarg(x_540, x_538); -x_543 = l___private_Init_Lean_Syntax_7__quoteName___main(x_537); +x_543 = l___private_Lean_Syntax_7__quoteName___main(x_537); x_544 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_541); lean_dec(x_2); x_545 = lean_ctor_get(x_544, 0); @@ -3418,14 +3418,14 @@ if (lean_is_exclusive(x_547)) { lean_dec_ref(x_547); x_550 = lean_box(0); } -x_551 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48; +x_551 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48; lean_inc(x_545); lean_inc(x_548); x_552 = l_Lean_addMacroScope(x_548, x_551, x_545); x_553 = lean_box(0); x_554 = l_Lean_SourceInfo_inhabited___closed__1; -x_555 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47; -x_556 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51; +x_555 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47; +x_556 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51; x_557 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_557, 0, x_554); lean_ctor_set(x_557, 1, x_555); @@ -3433,19 +3433,19 @@ lean_ctor_set(x_557, 2, x_552); lean_ctor_set(x_557, 3, x_556); x_558 = l_Array_empty___closed__1; x_559 = lean_array_push(x_558, x_557); -x_560 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_560 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_561 = lean_array_push(x_559, x_560); x_562 = l_Lean_mkTermIdFromIdent___closed__2; x_563 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_563, 0, x_562); lean_ctor_set(x_563, 1, x_561); x_564 = lean_array_push(x_558, x_563); -x_565 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; +x_565 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34; lean_inc(x_545); lean_inc(x_548); x_566 = l_Lean_addMacroScope(x_548, x_565, x_545); -x_567 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; -x_568 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; +x_567 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31; +x_568 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38; x_569 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_569, 0, x_554); lean_ctor_set(x_569, 1, x_567); @@ -3457,12 +3457,12 @@ x_572 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_572, 0, x_562); lean_ctor_set(x_572, 1, x_571); x_573 = lean_array_push(x_558, x_572); -x_574 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; +x_574 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41; lean_inc(x_545); lean_inc(x_548); x_575 = l_Lean_addMacroScope(x_548, x_574, x_545); -x_576 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; -x_577 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; +x_576 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40; +x_577 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43; x_578 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_578, 0, x_554); lean_ctor_set(x_578, 1, x_576); @@ -3492,21 +3492,21 @@ x_591 = lean_array_push(x_590, x_560); x_592 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_592, 0, x_585); lean_ctor_set(x_592, 1, x_591); -x_593 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_593 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_594 = lean_array_push(x_593, x_592); -x_595 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_595 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_596 = lean_array_push(x_594, x_595); x_597 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_598 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_598, 0, x_597); lean_ctor_set(x_598, 1, x_596); x_599 = lean_array_push(x_558, x_598); -x_600 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56; +x_600 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56; lean_inc(x_545); lean_inc(x_548); x_601 = l_Lean_addMacroScope(x_548, x_600, x_545); -x_602 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55; -x_603 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59; +x_602 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55; +x_603 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59; x_604 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_604, 0, x_554); lean_ctor_set(x_604, 1, x_602); @@ -3518,11 +3518,11 @@ x_607 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_607, 0, x_562); lean_ctor_set(x_607, 1, x_606); x_608 = lean_array_push(x_558, x_607); -x_609 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; +x_609 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; lean_inc(x_545); lean_inc(x_548); x_610 = l_Lean_addMacroScope(x_548, x_609, x_545); -x_611 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; +x_611 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; x_612 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_612, 0, x_554); lean_ctor_set(x_612, 1, x_611); @@ -3535,9 +3535,9 @@ lean_ctor_set(x_615, 0, x_562); lean_ctor_set(x_615, 1, x_614); x_616 = lean_array_push(x_558, x_615); x_617 = lean_array_push(x_616, x_543); -x_618 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; +x_618 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; x_619 = l_Lean_addMacroScope(x_548, x_618, x_545); -x_620 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; +x_620 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; x_621 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_621, 0, x_554); lean_ctor_set(x_621, 1, x_620); @@ -3566,7 +3566,7 @@ x_633 = lean_array_push(x_632, x_595); x_634 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_634, 0, x_597); lean_ctor_set(x_634, 1, x_633); -x_635 = l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(x_542); +x_635 = l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__2(x_542); x_636 = lean_ctor_get(x_536, 0); lean_inc(x_636); x_637 = lean_ctor_get(x_536, 1); @@ -3586,7 +3586,7 @@ x_644 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_644, 0, x_643); lean_ctor_set(x_644, 1, x_642); x_645 = lean_array_push(x_641, x_644); -x_646 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52; +x_646 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52; x_647 = l_Lean_mkCAppStx(x_646, x_645); x_648 = lean_array_push(x_599, x_647); x_649 = lean_array_push(x_648, x_634); @@ -3611,22 +3611,22 @@ return x_654; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; -x_17 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_12); lean_dec(x_2); lean_dec(x_1); return x_17; } } -lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main(x_1, x_2, x_3); return x_4; } } @@ -3954,9 +3954,9 @@ _start: lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_unsigned_to_nat(1u); x_5 = l_Lean_Syntax_getArg(x_1, x_4); -x_6 = l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_5); +x_6 = l___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_5); lean_inc(x_2); -x_7 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main(x_6, x_2, x_3); +x_7 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main(x_6, x_2, x_3); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; @@ -3993,7 +3993,7 @@ lean_ctor_set(x_22, 2, x_17); lean_ctor_set(x_22, 3, x_21); x_23 = l_Array_empty___closed__1; x_24 = lean_array_push(x_23, x_22); -x_25 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_25 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_26 = lean_array_push(x_24, x_25); x_27 = l_Lean_mkTermIdFromIdent___closed__2; x_28 = lean_alloc_ctor(1, 2, 0); @@ -4017,11 +4017,11 @@ x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_27); lean_ctor_set(x_37, 1, x_36); x_38 = lean_array_push(x_23, x_37); -x_39 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; +x_39 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; lean_inc(x_11); lean_inc(x_15); x_40 = l_Lean_addMacroScope(x_15, x_39, x_11); -x_41 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; +x_41 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_19); lean_ctor_set(x_42, 1, x_41); @@ -4058,11 +4058,11 @@ x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_27); lean_ctor_set(x_60, 1, x_59); x_61 = lean_array_push(x_23, x_60); -x_62 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; +x_62 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; lean_inc(x_11); lean_inc(x_15); x_63 = l_Lean_addMacroScope(x_15, x_62, x_11); -x_64 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; +x_64 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_19); lean_ctor_set(x_65, 1, x_64); @@ -4113,9 +4113,9 @@ x_91 = lean_array_push(x_90, x_25); x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_47); lean_ctor_set(x_92, 1, x_91); -x_93 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_93 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_94 = lean_array_push(x_93, x_92); -x_95 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_95 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_96 = lean_array_push(x_94, x_95); x_97 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_98 = lean_alloc_ctor(1, 2, 0); @@ -4178,7 +4178,7 @@ lean_ctor_set(x_123, 2, x_118); lean_ctor_set(x_123, 3, x_122); x_124 = l_Array_empty___closed__1; x_125 = lean_array_push(x_124, x_123); -x_126 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_126 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_127 = lean_array_push(x_125, x_126); x_128 = l_Lean_mkTermIdFromIdent___closed__2; x_129 = lean_alloc_ctor(1, 2, 0); @@ -4202,11 +4202,11 @@ x_138 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_138, 0, x_128); lean_ctor_set(x_138, 1, x_137); x_139 = lean_array_push(x_124, x_138); -x_140 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; +x_140 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67; lean_inc(x_11); lean_inc(x_115); x_141 = l_Lean_addMacroScope(x_115, x_140, x_11); -x_142 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; +x_142 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66; x_143 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_143, 0, x_120); lean_ctor_set(x_143, 1, x_142); @@ -4243,11 +4243,11 @@ x_161 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_161, 0, x_128); lean_ctor_set(x_161, 1, x_160); x_162 = lean_array_push(x_124, x_161); -x_163 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; +x_163 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63; lean_inc(x_11); lean_inc(x_115); x_164 = l_Lean_addMacroScope(x_115, x_163, x_11); -x_165 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; +x_165 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62; x_166 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_166, 0, x_120); lean_ctor_set(x_166, 1, x_165); @@ -4298,9 +4298,9 @@ x_192 = lean_array_push(x_191, x_126); x_193 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_193, 0, x_148); lean_ctor_set(x_193, 1, x_192); -x_194 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_194 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_195 = lean_array_push(x_194, x_193); -x_196 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_196 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_197 = lean_array_push(x_195, x_196); x_198 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_199 = lean_alloc_ctor(1, 2, 0); @@ -4564,7 +4564,7 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -4574,7 +4574,7 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -4584,7 +4584,7 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4596,17 +4596,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1; +x_2 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3() { _start: { lean_object* x_1; @@ -4614,19 +4614,19 @@ x_1 = lean_mk_string(":="); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3; +x_2 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5() { _start: { lean_object* x_1; @@ -4634,22 +4634,22 @@ x_1 = lean_mk_string("discr"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5; +x_1 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5; +x_1 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6; +x_3 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4657,17 +4657,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5; +x_2 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9() { _start: { lean_object* x_1; @@ -4675,19 +4675,19 @@ x_1 = lean_mk_string(";"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9; +x_2 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__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; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -4705,16 +4705,16 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean x_10 = lean_ctor_get(x_8, 0); x_11 = l_Array_empty___closed__1; x_12 = lean_array_push(x_11, x_1); -x_13 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_13 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_14 = lean_array_push(x_12, x_13); x_15 = lean_array_push(x_14, x_13); -x_16 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_16 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_17 = lean_array_push(x_15, x_16); -x_18 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_18 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_19 = l_Lean_addMacroScope(x_10, x_18, x_6); x_20 = lean_box(0); x_21 = l_Lean_SourceInfo_inhabited___closed__1; -x_22 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_22 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_21); lean_ctor_set(x_23, 1, x_22); @@ -4731,9 +4731,9 @@ x_29 = l_Lean_Parser_Term_letIdDecl___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); -x_31 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_31 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_32 = lean_array_push(x_31, x_30); -x_33 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_33 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_34 = lean_array_push(x_32, x_33); x_35 = lean_array_push(x_34, x_2); x_36 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -4753,16 +4753,16 @@ lean_inc(x_38); lean_dec(x_8); x_40 = l_Array_empty___closed__1; x_41 = lean_array_push(x_40, x_1); -x_42 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_42 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_43 = lean_array_push(x_41, x_42); x_44 = lean_array_push(x_43, x_42); -x_45 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_45 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_46 = lean_array_push(x_44, x_45); -x_47 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_47 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_48 = l_Lean_addMacroScope(x_38, x_47, x_6); x_49 = lean_box(0); x_50 = l_Lean_SourceInfo_inhabited___closed__1; -x_51 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_51 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_52 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_52, 0, x_50); lean_ctor_set(x_52, 1, x_51); @@ -4779,9 +4779,9 @@ x_58 = l_Lean_Parser_Term_letIdDecl___closed__2; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); -x_60 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_60 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_61 = lean_array_push(x_60, x_59); -x_62 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_62 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_63 = lean_array_push(x_61, x_62); x_64 = lean_array_push(x_63, x_2); x_65 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -4795,7 +4795,7 @@ return x_67; } } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__1(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -4815,7 +4815,7 @@ return x_5; } } } -lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1() { +lean_object* _init_l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -4824,17 +4824,17 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2() { +lean_object* _init_l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_declareBuiltinParser___closed__8; -x_2 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1; +x_2 = l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4856,7 +4856,7 @@ x_7 = lean_array_fget(x_3, x_2); x_8 = lean_unsigned_to_nat(0u); x_9 = lean_array_fset(x_3, x_2, x_8); x_10 = x_7; -x_11 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2; +x_11 = l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2; x_12 = lean_array_push(x_11, x_10); x_13 = l_Lean_Elab_Term_mkExplicitBinder___closed__4; x_14 = lean_array_push(x_12, x_13); @@ -4875,7 +4875,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -4883,27 +4883,27 @@ x_1 = lean_mk_string("match_syntax: unexpected pattern kind "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1; +x_1 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2; +x_1 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__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_6; lean_object* x_7; lean_object* x_8; lean_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; @@ -4918,7 +4918,7 @@ x_11 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_11, 0, x_10); x_12 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_12, 0, x_11); -x_13 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3; +x_13 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3; x_14 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_12); @@ -4927,7 +4927,7 @@ lean_dec(x_1); return x_15; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -4935,22 +4935,22 @@ x_1 = lean_mk_string("Syntax.getArgs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1; +x_1 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1; +x_1 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2; +x_3 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4958,7 +4958,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4() { _start: { lean_object* x_1; @@ -4966,17 +4966,17 @@ x_1 = lean_mk_string("getArgs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; -x_2 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; +x_2 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; @@ -5000,20 +5000,20 @@ lean_inc(x_1); x_17 = lean_name_mk_string(x_1, x_16); x_18 = l_Array_empty___closed__1; x_19 = lean_array_push(x_18, x_2); -x_20 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_20 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_21 = lean_array_push(x_19, x_20); x_22 = lean_array_push(x_21, x_20); -x_23 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_23 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_24 = lean_array_push(x_22, x_23); x_25 = l_Lean_mkAppStx___closed__7; x_26 = lean_name_mk_string(x_1, x_25); -x_27 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; +x_27 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; lean_inc(x_9); lean_inc(x_13); x_28 = l_Lean_addMacroScope(x_13, x_27, x_9); x_29 = l_Lean_Parser_Syntax_paren___elambda__1___closed__1; x_30 = lean_name_mk_string(x_3, x_29); -x_31 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; +x_31 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; x_32 = lean_name_mk_string(x_30, x_31); x_33 = lean_box(0); x_34 = lean_alloc_ctor(0, 2, 0); @@ -5023,7 +5023,7 @@ x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); x_36 = l_Lean_SourceInfo_inhabited___closed__1; -x_37 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; +x_37 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; x_38 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_38, 0, x_36); lean_ctor_set(x_38, 1, x_37); @@ -5036,9 +5036,9 @@ x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_4); lean_ctor_set(x_41, 1, x_40); x_42 = lean_array_push(x_18, x_41); -x_43 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_43 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_44 = l_Lean_addMacroScope(x_13, x_43, x_9); -x_45 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_45 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_46 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_46, 0, x_36); lean_ctor_set(x_46, 1, x_45); @@ -5062,9 +5062,9 @@ x_55 = lean_array_push(x_24, x_54); x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_17); lean_ctor_set(x_56, 1, x_55); -x_57 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_57 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_58 = lean_array_push(x_57, x_56); -x_59 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_59 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_60 = lean_array_push(x_58, x_59); x_61 = lean_array_push(x_60, x_5); x_62 = lean_alloc_ctor(1, 2, 0); @@ -5089,20 +5089,20 @@ lean_inc(x_1); x_68 = lean_name_mk_string(x_1, x_67); x_69 = l_Array_empty___closed__1; x_70 = lean_array_push(x_69, x_2); -x_71 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_71 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_72 = lean_array_push(x_70, x_71); x_73 = lean_array_push(x_72, x_71); -x_74 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_74 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_75 = lean_array_push(x_73, x_74); x_76 = l_Lean_mkAppStx___closed__7; x_77 = lean_name_mk_string(x_1, x_76); -x_78 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; +x_78 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; lean_inc(x_9); lean_inc(x_63); x_79 = l_Lean_addMacroScope(x_63, x_78, x_9); x_80 = l_Lean_Parser_Syntax_paren___elambda__1___closed__1; x_81 = lean_name_mk_string(x_3, x_80); -x_82 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; +x_82 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; x_83 = lean_name_mk_string(x_81, x_82); x_84 = lean_box(0); x_85 = lean_alloc_ctor(0, 2, 0); @@ -5112,7 +5112,7 @@ x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); x_87 = l_Lean_SourceInfo_inhabited___closed__1; -x_88 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; +x_88 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; x_89 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_89, 0, x_87); lean_ctor_set(x_89, 1, x_88); @@ -5125,9 +5125,9 @@ x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_4); lean_ctor_set(x_92, 1, x_91); x_93 = lean_array_push(x_69, x_92); -x_94 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_94 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_95 = l_Lean_addMacroScope(x_63, x_94, x_9); -x_96 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_96 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_97 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_97, 0, x_87); lean_ctor_set(x_97, 1, x_96); @@ -5151,9 +5151,9 @@ x_106 = lean_array_push(x_75, x_105); x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_68); lean_ctor_set(x_107, 1, x_106); -x_108 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_108 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_109 = lean_array_push(x_108, x_107); -x_110 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_110 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_111 = lean_array_push(x_109, x_110); x_112 = lean_array_push(x_111, x_5); x_113 = lean_alloc_ctor(1, 2, 0); @@ -5166,7 +5166,7 @@ return x_114; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1() { _start: { lean_object* x_1; @@ -5174,27 +5174,27 @@ x_1 = lean_mk_string("match_syntax: antiquotation must be variable "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1; +x_1 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2; +x_1 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; lean_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; @@ -5209,7 +5209,7 @@ x_11 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_11, 0, x_10); x_12 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_12, 0, x_11); -x_13 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3; +x_13 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3; x_14 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_12); @@ -5218,16 +5218,16 @@ lean_dec(x_1); return x_15; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__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; -x_5 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19; +x_5 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19; x_6 = l_Lean_Elab_Term_throwError___rarg(x_1, x_5, x_3, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; @@ -5250,16 +5250,16 @@ x_15 = l_Lean_Parser_Term_letIdDecl___closed__1; x_16 = lean_name_mk_string(x_1, x_15); x_17 = l_Array_empty___closed__1; x_18 = lean_array_push(x_17, x_2); -x_19 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_19 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_20 = lean_array_push(x_18, x_19); x_21 = lean_array_push(x_20, x_19); -x_22 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_22 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_23 = lean_array_push(x_21, x_22); -x_24 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_24 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_25 = l_Lean_addMacroScope(x_12, x_24, x_8); x_26 = lean_box(0); x_27 = l_Lean_SourceInfo_inhabited___closed__1; -x_28 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_28 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_29 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); @@ -5274,9 +5274,9 @@ x_33 = lean_array_push(x_23, x_32); x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_16); lean_ctor_set(x_34, 1, x_33); -x_35 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_35 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_36 = lean_array_push(x_35, x_34); -x_37 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_37 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_38 = lean_array_push(x_36, x_37); x_39 = lean_array_push(x_38, x_4); x_40 = lean_alloc_ctor(1, 2, 0); @@ -5300,16 +5300,16 @@ x_45 = l_Lean_Parser_Term_letIdDecl___closed__1; x_46 = lean_name_mk_string(x_1, x_45); x_47 = l_Array_empty___closed__1; x_48 = lean_array_push(x_47, x_2); -x_49 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_49 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_50 = lean_array_push(x_48, x_49); x_51 = lean_array_push(x_50, x_49); -x_52 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_52 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_53 = lean_array_push(x_51, x_52); -x_54 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_54 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_55 = l_Lean_addMacroScope(x_41, x_54, x_8); x_56 = lean_box(0); x_57 = l_Lean_SourceInfo_inhabited___closed__1; -x_58 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_58 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_59 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_59, 0, x_57); lean_ctor_set(x_59, 1, x_58); @@ -5324,9 +5324,9 @@ x_63 = lean_array_push(x_53, x_62); x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_46); lean_ctor_set(x_64, 1, x_63); -x_65 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_65 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_66 = lean_array_push(x_65, x_64); -x_67 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_67 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_68 = lean_array_push(x_66, x_67); x_69 = lean_array_push(x_68, x_4); x_70 = lean_alloc_ctor(1, 2, 0); @@ -5339,23 +5339,23 @@ return x_71; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__1___boxed), 3, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__2() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__2___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__2___boxed), 3, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__3() { _start: { lean_object* x_1; @@ -5363,12 +5363,12 @@ x_1 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_Quotation_He return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__4() { +lean_object* _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__3; +x_2 = l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__3; x_3 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_1); @@ -5376,12 +5376,12 @@ lean_ctor_set(x_3, 2, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; x_2 = lean_ctor_get(x_1, 0); -x_3 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__1(x_2); +x_3 = l_List_head_x21___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__1(x_2); x_4 = l_Lean_mkTermIdFromIdent___closed__2; lean_inc(x_3); x_5 = l_Lean_Syntax_isOfKind(x_3, x_4); @@ -5400,7 +5400,7 @@ x_9 = l_Lean_Syntax_isOfKind(x_3, x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___boxed), 4, 1); +x_10 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___boxed), 4, 1); lean_closure_set(x_10, 0, x_3); x_11 = lean_box(0); x_12 = lean_alloc_ctor(0, 3, 0); @@ -5476,7 +5476,7 @@ if (x_59 == 0) { lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_dec(x_58); -x_60 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___boxed), 4, 1); +x_60 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___boxed), 4, 1); lean_closure_set(x_60, 0, x_56); x_61 = lean_box(0); x_62 = lean_alloc_ctor(0, 3, 0); @@ -5489,7 +5489,7 @@ else { lean_object* x_63; lean_object* x_64; lean_object* x_65; x_63 = lean_box(0); -x_64 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___boxed), 4, 1); +x_64 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___boxed), 4, 1); lean_closure_set(x_64, 0, x_56); x_65 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_65, 0, x_58); @@ -5503,7 +5503,7 @@ else lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_dec(x_58); lean_dec(x_56); -x_66 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__4___boxed), 4, 1); +x_66 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__4___boxed), 4, 1); lean_closure_set(x_66, 0, x_14); x_67 = lean_box(0); x_68 = lean_alloc_ctor(0, 3, 0); @@ -5527,7 +5527,7 @@ else { lean_object* x_75; lean_dec(x_14); -x_75 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__4; +x_75 = l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__4; return x_75; } block_50: @@ -5543,14 +5543,14 @@ x_17 = l_Lean_Elab_Term_Quotation_unescapeAntiquot(x_14); x_18 = l_Lean_Syntax_getArgs(x_17); x_19 = x_18; x_20 = lean_unsigned_to_nat(0u); -x_21 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2(x_8, x_20, x_19); +x_21 = l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2(x_8, x_20, x_19); x_22 = x_21; x_23 = l_Lean_Syntax_getKind(x_17); x_24 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_24, 0, x_23); x_25 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_25, 0, x_22); -x_26 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__1; +x_26 = l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__1; x_27 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_27, 0, x_24); lean_ctor_set(x_27, 1, x_25); @@ -5572,14 +5572,14 @@ x_31 = l_Lean_Elab_Term_Quotation_unescapeAntiquot(x_14); x_32 = l_Lean_Syntax_getArgs(x_31); x_33 = x_32; x_34 = lean_unsigned_to_nat(0u); -x_35 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2(x_8, x_34, x_33); +x_35 = l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2(x_8, x_34, x_33); x_36 = x_35; x_37 = l_Lean_Syntax_getKind(x_31); x_38 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_38, 0, x_37); x_39 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_39, 0, x_36); -x_40 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__2; +x_40 = l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__2; x_41 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_41, 0, x_38); lean_ctor_set(x_41, 1, x_39); @@ -5596,7 +5596,7 @@ x_44 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_43); lean_dec(x_43); x_45 = l_Lean_mkAppStx___closed__6; x_46 = l_Lean_mkAppStx___closed__2; -x_47 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___boxed), 7, 4); +x_47 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___boxed), 7, 4); lean_closure_set(x_47, 0, x_45); lean_closure_set(x_47, 1, x_44); lean_closure_set(x_47, 2, x_46); @@ -5616,7 +5616,7 @@ else { lean_object* x_76; lean_dec(x_3); -x_76 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__4; +x_76 = l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__4; return x_76; } } @@ -5624,7 +5624,7 @@ else { lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; x_77 = l_Lean_mkAppStx___closed__6; -x_78 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__5___boxed), 6, 3); +x_78 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__5___boxed), 6, 3); lean_closure_set(x_78, 0, x_77); lean_closure_set(x_78, 1, x_3); lean_closure_set(x_78, 2, x_4); @@ -5637,98 +5637,98 @@ return x_80; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__2(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__2(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__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___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__1___boxed(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__1(x_1); +x_2 = l_List_head_x21___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__1(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___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___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___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___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__4___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___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__4(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__4(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo(x_1); +x_2 = l___private_Lean_Elab_Quotation_4__getHeadInfo(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___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; @@ -5743,15 +5743,15 @@ x_8 = lean_apply_3(x_2, x_6, x_3, x_7); return x_8; } } -lean_object* l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 0); +x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 0); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5763,69 +5763,69 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1; +x_2 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkHole___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2; +x_2 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2; 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_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; +x_4 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; x_5 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_5, 0, x_4); lean_ctor_set(x_5, 1, x_3); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___boxed), 3, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_2 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__1; -x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_2 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__1; +x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__2; +x_1 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__2; x_2 = l_Lean_Unhygienic_run___rarg(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat(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; @@ -5839,7 +5839,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); -x_7 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_7 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_8 = l_unreachable_x21___rarg(x_7); x_9 = lean_apply_2(x_8, x_3, x_4); return x_9; @@ -5868,7 +5868,7 @@ lean_dec(x_6); x_16 = lean_ctor_get(x_10, 2); lean_inc(x_16); lean_dec(x_10); -x_17 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__3; +x_17 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__3; x_18 = l_List_replicate___rarg(x_1, x_17); x_19 = lean_apply_3(x_16, x_13, x_3, x_4); if (lean_obj_tag(x_19) == 0) @@ -5940,7 +5940,7 @@ lean_dec(x_6); x_33 = lean_ctor_get(x_10, 2); lean_inc(x_33); lean_dec(x_10); -x_34 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__3; +x_34 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__3; x_35 = l_List_replicate___rarg(x_1, x_34); x_36 = lean_apply_3(x_33, x_31, x_3, x_4); if (lean_obj_tag(x_36) == 0) @@ -6156,17 +6156,17 @@ return x_81; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -6184,9 +6184,9 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); -x_6 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo(x_4); +x_6 = l___private_Lean_Elab_Quotation_4__getHeadInfo(x_4); lean_dec(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(x_5); +x_7 = l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -6199,9 +6199,9 @@ x_9 = lean_ctor_get(x_1, 1); lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); -x_10 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo(x_8); +x_10 = l___private_Lean_Elab_Quotation_4__getHeadInfo(x_8); lean_dec(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(x_9); +x_11 = l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -6210,7 +6210,7 @@ return x_12; } } } -lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1() { +lean_object* _init_l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6220,11 +6220,11 @@ x_3 = l_monadInhabited___rarg(x_1, x_2); return x_3; } } -lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2() { +lean_object* _init_l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1; +x_1 = l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1; x_2 = l_Lean_Syntax_inhabited; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -6232,25 +6232,25 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3() { +lean_object* _init_l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_Quotation_HeadInfo_Inhabited; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2; +x_2 = l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2; 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_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3; +x_2 = l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3; x_3 = l_List_head_x21___rarg___closed__2; x_4 = lean_panic_fn(x_2, x_3); return x_4; @@ -6264,7 +6264,7 @@ return x_5; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -6294,7 +6294,7 @@ goto _start; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -6367,7 +6367,7 @@ goto _start; } } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6377,7 +6377,7 @@ x_3 = l_List_lengthAux___main___rarg(x_1, x_2); return x_3; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -6399,9 +6399,9 @@ if (x_6 == 0) lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = lean_ctor_get(x_1, 0); x_8 = lean_ctor_get(x_1, 1); -x_9 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1; +x_9 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1; lean_inc(x_2); -x_10 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat(x_9, x_7, x_2, x_3); +x_10 = l___private_Lean_Elab_Quotation_5__explodeHeadPat(x_9, x_7, x_2, x_3); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -6410,7 +6410,7 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); -x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(x_8, x_2, x_12); +x_13 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(x_8, x_2, x_12); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -6499,9 +6499,9 @@ x_28 = lean_ctor_get(x_1, 1); lean_inc(x_28); lean_inc(x_27); lean_dec(x_1); -x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1; +x_29 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1; lean_inc(x_2); -x_30 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat(x_29, x_27, x_2, x_3); +x_30 = l___private_Lean_Elab_Quotation_5__explodeHeadPat(x_29, x_27, x_2, x_3); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; @@ -6510,7 +6510,7 @@ lean_inc(x_31); x_32 = lean_ctor_get(x_30, 1); lean_inc(x_32); lean_dec(x_30); -x_33 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(x_28, x_2, x_32); +x_33 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(x_28, x_2, x_32); if (lean_obj_tag(x_33) == 0) { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; @@ -6594,7 +6594,7 @@ return x_46; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -6667,7 +6667,7 @@ goto _start; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -6688,7 +6688,7 @@ x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get(x_4, 1); lean_inc(x_6); lean_dec(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_5); +x_7 = l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -6704,7 +6704,7 @@ lean_dec(x_1); x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); lean_dec(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_9); +x_11 = l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -6713,7 +6713,7 @@ return x_12; } } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1() { _start: { lean_object* x_1; @@ -6721,22 +6721,22 @@ x_1 = lean_mk_string("Syntax.getArg"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1; +x_1 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1; +x_1 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2; +x_3 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6744,7 +6744,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4() { _start: { lean_object* x_1; @@ -6752,51 +6752,51 @@ x_1 = lean_mk_string("getArg"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; +x_2 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4; +x_1 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; +x_2 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6; +x_2 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7; +x_2 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -6829,14 +6829,14 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec(x_12); -x_15 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5; +x_15 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5; lean_inc(x_10); lean_inc(x_13); x_16 = l_Lean_addMacroScope(x_13, x_15, x_10); x_17 = lean_box(0); x_18 = l_Lean_SourceInfo_inhabited___closed__1; -x_19 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3; -x_20 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8; +x_19 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3; +x_20 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_18); lean_ctor_set(x_21, 1, x_19); @@ -6844,16 +6844,16 @@ lean_ctor_set(x_21, 2, x_16); lean_ctor_set(x_21, 3, x_20); x_22 = l_Array_empty___closed__1; x_23 = lean_array_push(x_22, x_21); -x_24 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_24 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_25 = lean_array_push(x_23, x_24); x_26 = l_Lean_mkTermIdFromIdent___closed__2; x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); x_28 = lean_array_push(x_22, x_27); -x_29 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_29 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_30 = l_Lean_addMacroScope(x_13, x_29, x_10); -x_31 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_31 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_32 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_32, 0, x_18); lean_ctor_set(x_32, 1, x_31); @@ -6884,7 +6884,7 @@ x_48 = l_Lean_mkAppStx___closed__8; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); -x_50 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(x_8, x_2, x_14); +x_50 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(x_8, x_2, x_14); x_51 = !lean_is_exclusive(x_50); if (x_51 == 0) { @@ -6931,14 +6931,14 @@ lean_inc(x_62); x_63 = lean_ctor_get(x_61, 1); lean_inc(x_63); lean_dec(x_61); -x_64 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5; +x_64 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5; lean_inc(x_59); lean_inc(x_62); x_65 = l_Lean_addMacroScope(x_62, x_64, x_59); x_66 = lean_box(0); x_67 = l_Lean_SourceInfo_inhabited___closed__1; -x_68 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3; -x_69 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8; +x_68 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3; +x_69 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8; x_70 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_70, 0, x_67); lean_ctor_set(x_70, 1, x_68); @@ -6946,16 +6946,16 @@ lean_ctor_set(x_70, 2, x_65); lean_ctor_set(x_70, 3, x_69); x_71 = l_Array_empty___closed__1; x_72 = lean_array_push(x_71, x_70); -x_73 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_73 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_74 = lean_array_push(x_72, x_73); x_75 = l_Lean_mkTermIdFromIdent___closed__2; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); x_77 = lean_array_push(x_71, x_76); -x_78 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_78 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_79 = l_Lean_addMacroScope(x_62, x_78, x_59); -x_80 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_80 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_81 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_81, 0, x_67); lean_ctor_set(x_81, 1, x_80); @@ -6986,7 +6986,7 @@ x_97 = l_Lean_mkAppStx___closed__8; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); -x_99 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(x_57, x_2, x_63); +x_99 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(x_57, x_2, x_63); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_ctor_get(x_99, 1); @@ -7014,7 +7014,7 @@ return x_104; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7087,7 +7087,7 @@ goto _start; } } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7112,7 +7112,7 @@ x_9 = lean_ctor_get(x_2, 1); x_10 = lean_unsigned_to_nat(0u); x_11 = l_List_lengthAux___main___rarg(x_1, x_10); lean_inc(x_3); -x_12 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat(x_11, x_8, x_3, x_4); +x_12 = l___private_Lean_Elab_Quotation_5__explodeHeadPat(x_11, x_8, x_3, x_4); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -7121,7 +7121,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec(x_12); -x_15 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(x_1, x_9, x_3, x_14); +x_15 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(x_1, x_9, x_3, x_14); if (lean_obj_tag(x_15) == 0) { uint8_t x_16; @@ -7213,7 +7213,7 @@ lean_dec(x_2); x_31 = lean_unsigned_to_nat(0u); x_32 = l_List_lengthAux___main___rarg(x_1, x_31); lean_inc(x_3); -x_33 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat(x_32, x_29, x_3, x_4); +x_33 = l___private_Lean_Elab_Quotation_5__explodeHeadPat(x_32, x_29, x_3, x_4); if (lean_obj_tag(x_33) == 0) { lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -7222,7 +7222,7 @@ lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); -x_36 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(x_1, x_30, x_3, x_35); +x_36 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(x_1, x_30, x_3, x_35); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; @@ -7306,7 +7306,7 @@ return x_49; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7379,7 +7379,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1() { _start: { lean_object* x_1; @@ -7387,27 +7387,27 @@ x_1 = lean_mk_string("non-exhaustive 'match_syntax'"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1; +x_1 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2; +x_1 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4() { _start: { lean_object* x_1; @@ -7415,22 +7415,22 @@ x_1 = lean_mk_string("Syntax.isOfKind"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4; +x_1 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4; +x_1 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5; +x_3 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -7438,7 +7438,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7() { _start: { lean_object* x_1; @@ -7446,51 +7446,51 @@ x_1 = lean_mk_string("isOfKind"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7; +x_1 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9; 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_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7502,27 +7502,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13; -x_2 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13; +x_2 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7534,7 +7534,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16() { _start: { lean_object* x_1; lean_object* x_2; @@ -7543,13 +7543,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Bool_HasRepr___closed__2; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16; +x_3 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -7557,7 +7557,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7567,7 +7567,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7579,19 +7579,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19; 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* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21() { _start: { lean_object* x_1; @@ -7599,19 +7599,19 @@ x_1 = lean_mk_string("then"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23() { _start: { lean_object* x_1; @@ -7619,19 +7619,19 @@ x_1 = lean_mk_string("else"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25() { _start: { lean_object* x_1; @@ -7639,19 +7639,19 @@ x_1 = lean_mk_string("&&"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27() { _start: { lean_object* x_1; @@ -7659,22 +7659,22 @@ x_1 = lean_mk_string("Array.size"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27; +x_1 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27; +x_1 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28; +x_3 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -7682,7 +7682,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30() { _start: { lean_object* x_1; @@ -7690,75 +7690,75 @@ x_1 = lean_mk_string("size"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_arrayToExpr___rarg___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; 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_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32; 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* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; +x_1 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; +x_2 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34; 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_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___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* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37() { _start: { lean_object* x_1; @@ -7766,19 +7766,19 @@ x_1 = lean_mk_string("=="); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38() { +lean_object* _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_SourceInfo_inhabited___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37; +x_2 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7786,7 +7786,7 @@ if (lean_obj_tag(x_2) == 0) if (lean_obj_tag(x_3) == 0) { lean_object* x_6; lean_object* x_7; -x_6 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3; +x_6 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3; x_7 = l_Lean_Elab_Term_throwError___rarg(x_1, x_6, x_4, x_5); return x_7; } @@ -7815,7 +7815,7 @@ else lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_dec(x_9); lean_dec(x_8); -x_12 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_12 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_13 = l_unreachable_x21___rarg(x_12); x_14 = lean_apply_2(x_13, x_4, x_5); return x_14; @@ -7828,7 +7828,7 @@ if (lean_obj_tag(x_3) == 0) { lean_object* x_15; lean_object* x_16; lean_dec(x_2); -x_15 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3; +x_15 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3; x_16 = l_Lean_Elab_Term_throwError___rarg(x_1, x_15, x_4, x_5); return x_16; } @@ -7840,12 +7840,12 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_2, 1); lean_inc(x_18); lean_inc(x_3); -x_19 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(x_3); +x_19 = l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__1(x_3); x_20 = l_List_zip___rarg___closed__1; x_21 = l_List_zipWith___main___rarg(x_20, x_19, x_3); -x_22 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2(x_21); +x_22 = l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2(x_21); x_23 = l_List_tail_x21___rarg(x_21); -x_24 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3(x_22, x_23); +x_24 = l_List_foldl___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3(x_22, x_23); lean_dec(x_23); lean_dec(x_22); x_25 = lean_ctor_get(x_24, 0); @@ -7858,9 +7858,9 @@ if (lean_obj_tag(x_26) == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_box(0); lean_inc(x_21); -x_28 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4(x_25, x_21, x_27); +x_28 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4(x_25, x_21, x_27); lean_inc(x_4); -x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(x_28, x_4, x_5); +x_29 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5(x_28, x_4, x_5); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; @@ -7922,7 +7922,7 @@ lean_ctor_set(x_49, 9, x_34); lean_ctor_set_uint8(x_49, sizeof(void*)*10, x_46); lean_ctor_set_uint8(x_49, sizeof(void*)*10 + 1, x_47); lean_ctor_set_uint8(x_49, sizeof(void*)*10 + 2, x_48); -x_50 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_32, x_30, x_49, x_31); +x_50 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_32, x_30, x_49, x_31); if (lean_obj_tag(x_50) == 0) { lean_object* x_51; @@ -7961,10 +7961,10 @@ if (x_58 == 0) { lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; x_59 = lean_ctor_get(x_57, 0); -x_60 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_60 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_61 = l_Lean_addMacroScope(x_59, x_60, x_55); x_62 = l_Lean_SourceInfo_inhabited___closed__1; -x_63 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_63 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_64 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_64, 0, x_62); lean_ctor_set(x_64, 1, x_63); @@ -7972,19 +7972,19 @@ lean_ctor_set(x_64, 2, x_61); lean_ctor_set(x_64, 3, x_27); x_65 = l_Array_empty___closed__1; x_66 = lean_array_push(x_65, x_64); -x_67 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_67 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_68 = lean_array_push(x_66, x_67); x_69 = lean_array_push(x_68, x_67); -x_70 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_70 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_71 = lean_array_push(x_69, x_70); x_72 = lean_array_push(x_71, x_17); x_73 = l_Lean_Parser_Term_letIdDecl___closed__2; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); -x_75 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_75 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_76 = lean_array_push(x_75, x_74); -x_77 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_77 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_78 = lean_array_push(x_76, x_77); x_79 = lean_array_push(x_78, x_52); x_80 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -8002,10 +8002,10 @@ x_83 = lean_ctor_get(x_57, 1); lean_inc(x_83); lean_inc(x_82); lean_dec(x_57); -x_84 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_84 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_85 = l_Lean_addMacroScope(x_82, x_84, x_55); x_86 = l_Lean_SourceInfo_inhabited___closed__1; -x_87 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_87 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_88 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_88, 0, x_86); lean_ctor_set(x_88, 1, x_87); @@ -8013,19 +8013,19 @@ lean_ctor_set(x_88, 2, x_85); lean_ctor_set(x_88, 3, x_27); x_89 = l_Array_empty___closed__1; x_90 = lean_array_push(x_89, x_88); -x_91 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_91 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_92 = lean_array_push(x_90, x_91); x_93 = lean_array_push(x_92, x_91); -x_94 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_94 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_95 = lean_array_push(x_93, x_94); x_96 = lean_array_push(x_95, x_17); x_97 = l_Lean_Parser_Term_letIdDecl___closed__2; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); -x_99 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_99 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_100 = lean_array_push(x_99, x_98); -x_101 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_101 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_102 = lean_array_push(x_100, x_101); x_103 = lean_array_push(x_102, x_52); x_104 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -8049,9 +8049,9 @@ lean_dec(x_50); x_109 = lean_ctor_get(x_51, 0); lean_inc(x_109); lean_dec(x_51); -x_110 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(x_25, x_21, x_27); +x_110 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(x_25, x_21, x_27); lean_dec(x_25); -x_111 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_110); +x_111 = l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_110); x_112 = !lean_is_exclusive(x_108); if (x_112 == 0) { @@ -8073,7 +8073,7 @@ lean_ctor_set(x_115, 9, x_113); lean_ctor_set_uint8(x_115, sizeof(void*)*10, x_46); lean_ctor_set_uint8(x_115, sizeof(void*)*10 + 1, x_47); lean_ctor_set_uint8(x_115, sizeof(void*)*10 + 2, x_48); -x_116 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_111, x_115, x_108); +x_116 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_111, x_115, x_108); if (lean_obj_tag(x_116) == 0) { lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; 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; uint8_t x_157; @@ -8094,13 +8094,13 @@ lean_inc(x_123); x_124 = lean_ctor_get(x_122, 1); lean_inc(x_124); lean_dec(x_122); -x_125 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; +x_125 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; lean_inc(x_120); lean_inc(x_123); x_126 = l_Lean_addMacroScope(x_123, x_125, x_120); x_127 = l_Lean_SourceInfo_inhabited___closed__1; -x_128 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; -x_129 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; +x_128 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; +x_129 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; x_130 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_130, 0, x_127); lean_ctor_set(x_130, 1, x_128); @@ -8108,16 +8108,16 @@ lean_ctor_set(x_130, 2, x_126); lean_ctor_set(x_130, 3, x_129); x_131 = l_Array_empty___closed__1; x_132 = lean_array_push(x_131, x_130); -x_133 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_133 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_134 = lean_array_push(x_132, x_133); x_135 = l_Lean_mkTermIdFromIdent___closed__2; x_136 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_136, 0, x_135); lean_ctor_set(x_136, 1, x_134); x_137 = lean_array_push(x_131, x_136); -x_138 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_138 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_139 = l_Lean_addMacroScope(x_123, x_138, x_120); -x_140 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_140 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_141 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_141, 0, x_127); lean_ctor_set(x_141, 1, x_140); @@ -8129,7 +8129,7 @@ x_144 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_144, 0, x_135); lean_ctor_set(x_144, 1, x_143); x_145 = lean_array_push(x_131, x_144); -x_146 = l___private_Init_Lean_Syntax_7__quoteName___main(x_109); +x_146 = l___private_Lean_Syntax_7__quoteName___main(x_109); x_147 = lean_array_push(x_145, x_146); x_148 = l_Lean_nullKind___closed__2; x_149 = lean_alloc_ctor(1, 2, 0); @@ -8164,24 +8164,24 @@ lean_ctor_set(x_160, 3, x_27); x_161 = lean_array_push(x_131, x_160); x_162 = lean_array_push(x_161, x_133); x_163 = lean_array_push(x_162, x_133); -x_164 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_164 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_165 = lean_array_push(x_163, x_164); x_166 = lean_array_push(x_165, x_17); x_167 = l_Lean_Parser_Term_letIdDecl___closed__2; x_168 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_168, 0, x_167); lean_ctor_set(x_168, 1, x_166); -x_169 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_169 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_170 = lean_array_push(x_169, x_168); -x_171 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_171 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_172 = lean_array_push(x_170, x_171); x_173 = lean_array_push(x_131, x_152); -x_174 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +x_174 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; x_175 = lean_array_push(x_173, x_174); -x_176 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +x_176 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; x_177 = l_Lean_addMacroScope(x_158, x_176, x_154); -x_178 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; -x_179 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; +x_178 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; +x_179 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; x_180 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_180, 0, x_127); lean_ctor_set(x_180, 1, x_178); @@ -8197,12 +8197,12 @@ x_185 = l_Lean_Parser_Term_eq___elambda__1___closed__2; x_186 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_186, 0, x_185); lean_ctor_set(x_186, 1, x_184); -x_187 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; +x_187 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; x_188 = lean_array_push(x_187, x_186); -x_189 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; +x_189 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; x_190 = lean_array_push(x_188, x_189); x_191 = lean_array_push(x_190, x_107); -x_192 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; +x_192 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; x_193 = lean_array_push(x_191, x_192); x_194 = lean_array_push(x_193, x_117); x_195 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -8236,24 +8236,24 @@ lean_ctor_set(x_203, 3, x_27); x_204 = lean_array_push(x_131, x_203); x_205 = lean_array_push(x_204, x_133); x_206 = lean_array_push(x_205, x_133); -x_207 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_207 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_208 = lean_array_push(x_206, x_207); x_209 = lean_array_push(x_208, x_17); x_210 = l_Lean_Parser_Term_letIdDecl___closed__2; x_211 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_211, 0, x_210); lean_ctor_set(x_211, 1, x_209); -x_212 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_212 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_213 = lean_array_push(x_212, x_211); -x_214 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_214 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_215 = lean_array_push(x_213, x_214); x_216 = lean_array_push(x_131, x_152); -x_217 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +x_217 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; x_218 = lean_array_push(x_216, x_217); -x_219 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +x_219 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; x_220 = l_Lean_addMacroScope(x_200, x_219, x_154); -x_221 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; -x_222 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; +x_221 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; +x_222 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; x_223 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_223, 0, x_127); lean_ctor_set(x_223, 1, x_221); @@ -8269,12 +8269,12 @@ x_228 = l_Lean_Parser_Term_eq___elambda__1___closed__2; x_229 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_229, 0, x_228); lean_ctor_set(x_229, 1, x_227); -x_230 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; +x_230 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; x_231 = lean_array_push(x_230, x_229); -x_232 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; +x_232 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; x_233 = lean_array_push(x_231, x_232); x_234 = lean_array_push(x_233, x_107); -x_235 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; +x_235 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; x_236 = lean_array_push(x_234, x_235); x_237 = lean_array_push(x_236, x_117); x_238 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -8357,7 +8357,7 @@ lean_ctor_set(x_256, 9, x_253); lean_ctor_set_uint8(x_256, sizeof(void*)*10, x_46); lean_ctor_set_uint8(x_256, sizeof(void*)*10 + 1, x_47); lean_ctor_set_uint8(x_256, sizeof(void*)*10 + 2, x_48); -x_257 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_111, x_256, x_255); +x_257 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_111, x_256, x_255); if (lean_obj_tag(x_257) == 0) { lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; @@ -8378,13 +8378,13 @@ lean_inc(x_264); x_265 = lean_ctor_get(x_263, 1); lean_inc(x_265); lean_dec(x_263); -x_266 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; +x_266 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; lean_inc(x_261); lean_inc(x_264); x_267 = l_Lean_addMacroScope(x_264, x_266, x_261); x_268 = l_Lean_SourceInfo_inhabited___closed__1; -x_269 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; -x_270 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; +x_269 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; +x_270 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; x_271 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_271, 0, x_268); lean_ctor_set(x_271, 1, x_269); @@ -8392,16 +8392,16 @@ lean_ctor_set(x_271, 2, x_267); lean_ctor_set(x_271, 3, x_270); x_272 = l_Array_empty___closed__1; x_273 = lean_array_push(x_272, x_271); -x_274 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_274 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_275 = lean_array_push(x_273, x_274); x_276 = l_Lean_mkTermIdFromIdent___closed__2; x_277 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_277, 0, x_276); lean_ctor_set(x_277, 1, x_275); x_278 = lean_array_push(x_272, x_277); -x_279 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_279 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_280 = l_Lean_addMacroScope(x_264, x_279, x_261); -x_281 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_281 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_282 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_282, 0, x_268); lean_ctor_set(x_282, 1, x_281); @@ -8413,7 +8413,7 @@ x_285 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_285, 0, x_276); lean_ctor_set(x_285, 1, x_284); x_286 = lean_array_push(x_272, x_285); -x_287 = l___private_Init_Lean_Syntax_7__quoteName___main(x_109); +x_287 = l___private_Lean_Syntax_7__quoteName___main(x_109); x_288 = lean_array_push(x_286, x_287); x_289 = l_Lean_nullKind___closed__2; x_290 = lean_alloc_ctor(1, 2, 0); @@ -8455,24 +8455,24 @@ lean_ctor_set(x_302, 3, x_27); x_303 = lean_array_push(x_272, x_302); x_304 = lean_array_push(x_303, x_274); x_305 = lean_array_push(x_304, x_274); -x_306 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_306 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_307 = lean_array_push(x_305, x_306); x_308 = lean_array_push(x_307, x_17); x_309 = l_Lean_Parser_Term_letIdDecl___closed__2; x_310 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_310, 0, x_309); lean_ctor_set(x_310, 1, x_308); -x_311 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_311 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_312 = lean_array_push(x_311, x_310); -x_313 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_313 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_314 = lean_array_push(x_312, x_313); x_315 = lean_array_push(x_272, x_293); -x_316 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +x_316 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; x_317 = lean_array_push(x_315, x_316); -x_318 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +x_318 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; x_319 = l_Lean_addMacroScope(x_298, x_318, x_295); -x_320 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; -x_321 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; +x_320 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; +x_321 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; x_322 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_322, 0, x_268); lean_ctor_set(x_322, 1, x_320); @@ -8488,12 +8488,12 @@ x_327 = l_Lean_Parser_Term_eq___elambda__1___closed__2; x_328 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_328, 0, x_327); lean_ctor_set(x_328, 1, x_326); -x_329 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; +x_329 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; x_330 = lean_array_push(x_329, x_328); -x_331 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; +x_331 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; x_332 = lean_array_push(x_330, x_331); x_333 = lean_array_push(x_332, x_107); -x_334 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; +x_334 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; x_335 = lean_array_push(x_333, x_334); x_336 = lean_array_push(x_335, x_258); x_337 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -8651,7 +8651,7 @@ lean_ctor_set(x_372, 9, x_356); lean_ctor_set_uint8(x_372, sizeof(void*)*10, x_369); lean_ctor_set_uint8(x_372, sizeof(void*)*10 + 1, x_370); lean_ctor_set_uint8(x_372, sizeof(void*)*10 + 2, x_371); -x_373 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_32, x_30, x_372, x_359); +x_373 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_32, x_30, x_372, x_359); if (lean_obj_tag(x_373) == 0) { lean_object* x_374; @@ -8697,10 +8697,10 @@ if (lean_is_exclusive(x_380)) { lean_dec_ref(x_380); x_383 = lean_box(0); } -x_384 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_384 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_385 = l_Lean_addMacroScope(x_381, x_384, x_378); x_386 = l_Lean_SourceInfo_inhabited___closed__1; -x_387 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_387 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_388 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_388, 0, x_386); lean_ctor_set(x_388, 1, x_387); @@ -8708,19 +8708,19 @@ lean_ctor_set(x_388, 2, x_385); lean_ctor_set(x_388, 3, x_27); x_389 = l_Array_empty___closed__1; x_390 = lean_array_push(x_389, x_388); -x_391 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_391 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_392 = lean_array_push(x_390, x_391); x_393 = lean_array_push(x_392, x_391); -x_394 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_394 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_395 = lean_array_push(x_393, x_394); x_396 = lean_array_push(x_395, x_17); x_397 = l_Lean_Parser_Term_letIdDecl___closed__2; x_398 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_398, 0, x_397); lean_ctor_set(x_398, 1, x_396); -x_399 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_399 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_400 = lean_array_push(x_399, x_398); -x_401 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_401 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_402 = lean_array_push(x_400, x_401); x_403 = lean_array_push(x_402, x_375); x_404 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -8747,9 +8747,9 @@ lean_dec(x_373); x_409 = lean_ctor_get(x_374, 0); lean_inc(x_409); lean_dec(x_374); -x_410 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(x_25, x_21, x_27); +x_410 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(x_25, x_21, x_27); lean_dec(x_25); -x_411 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_410); +x_411 = l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_410); x_412 = lean_ctor_get(x_408, 0); lean_inc(x_412); x_413 = lean_ctor_get(x_408, 1); @@ -8800,7 +8800,7 @@ lean_ctor_set(x_421, 9, x_417); lean_ctor_set_uint8(x_421, sizeof(void*)*10, x_369); lean_ctor_set_uint8(x_421, sizeof(void*)*10 + 1, x_370); lean_ctor_set_uint8(x_421, sizeof(void*)*10 + 2, x_371); -x_422 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_411, x_421, x_420); +x_422 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_411, x_421, x_420); if (lean_obj_tag(x_422) == 0) { lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; @@ -8821,13 +8821,13 @@ lean_inc(x_429); x_430 = lean_ctor_get(x_428, 1); lean_inc(x_430); lean_dec(x_428); -x_431 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; +x_431 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; lean_inc(x_426); lean_inc(x_429); x_432 = l_Lean_addMacroScope(x_429, x_431, x_426); x_433 = l_Lean_SourceInfo_inhabited___closed__1; -x_434 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; -x_435 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; +x_434 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; +x_435 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; x_436 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_436, 0, x_433); lean_ctor_set(x_436, 1, x_434); @@ -8835,16 +8835,16 @@ lean_ctor_set(x_436, 2, x_432); lean_ctor_set(x_436, 3, x_435); x_437 = l_Array_empty___closed__1; x_438 = lean_array_push(x_437, x_436); -x_439 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_439 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_440 = lean_array_push(x_438, x_439); x_441 = l_Lean_mkTermIdFromIdent___closed__2; x_442 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_442, 0, x_441); lean_ctor_set(x_442, 1, x_440); x_443 = lean_array_push(x_437, x_442); -x_444 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_444 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_445 = l_Lean_addMacroScope(x_429, x_444, x_426); -x_446 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_446 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_447 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_447, 0, x_433); lean_ctor_set(x_447, 1, x_446); @@ -8856,7 +8856,7 @@ x_450 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_450, 0, x_441); lean_ctor_set(x_450, 1, x_449); x_451 = lean_array_push(x_437, x_450); -x_452 = l___private_Init_Lean_Syntax_7__quoteName___main(x_409); +x_452 = l___private_Lean_Syntax_7__quoteName___main(x_409); x_453 = lean_array_push(x_451, x_452); x_454 = l_Lean_nullKind___closed__2; x_455 = lean_alloc_ctor(1, 2, 0); @@ -8898,24 +8898,24 @@ lean_ctor_set(x_467, 3, x_27); x_468 = lean_array_push(x_437, x_467); x_469 = lean_array_push(x_468, x_439); x_470 = lean_array_push(x_469, x_439); -x_471 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_471 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_472 = lean_array_push(x_470, x_471); x_473 = lean_array_push(x_472, x_17); x_474 = l_Lean_Parser_Term_letIdDecl___closed__2; x_475 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_475, 0, x_474); lean_ctor_set(x_475, 1, x_473); -x_476 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_476 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_477 = lean_array_push(x_476, x_475); -x_478 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_478 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_479 = lean_array_push(x_477, x_478); x_480 = lean_array_push(x_437, x_458); -x_481 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +x_481 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; x_482 = lean_array_push(x_480, x_481); -x_483 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +x_483 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; x_484 = l_Lean_addMacroScope(x_463, x_483, x_460); -x_485 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; -x_486 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; +x_485 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; +x_486 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; x_487 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_487, 0, x_433); lean_ctor_set(x_487, 1, x_485); @@ -8931,12 +8931,12 @@ x_492 = l_Lean_Parser_Term_eq___elambda__1___closed__2; x_493 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_493, 0, x_492); lean_ctor_set(x_493, 1, x_491); -x_494 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; +x_494 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; x_495 = lean_array_push(x_494, x_493); -x_496 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; +x_496 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; x_497 = lean_array_push(x_495, x_496); x_498 = lean_array_push(x_497, x_407); -x_499 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; +x_499 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; x_500 = lean_array_push(x_498, x_499); x_501 = lean_array_push(x_500, x_423); x_502 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -9066,7 +9066,7 @@ x_521 = lean_array_get_size(x_520); lean_dec(x_520); lean_inc(x_521); x_522 = l_List_range(x_521); -x_523 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(x_522, x_4, x_5); +x_523 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(x_522, x_4, x_5); x_524 = lean_ctor_get(x_523, 0); lean_inc(x_524); x_525 = lean_ctor_get(x_523, 1); @@ -9074,9 +9074,9 @@ lean_inc(x_525); lean_dec(x_523); x_526 = lean_box(0); lean_inc(x_21); -x_527 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9(x_25, x_21, x_526); +x_527 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9(x_25, x_21, x_526); lean_inc(x_4); -x_528 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(x_524, x_527, x_4, x_525); +x_528 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(x_524, x_527, x_4, x_525); if (lean_obj_tag(x_528) == 0) { lean_object* x_529; lean_object* x_530; lean_object* x_531; uint8_t x_532; @@ -9138,7 +9138,7 @@ lean_ctor_set(x_548, 9, x_533); lean_ctor_set_uint8(x_548, sizeof(void*)*10, x_545); lean_ctor_set_uint8(x_548, sizeof(void*)*10 + 1, x_546); lean_ctor_set_uint8(x_548, sizeof(void*)*10 + 2, x_547); -x_549 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_531, x_529, x_548, x_530); +x_549 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_531, x_529, x_548, x_530); if (lean_obj_tag(x_549) == 0) { lean_object* x_550; @@ -9178,10 +9178,10 @@ if (x_557 == 0) { lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; x_558 = lean_ctor_get(x_556, 0); -x_559 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_559 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_560 = l_Lean_addMacroScope(x_558, x_559, x_554); x_561 = l_Lean_SourceInfo_inhabited___closed__1; -x_562 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_562 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_563 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_563, 0, x_561); lean_ctor_set(x_563, 1, x_562); @@ -9189,19 +9189,19 @@ lean_ctor_set(x_563, 2, x_560); lean_ctor_set(x_563, 3, x_526); x_564 = l_Array_empty___closed__1; x_565 = lean_array_push(x_564, x_563); -x_566 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_566 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_567 = lean_array_push(x_565, x_566); x_568 = lean_array_push(x_567, x_566); -x_569 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_569 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_570 = lean_array_push(x_568, x_569); x_571 = lean_array_push(x_570, x_17); x_572 = l_Lean_Parser_Term_letIdDecl___closed__2; x_573 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_573, 0, x_572); lean_ctor_set(x_573, 1, x_571); -x_574 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_574 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_575 = lean_array_push(x_574, x_573); -x_576 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_576 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_577 = lean_array_push(x_575, x_576); x_578 = lean_array_push(x_577, x_551); x_579 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9219,10 +9219,10 @@ x_582 = lean_ctor_get(x_556, 1); lean_inc(x_582); lean_inc(x_581); lean_dec(x_556); -x_583 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_583 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_584 = l_Lean_addMacroScope(x_581, x_583, x_554); x_585 = l_Lean_SourceInfo_inhabited___closed__1; -x_586 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_586 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_587 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_587, 0, x_585); lean_ctor_set(x_587, 1, x_586); @@ -9230,19 +9230,19 @@ lean_ctor_set(x_587, 2, x_584); lean_ctor_set(x_587, 3, x_526); x_588 = l_Array_empty___closed__1; x_589 = lean_array_push(x_588, x_587); -x_590 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_590 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_591 = lean_array_push(x_589, x_590); x_592 = lean_array_push(x_591, x_590); -x_593 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_593 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_594 = lean_array_push(x_592, x_593); x_595 = lean_array_push(x_594, x_17); x_596 = l_Lean_Parser_Term_letIdDecl___closed__2; x_597 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_597, 0, x_596); lean_ctor_set(x_597, 1, x_595); -x_598 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_598 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_599 = lean_array_push(x_598, x_597); -x_600 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_600 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_601 = lean_array_push(x_599, x_600); x_602 = lean_array_push(x_601, x_551); x_603 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9266,9 +9266,9 @@ lean_dec(x_549); x_608 = lean_ctor_get(x_550, 0); lean_inc(x_608); lean_dec(x_550); -x_609 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(x_25, x_21, x_526); +x_609 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(x_25, x_21, x_526); lean_dec(x_25); -x_610 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_609); +x_610 = l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_609); x_611 = !lean_is_exclusive(x_607); if (x_611 == 0) { @@ -9290,7 +9290,7 @@ lean_ctor_set(x_614, 9, x_612); lean_ctor_set_uint8(x_614, sizeof(void*)*10, x_545); lean_ctor_set_uint8(x_614, sizeof(void*)*10 + 1, x_546); lean_ctor_set_uint8(x_614, sizeof(void*)*10 + 2, x_547); -x_615 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_610, x_614, x_607); +x_615 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_610, x_614, x_607); if (lean_obj_tag(x_615) == 0) { lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; uint8_t x_709; @@ -9311,13 +9311,13 @@ lean_inc(x_622); x_623 = lean_ctor_get(x_621, 1); lean_inc(x_623); lean_dec(x_621); -x_624 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; +x_624 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; lean_inc(x_619); lean_inc(x_622); x_625 = l_Lean_addMacroScope(x_622, x_624, x_619); x_626 = l_Lean_SourceInfo_inhabited___closed__1; -x_627 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; -x_628 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; +x_627 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; +x_628 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; x_629 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_629, 0, x_626); lean_ctor_set(x_629, 1, x_627); @@ -9325,18 +9325,18 @@ lean_ctor_set(x_629, 2, x_625); lean_ctor_set(x_629, 3, x_628); x_630 = l_Array_empty___closed__1; x_631 = lean_array_push(x_630, x_629); -x_632 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_632 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_633 = lean_array_push(x_631, x_632); x_634 = l_Lean_mkTermIdFromIdent___closed__2; x_635 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_635, 0, x_634); lean_ctor_set(x_635, 1, x_633); x_636 = lean_array_push(x_630, x_635); -x_637 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_637 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; lean_inc(x_619); lean_inc(x_622); x_638 = l_Lean_addMacroScope(x_622, x_637, x_619); -x_639 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_639 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_640 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_640, 0, x_626); lean_ctor_set(x_640, 1, x_639); @@ -9348,7 +9348,7 @@ x_643 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_643, 0, x_634); lean_ctor_set(x_643, 1, x_642); x_644 = lean_array_push(x_630, x_643); -x_645 = l___private_Init_Lean_Syntax_7__quoteName___main(x_608); +x_645 = l___private_Lean_Syntax_7__quoteName___main(x_608); lean_inc(x_644); x_646 = lean_array_push(x_644, x_645); x_647 = l_Lean_nullKind___closed__2; @@ -9361,14 +9361,14 @@ x_651 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_651, 0, x_650); lean_ctor_set(x_651, 1, x_649); x_652 = lean_array_push(x_630, x_651); -x_653 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26; +x_653 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26; x_654 = lean_array_push(x_652, x_653); -x_655 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; +x_655 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; lean_inc(x_619); lean_inc(x_622); x_656 = l_Lean_addMacroScope(x_622, x_655, x_619); -x_657 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29; -x_658 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33; +x_657 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29; +x_658 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33; x_659 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_659, 0, x_626); lean_ctor_set(x_659, 1, x_657); @@ -9380,10 +9380,10 @@ x_662 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_662, 0, x_634); lean_ctor_set(x_662, 1, x_661); x_663 = lean_array_push(x_630, x_662); -x_664 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; +x_664 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; x_665 = l_Lean_addMacroScope(x_622, x_664, x_619); -x_666 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; -x_667 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36; +x_666 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; +x_667 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36; x_668 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_668, 0, x_626); lean_ctor_set(x_668, 1, x_666); @@ -9407,9 +9407,9 @@ x_677 = lean_array_push(x_676, x_632); x_678 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_678, 0, x_647); lean_ctor_set(x_678, 1, x_677); -x_679 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_679 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_680 = lean_array_push(x_679, x_678); -x_681 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_681 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_682 = lean_array_push(x_680, x_681); x_683 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_684 = lean_alloc_ctor(1, 2, 0); @@ -9424,7 +9424,7 @@ x_688 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_688, 0, x_650); lean_ctor_set(x_688, 1, x_687); x_689 = lean_array_push(x_630, x_688); -x_690 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38; +x_690 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38; x_691 = lean_array_push(x_689, x_690); x_692 = l_Nat_repr(x_521); x_693 = l_Lean_numLitKind; @@ -9469,24 +9469,24 @@ lean_ctor_set(x_712, 3, x_526); x_713 = lean_array_push(x_630, x_712); x_714 = lean_array_push(x_713, x_632); x_715 = lean_array_push(x_714, x_632); -x_716 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_716 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_717 = lean_array_push(x_715, x_716); x_718 = lean_array_push(x_717, x_17); x_719 = l_Lean_Parser_Term_letIdDecl___closed__2; x_720 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_720, 0, x_719); lean_ctor_set(x_720, 1, x_718); -x_721 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_721 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_722 = lean_array_push(x_721, x_720); -x_723 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_723 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_724 = lean_array_push(x_722, x_723); x_725 = lean_array_push(x_630, x_704); -x_726 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +x_726 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; x_727 = lean_array_push(x_725, x_726); -x_728 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +x_728 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; x_729 = l_Lean_addMacroScope(x_710, x_728, x_706); -x_730 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; -x_731 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; +x_730 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; +x_731 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; x_732 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_732, 0, x_626); lean_ctor_set(x_732, 1, x_730); @@ -9502,12 +9502,12 @@ x_737 = l_Lean_Parser_Term_eq___elambda__1___closed__2; x_738 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_738, 0, x_737); lean_ctor_set(x_738, 1, x_736); -x_739 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; +x_739 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; x_740 = lean_array_push(x_739, x_738); -x_741 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; +x_741 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; x_742 = lean_array_push(x_740, x_741); x_743 = lean_array_push(x_742, x_606); -x_744 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; +x_744 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; x_745 = lean_array_push(x_743, x_744); x_746 = lean_array_push(x_745, x_616); x_747 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -9541,24 +9541,24 @@ lean_ctor_set(x_755, 3, x_526); x_756 = lean_array_push(x_630, x_755); x_757 = lean_array_push(x_756, x_632); x_758 = lean_array_push(x_757, x_632); -x_759 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_759 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_760 = lean_array_push(x_758, x_759); x_761 = lean_array_push(x_760, x_17); x_762 = l_Lean_Parser_Term_letIdDecl___closed__2; x_763 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_763, 0, x_762); lean_ctor_set(x_763, 1, x_761); -x_764 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_764 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_765 = lean_array_push(x_764, x_763); -x_766 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_766 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_767 = lean_array_push(x_765, x_766); x_768 = lean_array_push(x_630, x_704); -x_769 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +x_769 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; x_770 = lean_array_push(x_768, x_769); -x_771 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +x_771 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; x_772 = l_Lean_addMacroScope(x_752, x_771, x_706); -x_773 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; -x_774 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; +x_773 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; +x_774 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; x_775 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_775, 0, x_626); lean_ctor_set(x_775, 1, x_773); @@ -9574,12 +9574,12 @@ x_780 = l_Lean_Parser_Term_eq___elambda__1___closed__2; x_781 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_781, 0, x_780); lean_ctor_set(x_781, 1, x_779); -x_782 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; +x_782 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; x_783 = lean_array_push(x_782, x_781); -x_784 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; +x_784 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; x_785 = lean_array_push(x_783, x_784); x_786 = lean_array_push(x_785, x_606); -x_787 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; +x_787 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; x_788 = lean_array_push(x_786, x_787); x_789 = lean_array_push(x_788, x_616); x_790 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -9663,7 +9663,7 @@ lean_ctor_set(x_808, 9, x_805); lean_ctor_set_uint8(x_808, sizeof(void*)*10, x_545); lean_ctor_set_uint8(x_808, sizeof(void*)*10 + 1, x_546); lean_ctor_set_uint8(x_808, sizeof(void*)*10 + 2, x_547); -x_809 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_610, x_808, x_807); +x_809 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_610, x_808, x_807); if (lean_obj_tag(x_809) == 0) { lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; @@ -9684,13 +9684,13 @@ lean_inc(x_816); x_817 = lean_ctor_get(x_815, 1); lean_inc(x_817); lean_dec(x_815); -x_818 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; +x_818 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; lean_inc(x_813); lean_inc(x_816); x_819 = l_Lean_addMacroScope(x_816, x_818, x_813); x_820 = l_Lean_SourceInfo_inhabited___closed__1; -x_821 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; -x_822 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; +x_821 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; +x_822 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; x_823 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_823, 0, x_820); lean_ctor_set(x_823, 1, x_821); @@ -9698,18 +9698,18 @@ lean_ctor_set(x_823, 2, x_819); lean_ctor_set(x_823, 3, x_822); x_824 = l_Array_empty___closed__1; x_825 = lean_array_push(x_824, x_823); -x_826 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_826 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_827 = lean_array_push(x_825, x_826); x_828 = l_Lean_mkTermIdFromIdent___closed__2; x_829 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_829, 0, x_828); lean_ctor_set(x_829, 1, x_827); x_830 = lean_array_push(x_824, x_829); -x_831 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_831 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; lean_inc(x_813); lean_inc(x_816); x_832 = l_Lean_addMacroScope(x_816, x_831, x_813); -x_833 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_833 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_834 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_834, 0, x_820); lean_ctor_set(x_834, 1, x_833); @@ -9721,7 +9721,7 @@ x_837 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_837, 0, x_828); lean_ctor_set(x_837, 1, x_836); x_838 = lean_array_push(x_824, x_837); -x_839 = l___private_Init_Lean_Syntax_7__quoteName___main(x_608); +x_839 = l___private_Lean_Syntax_7__quoteName___main(x_608); lean_inc(x_838); x_840 = lean_array_push(x_838, x_839); x_841 = l_Lean_nullKind___closed__2; @@ -9734,14 +9734,14 @@ x_845 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_845, 0, x_844); lean_ctor_set(x_845, 1, x_843); x_846 = lean_array_push(x_824, x_845); -x_847 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26; +x_847 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26; x_848 = lean_array_push(x_846, x_847); -x_849 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; +x_849 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; lean_inc(x_813); lean_inc(x_816); x_850 = l_Lean_addMacroScope(x_816, x_849, x_813); -x_851 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29; -x_852 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33; +x_851 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29; +x_852 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33; x_853 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_853, 0, x_820); lean_ctor_set(x_853, 1, x_851); @@ -9753,10 +9753,10 @@ x_856 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_856, 0, x_828); lean_ctor_set(x_856, 1, x_855); x_857 = lean_array_push(x_824, x_856); -x_858 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; +x_858 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; x_859 = l_Lean_addMacroScope(x_816, x_858, x_813); -x_860 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; -x_861 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36; +x_860 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; +x_861 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36; x_862 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_862, 0, x_820); lean_ctor_set(x_862, 1, x_860); @@ -9780,9 +9780,9 @@ x_871 = lean_array_push(x_870, x_826); x_872 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_872, 0, x_841); lean_ctor_set(x_872, 1, x_871); -x_873 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_873 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_874 = lean_array_push(x_873, x_872); -x_875 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_875 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_876 = lean_array_push(x_874, x_875); x_877 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_878 = lean_alloc_ctor(1, 2, 0); @@ -9797,7 +9797,7 @@ x_882 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_882, 0, x_844); lean_ctor_set(x_882, 1, x_881); x_883 = lean_array_push(x_824, x_882); -x_884 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38; +x_884 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38; x_885 = lean_array_push(x_883, x_884); x_886 = l_Nat_repr(x_521); x_887 = l_Lean_numLitKind; @@ -9849,24 +9849,24 @@ lean_ctor_set(x_907, 3, x_526); x_908 = lean_array_push(x_824, x_907); x_909 = lean_array_push(x_908, x_826); x_910 = lean_array_push(x_909, x_826); -x_911 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_911 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_912 = lean_array_push(x_910, x_911); x_913 = lean_array_push(x_912, x_17); x_914 = l_Lean_Parser_Term_letIdDecl___closed__2; x_915 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_915, 0, x_914); lean_ctor_set(x_915, 1, x_913); -x_916 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_916 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_917 = lean_array_push(x_916, x_915); -x_918 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_918 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_919 = lean_array_push(x_917, x_918); x_920 = lean_array_push(x_824, x_898); -x_921 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +x_921 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; x_922 = lean_array_push(x_920, x_921); -x_923 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +x_923 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; x_924 = l_Lean_addMacroScope(x_903, x_923, x_900); -x_925 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; -x_926 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; +x_925 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; +x_926 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; x_927 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_927, 0, x_820); lean_ctor_set(x_927, 1, x_925); @@ -9882,12 +9882,12 @@ x_932 = l_Lean_Parser_Term_eq___elambda__1___closed__2; x_933 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_933, 0, x_932); lean_ctor_set(x_933, 1, x_931); -x_934 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; +x_934 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; x_935 = lean_array_push(x_934, x_933); -x_936 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; +x_936 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; x_937 = lean_array_push(x_935, x_936); x_938 = lean_array_push(x_937, x_606); -x_939 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; +x_939 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; x_940 = lean_array_push(x_938, x_939); x_941 = lean_array_push(x_940, x_810); x_942 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -10047,7 +10047,7 @@ lean_ctor_set(x_977, 9, x_961); lean_ctor_set_uint8(x_977, sizeof(void*)*10, x_974); lean_ctor_set_uint8(x_977, sizeof(void*)*10 + 1, x_975); lean_ctor_set_uint8(x_977, sizeof(void*)*10 + 2, x_976); -x_978 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_531, x_529, x_977, x_964); +x_978 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_531, x_529, x_977, x_964); if (lean_obj_tag(x_978) == 0) { lean_object* x_979; @@ -10094,10 +10094,10 @@ if (lean_is_exclusive(x_985)) { lean_dec_ref(x_985); x_988 = lean_box(0); } -x_989 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_989 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; x_990 = l_Lean_addMacroScope(x_986, x_989, x_983); x_991 = l_Lean_SourceInfo_inhabited___closed__1; -x_992 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_992 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_993 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_993, 0, x_991); lean_ctor_set(x_993, 1, x_992); @@ -10105,19 +10105,19 @@ lean_ctor_set(x_993, 2, x_990); lean_ctor_set(x_993, 3, x_526); x_994 = l_Array_empty___closed__1; x_995 = lean_array_push(x_994, x_993); -x_996 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_996 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_997 = lean_array_push(x_995, x_996); x_998 = lean_array_push(x_997, x_996); -x_999 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_999 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_1000 = lean_array_push(x_998, x_999); x_1001 = lean_array_push(x_1000, x_17); x_1002 = l_Lean_Parser_Term_letIdDecl___closed__2; x_1003 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1003, 0, x_1002); lean_ctor_set(x_1003, 1, x_1001); -x_1004 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_1004 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_1005 = lean_array_push(x_1004, x_1003); -x_1006 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_1006 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_1007 = lean_array_push(x_1005, x_1006); x_1008 = lean_array_push(x_1007, x_980); x_1009 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -10144,9 +10144,9 @@ lean_dec(x_978); x_1014 = lean_ctor_get(x_979, 0); lean_inc(x_1014); lean_dec(x_979); -x_1015 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(x_25, x_21, x_526); +x_1015 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(x_25, x_21, x_526); lean_dec(x_25); -x_1016 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_1015); +x_1016 = l_List_map___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__7(x_1015); x_1017 = lean_ctor_get(x_1013, 0); lean_inc(x_1017); x_1018 = lean_ctor_get(x_1013, 1); @@ -10197,7 +10197,7 @@ lean_ctor_set(x_1026, 9, x_1022); lean_ctor_set_uint8(x_1026, sizeof(void*)*10, x_974); lean_ctor_set_uint8(x_1026, sizeof(void*)*10 + 1, x_975); lean_ctor_set_uint8(x_1026, sizeof(void*)*10 + 2, x_976); -x_1027 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_1016, x_1026, x_1025); +x_1027 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_1016, x_1026, x_1025); if (lean_obj_tag(x_1027) == 0) { lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; @@ -10218,13 +10218,13 @@ lean_inc(x_1034); x_1035 = lean_ctor_get(x_1033, 1); lean_inc(x_1035); lean_dec(x_1033); -x_1036 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; +x_1036 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8; lean_inc(x_1031); lean_inc(x_1034); x_1037 = l_Lean_addMacroScope(x_1034, x_1036, x_1031); x_1038 = l_Lean_SourceInfo_inhabited___closed__1; -x_1039 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; -x_1040 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; +x_1039 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6; +x_1040 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11; x_1041 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1041, 0, x_1038); lean_ctor_set(x_1041, 1, x_1039); @@ -10232,18 +10232,18 @@ lean_ctor_set(x_1041, 2, x_1037); lean_ctor_set(x_1041, 3, x_1040); x_1042 = l_Array_empty___closed__1; x_1043 = lean_array_push(x_1042, x_1041); -x_1044 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1044 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1045 = lean_array_push(x_1043, x_1044); x_1046 = l_Lean_mkTermIdFromIdent___closed__2; x_1047 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1047, 0, x_1046); lean_ctor_set(x_1047, 1, x_1045); x_1048 = lean_array_push(x_1042, x_1047); -x_1049 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; +x_1049 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8; lean_inc(x_1031); lean_inc(x_1034); x_1050 = l_Lean_addMacroScope(x_1034, x_1049, x_1031); -x_1051 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; +x_1051 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7; x_1052 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1052, 0, x_1038); lean_ctor_set(x_1052, 1, x_1051); @@ -10255,7 +10255,7 @@ x_1055 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1055, 0, x_1046); lean_ctor_set(x_1055, 1, x_1054); x_1056 = lean_array_push(x_1042, x_1055); -x_1057 = l___private_Init_Lean_Syntax_7__quoteName___main(x_1014); +x_1057 = l___private_Lean_Syntax_7__quoteName___main(x_1014); lean_inc(x_1056); x_1058 = lean_array_push(x_1056, x_1057); x_1059 = l_Lean_nullKind___closed__2; @@ -10268,14 +10268,14 @@ x_1063 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1063, 0, x_1062); lean_ctor_set(x_1063, 1, x_1061); x_1064 = lean_array_push(x_1042, x_1063); -x_1065 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26; +x_1065 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26; x_1066 = lean_array_push(x_1064, x_1065); -x_1067 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; +x_1067 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31; lean_inc(x_1031); lean_inc(x_1034); x_1068 = l_Lean_addMacroScope(x_1034, x_1067, x_1031); -x_1069 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29; -x_1070 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33; +x_1069 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29; +x_1070 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33; x_1071 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1071, 0, x_1038); lean_ctor_set(x_1071, 1, x_1069); @@ -10287,10 +10287,10 @@ x_1074 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1074, 0, x_1046); lean_ctor_set(x_1074, 1, x_1073); x_1075 = lean_array_push(x_1042, x_1074); -x_1076 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; +x_1076 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5; x_1077 = l_Lean_addMacroScope(x_1034, x_1076, x_1031); -x_1078 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; -x_1079 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36; +x_1078 = l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3; +x_1079 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36; x_1080 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1080, 0, x_1038); lean_ctor_set(x_1080, 1, x_1078); @@ -10314,9 +10314,9 @@ x_1089 = lean_array_push(x_1088, x_1044); x_1090 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1090, 0, x_1059); lean_ctor_set(x_1090, 1, x_1089); -x_1091 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_1091 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_1092 = lean_array_push(x_1091, x_1090); -x_1093 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1093 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_1094 = lean_array_push(x_1092, x_1093); x_1095 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_1096 = lean_alloc_ctor(1, 2, 0); @@ -10331,7 +10331,7 @@ x_1100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1100, 0, x_1062); lean_ctor_set(x_1100, 1, x_1099); x_1101 = lean_array_push(x_1042, x_1100); -x_1102 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38; +x_1102 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38; x_1103 = lean_array_push(x_1101, x_1102); x_1104 = l_Nat_repr(x_521); x_1105 = l_Lean_numLitKind; @@ -10383,24 +10383,24 @@ lean_ctor_set(x_1125, 3, x_526); x_1126 = lean_array_push(x_1042, x_1125); x_1127 = lean_array_push(x_1126, x_1044); x_1128 = lean_array_push(x_1127, x_1044); -x_1129 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_1129 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_1130 = lean_array_push(x_1128, x_1129); x_1131 = lean_array_push(x_1130, x_17); x_1132 = l_Lean_Parser_Term_letIdDecl___closed__2; x_1133 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1133, 0, x_1132); lean_ctor_set(x_1133, 1, x_1131); -x_1134 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_1134 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_1135 = lean_array_push(x_1134, x_1133); -x_1136 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_1136 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_1137 = lean_array_push(x_1135, x_1136); x_1138 = lean_array_push(x_1042, x_1116); -x_1139 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; +x_1139 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15; x_1140 = lean_array_push(x_1138, x_1139); -x_1141 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; +x_1141 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18; x_1142 = l_Lean_addMacroScope(x_1121, x_1141, x_1118); -x_1143 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; -x_1144 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; +x_1143 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17; +x_1144 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20; x_1145 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1145, 0, x_1038); lean_ctor_set(x_1145, 1, x_1143); @@ -10416,12 +10416,12 @@ x_1150 = l_Lean_Parser_Term_eq___elambda__1___closed__2; x_1151 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1151, 0, x_1150); lean_ctor_set(x_1151, 1, x_1149); -x_1152 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; +x_1152 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14; x_1153 = lean_array_push(x_1152, x_1151); -x_1154 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; +x_1154 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22; x_1155 = lean_array_push(x_1153, x_1154); x_1156 = lean_array_push(x_1155, x_1012); -x_1157 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; +x_1157 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24; x_1158 = lean_array_push(x_1156, x_1157); x_1159 = lean_array_push(x_1158, x_1028); x_1160 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -10549,106 +10549,106 @@ return x_1177; } } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___boxed(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2(x_1); +x_2 = l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3(x_1, x_2); +x_3 = l_List_foldl___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__3(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__4(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__6(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(x_1, x_2, x_3); +x_4 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__9(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10___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_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(x_1, x_2, x_3, x_4); +x_5 = l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__10(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__11(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Quotation_6__compileStxMatch___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Quotation_6__compileStxMatch(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -10666,9 +10666,9 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); -x_6 = l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_4); +x_6 = l___private_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_4); lean_dec(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(x_5); +x_7 = l_List_map___main___at___private_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -10681,9 +10681,9 @@ x_9 = lean_ctor_get(x_1, 1); lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); -x_10 = l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_8); +x_10 = l___private_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_8); lean_dec(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(x_9); +x_11 = l_List_map___main___at___private_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -10692,7 +10692,7 @@ return x_12; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_7__getPatternVarsAux___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -10704,7 +10704,7 @@ if (x_3 == 0) { lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = l_Array_toList___rarg(x_2); -x_5 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(x_4); +x_5 = l_List_map___main___at___private_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(x_4); x_6 = l_List_join___main___rarg(x_5); return x_6; } @@ -10740,7 +10740,7 @@ else { lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = l_Array_toList___rarg(x_2); -x_15 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(x_14); +x_15 = l_List_map___main___at___private_Lean_Elab_Quotation_7__getPatternVarsAux___main___spec__1(x_14); x_16 = l_List_join___main___rarg(x_15); return x_16; } @@ -10754,28 +10754,28 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_7__getPatternVarsAux___main___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_1); +x_2 = l___private_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_7__getPatternVarsAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_1); +x_2 = l___private_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_7__getPatternVarsAux___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux(x_1); +x_2 = l___private_Lean_Elab_Quotation_7__getPatternVarsAux(x_1); lean_dec(x_1); return x_2; } @@ -10813,13 +10813,13 @@ return x_8; else { lean_object* x_9; -x_9 = l___private_Init_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_1); +x_9 = l___private_Lean_Elab_Quotation_7__getPatternVarsAux___main(x_1); lean_dec(x_1); return x_9; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -10838,7 +10838,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); x_6 = l_Lean_Elab_Term_Quotation_getPatternVars(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_5); +x_7 = l_List_map___main___at___private_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -10852,7 +10852,7 @@ lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); x_10 = l_Lean_Elab_Term_Quotation_getPatternVars(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_9); +x_11 = l_List_map___main___at___private_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -10861,7 +10861,7 @@ return x_12; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__1() { _start: { lean_object* x_1; @@ -10869,22 +10869,22 @@ x_1 = lean_mk_string("rhs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__1; +x_1 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__1; +x_1 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__2; +x_3 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10892,113 +10892,113 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__1; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; -x_2 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_2 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__5; -x_2 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_1 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__5; +x_2 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__7() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_paren___elambda__1___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__6; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__6; 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_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__8() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__7; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__7; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__9() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nullKind___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__8; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__8; 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_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__10() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; +x_2 = l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nullKind___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__10; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___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; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__12() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__12; +x_1 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__12; x_2 = l_Lean_Elab_Term_expandCDot_x3f___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__14() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; @@ -11007,7 +11007,7 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__15() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__15() { _start: { lean_object* x_1; lean_object* x_2; @@ -11016,17 +11016,17 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__16() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__14; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__14; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17() { +lean_object* _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -11038,7 +11038,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_2) == 0) @@ -11064,7 +11064,7 @@ x_11 = lean_ctor_get(x_2, 1); x_12 = lean_ctor_get(x_9, 0); x_13 = lean_ctor_get(x_9, 1); lean_inc(x_12); -x_14 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_12); +x_14 = l_List_map___main___at___private_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_12); x_15 = l_List_join___main___rarg(x_14); if (lean_obj_tag(x_15) == 0) { @@ -11081,11 +11081,11 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; +x_22 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; x_23 = l_Lean_addMacroScope(x_20, x_22, x_17); x_24 = lean_box(0); x_25 = l_Lean_SourceInfo_inhabited___closed__1; -x_26 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; +x_26 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -11093,14 +11093,14 @@ lean_ctor_set(x_27, 2, x_23); lean_ctor_set(x_27, 3, x_24); x_28 = l_Array_empty___closed__1; x_29 = lean_array_push(x_28, x_27); -x_30 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_30 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_31 = lean_array_push(x_29, x_30); x_32 = l_Lean_mkTermIdFromIdent___closed__2; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); x_34 = lean_array_push(x_28, x_33); -x_35 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__9; +x_35 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__9; x_36 = lean_array_push(x_34, x_35); x_37 = l_Lean_mkAppStx___closed__8; x_38 = lean_alloc_ctor(1, 2, 0); @@ -11151,7 +11151,7 @@ lean_ctor_set(x_55, 9, x_40); lean_ctor_set_uint8(x_55, sizeof(void*)*10, x_52); lean_ctor_set_uint8(x_55, sizeof(void*)*10 + 1, x_53); lean_ctor_set_uint8(x_55, sizeof(void*)*10 + 2, x_54); -x_56 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_2, x_55, x_21); +x_56 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_2, x_55, x_21); if (lean_obj_tag(x_56) == 0) { lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; @@ -11182,9 +11182,9 @@ lean_ctor_set(x_66, 3, x_24); x_67 = lean_array_push(x_28, x_66); x_68 = lean_array_push(x_67, x_30); x_69 = lean_array_push(x_68, x_30); -x_70 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_70 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_71 = lean_array_push(x_69, x_70); -x_72 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; +x_72 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; x_73 = lean_array_push(x_72, x_13); x_74 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_75 = lean_alloc_ctor(1, 2, 0); @@ -11195,9 +11195,9 @@ x_77 = l_Lean_Parser_Term_letIdDecl___closed__2; x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); -x_79 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_79 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_80 = lean_array_push(x_79, x_78); -x_81 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_81 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_82 = lean_array_push(x_80, x_81); x_83 = lean_array_push(x_82, x_57); x_84 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -11224,9 +11224,9 @@ lean_ctor_set(x_89, 3, x_24); x_90 = lean_array_push(x_28, x_89); x_91 = lean_array_push(x_90, x_30); x_92 = lean_array_push(x_91, x_30); -x_93 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_93 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_94 = lean_array_push(x_92, x_93); -x_95 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; +x_95 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; x_96 = lean_array_push(x_95, x_13); x_97 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_98 = lean_alloc_ctor(1, 2, 0); @@ -11237,9 +11237,9 @@ x_100 = l_Lean_Parser_Term_letIdDecl___closed__2; x_101 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_101, 0, x_100); lean_ctor_set(x_101, 1, x_99); -x_102 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_102 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_103 = lean_array_push(x_102, x_101); -x_104 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_104 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_105 = lean_array_push(x_103, x_104); x_106 = lean_array_push(x_105, x_57); x_107 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -11337,7 +11337,7 @@ lean_ctor_set(x_135, 9, x_119); lean_ctor_set_uint8(x_135, sizeof(void*)*10, x_132); lean_ctor_set_uint8(x_135, sizeof(void*)*10 + 1, x_133); lean_ctor_set_uint8(x_135, sizeof(void*)*10 + 2, x_134); -x_136 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_2, x_135, x_122); +x_136 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_2, x_135, x_122); if (lean_obj_tag(x_136) == 0) { lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; 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; @@ -11375,9 +11375,9 @@ lean_ctor_set(x_147, 3, x_24); x_148 = lean_array_push(x_28, x_147); x_149 = lean_array_push(x_148, x_30); x_150 = lean_array_push(x_149, x_30); -x_151 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_151 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_152 = lean_array_push(x_150, x_151); -x_153 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; +x_153 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; x_154 = lean_array_push(x_153, x_13); x_155 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_156 = lean_alloc_ctor(1, 2, 0); @@ -11388,9 +11388,9 @@ x_158 = l_Lean_Parser_Term_letIdDecl___closed__2; x_159 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_159, 0, x_158); lean_ctor_set(x_159, 1, x_157); -x_160 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_160 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_161 = lean_array_push(x_160, x_159); -x_162 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_162 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_163 = lean_array_push(x_161, x_162); x_164 = lean_array_push(x_163, x_137); x_165 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -11455,9 +11455,9 @@ x_178 = l_Lean_nullKind___closed__2; x_179 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_179, 0, x_178); lean_ctor_set(x_179, 1, x_174); -x_180 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; +x_180 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; x_181 = lean_array_push(x_180, x_179); -x_182 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; +x_182 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; x_183 = lean_array_push(x_181, x_182); x_184 = lean_array_push(x_183, x_13); x_185 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -11476,11 +11476,11 @@ lean_inc(x_191); x_192 = lean_ctor_get(x_190, 1); lean_inc(x_192); lean_dec(x_190); -x_193 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; +x_193 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; x_194 = l_Lean_addMacroScope(x_191, x_193, x_188); x_195 = lean_box(0); x_196 = l_Lean_SourceInfo_inhabited___closed__1; -x_197 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; +x_197 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; x_198 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_198, 0, x_196); lean_ctor_set(x_198, 1, x_197); @@ -11488,7 +11488,7 @@ lean_ctor_set(x_198, 2, x_194); lean_ctor_set(x_198, 3, x_195); x_199 = l_Array_empty___closed__1; x_200 = lean_array_push(x_199, x_198); -x_201 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_201 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_202 = lean_array_push(x_200, x_201); x_203 = l_Lean_mkTermIdFromIdent___closed__2; x_204 = lean_alloc_ctor(1, 2, 0); @@ -11540,7 +11540,7 @@ lean_ctor_set(x_221, 9, x_206); lean_ctor_set_uint8(x_221, sizeof(void*)*10, x_218); lean_ctor_set_uint8(x_221, sizeof(void*)*10 + 1, x_219); lean_ctor_set_uint8(x_221, sizeof(void*)*10 + 2, x_220); -x_222 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_15, x_221, x_192); +x_222 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_15, x_221, x_192); if (lean_obj_tag(x_222) == 0) { lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; uint8_t x_229; @@ -11571,16 +11571,16 @@ lean_ctor_set(x_232, 3, x_195); x_233 = lean_array_push(x_199, x_232); x_234 = lean_array_push(x_233, x_201); x_235 = lean_array_push(x_234, x_201); -x_236 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_236 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_237 = lean_array_push(x_235, x_236); x_238 = lean_array_push(x_237, x_186); x_239 = l_Lean_Parser_Term_letIdDecl___closed__2; x_240 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_240, 0, x_239); lean_ctor_set(x_240, 1, x_238); -x_241 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_241 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_242 = lean_array_push(x_241, x_240); -x_243 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_243 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_244 = lean_array_push(x_242, x_243); x_245 = lean_array_push(x_244, x_223); x_246 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -11607,16 +11607,16 @@ lean_ctor_set(x_251, 3, x_195); x_252 = lean_array_push(x_199, x_251); x_253 = lean_array_push(x_252, x_201); x_254 = lean_array_push(x_253, x_201); -x_255 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_255 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_256 = lean_array_push(x_254, x_255); x_257 = lean_array_push(x_256, x_186); x_258 = l_Lean_Parser_Term_letIdDecl___closed__2; x_259 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_259, 0, x_258); lean_ctor_set(x_259, 1, x_257); -x_260 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_260 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_261 = lean_array_push(x_260, x_259); -x_262 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_262 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_263 = lean_array_push(x_261, x_262); x_264 = lean_array_push(x_263, x_223); x_265 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -11714,7 +11714,7 @@ lean_ctor_set(x_293, 9, x_277); lean_ctor_set_uint8(x_293, sizeof(void*)*10, x_290); lean_ctor_set_uint8(x_293, sizeof(void*)*10 + 1, x_291); lean_ctor_set_uint8(x_293, sizeof(void*)*10 + 2, x_292); -x_294 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_15, x_293, x_280); +x_294 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_15, x_293, x_280); if (lean_obj_tag(x_294) == 0) { lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; @@ -11752,16 +11752,16 @@ lean_ctor_set(x_305, 3, x_195); x_306 = lean_array_push(x_199, x_305); x_307 = lean_array_push(x_306, x_201); x_308 = lean_array_push(x_307, x_201); -x_309 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_309 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_310 = lean_array_push(x_308, x_309); x_311 = lean_array_push(x_310, x_186); x_312 = l_Lean_Parser_Term_letIdDecl___closed__2; x_313 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_313, 0, x_312); lean_ctor_set(x_313, 1, x_311); -x_314 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_314 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_315 = lean_array_push(x_314, x_313); -x_316 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_316 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_317 = lean_array_push(x_315, x_316); x_318 = lean_array_push(x_317, x_295); x_319 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -11813,9 +11813,9 @@ x_326 = l_Lean_nullKind___closed__2; x_327 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_327, 0, x_326); lean_ctor_set(x_327, 1, x_174); -x_328 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; +x_328 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; x_329 = lean_array_push(x_328, x_327); -x_330 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; +x_330 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; x_331 = lean_array_push(x_329, x_330); x_332 = lean_array_push(x_331, x_13); x_333 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -11834,11 +11834,11 @@ lean_inc(x_339); x_340 = lean_ctor_get(x_338, 1); lean_inc(x_340); lean_dec(x_338); -x_341 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; +x_341 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; x_342 = l_Lean_addMacroScope(x_339, x_341, x_336); x_343 = lean_box(0); x_344 = l_Lean_SourceInfo_inhabited___closed__1; -x_345 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; +x_345 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; x_346 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_346, 0, x_344); lean_ctor_set(x_346, 1, x_345); @@ -11846,7 +11846,7 @@ lean_ctor_set(x_346, 2, x_342); lean_ctor_set(x_346, 3, x_343); x_347 = l_Array_empty___closed__1; x_348 = lean_array_push(x_347, x_346); -x_349 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_349 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_350 = lean_array_push(x_348, x_349); x_351 = l_Lean_mkTermIdFromIdent___closed__2; x_352 = lean_alloc_ctor(1, 2, 0); @@ -11928,7 +11928,7 @@ lean_ctor_set(x_376, 9, x_359); lean_ctor_set_uint8(x_376, sizeof(void*)*10, x_373); lean_ctor_set_uint8(x_376, sizeof(void*)*10 + 1, x_374); lean_ctor_set_uint8(x_376, sizeof(void*)*10 + 2, x_375); -x_377 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_353, x_376, x_363); +x_377 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_11, x_353, x_376, x_363); if (lean_obj_tag(x_377) == 0) { lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; @@ -11966,16 +11966,16 @@ lean_ctor_set(x_388, 3, x_343); x_389 = lean_array_push(x_347, x_388); x_390 = lean_array_push(x_389, x_349); x_391 = lean_array_push(x_390, x_349); -x_392 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_392 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_393 = lean_array_push(x_391, x_392); x_394 = lean_array_push(x_393, x_334); x_395 = l_Lean_Parser_Term_letIdDecl___closed__2; x_396 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_396, 0, x_395); lean_ctor_set(x_396, 1, x_394); -x_397 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_397 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_398 = lean_array_push(x_397, x_396); -x_399 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_399 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_400 = lean_array_push(x_398, x_399); x_401 = lean_array_push(x_400, x_378); x_402 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12030,7 +12030,7 @@ lean_inc(x_411); lean_inc(x_410); lean_dec(x_9); lean_inc(x_410); -x_412 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_410); +x_412 = l_List_map___main___at___private_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_410); x_413 = l_List_join___main___rarg(x_412); if (lean_obj_tag(x_413) == 0) { @@ -12047,11 +12047,11 @@ lean_inc(x_418); x_419 = lean_ctor_get(x_417, 1); lean_inc(x_419); lean_dec(x_417); -x_420 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; +x_420 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; x_421 = l_Lean_addMacroScope(x_418, x_420, x_415); x_422 = lean_box(0); x_423 = l_Lean_SourceInfo_inhabited___closed__1; -x_424 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; +x_424 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; x_425 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_425, 0, x_423); lean_ctor_set(x_425, 1, x_424); @@ -12059,14 +12059,14 @@ lean_ctor_set(x_425, 2, x_421); lean_ctor_set(x_425, 3, x_422); x_426 = l_Array_empty___closed__1; x_427 = lean_array_push(x_426, x_425); -x_428 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_428 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_429 = lean_array_push(x_427, x_428); x_430 = l_Lean_mkTermIdFromIdent___closed__2; x_431 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_431, 0, x_430); lean_ctor_set(x_431, 1, x_429); x_432 = lean_array_push(x_426, x_431); -x_433 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__9; +x_433 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__9; x_434 = lean_array_push(x_432, x_433); x_435 = l_Lean_mkAppStx___closed__8; x_436 = lean_alloc_ctor(1, 2, 0); @@ -12149,7 +12149,7 @@ lean_ctor_set(x_460, 9, x_443); lean_ctor_set_uint8(x_460, sizeof(void*)*10, x_457); lean_ctor_set_uint8(x_460, sizeof(void*)*10 + 1, x_458); lean_ctor_set_uint8(x_460, sizeof(void*)*10 + 2, x_459); -x_461 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_409, x_2, x_460, x_447); +x_461 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_409, x_2, x_460, x_447); if (lean_obj_tag(x_461) == 0) { lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; @@ -12187,9 +12187,9 @@ lean_ctor_set(x_472, 3, x_422); x_473 = lean_array_push(x_426, x_472); x_474 = lean_array_push(x_473, x_428); x_475 = lean_array_push(x_474, x_428); -x_476 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_476 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_477 = lean_array_push(x_475, x_476); -x_478 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; +x_478 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; x_479 = lean_array_push(x_478, x_411); x_480 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_481 = lean_alloc_ctor(1, 2, 0); @@ -12200,9 +12200,9 @@ x_483 = l_Lean_Parser_Term_letIdDecl___closed__2; x_484 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_484, 0, x_483); lean_ctor_set(x_484, 1, x_482); -x_485 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_485 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_486 = lean_array_push(x_485, x_484); -x_487 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_487 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_488 = lean_array_push(x_486, x_487); x_489 = lean_array_push(x_488, x_462); x_490 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12266,9 +12266,9 @@ x_501 = l_Lean_nullKind___closed__2; x_502 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_502, 0, x_501); lean_ctor_set(x_502, 1, x_499); -x_503 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; +x_503 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; x_504 = lean_array_push(x_503, x_502); -x_505 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; +x_505 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; x_506 = lean_array_push(x_504, x_505); x_507 = lean_array_push(x_506, x_411); x_508 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -12287,11 +12287,11 @@ lean_inc(x_514); x_515 = lean_ctor_get(x_513, 1); lean_inc(x_515); lean_dec(x_513); -x_516 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; +x_516 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; x_517 = l_Lean_addMacroScope(x_514, x_516, x_511); x_518 = lean_box(0); x_519 = l_Lean_SourceInfo_inhabited___closed__1; -x_520 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; +x_520 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; x_521 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_521, 0, x_519); lean_ctor_set(x_521, 1, x_520); @@ -12299,7 +12299,7 @@ lean_ctor_set(x_521, 2, x_517); lean_ctor_set(x_521, 3, x_518); x_522 = l_Array_empty___closed__1; x_523 = lean_array_push(x_522, x_521); -x_524 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_524 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_525 = lean_array_push(x_523, x_524); x_526 = l_Lean_mkTermIdFromIdent___closed__2; x_527 = lean_alloc_ctor(1, 2, 0); @@ -12387,7 +12387,7 @@ lean_ctor_set(x_552, 9, x_535); lean_ctor_set_uint8(x_552, sizeof(void*)*10, x_549); lean_ctor_set_uint8(x_552, sizeof(void*)*10 + 1, x_550); lean_ctor_set_uint8(x_552, sizeof(void*)*10 + 2, x_551); -x_553 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_409, x_529, x_552, x_539); +x_553 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_409, x_529, x_552, x_539); if (lean_obj_tag(x_553) == 0) { lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; @@ -12425,16 +12425,16 @@ lean_ctor_set(x_564, 3, x_518); x_565 = lean_array_push(x_522, x_564); x_566 = lean_array_push(x_565, x_524); x_567 = lean_array_push(x_566, x_524); -x_568 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_568 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_569 = lean_array_push(x_567, x_568); x_570 = lean_array_push(x_569, x_509); x_571 = l_Lean_Parser_Term_letIdDecl___closed__2; x_572 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_572, 0, x_571); lean_ctor_set(x_572, 1, x_570); -x_573 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_573 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_574 = lean_array_push(x_573, x_572); -x_575 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_575 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_576 = lean_array_push(x_574, x_575); x_577 = lean_array_push(x_576, x_554); x_578 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12500,7 +12500,7 @@ if (lean_is_exclusive(x_585)) { x_589 = lean_box(0); } lean_inc(x_587); -x_590 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_587); +x_590 = l_List_map___main___at___private_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_587); x_591 = l_List_join___main___rarg(x_590); if (lean_obj_tag(x_591) == 0) { @@ -12517,11 +12517,11 @@ lean_inc(x_596); x_597 = lean_ctor_get(x_595, 1); lean_inc(x_597); lean_dec(x_595); -x_598 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; +x_598 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; x_599 = l_Lean_addMacroScope(x_596, x_598, x_593); x_600 = lean_box(0); x_601 = l_Lean_SourceInfo_inhabited___closed__1; -x_602 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; +x_602 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; x_603 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_603, 0, x_601); lean_ctor_set(x_603, 1, x_602); @@ -12529,14 +12529,14 @@ lean_ctor_set(x_603, 2, x_599); lean_ctor_set(x_603, 3, x_600); x_604 = l_Array_empty___closed__1; x_605 = lean_array_push(x_604, x_603); -x_606 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_606 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_607 = lean_array_push(x_605, x_606); x_608 = l_Lean_mkTermIdFromIdent___closed__2; x_609 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_609, 0, x_608); lean_ctor_set(x_609, 1, x_607); x_610 = lean_array_push(x_604, x_609); -x_611 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__9; +x_611 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__9; x_612 = lean_array_push(x_610, x_611); x_613 = l_Lean_mkAppStx___closed__8; x_614 = lean_alloc_ctor(1, 2, 0); @@ -12624,7 +12624,7 @@ lean_ctor_set(x_639, 9, x_622); lean_ctor_set_uint8(x_639, sizeof(void*)*10, x_636); lean_ctor_set_uint8(x_639, sizeof(void*)*10 + 1, x_637); lean_ctor_set_uint8(x_639, sizeof(void*)*10 + 2, x_638); -x_640 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_586, x_616, x_639, x_626); +x_640 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_586, x_616, x_639, x_626); if (lean_obj_tag(x_640) == 0) { lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; @@ -12662,9 +12662,9 @@ lean_ctor_set(x_651, 3, x_600); x_652 = lean_array_push(x_604, x_651); x_653 = lean_array_push(x_652, x_606); x_654 = lean_array_push(x_653, x_606); -x_655 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_655 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_656 = lean_array_push(x_654, x_655); -x_657 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; +x_657 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13; x_658 = lean_array_push(x_657, x_588); x_659 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_660 = lean_alloc_ctor(1, 2, 0); @@ -12675,9 +12675,9 @@ x_662 = l_Lean_Parser_Term_letIdDecl___closed__2; x_663 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_663, 0, x_662); lean_ctor_set(x_663, 1, x_661); -x_664 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_664 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_665 = lean_array_push(x_664, x_663); -x_666 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_666 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_667 = lean_array_push(x_665, x_666); x_668 = lean_array_push(x_667, x_641); x_669 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12740,9 +12740,9 @@ x_680 = l_Lean_nullKind___closed__2; x_681 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_681, 0, x_680); lean_ctor_set(x_681, 1, x_678); -x_682 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; +x_682 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__16; x_683 = lean_array_push(x_682, x_681); -x_684 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; +x_684 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__15; x_685 = lean_array_push(x_683, x_684); x_686 = lean_array_push(x_685, x_588); x_687 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -12761,11 +12761,11 @@ lean_inc(x_693); x_694 = lean_ctor_get(x_692, 1); lean_inc(x_694); lean_dec(x_692); -x_695 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; +x_695 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4; x_696 = l_Lean_addMacroScope(x_693, x_695, x_690); x_697 = lean_box(0); x_698 = l_Lean_SourceInfo_inhabited___closed__1; -x_699 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; +x_699 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3; x_700 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_700, 0, x_698); lean_ctor_set(x_700, 1, x_699); @@ -12773,7 +12773,7 @@ lean_ctor_set(x_700, 2, x_696); lean_ctor_set(x_700, 3, x_697); x_701 = l_Array_empty___closed__1; x_702 = lean_array_push(x_701, x_700); -x_703 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_703 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_704 = lean_array_push(x_702, x_703); x_705 = l_Lean_mkTermIdFromIdent___closed__2; x_706 = lean_alloc_ctor(1, 2, 0); @@ -12865,7 +12865,7 @@ lean_ctor_set(x_731, 9, x_714); lean_ctor_set_uint8(x_731, sizeof(void*)*10, x_728); lean_ctor_set_uint8(x_731, sizeof(void*)*10 + 1, x_729); lean_ctor_set_uint8(x_731, sizeof(void*)*10 + 2, x_730); -x_732 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_586, x_708, x_731, x_718); +x_732 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_586, x_708, x_731, x_718); if (lean_obj_tag(x_732) == 0) { lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; @@ -12903,16 +12903,16 @@ lean_ctor_set(x_743, 3, x_697); x_744 = lean_array_push(x_701, x_743); x_745 = lean_array_push(x_744, x_703); x_746 = lean_array_push(x_745, x_703); -x_747 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_747 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_748 = lean_array_push(x_746, x_747); x_749 = lean_array_push(x_748, x_688); x_750 = l_Lean_Parser_Term_letIdDecl___closed__2; x_751 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_751, 0, x_750); lean_ctor_set(x_751, 1, x_749); -x_752 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_752 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_753 = lean_array_push(x_752, x_751); -x_754 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_754 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_755 = lean_array_push(x_753, x_754); x_756 = lean_array_push(x_755, x_733); x_757 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12959,11 +12959,11 @@ return x_763; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Quotation_8__letBindRhss___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } @@ -13184,7 +13184,7 @@ else lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; x_37 = lean_unsigned_to_nat(1u); x_38 = l_Lean_Syntax_getArg(x_14, x_37); -x_39 = l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_38); +x_39 = l___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_38); x_40 = l_Lean_Syntax_setArg(x_14, x_37, x_39); x_41 = l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__1; lean_inc(x_40); @@ -13286,7 +13286,7 @@ lean_ctor_set(x_20, 0, x_5); lean_ctor_set(x_20, 1, x_19); x_21 = l_Array_toList___rarg(x_17); lean_dec(x_17); -x_22 = l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_20, x_21, x_2, x_18); +x_22 = l___private_Lean_Elab_Quotation_6__compileStxMatch___main(x_1, x_20, x_21, x_2, x_18); lean_dec(x_1); return x_22; } @@ -13371,7 +13371,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_9__exprPlaceholder___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -13380,15 +13380,15 @@ x_2 = l_Lean_mkMVar(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder() { +lean_object* _init_l___private_Lean_Elab_Quotation_9__exprPlaceholder() { _start: { lean_object* x_1; -x_1 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder___closed__1; +x_1 = l___private_Lean_Elab_Quotation_9__exprPlaceholder___closed__1; return x_1; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___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_6; @@ -13414,7 +13414,7 @@ x_10 = lean_unsigned_to_nat(0u); x_11 = lean_array_fset(x_2, x_1, x_10); x_12 = x_9; lean_inc(x_3); -x_13 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_12, x_3, x_4); +x_13 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_12, x_3, x_4); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; @@ -13461,7 +13461,7 @@ return x_24; } } } -lean_object* _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1() { +lean_object* _init_l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1() { _start: { lean_object* x_1; @@ -13469,7 +13469,7 @@ x_1 = lean_mk_string("fieldNotation"); return x_1; } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13485,7 +13485,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13499,7 +13499,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13515,7 +13515,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13529,7 +13529,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13545,7 +13545,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13559,7 +13559,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13575,7 +13575,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13589,7 +13589,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13605,7 +13605,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13619,7 +13619,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13635,7 +13635,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13649,7 +13649,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13665,7 +13665,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13679,7 +13679,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13695,7 +13695,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13709,7 +13709,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13725,7 +13725,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13739,7 +13739,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13755,7 +13755,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13769,7 +13769,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13785,7 +13785,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13799,7 +13799,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13815,7 +13815,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13829,7 +13829,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -13845,7 +13845,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; +x_6 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -13859,7 +13859,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -13868,13 +13868,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Expr_eq_x3f___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1; +x_3 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -13882,7 +13882,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___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* l___private_Lean_Elab_Quotation_10__toPreterm___main___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) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; @@ -13912,7 +13912,7 @@ x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); x_24 = l_Lean_SourceInfo_inhabited___closed__1; -x_25 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2; +x_25 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); @@ -13946,7 +13946,7 @@ lean_ctor_set(x_40, 1, x_6); return x_40; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -13954,22 +13954,22 @@ x_1 = lean_mk_string("HasBeq.beq"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1; +x_1 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1; +x_1 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2; +x_3 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -13977,7 +13977,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4() { _start: { lean_object* x_1; @@ -13985,7 +13985,7 @@ x_1 = lean_mk_string("HasBeq"); return x_1; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; @@ -14001,7 +14001,7 @@ lean_inc(x_12); x_14 = lean_name_mk_string(x_12, x_13); x_15 = l_Lean_mkTermIdFromIdent___closed__1; x_16 = lean_name_mk_string(x_12, x_15); -x_17 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4; +x_17 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4; lean_inc(x_1); x_18 = lean_name_mk_string(x_1, x_17); x_19 = l_Lean_Parser_Term_beq___elambda__1___closed__1; @@ -14017,7 +14017,7 @@ x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); x_26 = l_Lean_SourceInfo_inhabited___closed__1; -x_27 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3; +x_27 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3; x_28 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -14051,7 +14051,7 @@ lean_ctor_set(x_42, 1, x_6); return x_42; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -14060,13 +14060,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_and___elambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1; +x_3 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14074,7 +14074,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_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; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; @@ -14104,7 +14104,7 @@ x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); x_24 = l_Lean_SourceInfo_inhabited___closed__1; -x_25 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2; +x_25 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); @@ -14138,7 +14138,7 @@ lean_ctor_set(x_40, 1, x_6); return x_40; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1() { _start: { lean_object* x_1; @@ -14146,22 +14146,22 @@ x_1 = lean_mk_string("ite"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; +x_1 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; +x_1 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2; +x_3 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14169,7 +14169,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _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; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; @@ -14185,7 +14185,7 @@ lean_inc(x_13); x_15 = lean_name_mk_string(x_13, x_14); x_16 = l_Lean_mkTermIdFromIdent___closed__1; x_17 = lean_name_mk_string(x_13, x_16); -x_18 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; +x_18 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1; lean_inc(x_1); x_19 = lean_name_mk_string(x_1, x_18); x_20 = l_Lean_Unhygienic_MonadQuotation___closed__2; @@ -14199,7 +14199,7 @@ x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); x_25 = l_Lean_SourceInfo_inhabited___closed__1; -x_26 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3; +x_26 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3; x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -14234,7 +14234,7 @@ lean_ctor_set(x_42, 1, x_7); return x_42; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__1() { _start: { lean_object* x_1; @@ -14242,27 +14242,27 @@ x_1 = lean_mk_string("stxQuot: unimplemented kind "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__1; +x_1 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__2; +x_1 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__4() { _start: { lean_object* x_1; @@ -14270,7 +14270,7 @@ x_1 = lean_mk_string("expr"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -14279,7 +14279,7 @@ x_2 = l_Lean_mkNatLit(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -14288,7 +14288,7 @@ x_2 = l_Lean_mkStrLit(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main(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; @@ -14307,7 +14307,7 @@ lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_dec(x_4); x_16 = lean_ctor_get(x_5, 1); lean_inc(x_16); -x_17 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__4; +x_17 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__4; x_18 = lean_string_dec_eq(x_16, x_17); lean_dec(x_16); if (x_18 == 0) @@ -14415,7 +14415,7 @@ x_48 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_48, 0, x_47); x_49 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_49, 0, x_48); -x_50 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_50 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_51 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); @@ -14441,7 +14441,7 @@ x_57 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_57, 0, x_56); x_58 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_58, 0, x_57); -x_59 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_59 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_60 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); @@ -14518,7 +14518,7 @@ x_86 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_86, 0, x_85); x_87 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_87, 0, x_86); -x_88 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_88 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_89 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); @@ -14544,7 +14544,7 @@ lean_dec(x_92); if (lean_obj_tag(x_94) == 0) { lean_object* x_95; lean_object* x_96; -x_95 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5; +x_95 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5; x_96 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_3); @@ -14581,7 +14581,7 @@ lean_dec(x_101); if (lean_obj_tag(x_102) == 0) { lean_object* x_103; lean_object* x_104; -x_103 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6; +x_103 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6; x_104 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_3); @@ -14616,12 +14616,12 @@ x_110 = lean_array_get(x_108, x_4, x_109); x_111 = lean_unsigned_to_nat(2u); x_112 = lean_array_get(x_108, x_4, x_111); lean_dec(x_4); -x_113 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); +x_113 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_113, 0, x_26); lean_closure_set(x_113, 1, x_110); lean_closure_set(x_113, 2, x_112); x_114 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_115 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_115 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_115, 0, x_114); lean_closure_set(x_115, 1, x_113); x_116 = l_Lean_Unhygienic_run___rarg(x_115); @@ -14644,12 +14644,12 @@ x_120 = lean_array_get(x_118, x_4, x_119); x_121 = lean_unsigned_to_nat(2u); x_122 = lean_array_get(x_118, x_4, x_121); lean_dec(x_4); -x_123 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); +x_123 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_123, 0, x_26); lean_closure_set(x_123, 1, x_120); lean_closure_set(x_123, 2, x_122); x_124 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_125 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_125 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_125, 0, x_124); lean_closure_set(x_125, 1, x_123); x_126 = l_Lean_Unhygienic_run___rarg(x_125); @@ -14672,12 +14672,12 @@ x_130 = lean_array_get(x_128, x_4, x_129); x_131 = lean_unsigned_to_nat(2u); x_132 = lean_array_get(x_128, x_4, x_131); lean_dec(x_4); -x_133 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); +x_133 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); lean_closure_set(x_133, 0, x_26); lean_closure_set(x_133, 1, x_130); lean_closure_set(x_133, 2, x_132); x_134 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_135 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_135 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_135, 0, x_134); lean_closure_set(x_135, 1, x_133); x_136 = l_Lean_Unhygienic_run___rarg(x_135); @@ -14717,7 +14717,7 @@ else lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_dec(x_141); lean_dec(x_2); -x_147 = l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; +x_147 = l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; x_148 = lean_name_mk_string(x_26, x_147); x_149 = l_Lean_unitToExpr___lambda__1___closed__3; x_150 = lean_name_mk_string(x_148, x_149); @@ -14747,13 +14747,13 @@ x_158 = lean_array_get(x_154, x_4, x_157); x_159 = lean_unsigned_to_nat(6u); x_160 = lean_array_get(x_154, x_4, x_159); lean_dec(x_4); -x_161 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); +x_161 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); lean_closure_set(x_161, 0, x_26); lean_closure_set(x_161, 1, x_156); lean_closure_set(x_161, 2, x_158); lean_closure_set(x_161, 3, x_160); x_162 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_163 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_163 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_163, 0, x_162); lean_closure_set(x_163, 1, x_161); x_164 = l_Lean_Unhygienic_run___rarg(x_163); @@ -14774,7 +14774,7 @@ x_166 = l_Lean_Syntax_inhabited; x_167 = lean_unsigned_to_nat(0u); x_168 = lean_array_get(x_166, x_4, x_167); lean_inc(x_2); -x_169 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_168, x_2, x_3); +x_169 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_168, x_2, x_3); if (lean_obj_tag(x_169) == 0) { lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; @@ -14789,7 +14789,7 @@ lean_dec(x_4); x_174 = l_Lean_Syntax_getArgs(x_173); lean_dec(x_173); x_175 = x_174; -x_176 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); +x_176 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); lean_closure_set(x_176, 0, x_167); lean_closure_set(x_176, 1, x_175); x_177 = x_176; @@ -14914,7 +14914,7 @@ block_290: { lean_object* x_205; lean_inc(x_2); -x_205 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_201, x_2, x_3); +x_205 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_201, x_2, x_3); if (lean_obj_tag(x_205) == 0) { lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; @@ -14929,7 +14929,7 @@ lean_inc(x_209); x_210 = lean_ctor_get(x_208, 1); lean_inc(x_210); lean_dec(x_208); -x_211 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_211 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; lean_inc_n(x_204, 2); x_212 = lean_local_ctx_mk_let_decl(x_209, x_204, x_204, x_211, x_206); x_213 = !lean_is_exclusive(x_2); @@ -14945,7 +14945,7 @@ x_216 = lean_ctor_get(x_214, 1); lean_dec(x_216); lean_inc(x_212); lean_ctor_set(x_214, 1, x_212); -x_217 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_203, x_2, x_210); +x_217 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_203, x_2, x_210); if (lean_obj_tag(x_217) == 0) { uint8_t x_218; @@ -15028,7 +15028,7 @@ lean_ctor_set(x_239, 2, x_236); lean_ctor_set(x_239, 3, x_237); lean_ctor_set(x_239, 4, x_238); lean_ctor_set(x_2, 0, x_239); -x_240 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_203, x_2, x_210); +x_240 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_203, x_2, x_210); if (lean_obj_tag(x_240) == 0) { lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; @@ -15158,7 +15158,7 @@ lean_ctor_set(x_272, 9, x_262); lean_ctor_set_uint8(x_272, sizeof(void*)*10, x_263); lean_ctor_set_uint8(x_272, sizeof(void*)*10 + 1, x_264); lean_ctor_set_uint8(x_272, sizeof(void*)*10 + 2, x_265); -x_273 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_203, x_272, x_210); +x_273 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_203, x_272, x_210); if (lean_obj_tag(x_273) == 0) { 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; @@ -15302,7 +15302,7 @@ lean_dec(x_314); x_316 = l_Lean_Syntax_getArg(x_315, x_294); lean_dec(x_315); lean_inc(x_2); -x_317 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_316, x_2, x_3); +x_317 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_316, x_2, x_3); if (lean_obj_tag(x_317) == 0) { lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; @@ -15359,7 +15359,7 @@ x_345 = lean_ctor_get(x_343, 1); lean_dec(x_345); lean_inc(x_324); lean_ctor_set(x_343, 1, x_324); -x_346 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_341, x_2, x_329); +x_346 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_341, x_2, x_329); if (lean_obj_tag(x_346) == 0) { uint8_t x_347; @@ -15442,7 +15442,7 @@ lean_ctor_set(x_368, 2, x_365); lean_ctor_set(x_368, 3, x_366); lean_ctor_set(x_368, 4, x_367); lean_ctor_set(x_2, 0, x_368); -x_369 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_341, x_2, x_329); +x_369 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_341, x_2, x_329); if (lean_obj_tag(x_369) == 0) { 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; @@ -15572,7 +15572,7 @@ lean_ctor_set(x_401, 9, x_391); lean_ctor_set_uint8(x_401, sizeof(void*)*10, x_392); lean_ctor_set_uint8(x_401, sizeof(void*)*10 + 1, x_393); lean_ctor_set_uint8(x_401, sizeof(void*)*10 + 2, x_394); -x_402 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_341, x_401, x_329); +x_402 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_341, x_401, x_329); if (lean_obj_tag(x_402) == 0) { lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; @@ -15671,7 +15671,7 @@ lean_inc(x_422); x_423 = lean_ctor_get(x_421, 1); lean_inc(x_423); lean_dec(x_421); -x_424 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_424 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_425 = 0; lean_inc_n(x_420, 2); x_426 = lean_local_ctx_mk_local_decl(x_422, x_420, x_420, x_424, x_425); @@ -15714,7 +15714,7 @@ x_447 = lean_ctor_get(x_445, 1); lean_dec(x_447); lean_inc(x_426); lean_ctor_set(x_445, 1, x_426); -x_448 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_443, x_2, x_431); +x_448 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_443, x_2, x_431); if (lean_obj_tag(x_448) == 0) { uint8_t x_449; @@ -15797,7 +15797,7 @@ lean_ctor_set(x_470, 2, x_467); lean_ctor_set(x_470, 3, x_468); lean_ctor_set(x_470, 4, x_469); lean_ctor_set(x_2, 0, x_470); -x_471 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_443, x_2, x_431); +x_471 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_443, x_2, x_431); if (lean_obj_tag(x_471) == 0) { lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; @@ -15927,7 +15927,7 @@ lean_ctor_set(x_503, 9, x_493); lean_ctor_set_uint8(x_503, sizeof(void*)*10, x_494); lean_ctor_set_uint8(x_503, sizeof(void*)*10 + 1, x_495); lean_ctor_set_uint8(x_503, sizeof(void*)*10 + 2, x_496); -x_504 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_443, x_503, x_431); +x_504 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_443, x_503, x_431); if (lean_obj_tag(x_504) == 0) { lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; @@ -15998,7 +15998,7 @@ lean_inc(x_519); x_520 = lean_ctor_get(x_518, 1); lean_inc(x_520); lean_dec(x_518); -x_521 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_521 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_522 = 0; lean_inc_n(x_517, 2); x_523 = lean_local_ctx_mk_local_decl(x_519, x_517, x_517, x_521, x_522); @@ -16041,7 +16041,7 @@ x_544 = lean_ctor_get(x_542, 1); lean_dec(x_544); lean_inc(x_523); lean_ctor_set(x_542, 1, x_523); -x_545 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_540, x_2, x_528); +x_545 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_540, x_2, x_528); if (lean_obj_tag(x_545) == 0) { uint8_t x_546; @@ -16124,7 +16124,7 @@ lean_ctor_set(x_567, 2, x_564); lean_ctor_set(x_567, 3, x_565); lean_ctor_set(x_567, 4, x_566); lean_ctor_set(x_2, 0, x_567); -x_568 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_540, x_2, x_528); +x_568 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_540, x_2, x_528); if (lean_obj_tag(x_568) == 0) { 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; @@ -16254,7 +16254,7 @@ lean_ctor_set(x_600, 9, x_590); lean_ctor_set_uint8(x_600, sizeof(void*)*10, x_591); lean_ctor_set_uint8(x_600, sizeof(void*)*10 + 1, x_592); lean_ctor_set_uint8(x_600, sizeof(void*)*10 + 2, x_593); -x_601 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_540, x_600, x_528); +x_601 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_540, x_600, x_528); if (lean_obj_tag(x_601) == 0) { lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; @@ -16357,7 +16357,7 @@ lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; x_623 = lean_ctor_get(x_621, 1); lean_inc(x_623); lean_dec(x_621); -x_624 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_624 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_625 = l_unreachable_x21___rarg(x_624); x_626 = lean_apply_2(x_625, x_2, x_623); return x_626; @@ -16384,7 +16384,7 @@ lean_dec(x_630); x_631 = lean_ctor_get(x_627, 1); lean_inc(x_631); lean_dec(x_627); -x_632 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_628, x_631); +x_632 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_628, x_631); lean_ctor_set(x_621, 0, x_632); return x_621; } @@ -16397,7 +16397,7 @@ lean_dec(x_621); x_634 = lean_ctor_get(x_627, 1); lean_inc(x_634); lean_dec(x_627); -x_635 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_628, x_634); +x_635 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_628, x_634); x_636 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_636, 0, x_635); lean_ctor_set(x_636, 1, x_633); @@ -16416,7 +16416,7 @@ lean_dec(x_638); x_639 = lean_ctor_get(x_627, 1); lean_inc(x_639); lean_dec(x_627); -x_640 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_628, x_639); +x_640 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_628, x_639); lean_ctor_set(x_621, 0, x_640); return x_621; } @@ -16429,7 +16429,7 @@ lean_dec(x_621); x_642 = lean_ctor_get(x_627, 1); lean_inc(x_642); lean_dec(x_627); -x_643 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_628, x_642); +x_643 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_628, x_642); x_644 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_644, 0, x_643); lean_ctor_set(x_644, 1, x_641); @@ -16448,7 +16448,7 @@ lean_dec(x_646); x_647 = lean_ctor_get(x_627, 1); lean_inc(x_647); lean_dec(x_627); -x_648 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_628, x_647); +x_648 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_628, x_647); lean_ctor_set(x_621, 0, x_648); return x_621; } @@ -16461,7 +16461,7 @@ lean_dec(x_621); x_650 = lean_ctor_get(x_627, 1); lean_inc(x_650); lean_dec(x_627); -x_651 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_628, x_650); +x_651 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_628, x_650); x_652 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_652, 0, x_651); lean_ctor_set(x_652, 1, x_649); @@ -16480,7 +16480,7 @@ lean_dec(x_654); x_655 = lean_ctor_get(x_627, 1); lean_inc(x_655); lean_dec(x_627); -x_656 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_628, x_655); +x_656 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_628, x_655); lean_ctor_set(x_621, 0, x_656); return x_621; } @@ -16493,7 +16493,7 @@ lean_dec(x_621); x_658 = lean_ctor_get(x_627, 1); lean_inc(x_658); lean_dec(x_627); -x_659 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_628, x_658); +x_659 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_628, x_658); x_660 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_660, 0, x_659); lean_ctor_set(x_660, 1, x_657); @@ -16516,7 +16516,7 @@ x_664 = lean_ctor_get(x_628, 0); lean_inc(x_664); lean_dec(x_628); x_665 = l_Lean_mkConst(x_664, x_620); -x_666 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_665, x_663); +x_666 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_665, x_663); lean_ctor_set(x_621, 0, x_666); return x_621; } @@ -16533,7 +16533,7 @@ x_669 = lean_ctor_get(x_628, 0); lean_inc(x_669); lean_dec(x_628); x_670 = l_Lean_mkConst(x_669, x_620); -x_671 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_670, x_668); +x_671 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_670, x_668); x_672 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_672, 0, x_671); lean_ctor_set(x_672, 1, x_667); @@ -16552,7 +16552,7 @@ lean_dec(x_674); x_675 = lean_ctor_get(x_627, 1); lean_inc(x_675); lean_dec(x_627); -x_676 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_628, x_675); +x_676 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_628, x_675); lean_ctor_set(x_621, 0, x_676); return x_621; } @@ -16565,7 +16565,7 @@ lean_dec(x_621); x_678 = lean_ctor_get(x_627, 1); lean_inc(x_678); lean_dec(x_627); -x_679 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_628, x_678); +x_679 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_628, x_678); x_680 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_680, 0, x_679); lean_ctor_set(x_680, 1, x_677); @@ -16584,7 +16584,7 @@ lean_dec(x_682); x_683 = lean_ctor_get(x_627, 1); lean_inc(x_683); lean_dec(x_627); -x_684 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_628, x_683); +x_684 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_628, x_683); lean_ctor_set(x_621, 0, x_684); return x_621; } @@ -16597,7 +16597,7 @@ lean_dec(x_621); x_686 = lean_ctor_get(x_627, 1); lean_inc(x_686); lean_dec(x_627); -x_687 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_628, x_686); +x_687 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_628, x_686); x_688 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_688, 0, x_687); lean_ctor_set(x_688, 1, x_685); @@ -16616,7 +16616,7 @@ lean_dec(x_690); x_691 = lean_ctor_get(x_627, 1); lean_inc(x_691); lean_dec(x_627); -x_692 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_628, x_691); +x_692 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_628, x_691); lean_ctor_set(x_621, 0, x_692); return x_621; } @@ -16629,7 +16629,7 @@ lean_dec(x_621); x_694 = lean_ctor_get(x_627, 1); lean_inc(x_694); lean_dec(x_627); -x_695 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_628, x_694); +x_695 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_628, x_694); x_696 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_696, 0, x_695); lean_ctor_set(x_696, 1, x_693); @@ -16648,7 +16648,7 @@ lean_dec(x_698); x_699 = lean_ctor_get(x_627, 1); lean_inc(x_699); lean_dec(x_627); -x_700 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_628, x_699); +x_700 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_628, x_699); lean_ctor_set(x_621, 0, x_700); return x_621; } @@ -16661,7 +16661,7 @@ lean_dec(x_621); x_702 = lean_ctor_get(x_627, 1); lean_inc(x_702); lean_dec(x_627); -x_703 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_628, x_702); +x_703 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_628, x_702); x_704 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_704, 0, x_703); lean_ctor_set(x_704, 1, x_701); @@ -16680,7 +16680,7 @@ lean_dec(x_706); x_707 = lean_ctor_get(x_627, 1); lean_inc(x_707); lean_dec(x_627); -x_708 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_628, x_707); +x_708 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_628, x_707); lean_ctor_set(x_621, 0, x_708); return x_621; } @@ -16693,7 +16693,7 @@ lean_dec(x_621); x_710 = lean_ctor_get(x_627, 1); lean_inc(x_710); lean_dec(x_627); -x_711 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_628, x_710); +x_711 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_628, x_710); x_712 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_712, 0, x_711); lean_ctor_set(x_712, 1, x_709); @@ -16712,7 +16712,7 @@ lean_dec(x_714); x_715 = lean_ctor_get(x_627, 1); lean_inc(x_715); lean_dec(x_627); -x_716 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_628, x_715); +x_716 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_628, x_715); lean_ctor_set(x_621, 0, x_716); return x_621; } @@ -16725,7 +16725,7 @@ lean_dec(x_621); x_718 = lean_ctor_get(x_627, 1); lean_inc(x_718); lean_dec(x_627); -x_719 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_628, x_718); +x_719 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_628, x_718); x_720 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_720, 0, x_719); lean_ctor_set(x_720, 1, x_717); @@ -16744,7 +16744,7 @@ lean_dec(x_722); x_723 = lean_ctor_get(x_627, 1); lean_inc(x_723); lean_dec(x_627); -x_724 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_628, x_723); +x_724 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_628, x_723); lean_ctor_set(x_621, 0, x_724); return x_621; } @@ -16757,7 +16757,7 @@ lean_dec(x_621); x_726 = lean_ctor_get(x_627, 1); lean_inc(x_726); lean_dec(x_627); -x_727 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_628, x_726); +x_727 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_628, x_726); x_728 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_728, 0, x_727); lean_ctor_set(x_728, 1, x_725); @@ -16776,7 +16776,7 @@ lean_dec(x_730); x_731 = lean_ctor_get(x_627, 1); lean_inc(x_731); lean_dec(x_627); -x_732 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_628, x_731); +x_732 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_628, x_731); lean_ctor_set(x_621, 0, x_732); return x_621; } @@ -16789,7 +16789,7 @@ lean_dec(x_621); x_734 = lean_ctor_get(x_627, 1); lean_inc(x_734); lean_dec(x_627); -x_735 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_628, x_734); +x_735 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_628, x_734); x_736 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_736, 0, x_735); lean_ctor_set(x_736, 1, x_733); @@ -16828,7 +16828,7 @@ else lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_dec(x_617); lean_dec(x_1); -x_741 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_741 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_742 = l_unreachable_x21___rarg(x_741); x_743 = lean_apply_2(x_742, x_2, x_3); return x_743; @@ -16858,7 +16858,7 @@ x_749 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_749, 0, x_748); x_750 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_750, 0, x_749); -x_751 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_751 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_752 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_752, 0, x_751); lean_ctor_set(x_752, 1, x_750); @@ -16888,7 +16888,7 @@ x_759 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_759, 0, x_758); x_760 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_760, 0, x_759); -x_761 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_761 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_762 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_762, 0, x_761); lean_ctor_set(x_762, 1, x_760); @@ -16969,7 +16969,7 @@ x_789 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_789, 0, x_788); x_790 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_790, 0, x_789); -x_791 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_791 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_792 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_792, 0, x_791); lean_ctor_set(x_792, 1, x_790); @@ -16994,7 +16994,7 @@ lean_dec(x_795); if (lean_obj_tag(x_797) == 0) { lean_object* x_798; lean_object* x_799; -x_798 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5; +x_798 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5; x_799 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_799, 0, x_798); lean_ctor_set(x_799, 1, x_3); @@ -17030,7 +17030,7 @@ lean_dec(x_804); if (lean_obj_tag(x_805) == 0) { lean_object* x_806; lean_object* x_807; -x_806 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6; +x_806 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6; x_807 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_807, 0, x_806); lean_ctor_set(x_807, 1, x_3); @@ -17064,12 +17064,12 @@ x_813 = lean_array_get(x_811, x_4, x_812); x_814 = lean_unsigned_to_nat(2u); x_815 = lean_array_get(x_811, x_4, x_814); lean_dec(x_4); -x_816 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); +x_816 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_816, 0, x_26); lean_closure_set(x_816, 1, x_813); lean_closure_set(x_816, 2, x_815); x_817 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_818 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_818 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_818, 0, x_817); lean_closure_set(x_818, 1, x_816); x_819 = l_Lean_Unhygienic_run___rarg(x_818); @@ -17091,12 +17091,12 @@ x_823 = lean_array_get(x_821, x_4, x_822); x_824 = lean_unsigned_to_nat(2u); x_825 = lean_array_get(x_821, x_4, x_824); lean_dec(x_4); -x_826 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); +x_826 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_826, 0, x_26); lean_closure_set(x_826, 1, x_823); lean_closure_set(x_826, 2, x_825); x_827 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_828 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_828 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_828, 0, x_827); lean_closure_set(x_828, 1, x_826); x_829 = l_Lean_Unhygienic_run___rarg(x_828); @@ -17118,12 +17118,12 @@ x_833 = lean_array_get(x_831, x_4, x_832); x_834 = lean_unsigned_to_nat(2u); x_835 = lean_array_get(x_831, x_4, x_834); lean_dec(x_4); -x_836 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); +x_836 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); lean_closure_set(x_836, 0, x_26); lean_closure_set(x_836, 1, x_833); lean_closure_set(x_836, 2, x_835); x_837 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_838 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_838 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_838, 0, x_837); lean_closure_set(x_838, 1, x_836); x_839 = l_Lean_Unhygienic_run___rarg(x_838); @@ -17162,7 +17162,7 @@ else lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_dec(x_844); lean_dec(x_2); -x_850 = l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; +x_850 = l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; x_851 = lean_name_mk_string(x_26, x_850); x_852 = l_Lean_unitToExpr___lambda__1___closed__3; x_853 = lean_name_mk_string(x_851, x_852); @@ -17191,13 +17191,13 @@ x_861 = lean_array_get(x_857, x_4, x_860); x_862 = lean_unsigned_to_nat(6u); x_863 = lean_array_get(x_857, x_4, x_862); lean_dec(x_4); -x_864 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); +x_864 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); lean_closure_set(x_864, 0, x_26); lean_closure_set(x_864, 1, x_859); lean_closure_set(x_864, 2, x_861); lean_closure_set(x_864, 3, x_863); x_865 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_866 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_866 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_866, 0, x_865); lean_closure_set(x_866, 1, x_864); x_867 = l_Lean_Unhygienic_run___rarg(x_866); @@ -17217,7 +17217,7 @@ x_869 = l_Lean_Syntax_inhabited; x_870 = lean_unsigned_to_nat(0u); x_871 = lean_array_get(x_869, x_4, x_870); lean_inc(x_2); -x_872 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_871, x_2, x_3); +x_872 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_871, x_2, x_3); if (lean_obj_tag(x_872) == 0) { lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; @@ -17232,7 +17232,7 @@ lean_dec(x_4); x_877 = l_Lean_Syntax_getArgs(x_876); lean_dec(x_876); x_878 = x_877; -x_879 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); +x_879 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); lean_closure_set(x_879, 0, x_870); lean_closure_set(x_879, 1, x_878); x_880 = x_879; @@ -17357,7 +17357,7 @@ block_952: { lean_object* x_906; lean_inc(x_2); -x_906 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_902, x_2, x_3); +x_906 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_902, x_2, x_3); if (lean_obj_tag(x_906) == 0) { lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; uint8_t x_924; uint8_t x_925; uint8_t x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; @@ -17372,7 +17372,7 @@ lean_inc(x_910); x_911 = lean_ctor_get(x_909, 1); lean_inc(x_911); lean_dec(x_909); -x_912 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_912 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; lean_inc_n(x_905, 2); x_913 = lean_local_ctx_mk_let_decl(x_910, x_905, x_905, x_912, x_907); x_914 = lean_ctor_get(x_2, 0); @@ -17462,7 +17462,7 @@ lean_ctor_set(x_934, 9, x_923); lean_ctor_set_uint8(x_934, sizeof(void*)*10, x_924); lean_ctor_set_uint8(x_934, sizeof(void*)*10 + 1, x_925); lean_ctor_set_uint8(x_934, sizeof(void*)*10 + 2, x_926); -x_935 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_904, x_934, x_911); +x_935 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_904, x_934, x_911); if (lean_obj_tag(x_935) == 0) { lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; @@ -17606,7 +17606,7 @@ lean_dec(x_976); x_978 = l_Lean_Syntax_getArg(x_977, x_956); lean_dec(x_977); lean_inc(x_2); -x_979 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_978, x_2, x_3); +x_979 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_978, x_2, x_3); if (lean_obj_tag(x_979) == 0) { lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; uint8_t x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; uint8_t x_1014; uint8_t x_1015; uint8_t x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; @@ -17737,7 +17737,7 @@ lean_ctor_set(x_1024, 9, x_1013); lean_ctor_set_uint8(x_1024, sizeof(void*)*10, x_1014); lean_ctor_set_uint8(x_1024, sizeof(void*)*10 + 1, x_1015); lean_ctor_set_uint8(x_1024, sizeof(void*)*10 + 2, x_1016); -x_1025 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1003, x_1024, x_991); +x_1025 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1003, x_1024, x_991); if (lean_obj_tag(x_1025) == 0) { lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; @@ -17837,7 +17837,7 @@ lean_inc(x_1045); x_1046 = lean_ctor_get(x_1044, 1); lean_inc(x_1046); lean_dec(x_1044); -x_1047 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_1047 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_1048 = 0; lean_inc_n(x_1043, 2); x_1049 = lean_local_ctx_mk_local_decl(x_1045, x_1043, x_1043, x_1047, x_1048); @@ -17954,7 +17954,7 @@ lean_ctor_set(x_1087, 9, x_1076); lean_ctor_set_uint8(x_1087, sizeof(void*)*10, x_1077); lean_ctor_set_uint8(x_1087, sizeof(void*)*10 + 1, x_1078); lean_ctor_set_uint8(x_1087, sizeof(void*)*10 + 2, x_1079); -x_1088 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1066, x_1087, x_1054); +x_1088 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1066, x_1087, x_1054); if (lean_obj_tag(x_1088) == 0) { lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; @@ -18024,7 +18024,7 @@ lean_inc(x_1103); x_1104 = lean_ctor_get(x_1102, 1); lean_inc(x_1104); lean_dec(x_1102); -x_1105 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_1105 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_1106 = 0; lean_inc_n(x_1101, 2); x_1107 = lean_local_ctx_mk_local_decl(x_1103, x_1101, x_1101, x_1105, x_1106); @@ -18141,7 +18141,7 @@ lean_ctor_set(x_1145, 9, x_1134); lean_ctor_set_uint8(x_1145, sizeof(void*)*10, x_1135); lean_ctor_set_uint8(x_1145, sizeof(void*)*10 + 1, x_1136); lean_ctor_set_uint8(x_1145, sizeof(void*)*10 + 2, x_1137); -x_1146 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1124, x_1145, x_1112); +x_1146 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1124, x_1145, x_1112); if (lean_obj_tag(x_1146) == 0) { lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; @@ -18242,7 +18242,7 @@ lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_11 x_1168 = lean_ctor_get(x_1166, 1); lean_inc(x_1168); lean_dec(x_1166); -x_1169 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_1169 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_1170 = l_unreachable_x21___rarg(x_1169); x_1171 = lean_apply_2(x_1170, x_2, x_1168); return x_1171; @@ -18273,7 +18273,7 @@ if (lean_is_exclusive(x_1166)) { x_1176 = lean_ctor_get(x_1172, 1); lean_inc(x_1176); lean_dec(x_1172); -x_1177 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_1173, x_1176); +x_1177 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_1173, x_1176); if (lean_is_scalar(x_1175)) { x_1178 = lean_alloc_ctor(0, 2, 0); } else { @@ -18299,7 +18299,7 @@ if (lean_is_exclusive(x_1166)) { x_1181 = lean_ctor_get(x_1172, 1); lean_inc(x_1181); lean_dec(x_1172); -x_1182 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_1173, x_1181); +x_1182 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_1173, x_1181); if (lean_is_scalar(x_1180)) { x_1183 = lean_alloc_ctor(0, 2, 0); } else { @@ -18325,7 +18325,7 @@ if (lean_is_exclusive(x_1166)) { x_1186 = lean_ctor_get(x_1172, 1); lean_inc(x_1186); lean_dec(x_1172); -x_1187 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_1173, x_1186); +x_1187 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_1173, x_1186); if (lean_is_scalar(x_1185)) { x_1188 = lean_alloc_ctor(0, 2, 0); } else { @@ -18351,7 +18351,7 @@ if (lean_is_exclusive(x_1166)) { x_1191 = lean_ctor_get(x_1172, 1); lean_inc(x_1191); lean_dec(x_1172); -x_1192 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_1173, x_1191); +x_1192 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_1173, x_1191); if (lean_is_scalar(x_1190)) { x_1193 = lean_alloc_ctor(0, 2, 0); } else { @@ -18381,7 +18381,7 @@ x_1197 = lean_ctor_get(x_1173, 0); lean_inc(x_1197); lean_dec(x_1173); x_1198 = l_Lean_mkConst(x_1197, x_1165); -x_1199 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_1198, x_1196); +x_1199 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_1198, x_1196); if (lean_is_scalar(x_1195)) { x_1200 = lean_alloc_ctor(0, 2, 0); } else { @@ -18407,7 +18407,7 @@ if (lean_is_exclusive(x_1166)) { x_1203 = lean_ctor_get(x_1172, 1); lean_inc(x_1203); lean_dec(x_1172); -x_1204 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_1173, x_1203); +x_1204 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_1173, x_1203); if (lean_is_scalar(x_1202)) { x_1205 = lean_alloc_ctor(0, 2, 0); } else { @@ -18433,7 +18433,7 @@ if (lean_is_exclusive(x_1166)) { x_1208 = lean_ctor_get(x_1172, 1); lean_inc(x_1208); lean_dec(x_1172); -x_1209 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_1173, x_1208); +x_1209 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_1173, x_1208); if (lean_is_scalar(x_1207)) { x_1210 = lean_alloc_ctor(0, 2, 0); } else { @@ -18459,7 +18459,7 @@ if (lean_is_exclusive(x_1166)) { x_1213 = lean_ctor_get(x_1172, 1); lean_inc(x_1213); lean_dec(x_1172); -x_1214 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_1173, x_1213); +x_1214 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_1173, x_1213); if (lean_is_scalar(x_1212)) { x_1215 = lean_alloc_ctor(0, 2, 0); } else { @@ -18485,7 +18485,7 @@ if (lean_is_exclusive(x_1166)) { x_1218 = lean_ctor_get(x_1172, 1); lean_inc(x_1218); lean_dec(x_1172); -x_1219 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_1173, x_1218); +x_1219 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_1173, x_1218); if (lean_is_scalar(x_1217)) { x_1220 = lean_alloc_ctor(0, 2, 0); } else { @@ -18511,7 +18511,7 @@ if (lean_is_exclusive(x_1166)) { x_1223 = lean_ctor_get(x_1172, 1); lean_inc(x_1223); lean_dec(x_1172); -x_1224 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_1173, x_1223); +x_1224 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_1173, x_1223); if (lean_is_scalar(x_1222)) { x_1225 = lean_alloc_ctor(0, 2, 0); } else { @@ -18537,7 +18537,7 @@ if (lean_is_exclusive(x_1166)) { x_1228 = lean_ctor_get(x_1172, 1); lean_inc(x_1228); lean_dec(x_1172); -x_1229 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_1173, x_1228); +x_1229 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_1173, x_1228); if (lean_is_scalar(x_1227)) { x_1230 = lean_alloc_ctor(0, 2, 0); } else { @@ -18563,7 +18563,7 @@ if (lean_is_exclusive(x_1166)) { x_1233 = lean_ctor_get(x_1172, 1); lean_inc(x_1233); lean_dec(x_1172); -x_1234 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_1173, x_1233); +x_1234 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_1173, x_1233); if (lean_is_scalar(x_1232)) { x_1235 = lean_alloc_ctor(0, 2, 0); } else { @@ -18589,7 +18589,7 @@ if (lean_is_exclusive(x_1166)) { x_1238 = lean_ctor_get(x_1172, 1); lean_inc(x_1238); lean_dec(x_1172); -x_1239 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_1173, x_1238); +x_1239 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_1173, x_1238); if (lean_is_scalar(x_1237)) { x_1240 = lean_alloc_ctor(0, 2, 0); } else { @@ -18633,7 +18633,7 @@ else lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_dec(x_1162); lean_dec(x_1); -x_1245 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_1245 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_1246 = l_unreachable_x21___rarg(x_1245); x_1247 = lean_apply_2(x_1246, x_2, x_3); return x_1247; @@ -18703,7 +18703,7 @@ x_1260 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1260, 0, x_1259); x_1261 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1261, 0, x_1260); -x_1262 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_1262 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_1263 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1263, 0, x_1262); lean_ctor_set(x_1263, 1, x_1261); @@ -18741,7 +18741,7 @@ x_1271 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1271, 0, x_1270); x_1272 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1272, 0, x_1271); -x_1273 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_1273 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_1274 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1274, 0, x_1273); lean_ctor_set(x_1274, 1, x_1272); @@ -18830,7 +18830,7 @@ x_1302 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1302, 0, x_1301); x_1303 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1303, 0, x_1302); -x_1304 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_1304 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_1305 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1305, 0, x_1304); lean_ctor_set(x_1305, 1, x_1303); @@ -18855,7 +18855,7 @@ lean_dec(x_1308); if (lean_obj_tag(x_1310) == 0) { lean_object* x_1311; lean_object* x_1312; -x_1311 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5; +x_1311 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5; x_1312 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1312, 0, x_1311); lean_ctor_set(x_1312, 1, x_3); @@ -18891,7 +18891,7 @@ lean_dec(x_1317); if (lean_obj_tag(x_1318) == 0) { lean_object* x_1319; lean_object* x_1320; -x_1319 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6; +x_1319 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6; x_1320 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1320, 0, x_1319); lean_ctor_set(x_1320, 1, x_3); @@ -18925,12 +18925,12 @@ x_1326 = lean_array_get(x_1324, x_4, x_1325); x_1327 = lean_unsigned_to_nat(2u); x_1328 = lean_array_get(x_1324, x_4, x_1327); lean_dec(x_4); -x_1329 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); +x_1329 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_1329, 0, x_26); lean_closure_set(x_1329, 1, x_1326); lean_closure_set(x_1329, 2, x_1328); x_1330 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_1331 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_1331 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_1331, 0, x_1330); lean_closure_set(x_1331, 1, x_1329); x_1332 = l_Lean_Unhygienic_run___rarg(x_1331); @@ -18952,12 +18952,12 @@ x_1336 = lean_array_get(x_1334, x_4, x_1335); x_1337 = lean_unsigned_to_nat(2u); x_1338 = lean_array_get(x_1334, x_4, x_1337); lean_dec(x_4); -x_1339 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); +x_1339 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_1339, 0, x_26); lean_closure_set(x_1339, 1, x_1336); lean_closure_set(x_1339, 2, x_1338); x_1340 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_1341 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_1341 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_1341, 0, x_1340); lean_closure_set(x_1341, 1, x_1339); x_1342 = l_Lean_Unhygienic_run___rarg(x_1341); @@ -18979,12 +18979,12 @@ x_1346 = lean_array_get(x_1344, x_4, x_1345); x_1347 = lean_unsigned_to_nat(2u); x_1348 = lean_array_get(x_1344, x_4, x_1347); lean_dec(x_4); -x_1349 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); +x_1349 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); lean_closure_set(x_1349, 0, x_26); lean_closure_set(x_1349, 1, x_1346); lean_closure_set(x_1349, 2, x_1348); x_1350 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_1351 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_1351 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_1351, 0, x_1350); lean_closure_set(x_1351, 1, x_1349); x_1352 = l_Lean_Unhygienic_run___rarg(x_1351); @@ -19023,7 +19023,7 @@ else lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_dec(x_1357); lean_dec(x_2); -x_1363 = l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; +x_1363 = l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; x_1364 = lean_name_mk_string(x_26, x_1363); x_1365 = l_Lean_unitToExpr___lambda__1___closed__3; x_1366 = lean_name_mk_string(x_1364, x_1365); @@ -19052,13 +19052,13 @@ x_1374 = lean_array_get(x_1370, x_4, x_1373); x_1375 = lean_unsigned_to_nat(6u); x_1376 = lean_array_get(x_1370, x_4, x_1375); lean_dec(x_4); -x_1377 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); +x_1377 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); lean_closure_set(x_1377, 0, x_26); lean_closure_set(x_1377, 1, x_1372); lean_closure_set(x_1377, 2, x_1374); lean_closure_set(x_1377, 3, x_1376); x_1378 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_1379 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_1379 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_1379, 0, x_1378); lean_closure_set(x_1379, 1, x_1377); x_1380 = l_Lean_Unhygienic_run___rarg(x_1379); @@ -19078,7 +19078,7 @@ x_1382 = l_Lean_Syntax_inhabited; x_1383 = lean_unsigned_to_nat(0u); x_1384 = lean_array_get(x_1382, x_4, x_1383); lean_inc(x_2); -x_1385 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1384, x_2, x_3); +x_1385 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1384, x_2, x_3); if (lean_obj_tag(x_1385) == 0) { lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; @@ -19093,7 +19093,7 @@ lean_dec(x_4); x_1390 = l_Lean_Syntax_getArgs(x_1389); lean_dec(x_1389); x_1391 = x_1390; -x_1392 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); +x_1392 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); lean_closure_set(x_1392, 0, x_1383); lean_closure_set(x_1392, 1, x_1391); x_1393 = x_1392; @@ -19218,7 +19218,7 @@ block_1465: { lean_object* x_1419; lean_inc(x_2); -x_1419 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1415, x_2, x_3); +x_1419 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1415, x_2, x_3); if (lean_obj_tag(x_1419) == 0) { lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; uint8_t x_1437; uint8_t x_1438; uint8_t x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; @@ -19233,7 +19233,7 @@ lean_inc(x_1423); x_1424 = lean_ctor_get(x_1422, 1); lean_inc(x_1424); lean_dec(x_1422); -x_1425 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_1425 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; lean_inc_n(x_1418, 2); x_1426 = lean_local_ctx_mk_let_decl(x_1423, x_1418, x_1418, x_1425, x_1420); x_1427 = lean_ctor_get(x_2, 0); @@ -19323,7 +19323,7 @@ lean_ctor_set(x_1447, 9, x_1436); lean_ctor_set_uint8(x_1447, sizeof(void*)*10, x_1437); lean_ctor_set_uint8(x_1447, sizeof(void*)*10 + 1, x_1438); lean_ctor_set_uint8(x_1447, sizeof(void*)*10 + 2, x_1439); -x_1448 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1417, x_1447, x_1424); +x_1448 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1417, x_1447, x_1424); if (lean_obj_tag(x_1448) == 0) { lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; @@ -19467,7 +19467,7 @@ lean_dec(x_1489); x_1491 = l_Lean_Syntax_getArg(x_1490, x_1469); lean_dec(x_1490); lean_inc(x_2); -x_1492 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1491, x_2, x_3); +x_1492 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1491, x_2, x_3); if (lean_obj_tag(x_1492) == 0) { lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; uint8_t x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; uint8_t x_1527; uint8_t x_1528; uint8_t x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; @@ -19598,7 +19598,7 @@ lean_ctor_set(x_1537, 9, x_1526); lean_ctor_set_uint8(x_1537, sizeof(void*)*10, x_1527); lean_ctor_set_uint8(x_1537, sizeof(void*)*10 + 1, x_1528); lean_ctor_set_uint8(x_1537, sizeof(void*)*10 + 2, x_1529); -x_1538 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1516, x_1537, x_1504); +x_1538 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1516, x_1537, x_1504); if (lean_obj_tag(x_1538) == 0) { lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; @@ -19698,7 +19698,7 @@ lean_inc(x_1558); x_1559 = lean_ctor_get(x_1557, 1); lean_inc(x_1559); lean_dec(x_1557); -x_1560 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_1560 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_1561 = 0; lean_inc_n(x_1556, 2); x_1562 = lean_local_ctx_mk_local_decl(x_1558, x_1556, x_1556, x_1560, x_1561); @@ -19815,7 +19815,7 @@ lean_ctor_set(x_1600, 9, x_1589); lean_ctor_set_uint8(x_1600, sizeof(void*)*10, x_1590); lean_ctor_set_uint8(x_1600, sizeof(void*)*10 + 1, x_1591); lean_ctor_set_uint8(x_1600, sizeof(void*)*10 + 2, x_1592); -x_1601 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1579, x_1600, x_1567); +x_1601 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1579, x_1600, x_1567); if (lean_obj_tag(x_1601) == 0) { lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; @@ -19885,7 +19885,7 @@ lean_inc(x_1616); x_1617 = lean_ctor_get(x_1615, 1); lean_inc(x_1617); lean_dec(x_1615); -x_1618 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_1618 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_1619 = 0; lean_inc_n(x_1614, 2); x_1620 = lean_local_ctx_mk_local_decl(x_1616, x_1614, x_1614, x_1618, x_1619); @@ -20002,7 +20002,7 @@ lean_ctor_set(x_1658, 9, x_1647); lean_ctor_set_uint8(x_1658, sizeof(void*)*10, x_1648); lean_ctor_set_uint8(x_1658, sizeof(void*)*10 + 1, x_1649); lean_ctor_set_uint8(x_1658, sizeof(void*)*10 + 2, x_1650); -x_1659 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1637, x_1658, x_1625); +x_1659 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1637, x_1658, x_1625); if (lean_obj_tag(x_1659) == 0) { lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; @@ -20103,7 +20103,7 @@ lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_16 x_1681 = lean_ctor_get(x_1679, 1); lean_inc(x_1681); lean_dec(x_1679); -x_1682 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_1682 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_1683 = l_unreachable_x21___rarg(x_1682); x_1684 = lean_apply_2(x_1683, x_2, x_1681); return x_1684; @@ -20134,7 +20134,7 @@ if (lean_is_exclusive(x_1679)) { x_1689 = lean_ctor_get(x_1685, 1); lean_inc(x_1689); lean_dec(x_1685); -x_1690 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_1686, x_1689); +x_1690 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_1686, x_1689); if (lean_is_scalar(x_1688)) { x_1691 = lean_alloc_ctor(0, 2, 0); } else { @@ -20160,7 +20160,7 @@ if (lean_is_exclusive(x_1679)) { x_1694 = lean_ctor_get(x_1685, 1); lean_inc(x_1694); lean_dec(x_1685); -x_1695 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_1686, x_1694); +x_1695 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_1686, x_1694); if (lean_is_scalar(x_1693)) { x_1696 = lean_alloc_ctor(0, 2, 0); } else { @@ -20186,7 +20186,7 @@ if (lean_is_exclusive(x_1679)) { x_1699 = lean_ctor_get(x_1685, 1); lean_inc(x_1699); lean_dec(x_1685); -x_1700 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_1686, x_1699); +x_1700 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_1686, x_1699); if (lean_is_scalar(x_1698)) { x_1701 = lean_alloc_ctor(0, 2, 0); } else { @@ -20212,7 +20212,7 @@ if (lean_is_exclusive(x_1679)) { x_1704 = lean_ctor_get(x_1685, 1); lean_inc(x_1704); lean_dec(x_1685); -x_1705 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_1686, x_1704); +x_1705 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_1686, x_1704); if (lean_is_scalar(x_1703)) { x_1706 = lean_alloc_ctor(0, 2, 0); } else { @@ -20242,7 +20242,7 @@ x_1710 = lean_ctor_get(x_1686, 0); lean_inc(x_1710); lean_dec(x_1686); x_1711 = l_Lean_mkConst(x_1710, x_1678); -x_1712 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_1711, x_1709); +x_1712 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_1711, x_1709); if (lean_is_scalar(x_1708)) { x_1713 = lean_alloc_ctor(0, 2, 0); } else { @@ -20268,7 +20268,7 @@ if (lean_is_exclusive(x_1679)) { x_1716 = lean_ctor_get(x_1685, 1); lean_inc(x_1716); lean_dec(x_1685); -x_1717 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_1686, x_1716); +x_1717 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_1686, x_1716); if (lean_is_scalar(x_1715)) { x_1718 = lean_alloc_ctor(0, 2, 0); } else { @@ -20294,7 +20294,7 @@ if (lean_is_exclusive(x_1679)) { x_1721 = lean_ctor_get(x_1685, 1); lean_inc(x_1721); lean_dec(x_1685); -x_1722 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_1686, x_1721); +x_1722 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_1686, x_1721); if (lean_is_scalar(x_1720)) { x_1723 = lean_alloc_ctor(0, 2, 0); } else { @@ -20320,7 +20320,7 @@ if (lean_is_exclusive(x_1679)) { x_1726 = lean_ctor_get(x_1685, 1); lean_inc(x_1726); lean_dec(x_1685); -x_1727 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_1686, x_1726); +x_1727 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_1686, x_1726); if (lean_is_scalar(x_1725)) { x_1728 = lean_alloc_ctor(0, 2, 0); } else { @@ -20346,7 +20346,7 @@ if (lean_is_exclusive(x_1679)) { x_1731 = lean_ctor_get(x_1685, 1); lean_inc(x_1731); lean_dec(x_1685); -x_1732 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_1686, x_1731); +x_1732 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_1686, x_1731); if (lean_is_scalar(x_1730)) { x_1733 = lean_alloc_ctor(0, 2, 0); } else { @@ -20372,7 +20372,7 @@ if (lean_is_exclusive(x_1679)) { x_1736 = lean_ctor_get(x_1685, 1); lean_inc(x_1736); lean_dec(x_1685); -x_1737 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_1686, x_1736); +x_1737 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_1686, x_1736); if (lean_is_scalar(x_1735)) { x_1738 = lean_alloc_ctor(0, 2, 0); } else { @@ -20398,7 +20398,7 @@ if (lean_is_exclusive(x_1679)) { x_1741 = lean_ctor_get(x_1685, 1); lean_inc(x_1741); lean_dec(x_1685); -x_1742 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_1686, x_1741); +x_1742 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_1686, x_1741); if (lean_is_scalar(x_1740)) { x_1743 = lean_alloc_ctor(0, 2, 0); } else { @@ -20424,7 +20424,7 @@ if (lean_is_exclusive(x_1679)) { x_1746 = lean_ctor_get(x_1685, 1); lean_inc(x_1746); lean_dec(x_1685); -x_1747 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_1686, x_1746); +x_1747 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_1686, x_1746); if (lean_is_scalar(x_1745)) { x_1748 = lean_alloc_ctor(0, 2, 0); } else { @@ -20450,7 +20450,7 @@ if (lean_is_exclusive(x_1679)) { x_1751 = lean_ctor_get(x_1685, 1); lean_inc(x_1751); lean_dec(x_1685); -x_1752 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_1686, x_1751); +x_1752 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_1686, x_1751); if (lean_is_scalar(x_1750)) { x_1753 = lean_alloc_ctor(0, 2, 0); } else { @@ -20494,7 +20494,7 @@ else lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; lean_dec(x_1675); lean_dec(x_1); -x_1758 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_1758 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_1759 = l_unreachable_x21___rarg(x_1758); x_1760 = lean_apply_2(x_1759, x_2, x_3); return x_1760; @@ -20583,7 +20583,7 @@ x_1777 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1777, 0, x_1776); x_1778 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1778, 0, x_1777); -x_1779 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_1779 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_1780 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1780, 0, x_1779); lean_ctor_set(x_1780, 1, x_1778); @@ -20628,7 +20628,7 @@ x_1789 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1789, 0, x_1788); x_1790 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1790, 0, x_1789); -x_1791 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_1791 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_1792 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1792, 0, x_1791); lean_ctor_set(x_1792, 1, x_1790); @@ -20724,7 +20724,7 @@ x_1821 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1821, 0, x_1820); x_1822 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1822, 0, x_1821); -x_1823 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_1823 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_1824 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1824, 0, x_1823); lean_ctor_set(x_1824, 1, x_1822); @@ -20749,7 +20749,7 @@ lean_dec(x_1827); if (lean_obj_tag(x_1829) == 0) { lean_object* x_1830; lean_object* x_1831; -x_1830 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5; +x_1830 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5; x_1831 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1831, 0, x_1830); lean_ctor_set(x_1831, 1, x_3); @@ -20785,7 +20785,7 @@ lean_dec(x_1836); if (lean_obj_tag(x_1837) == 0) { lean_object* x_1838; lean_object* x_1839; -x_1838 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6; +x_1838 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6; x_1839 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1839, 0, x_1838); lean_ctor_set(x_1839, 1, x_3); @@ -20819,12 +20819,12 @@ x_1845 = lean_array_get(x_1843, x_4, x_1844); x_1846 = lean_unsigned_to_nat(2u); x_1847 = lean_array_get(x_1843, x_4, x_1846); lean_dec(x_4); -x_1848 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); +x_1848 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_1848, 0, x_26); lean_closure_set(x_1848, 1, x_1845); lean_closure_set(x_1848, 2, x_1847); x_1849 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_1850 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_1850 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_1850, 0, x_1849); lean_closure_set(x_1850, 1, x_1848); x_1851 = l_Lean_Unhygienic_run___rarg(x_1850); @@ -20846,12 +20846,12 @@ x_1855 = lean_array_get(x_1853, x_4, x_1854); x_1856 = lean_unsigned_to_nat(2u); x_1857 = lean_array_get(x_1853, x_4, x_1856); lean_dec(x_4); -x_1858 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); +x_1858 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_1858, 0, x_26); lean_closure_set(x_1858, 1, x_1855); lean_closure_set(x_1858, 2, x_1857); x_1859 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_1860 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_1860 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_1860, 0, x_1859); lean_closure_set(x_1860, 1, x_1858); x_1861 = l_Lean_Unhygienic_run___rarg(x_1860); @@ -20873,12 +20873,12 @@ x_1865 = lean_array_get(x_1863, x_4, x_1864); x_1866 = lean_unsigned_to_nat(2u); x_1867 = lean_array_get(x_1863, x_4, x_1866); lean_dec(x_4); -x_1868 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); +x_1868 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); lean_closure_set(x_1868, 0, x_26); lean_closure_set(x_1868, 1, x_1865); lean_closure_set(x_1868, 2, x_1867); x_1869 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_1870 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_1870 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_1870, 0, x_1869); lean_closure_set(x_1870, 1, x_1868); x_1871 = l_Lean_Unhygienic_run___rarg(x_1870); @@ -20917,7 +20917,7 @@ else lean_object* x_1882; lean_object* x_1883; lean_object* x_1884; lean_object* x_1885; lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; lean_dec(x_1876); lean_dec(x_2); -x_1882 = l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; +x_1882 = l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; x_1883 = lean_name_mk_string(x_26, x_1882); x_1884 = l_Lean_unitToExpr___lambda__1___closed__3; x_1885 = lean_name_mk_string(x_1883, x_1884); @@ -20946,13 +20946,13 @@ x_1893 = lean_array_get(x_1889, x_4, x_1892); x_1894 = lean_unsigned_to_nat(6u); x_1895 = lean_array_get(x_1889, x_4, x_1894); lean_dec(x_4); -x_1896 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); +x_1896 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); lean_closure_set(x_1896, 0, x_26); lean_closure_set(x_1896, 1, x_1891); lean_closure_set(x_1896, 2, x_1893); lean_closure_set(x_1896, 3, x_1895); x_1897 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_1898 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_1898 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_1898, 0, x_1897); lean_closure_set(x_1898, 1, x_1896); x_1899 = l_Lean_Unhygienic_run___rarg(x_1898); @@ -20972,7 +20972,7 @@ x_1901 = l_Lean_Syntax_inhabited; x_1902 = lean_unsigned_to_nat(0u); x_1903 = lean_array_get(x_1901, x_4, x_1902); lean_inc(x_2); -x_1904 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1903, x_2, x_3); +x_1904 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1903, x_2, x_3); if (lean_obj_tag(x_1904) == 0) { lean_object* x_1905; lean_object* x_1906; lean_object* x_1907; lean_object* x_1908; lean_object* x_1909; lean_object* x_1910; lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; @@ -20987,7 +20987,7 @@ lean_dec(x_4); x_1909 = l_Lean_Syntax_getArgs(x_1908); lean_dec(x_1908); x_1910 = x_1909; -x_1911 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); +x_1911 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); lean_closure_set(x_1911, 0, x_1902); lean_closure_set(x_1911, 1, x_1910); x_1912 = x_1911; @@ -21112,7 +21112,7 @@ block_1984: { lean_object* x_1938; lean_inc(x_2); -x_1938 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1934, x_2, x_3); +x_1938 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1934, x_2, x_3); if (lean_obj_tag(x_1938) == 0) { lean_object* x_1939; lean_object* x_1940; lean_object* x_1941; lean_object* x_1942; lean_object* x_1943; lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; lean_object* x_1947; lean_object* x_1948; lean_object* x_1949; lean_object* x_1950; lean_object* x_1951; lean_object* x_1952; lean_object* x_1953; lean_object* x_1954; lean_object* x_1955; uint8_t x_1956; uint8_t x_1957; uint8_t x_1958; lean_object* x_1959; lean_object* x_1960; lean_object* x_1961; lean_object* x_1962; lean_object* x_1963; lean_object* x_1964; lean_object* x_1965; lean_object* x_1966; lean_object* x_1967; @@ -21127,7 +21127,7 @@ lean_inc(x_1942); x_1943 = lean_ctor_get(x_1941, 1); lean_inc(x_1943); lean_dec(x_1941); -x_1944 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_1944 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; lean_inc_n(x_1937, 2); x_1945 = lean_local_ctx_mk_let_decl(x_1942, x_1937, x_1937, x_1944, x_1939); x_1946 = lean_ctor_get(x_2, 0); @@ -21217,7 +21217,7 @@ lean_ctor_set(x_1966, 9, x_1955); lean_ctor_set_uint8(x_1966, sizeof(void*)*10, x_1956); lean_ctor_set_uint8(x_1966, sizeof(void*)*10 + 1, x_1957); lean_ctor_set_uint8(x_1966, sizeof(void*)*10 + 2, x_1958); -x_1967 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1936, x_1966, x_1943); +x_1967 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1936, x_1966, x_1943); if (lean_obj_tag(x_1967) == 0) { lean_object* x_1968; lean_object* x_1969; lean_object* x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; @@ -21361,7 +21361,7 @@ lean_dec(x_2008); x_2010 = l_Lean_Syntax_getArg(x_2009, x_1988); lean_dec(x_2009); lean_inc(x_2); -x_2011 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2010, x_2, x_3); +x_2011 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2010, x_2, x_3); if (lean_obj_tag(x_2011) == 0) { lean_object* x_2012; lean_object* x_2013; lean_object* x_2014; lean_object* x_2015; lean_object* x_2016; uint8_t x_2017; lean_object* x_2018; lean_object* x_2019; lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; lean_object* x_2023; lean_object* x_2024; lean_object* x_2025; lean_object* x_2026; lean_object* x_2027; lean_object* x_2028; lean_object* x_2029; lean_object* x_2030; lean_object* x_2031; lean_object* x_2032; lean_object* x_2033; lean_object* x_2034; lean_object* x_2035; lean_object* x_2036; lean_object* x_2037; lean_object* x_2038; lean_object* x_2039; lean_object* x_2040; lean_object* x_2041; lean_object* x_2042; lean_object* x_2043; lean_object* x_2044; lean_object* x_2045; uint8_t x_2046; uint8_t x_2047; uint8_t x_2048; lean_object* x_2049; lean_object* x_2050; lean_object* x_2051; lean_object* x_2052; lean_object* x_2053; lean_object* x_2054; lean_object* x_2055; lean_object* x_2056; lean_object* x_2057; @@ -21492,7 +21492,7 @@ lean_ctor_set(x_2056, 9, x_2045); lean_ctor_set_uint8(x_2056, sizeof(void*)*10, x_2046); lean_ctor_set_uint8(x_2056, sizeof(void*)*10 + 1, x_2047); lean_ctor_set_uint8(x_2056, sizeof(void*)*10 + 2, x_2048); -x_2057 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2035, x_2056, x_2023); +x_2057 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2035, x_2056, x_2023); if (lean_obj_tag(x_2057) == 0) { lean_object* x_2058; lean_object* x_2059; lean_object* x_2060; lean_object* x_2061; lean_object* x_2062; lean_object* x_2063; lean_object* x_2064; lean_object* x_2065; @@ -21592,7 +21592,7 @@ lean_inc(x_2077); x_2078 = lean_ctor_get(x_2076, 1); lean_inc(x_2078); lean_dec(x_2076); -x_2079 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_2079 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_2080 = 0; lean_inc_n(x_2075, 2); x_2081 = lean_local_ctx_mk_local_decl(x_2077, x_2075, x_2075, x_2079, x_2080); @@ -21709,7 +21709,7 @@ lean_ctor_set(x_2119, 9, x_2108); lean_ctor_set_uint8(x_2119, sizeof(void*)*10, x_2109); lean_ctor_set_uint8(x_2119, sizeof(void*)*10 + 1, x_2110); lean_ctor_set_uint8(x_2119, sizeof(void*)*10 + 2, x_2111); -x_2120 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2098, x_2119, x_2086); +x_2120 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2098, x_2119, x_2086); if (lean_obj_tag(x_2120) == 0) { lean_object* x_2121; lean_object* x_2122; lean_object* x_2123; lean_object* x_2124; lean_object* x_2125; lean_object* x_2126; lean_object* x_2127; lean_object* x_2128; @@ -21779,7 +21779,7 @@ lean_inc(x_2135); x_2136 = lean_ctor_get(x_2134, 1); lean_inc(x_2136); lean_dec(x_2134); -x_2137 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_2137 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_2138 = 0; lean_inc_n(x_2133, 2); x_2139 = lean_local_ctx_mk_local_decl(x_2135, x_2133, x_2133, x_2137, x_2138); @@ -21896,7 +21896,7 @@ lean_ctor_set(x_2177, 9, x_2166); lean_ctor_set_uint8(x_2177, sizeof(void*)*10, x_2167); lean_ctor_set_uint8(x_2177, sizeof(void*)*10 + 1, x_2168); lean_ctor_set_uint8(x_2177, sizeof(void*)*10 + 2, x_2169); -x_2178 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2156, x_2177, x_2144); +x_2178 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2156, x_2177, x_2144); if (lean_obj_tag(x_2178) == 0) { lean_object* x_2179; lean_object* x_2180; lean_object* x_2181; lean_object* x_2182; lean_object* x_2183; lean_object* x_2184; lean_object* x_2185; lean_object* x_2186; @@ -21997,7 +21997,7 @@ lean_object* x_2200; lean_object* x_2201; lean_object* x_2202; lean_object* x_22 x_2200 = lean_ctor_get(x_2198, 1); lean_inc(x_2200); lean_dec(x_2198); -x_2201 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_2201 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_2202 = l_unreachable_x21___rarg(x_2201); x_2203 = lean_apply_2(x_2202, x_2, x_2200); return x_2203; @@ -22028,7 +22028,7 @@ if (lean_is_exclusive(x_2198)) { x_2208 = lean_ctor_get(x_2204, 1); lean_inc(x_2208); lean_dec(x_2204); -x_2209 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_2205, x_2208); +x_2209 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_2205, x_2208); if (lean_is_scalar(x_2207)) { x_2210 = lean_alloc_ctor(0, 2, 0); } else { @@ -22054,7 +22054,7 @@ if (lean_is_exclusive(x_2198)) { x_2213 = lean_ctor_get(x_2204, 1); lean_inc(x_2213); lean_dec(x_2204); -x_2214 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_2205, x_2213); +x_2214 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_2205, x_2213); if (lean_is_scalar(x_2212)) { x_2215 = lean_alloc_ctor(0, 2, 0); } else { @@ -22080,7 +22080,7 @@ if (lean_is_exclusive(x_2198)) { x_2218 = lean_ctor_get(x_2204, 1); lean_inc(x_2218); lean_dec(x_2204); -x_2219 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_2205, x_2218); +x_2219 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_2205, x_2218); if (lean_is_scalar(x_2217)) { x_2220 = lean_alloc_ctor(0, 2, 0); } else { @@ -22106,7 +22106,7 @@ if (lean_is_exclusive(x_2198)) { x_2223 = lean_ctor_get(x_2204, 1); lean_inc(x_2223); lean_dec(x_2204); -x_2224 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_2205, x_2223); +x_2224 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_2205, x_2223); if (lean_is_scalar(x_2222)) { x_2225 = lean_alloc_ctor(0, 2, 0); } else { @@ -22136,7 +22136,7 @@ x_2229 = lean_ctor_get(x_2205, 0); lean_inc(x_2229); lean_dec(x_2205); x_2230 = l_Lean_mkConst(x_2229, x_2197); -x_2231 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_2230, x_2228); +x_2231 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_2230, x_2228); if (lean_is_scalar(x_2227)) { x_2232 = lean_alloc_ctor(0, 2, 0); } else { @@ -22162,7 +22162,7 @@ if (lean_is_exclusive(x_2198)) { x_2235 = lean_ctor_get(x_2204, 1); lean_inc(x_2235); lean_dec(x_2204); -x_2236 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_2205, x_2235); +x_2236 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_2205, x_2235); if (lean_is_scalar(x_2234)) { x_2237 = lean_alloc_ctor(0, 2, 0); } else { @@ -22188,7 +22188,7 @@ if (lean_is_exclusive(x_2198)) { x_2240 = lean_ctor_get(x_2204, 1); lean_inc(x_2240); lean_dec(x_2204); -x_2241 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_2205, x_2240); +x_2241 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_2205, x_2240); if (lean_is_scalar(x_2239)) { x_2242 = lean_alloc_ctor(0, 2, 0); } else { @@ -22214,7 +22214,7 @@ if (lean_is_exclusive(x_2198)) { x_2245 = lean_ctor_get(x_2204, 1); lean_inc(x_2245); lean_dec(x_2204); -x_2246 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_2205, x_2245); +x_2246 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_2205, x_2245); if (lean_is_scalar(x_2244)) { x_2247 = lean_alloc_ctor(0, 2, 0); } else { @@ -22240,7 +22240,7 @@ if (lean_is_exclusive(x_2198)) { x_2250 = lean_ctor_get(x_2204, 1); lean_inc(x_2250); lean_dec(x_2204); -x_2251 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_2205, x_2250); +x_2251 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_2205, x_2250); if (lean_is_scalar(x_2249)) { x_2252 = lean_alloc_ctor(0, 2, 0); } else { @@ -22266,7 +22266,7 @@ if (lean_is_exclusive(x_2198)) { x_2255 = lean_ctor_get(x_2204, 1); lean_inc(x_2255); lean_dec(x_2204); -x_2256 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_2205, x_2255); +x_2256 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_2205, x_2255); if (lean_is_scalar(x_2254)) { x_2257 = lean_alloc_ctor(0, 2, 0); } else { @@ -22292,7 +22292,7 @@ if (lean_is_exclusive(x_2198)) { x_2260 = lean_ctor_get(x_2204, 1); lean_inc(x_2260); lean_dec(x_2204); -x_2261 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_2205, x_2260); +x_2261 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_2205, x_2260); if (lean_is_scalar(x_2259)) { x_2262 = lean_alloc_ctor(0, 2, 0); } else { @@ -22318,7 +22318,7 @@ if (lean_is_exclusive(x_2198)) { x_2265 = lean_ctor_get(x_2204, 1); lean_inc(x_2265); lean_dec(x_2204); -x_2266 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_2205, x_2265); +x_2266 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_2205, x_2265); if (lean_is_scalar(x_2264)) { x_2267 = lean_alloc_ctor(0, 2, 0); } else { @@ -22344,7 +22344,7 @@ if (lean_is_exclusive(x_2198)) { x_2270 = lean_ctor_get(x_2204, 1); lean_inc(x_2270); lean_dec(x_2204); -x_2271 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_2205, x_2270); +x_2271 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_2205, x_2270); if (lean_is_scalar(x_2269)) { x_2272 = lean_alloc_ctor(0, 2, 0); } else { @@ -22388,7 +22388,7 @@ else lean_object* x_2277; lean_object* x_2278; lean_object* x_2279; lean_dec(x_2194); lean_dec(x_1); -x_2277 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_2277 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_2278 = l_unreachable_x21___rarg(x_2277); x_2279 = lean_apply_2(x_2278, x_2, x_3); return x_2279; @@ -22496,7 +22496,7 @@ x_2301 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2301, 0, x_2300); x_2302 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2302, 0, x_2301); -x_2303 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_2303 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_2304 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_2304, 0, x_2303); lean_ctor_set(x_2304, 1, x_2302); @@ -22548,7 +22548,7 @@ x_2314 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2314, 0, x_2313); x_2315 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2315, 0, x_2314); -x_2316 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_2316 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_2317 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_2317, 0, x_2316); lean_ctor_set(x_2317, 1, x_2315); @@ -22650,7 +22650,7 @@ x_2347 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2347, 0, x_2346); x_2348 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2348, 0, x_2347); -x_2349 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_2349 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_2350 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_2350, 0, x_2349); lean_ctor_set(x_2350, 1, x_2348); @@ -22675,7 +22675,7 @@ lean_dec(x_2353); if (lean_obj_tag(x_2355) == 0) { lean_object* x_2356; lean_object* x_2357; -x_2356 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5; +x_2356 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5; x_2357 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2357, 0, x_2356); lean_ctor_set(x_2357, 1, x_3); @@ -22711,7 +22711,7 @@ lean_dec(x_2362); if (lean_obj_tag(x_2363) == 0) { lean_object* x_2364; lean_object* x_2365; -x_2364 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6; +x_2364 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6; x_2365 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2365, 0, x_2364); lean_ctor_set(x_2365, 1, x_3); @@ -22745,12 +22745,12 @@ x_2371 = lean_array_get(x_2369, x_4, x_2370); x_2372 = lean_unsigned_to_nat(2u); x_2373 = lean_array_get(x_2369, x_4, x_2372); lean_dec(x_4); -x_2374 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); +x_2374 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_2374, 0, x_26); lean_closure_set(x_2374, 1, x_2371); lean_closure_set(x_2374, 2, x_2373); x_2375 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_2376 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_2376 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_2376, 0, x_2375); lean_closure_set(x_2376, 1, x_2374); x_2377 = l_Lean_Unhygienic_run___rarg(x_2376); @@ -22772,12 +22772,12 @@ x_2381 = lean_array_get(x_2379, x_4, x_2380); x_2382 = lean_unsigned_to_nat(2u); x_2383 = lean_array_get(x_2379, x_4, x_2382); lean_dec(x_4); -x_2384 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); +x_2384 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_2384, 0, x_26); lean_closure_set(x_2384, 1, x_2381); lean_closure_set(x_2384, 2, x_2383); x_2385 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_2386 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_2386 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_2386, 0, x_2385); lean_closure_set(x_2386, 1, x_2384); x_2387 = l_Lean_Unhygienic_run___rarg(x_2386); @@ -22799,12 +22799,12 @@ x_2391 = lean_array_get(x_2389, x_4, x_2390); x_2392 = lean_unsigned_to_nat(2u); x_2393 = lean_array_get(x_2389, x_4, x_2392); lean_dec(x_4); -x_2394 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); +x_2394 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed), 6, 3); lean_closure_set(x_2394, 0, x_26); lean_closure_set(x_2394, 1, x_2391); lean_closure_set(x_2394, 2, x_2393); x_2395 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_2396 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_2396 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_2396, 0, x_2395); lean_closure_set(x_2396, 1, x_2394); x_2397 = l_Lean_Unhygienic_run___rarg(x_2396); @@ -22843,7 +22843,7 @@ else lean_object* x_2408; lean_object* x_2409; lean_object* x_2410; lean_object* x_2411; lean_object* x_2412; lean_object* x_2413; lean_object* x_2414; lean_dec(x_2402); lean_dec(x_2); -x_2408 = l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; +x_2408 = l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; x_2409 = lean_name_mk_string(x_26, x_2408); x_2410 = l_Lean_unitToExpr___lambda__1___closed__3; x_2411 = lean_name_mk_string(x_2409, x_2410); @@ -22872,13 +22872,13 @@ x_2419 = lean_array_get(x_2415, x_4, x_2418); x_2420 = lean_unsigned_to_nat(6u); x_2421 = lean_array_get(x_2415, x_4, x_2420); lean_dec(x_4); -x_2422 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); +x_2422 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed), 7, 4); lean_closure_set(x_2422, 0, x_26); lean_closure_set(x_2422, 1, x_2417); lean_closure_set(x_2422, 2, x_2419); lean_closure_set(x_2422, 3, x_2421); x_2423 = l_Lean_Unhygienic_MonadQuotation___closed__4; -x_2424 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); +x_2424 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Lean_Elab_Quotation_5__explodeHeadPat___spec__1___rarg), 4, 2); lean_closure_set(x_2424, 0, x_2423); lean_closure_set(x_2424, 1, x_2422); x_2425 = l_Lean_Unhygienic_run___rarg(x_2424); @@ -22898,7 +22898,7 @@ x_2427 = l_Lean_Syntax_inhabited; x_2428 = lean_unsigned_to_nat(0u); x_2429 = lean_array_get(x_2427, x_4, x_2428); lean_inc(x_2); -x_2430 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2429, x_2, x_3); +x_2430 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2429, x_2, x_3); if (lean_obj_tag(x_2430) == 0) { lean_object* x_2431; lean_object* x_2432; lean_object* x_2433; lean_object* x_2434; lean_object* x_2435; lean_object* x_2436; lean_object* x_2437; lean_object* x_2438; lean_object* x_2439; @@ -22913,7 +22913,7 @@ lean_dec(x_4); x_2435 = l_Lean_Syntax_getArgs(x_2434); lean_dec(x_2434); x_2436 = x_2435; -x_2437 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); +x_2437 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__1), 4, 2); lean_closure_set(x_2437, 0, x_2428); lean_closure_set(x_2437, 1, x_2436); x_2438 = x_2437; @@ -23038,7 +23038,7 @@ block_2510: { lean_object* x_2464; lean_inc(x_2); -x_2464 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2460, x_2, x_3); +x_2464 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2460, x_2, x_3); if (lean_obj_tag(x_2464) == 0) { lean_object* x_2465; lean_object* x_2466; lean_object* x_2467; lean_object* x_2468; lean_object* x_2469; lean_object* x_2470; lean_object* x_2471; lean_object* x_2472; lean_object* x_2473; lean_object* x_2474; lean_object* x_2475; lean_object* x_2476; lean_object* x_2477; lean_object* x_2478; lean_object* x_2479; lean_object* x_2480; lean_object* x_2481; uint8_t x_2482; uint8_t x_2483; uint8_t x_2484; lean_object* x_2485; lean_object* x_2486; lean_object* x_2487; lean_object* x_2488; lean_object* x_2489; lean_object* x_2490; lean_object* x_2491; lean_object* x_2492; lean_object* x_2493; @@ -23053,7 +23053,7 @@ lean_inc(x_2468); x_2469 = lean_ctor_get(x_2467, 1); lean_inc(x_2469); lean_dec(x_2467); -x_2470 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_2470 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; lean_inc_n(x_2463, 2); x_2471 = lean_local_ctx_mk_let_decl(x_2468, x_2463, x_2463, x_2470, x_2465); x_2472 = lean_ctor_get(x_2, 0); @@ -23143,7 +23143,7 @@ lean_ctor_set(x_2492, 9, x_2481); lean_ctor_set_uint8(x_2492, sizeof(void*)*10, x_2482); lean_ctor_set_uint8(x_2492, sizeof(void*)*10 + 1, x_2483); lean_ctor_set_uint8(x_2492, sizeof(void*)*10 + 2, x_2484); -x_2493 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2462, x_2492, x_2469); +x_2493 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2462, x_2492, x_2469); if (lean_obj_tag(x_2493) == 0) { lean_object* x_2494; lean_object* x_2495; lean_object* x_2496; lean_object* x_2497; lean_object* x_2498; lean_object* x_2499; lean_object* x_2500; lean_object* x_2501; @@ -23287,7 +23287,7 @@ lean_dec(x_2534); x_2536 = l_Lean_Syntax_getArg(x_2535, x_2514); lean_dec(x_2535); lean_inc(x_2); -x_2537 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2536, x_2, x_3); +x_2537 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2536, x_2, x_3); if (lean_obj_tag(x_2537) == 0) { lean_object* x_2538; lean_object* x_2539; lean_object* x_2540; lean_object* x_2541; lean_object* x_2542; uint8_t x_2543; lean_object* x_2544; lean_object* x_2545; lean_object* x_2546; lean_object* x_2547; lean_object* x_2548; lean_object* x_2549; lean_object* x_2550; lean_object* x_2551; lean_object* x_2552; lean_object* x_2553; lean_object* x_2554; lean_object* x_2555; lean_object* x_2556; lean_object* x_2557; lean_object* x_2558; lean_object* x_2559; lean_object* x_2560; lean_object* x_2561; lean_object* x_2562; lean_object* x_2563; lean_object* x_2564; lean_object* x_2565; lean_object* x_2566; lean_object* x_2567; lean_object* x_2568; lean_object* x_2569; lean_object* x_2570; lean_object* x_2571; uint8_t x_2572; uint8_t x_2573; uint8_t x_2574; lean_object* x_2575; lean_object* x_2576; lean_object* x_2577; lean_object* x_2578; lean_object* x_2579; lean_object* x_2580; lean_object* x_2581; lean_object* x_2582; lean_object* x_2583; @@ -23418,7 +23418,7 @@ lean_ctor_set(x_2582, 9, x_2571); lean_ctor_set_uint8(x_2582, sizeof(void*)*10, x_2572); lean_ctor_set_uint8(x_2582, sizeof(void*)*10 + 1, x_2573); lean_ctor_set_uint8(x_2582, sizeof(void*)*10 + 2, x_2574); -x_2583 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2561, x_2582, x_2549); +x_2583 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2561, x_2582, x_2549); if (lean_obj_tag(x_2583) == 0) { lean_object* x_2584; lean_object* x_2585; lean_object* x_2586; lean_object* x_2587; lean_object* x_2588; lean_object* x_2589; lean_object* x_2590; lean_object* x_2591; @@ -23518,7 +23518,7 @@ lean_inc(x_2603); x_2604 = lean_ctor_get(x_2602, 1); lean_inc(x_2604); lean_dec(x_2602); -x_2605 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_2605 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_2606 = 0; lean_inc_n(x_2601, 2); x_2607 = lean_local_ctx_mk_local_decl(x_2603, x_2601, x_2601, x_2605, x_2606); @@ -23635,7 +23635,7 @@ lean_ctor_set(x_2645, 9, x_2634); lean_ctor_set_uint8(x_2645, sizeof(void*)*10, x_2635); lean_ctor_set_uint8(x_2645, sizeof(void*)*10 + 1, x_2636); lean_ctor_set_uint8(x_2645, sizeof(void*)*10 + 2, x_2637); -x_2646 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2624, x_2645, x_2612); +x_2646 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2624, x_2645, x_2612); if (lean_obj_tag(x_2646) == 0) { lean_object* x_2647; lean_object* x_2648; lean_object* x_2649; lean_object* x_2650; lean_object* x_2651; lean_object* x_2652; lean_object* x_2653; lean_object* x_2654; @@ -23705,7 +23705,7 @@ lean_inc(x_2661); x_2662 = lean_ctor_get(x_2660, 1); lean_inc(x_2662); lean_dec(x_2660); -x_2663 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_2663 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_2664 = 0; lean_inc_n(x_2659, 2); x_2665 = lean_local_ctx_mk_local_decl(x_2661, x_2659, x_2659, x_2663, x_2664); @@ -23822,7 +23822,7 @@ lean_ctor_set(x_2703, 9, x_2692); lean_ctor_set_uint8(x_2703, sizeof(void*)*10, x_2693); lean_ctor_set_uint8(x_2703, sizeof(void*)*10 + 1, x_2694); lean_ctor_set_uint8(x_2703, sizeof(void*)*10 + 2, x_2695); -x_2704 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_2682, x_2703, x_2670); +x_2704 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_2682, x_2703, x_2670); if (lean_obj_tag(x_2704) == 0) { lean_object* x_2705; lean_object* x_2706; lean_object* x_2707; lean_object* x_2708; lean_object* x_2709; lean_object* x_2710; lean_object* x_2711; lean_object* x_2712; @@ -23923,7 +23923,7 @@ lean_object* x_2726; lean_object* x_2727; lean_object* x_2728; lean_object* x_27 x_2726 = lean_ctor_get(x_2724, 1); lean_inc(x_2726); lean_dec(x_2724); -x_2727 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_2727 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_2728 = l_unreachable_x21___rarg(x_2727); x_2729 = lean_apply_2(x_2728, x_2, x_2726); return x_2729; @@ -23954,7 +23954,7 @@ if (lean_is_exclusive(x_2724)) { x_2734 = lean_ctor_get(x_2730, 1); lean_inc(x_2734); lean_dec(x_2730); -x_2735 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_2731, x_2734); +x_2735 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2(x_26, x_2731, x_2734); if (lean_is_scalar(x_2733)) { x_2736 = lean_alloc_ctor(0, 2, 0); } else { @@ -23980,7 +23980,7 @@ if (lean_is_exclusive(x_2724)) { x_2739 = lean_ctor_get(x_2730, 1); lean_inc(x_2739); lean_dec(x_2730); -x_2740 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_2731, x_2739); +x_2740 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__3(x_26, x_2731, x_2739); if (lean_is_scalar(x_2738)) { x_2741 = lean_alloc_ctor(0, 2, 0); } else { @@ -24006,7 +24006,7 @@ if (lean_is_exclusive(x_2724)) { x_2744 = lean_ctor_get(x_2730, 1); lean_inc(x_2744); lean_dec(x_2730); -x_2745 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_2731, x_2744); +x_2745 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__4(x_26, x_2731, x_2744); if (lean_is_scalar(x_2743)) { x_2746 = lean_alloc_ctor(0, 2, 0); } else { @@ -24032,7 +24032,7 @@ if (lean_is_exclusive(x_2724)) { x_2749 = lean_ctor_get(x_2730, 1); lean_inc(x_2749); lean_dec(x_2730); -x_2750 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_2731, x_2749); +x_2750 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__5(x_26, x_2731, x_2749); if (lean_is_scalar(x_2748)) { x_2751 = lean_alloc_ctor(0, 2, 0); } else { @@ -24062,7 +24062,7 @@ x_2755 = lean_ctor_get(x_2731, 0); lean_inc(x_2755); lean_dec(x_2731); x_2756 = l_Lean_mkConst(x_2755, x_2723); -x_2757 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_2756, x_2754); +x_2757 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__6(x_26, x_2756, x_2754); if (lean_is_scalar(x_2753)) { x_2758 = lean_alloc_ctor(0, 2, 0); } else { @@ -24088,7 +24088,7 @@ if (lean_is_exclusive(x_2724)) { x_2761 = lean_ctor_get(x_2730, 1); lean_inc(x_2761); lean_dec(x_2730); -x_2762 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_2731, x_2761); +x_2762 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__7(x_26, x_2731, x_2761); if (lean_is_scalar(x_2760)) { x_2763 = lean_alloc_ctor(0, 2, 0); } else { @@ -24114,7 +24114,7 @@ if (lean_is_exclusive(x_2724)) { x_2766 = lean_ctor_get(x_2730, 1); lean_inc(x_2766); lean_dec(x_2730); -x_2767 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_2731, x_2766); +x_2767 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__8(x_26, x_2731, x_2766); if (lean_is_scalar(x_2765)) { x_2768 = lean_alloc_ctor(0, 2, 0); } else { @@ -24140,7 +24140,7 @@ if (lean_is_exclusive(x_2724)) { x_2771 = lean_ctor_get(x_2730, 1); lean_inc(x_2771); lean_dec(x_2730); -x_2772 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_2731, x_2771); +x_2772 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__9(x_26, x_2731, x_2771); if (lean_is_scalar(x_2770)) { x_2773 = lean_alloc_ctor(0, 2, 0); } else { @@ -24166,7 +24166,7 @@ if (lean_is_exclusive(x_2724)) { x_2776 = lean_ctor_get(x_2730, 1); lean_inc(x_2776); lean_dec(x_2730); -x_2777 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_2731, x_2776); +x_2777 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__10(x_26, x_2731, x_2776); if (lean_is_scalar(x_2775)) { x_2778 = lean_alloc_ctor(0, 2, 0); } else { @@ -24192,7 +24192,7 @@ if (lean_is_exclusive(x_2724)) { x_2781 = lean_ctor_get(x_2730, 1); lean_inc(x_2781); lean_dec(x_2730); -x_2782 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_2731, x_2781); +x_2782 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__11(x_26, x_2731, x_2781); if (lean_is_scalar(x_2780)) { x_2783 = lean_alloc_ctor(0, 2, 0); } else { @@ -24218,7 +24218,7 @@ if (lean_is_exclusive(x_2724)) { x_2786 = lean_ctor_get(x_2730, 1); lean_inc(x_2786); lean_dec(x_2730); -x_2787 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_2731, x_2786); +x_2787 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__12(x_26, x_2731, x_2786); if (lean_is_scalar(x_2785)) { x_2788 = lean_alloc_ctor(0, 2, 0); } else { @@ -24244,7 +24244,7 @@ if (lean_is_exclusive(x_2724)) { x_2791 = lean_ctor_get(x_2730, 1); lean_inc(x_2791); lean_dec(x_2730); -x_2792 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_2731, x_2791); +x_2792 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__13(x_26, x_2731, x_2791); if (lean_is_scalar(x_2790)) { x_2793 = lean_alloc_ctor(0, 2, 0); } else { @@ -24270,7 +24270,7 @@ if (lean_is_exclusive(x_2724)) { x_2796 = lean_ctor_get(x_2730, 1); lean_inc(x_2796); lean_dec(x_2730); -x_2797 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_2731, x_2796); +x_2797 = l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__14(x_26, x_2731, x_2796); if (lean_is_scalar(x_2795)) { x_2798 = lean_alloc_ctor(0, 2, 0); } else { @@ -24314,7 +24314,7 @@ else lean_object* x_2803; lean_object* x_2804; lean_object* x_2805; lean_dec(x_2720); lean_dec(x_1); -x_2803 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_2803 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_2804 = l_unreachable_x21___rarg(x_2803); x_2805 = lean_apply_2(x_2804, x_2, x_3); return x_2805; @@ -24390,7 +24390,7 @@ x_9 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_9, 0, x_8); x_10 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_10, 0, x_9); -x_11 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3; +x_11 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3; x_12 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_12, 0, x_11); lean_ctor_set(x_12, 1, x_10); @@ -24400,47 +24400,47 @@ return x_13; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___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* l___private_Lean_Elab_Quotation_10__toPreterm___main___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) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___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: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_10__toPreterm(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Quotation_10__toPreterm___main(x_1, x_2, x_3); return x_4; } } @@ -24504,7 +24504,7 @@ return x_21; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Lean_Elab_Quotation_11__oldRunTermElabM___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -24519,7 +24519,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_2, 1); lean_inc(x_4); lean_dec(x_2); -x_5 = l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder; +x_5 = l___private_Lean_Elab_Quotation_9__exprPlaceholder; x_6 = 0; lean_inc(x_3); x_7 = lean_local_ctx_mk_local_decl(x_1, x_3, x_3, x_5, x_6); @@ -24529,7 +24529,7 @@ goto _start; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_map___main___at___private_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -24552,7 +24552,7 @@ lean_inc(x_1); x_7 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_7, 0, x_5); lean_ctor_set(x_7, 1, x_1); -x_8 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(x_1, x_6); +x_8 = l_List_map___main___at___private_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(x_1, x_6); lean_ctor_set(x_2, 1, x_8); lean_ctor_set(x_2, 0, x_7); return x_2; @@ -24569,7 +24569,7 @@ lean_inc(x_1); x_11 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_1); -x_12 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(x_1, x_10); +x_12 = l_List_map___main___at___private_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(x_1, x_10); x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -24578,7 +24578,7 @@ return x_13; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1() { +lean_object* _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -24587,7 +24587,7 @@ x_2 = lean_mk_empty_local_ctx(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2() { +lean_object* _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -24596,7 +24596,7 @@ x_2 = l_Lean_FileMap_ofString(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3() { +lean_object* _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3() { _start: { lean_object* x_1; @@ -24604,7 +24604,7 @@ x_1 = lean_mk_string("foo"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4() { +lean_object* _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -24614,17 +24614,17 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5() { +lean_object* _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; +x_1 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; 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; @@ -24635,8 +24635,8 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 2); lean_inc(x_5); lean_dec(x_1); -x_6 = l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1; -x_7 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___spec__1(x_6, x_4); +x_6 = l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1; +x_7 = l_List_foldl___main___at___private_Lean_Elab_Quotation_11__oldRunTermElabM___spec__1(x_6, x_4); x_8 = l_Lean_Meta_run___rarg___closed__1; x_9 = l_Array_empty___closed__1; x_10 = lean_unsigned_to_nat(0u); @@ -24651,9 +24651,9 @@ lean_inc(x_3); x_13 = lean_get_namespace(x_3); x_14 = lean_box(0); x_15 = lean_box(0); -x_16 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(x_15, x_5); -x_17 = l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3; -x_18 = l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2; +x_16 = l_List_map___main___at___private_Lean_Elab_Quotation_11__oldRunTermElabM___spec__2(x_15, x_5); +x_17 = l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3; +x_18 = l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2; x_19 = l_Lean_firstFrontendMacroScope; x_20 = 1; x_21 = lean_alloc_ctor(0, 10, 3); @@ -24728,24 +24728,24 @@ return x_38; else { lean_object* x_39; -x_39 = l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4; +x_39 = l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4; return x_39; } } else { lean_object* x_40; -x_40 = l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5; +x_40 = l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5; return x_40; } } } } -lean_object* l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_11__oldRunTermElabM(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg), 2, 0); return x_2; } } @@ -24753,7 +24753,7 @@ lean_object* _init_l_Lean_Elab_Term_Quotation_oldExpandStxQuot___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_10__toPreterm___main), 3, 0); return x_1; } } @@ -24767,7 +24767,7 @@ x_4 = l_Lean_Elab_Term_Quotation_oldExpandStxQuot___closed__1; x_5 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg), 4, 2); lean_closure_set(x_5, 0, x_3); lean_closure_set(x_5, 1, x_4); -x_6 = l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(x_1, x_5); +x_6 = l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(x_1, x_5); return x_6; } } @@ -24821,12 +24821,12 @@ lean_object* lean_get_antiquot_vars(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; -x_3 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_2); +x_3 = l_List_map___main___at___private_Lean_Elab_Quotation_8__letBindRhss___main___spec__1(x_2); x_4 = l_List_join___main___rarg(x_3); x_5 = l_List_map___main___at_Lean_Elab_Term_Quotation_oldGetPatternVars___spec__1(x_4); x_6 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_Quotation_HeadInfo_Inhabited___spec__1___rarg___boxed), 3, 1); lean_closure_set(x_6, 0, x_5); -x_7 = l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(x_1, x_6); +x_7 = l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(x_1, x_6); return x_7; } } @@ -24848,7 +24848,7 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); -x_6 = l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_4); +x_6 = l___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_4); x_7 = l_List_map___main___at_Lean_Elab_Term_Quotation_oldExpandMatchSyntax___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); @@ -24862,7 +24862,7 @@ x_9 = lean_ctor_get(x_1, 1); lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); -x_10 = l___private_Init_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_8); +x_10 = l___private_Lean_Elab_Quotation_1__elimAntiquotChoices___main(x_8); x_11 = l_List_map___main___at_Lean_Elab_Term_Quotation_oldExpandMatchSyntax___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); @@ -24949,7 +24949,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__4; +x_2 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -24970,7 +24970,7 @@ x_10 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_10, 0, x_8); lean_ctor_set(x_10, 1, x_4); x_11 = lean_box(0); -x_12 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___boxed), 5, 3); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_6__compileStxMatch___boxed), 5, 3); lean_closure_set(x_12, 0, x_11); lean_closure_set(x_12, 1, x_10); lean_closure_set(x_12, 2, x_9); @@ -24978,183 +24978,183 @@ x_13 = l_Lean_Elab_Term_Quotation_oldExpandStxQuot___closed__1; x_14 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg), 4, 2); lean_closure_set(x_14, 0, x_12); lean_closure_set(x_14, 1, x_13); -x_15 = l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(x_1, x_14); +x_15 = l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg(x_1, x_14); return x_15; } } -lean_object* initialize_Init_Lean_Syntax(lean_object*); -lean_object* initialize_Init_Lean_Elab_ResolveName(lean_object*); -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); -lean_object* initialize_Init_Lean_Parser(lean_object*); +lean_object* initialize_Lean_Syntax(lean_object*); +lean_object* initialize_Lean_Elab_ResolveName(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Parser(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Quotation(lean_object* w) { +lean_object* initialize_Lean_Elab_Quotation(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Syntax(lean_io_mk_world()); +res = initialize_Lean_Syntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_ResolveName(lean_io_mk_world()); +res = initialize_Lean_Elab_ResolveName(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Parser(lean_io_mk_world()); +res = initialize_Lean_Parser(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_Quotation_antiquotKind_x3f___closed__1 = _init_l_Lean_Elab_Term_Quotation_antiquotKind_x3f___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_antiquotKind_x3f___closed__1); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7); -l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1 = _init_l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Syntax_8__quoteList___main___at___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66); -l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67 = _init_l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67); +l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__1); +l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__2); +l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__3); +l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__4); +l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__5); +l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__6); +l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__1___closed__7); +l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1 = _init_l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1(); +lean_mark_persistent(l___private_Lean_Syntax_8__quoteList___main___at___private_Lean_Elab_Quotation_2__quoteSyntax___main___spec__3___closed__1); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__2); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__3); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__4); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__5); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__6); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__7); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__8); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__9); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__10); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__11); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__12); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__13); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__14); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__15); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__16); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__17); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__18); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__19); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__20); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__21); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__22); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__23); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__24); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__25); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__26); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__27); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__29); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__30); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__31); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__32); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__33); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__34); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__35); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__36); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__37); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__38); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__39); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__40); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__41); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__42); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__43); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__45); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__46); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__47); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__48); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__49); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__50); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__51); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__52); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__53); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__54); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__55); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__56); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__57); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__58); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__59); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__60); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__61); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__62); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__63); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__64); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__65); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__66); +l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67 = _init_l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__67); l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1 = _init_l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1); l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2 = _init_l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2(); @@ -25228,206 +25228,206 @@ l_Lean_Elab_Term_Quotation_HeadInfo_Inhabited___closed__2 = _init_l_Lean_Elab_Te lean_mark_persistent(l_Lean_Elab_Term_Quotation_HeadInfo_Inhabited___closed__2); l_Lean_Elab_Term_Quotation_HeadInfo_Inhabited = _init_l_Lean_Elab_Term_Quotation_HeadInfo_Inhabited(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_HeadInfo_Inhabited); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10); -l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1(); -lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1); -l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2(); -lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__1); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__2); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__3); -l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___closed__4); -l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1); -l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2); -l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3); -l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__1); -l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__2); -l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__explodeHeadPat___closed__3); -l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1(); -lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1); -l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2(); -lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2); -l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3(); -lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37); -l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38 = _init_l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__1); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__2); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__3); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__4); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__5); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__6); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__7); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__8); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__9); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__10); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__12); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__13); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__14); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__15); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__16); -l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__1); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__3); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__5); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__6); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__7); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__8); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__9); +l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10); +l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1 = _init_l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1(); +lean_mark_persistent(l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__1); +l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2 = _init_l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2(); +lean_mark_persistent(l_Array_umapMAux___main___at___private_Lean_Elab_Quotation_4__getHeadInfo___spec__2___closed__2); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__1); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__2); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__1___closed__3); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__1); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__2); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__3); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__4); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__2___closed__5); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__1); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__2); +l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___lambda__3___closed__3); +l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__1 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__1); +l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__2 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__2); +l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__3 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__3); +l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__4 = _init_l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_4__getHeadInfo___closed__4); +l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1 = _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__1); +l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2 = _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__2); +l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3 = _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_5__explodeHeadPat___lambda__1___closed__3); +l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__1 = _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__1); +l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__2 = _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__2); +l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__3 = _init_l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_5__explodeHeadPat___closed__3); +l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1 = _init_l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1(); +lean_mark_persistent(l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__1); +l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2 = _init_l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2(); +lean_mark_persistent(l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__2); +l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3 = _init_l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3(); +lean_mark_persistent(l_List_head_x21___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__2___closed__3); +l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1 = _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__5___closed__1); +l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1 = _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__1); +l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2 = _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__2); +l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3 = _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__3); +l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4 = _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__4); +l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5 = _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__5); +l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6 = _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__6); +l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7 = _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__7); +l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8 = _init_l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_Quotation_6__compileStxMatch___main___spec__8___closed__8); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__1); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__2); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__3); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__4); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__5); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__6); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__7); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__8); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__9); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__10); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__11); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__12); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__13); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__14); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__15); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__16); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__17); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__18); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__19); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__20); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__21); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__22); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__23); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__24); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__25); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__26); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__27); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__28); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__29); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__30); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__31); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__32); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__33); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__34); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__35); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__36); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__37); +l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38 = _init_l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_6__compileStxMatch___main___closed__38); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__1 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__1); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__2 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__2); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__3); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__4); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__5 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__5); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__6 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__6); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__7 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__7); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__8 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__8); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__9 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__9); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__10 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__10); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__12 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__12); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__13); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__14 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__14); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__15 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__15); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__16 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__16); +l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17 = _init_l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17); l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__1 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__1(); lean_mark_persistent(l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__1); l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__2 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___closed__2(); @@ -25449,58 +25449,58 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___c res = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder___closed__1); -l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder = _init_l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__exprPlaceholder); -l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1 = _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1(); -lean_mark_persistent(l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__1); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__2); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__3); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__4); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5); -l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__6); +l___private_Lean_Elab_Quotation_9__exprPlaceholder___closed__1 = _init_l___private_Lean_Elab_Quotation_9__exprPlaceholder___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_9__exprPlaceholder___closed__1); +l___private_Lean_Elab_Quotation_9__exprPlaceholder = _init_l___private_Lean_Elab_Quotation_9__exprPlaceholder(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_9__exprPlaceholder); +l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1 = _init_l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1(); +lean_mark_persistent(l_List_foldl___main___at___private_Lean_Elab_Quotation_10__toPreterm___main___spec__2___closed__1); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__1); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__1___closed__2); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__1); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__2); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__3); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__2___closed__4); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__1); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__3___closed__2); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__1); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__2); +l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___lambda__4___closed__3); +l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__1 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__1); +l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__2 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__2); +l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__3); +l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__4 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__4); +l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5); +l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6 = _init_l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__6); l_Lean_Elab_Term_Quotation_oldParseExpr___closed__1 = _init_l_Lean_Elab_Term_Quotation_oldParseExpr___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_oldParseExpr___closed__1); -l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1); -l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2); -l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3); -l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4); -l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5); +l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1 = _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__1); +l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2 = _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__2); +l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3 = _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__3); +l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4 = _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__4); +l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5 = _init_l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_11__oldRunTermElabM___rarg___closed__5); l_Lean_Elab_Term_Quotation_oldExpandStxQuot___closed__1 = _init_l_Lean_Elab_Term_Quotation_oldExpandStxQuot___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_oldExpandStxQuot___closed__1); l_Lean_Elab_Term_Quotation_oldExpandMatchSyntax___closed__1 = _init_l_Lean_Elab_Term_Quotation_oldExpandMatchSyntax___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/ResolveName.c b/stage0/stdlib/Lean/Elab/ResolveName.c similarity index 77% rename from stage0/stdlib/Init/Lean/Elab/ResolveName.c rename to stage0/stdlib/Lean/Elab/ResolveName.c index c79c053a23..f8607b4e20 100644 --- a/stage0/stdlib/Init/Lean/Elab/ResolveName.c +++ b/stage0/stdlib/Lean/Elab/ResolveName.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.ResolveName -// Imports: Init.Lean.Hygiene Init.Lean.Modifiers Init.Lean.Elab.Alias +// Module: Lean.Elab.ResolveName +// Imports: Lean.Hygiene Lean.Modifiers Lean.Elab.Alias #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -16,20 +16,18 @@ extern "C" { lean_object* l_List_reverse___rarg(lean_object*); lean_object* l_Lean_Elab_resolveNamespaceUsingScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_extractMacroScopes(lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_1__resolveQualifiedName(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_4__resolveOpenDecls___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace(lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); uint8_t l_List_elem___main___at_Lean_NameHashSet_insert___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Elab_OpenDecl_HasToString___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_resolveGlobalName___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_resolveNamespaceUsingScope___main(lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_List_eraseDupsAux___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; extern lean_object* l_List_repr___rarg___closed__3; lean_object* l_Lean_Elab_rootNamespace; @@ -37,7 +35,7 @@ lean_object* l_Lean_Elab_resolveNamespaceUsingScope___main___boxed(lean_object*, uint8_t l_List_beq___main___at_Lean_Elab_OpenDecl_HasToString___spec__1(lean_object*, lean_object*); lean_object* l_List_toString___at_Lean_Elab_OpenDecl_HasToString___spec__2(lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace(lean_object*, lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Elab_OpenDecl_HasToString___spec__3(uint8_t, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__2; @@ -47,39 +45,41 @@ uint8_t l_Lean_Name_isAtomic(lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); extern lean_object* l_Lean_protectedExt; lean_object* l_Lean_Elab_resolveNamespaceUsingOpenDecls(lean_object*, lean_object*, lean_object*); -lean_object* l_List_eraseDups___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_removeRoot(lean_object*); lean_object* l_Lean_Elab_resolveNamespace___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_resolveNamespaceUsingScope___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getAliases(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_OpenDecl_Inhabited___closed__1; +lean_object* l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_replacePrefix___main(lean_object*, lean_object*, lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_4__resolveOpenDecls(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_4__resolveOpenDecls___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); +lean_object* l_List_eraseDups___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__1(lean_object*); lean_object* l_Lean_MacroScopesView_review(lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_4__resolveOpenDecls(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_3__resolveExact(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_1__resolveQualifiedName___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_rootNamespace___closed__1; -lean_object* l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_OpenDecl_HasToString___closed__2; lean_object* l_Lean_Elab_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_rootNamespace___closed__2; uint8_t l_Lean_TagDeclarationExtension_isTagged(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_OpenDecl_Inhabited; +lean_object* l___private_Lean_Elab_ResolveName_1__resolveQualifiedName(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_OpenDecl_HasToString(lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_3__resolveExact(lean_object*, lean_object*); lean_object* l_Lean_Elab_resolveNamespaceUsingOpenDecls___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_resolveNamespaceUsingOpenDecls___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_OpenDecl_HasToString___closed__1; extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_List_beq___main___at_Lean_Elab_OpenDecl_HasToString___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_ResolveName_1__resolveQualifiedName___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isNamespace(lean_object*, lean_object*); +lean_object* l_List_eraseDupsAux___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_resolveNamespace(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* _init_l_Lean_Elab_OpenDecl_Inhabited___closed__1() { _start: @@ -358,7 +358,7 @@ x_4 = l_Lean_Name_replacePrefix___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_ResolveName_1__resolveQualifiedName(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_ResolveName_1__resolveQualifiedName(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -440,16 +440,16 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Elab_ResolveName_1__resolveQualifiedName___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_ResolveName_1__resolveQualifiedName___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_ResolveName_1__resolveQualifiedName(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_ResolveName_1__resolveQualifiedName(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 1) @@ -458,7 +458,7 @@ lean_object* x_4; lean_object* x_5; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_2); lean_inc(x_1); -x_5 = l___private_Init_Lean_Elab_ResolveName_1__resolveQualifiedName(x_1, x_3, x_2); +x_5 = l___private_Lean_Elab_ResolveName_1__resolveQualifiedName(x_1, x_3, x_2); if (lean_obj_tag(x_5) == 0) { x_3 = x_4; @@ -481,33 +481,33 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_ResolveName_3__resolveExact(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_ResolveName_3__resolveExact(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -560,7 +560,7 @@ return x_13; } } } -lean_object* l___private_Init_Lean_Elab_ResolveName_4__resolveOpenDecls___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_ResolveName_4__resolveOpenDecls___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_3) == 0) @@ -592,7 +592,7 @@ if (x_9 == 0) lean_object* x_10; lean_object* x_11; lean_inc(x_2); lean_inc(x_1); -x_10 = l___private_Init_Lean_Elab_ResolveName_1__resolveQualifiedName(x_1, x_7, x_2); +x_10 = l___private_Lean_Elab_ResolveName_1__resolveQualifiedName(x_1, x_7, x_2); lean_dec(x_7); x_11 = l_List_append___rarg(x_10, x_4); x_3 = x_6; @@ -677,15 +677,15 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_ResolveName_4__resolveOpenDecls(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_ResolveName_4__resolveOpenDecls(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_ResolveName_4__resolveOpenDecls___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_ResolveName_4__resolveOpenDecls___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l_List_eraseDupsAux___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_eraseDupsAux___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -752,16 +752,16 @@ goto _start; } } } -lean_object* l_List_eraseDups___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__1(lean_object* x_1) { +lean_object* l_List_eraseDups___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_box(0); -x_3 = l_List_eraseDupsAux___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__2(x_1, x_2); +x_3 = l_List_eraseDupsAux___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__2(x_1, x_2); return x_3; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -784,7 +784,7 @@ lean_inc(x_1); x_7 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_7, 0, x_5); lean_ctor_set(x_7, 1, x_1); -x_8 = l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(x_1, x_6); +x_8 = l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(x_1, x_6); lean_ctor_set(x_2, 1, x_8); lean_ctor_set(x_2, 0, x_7); return x_2; @@ -801,7 +801,7 @@ lean_inc(x_1); x_11 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_1); -x_12 = l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(x_1, x_10); +x_12 = l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(x_1, x_10); x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -810,7 +810,7 @@ return x_13; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -833,7 +833,7 @@ lean_inc(x_1); x_7 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_7, 0, x_5); lean_ctor_set(x_7, 1, x_1); -x_8 = l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(x_1, x_6); +x_8 = l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(x_1, x_6); lean_ctor_set(x_2, 1, x_8); lean_ctor_set(x_2, 0, x_7); return x_2; @@ -850,7 +850,7 @@ lean_inc(x_1); x_11 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_1); -x_12 = l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(x_1, x_10); +x_12 = l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(x_1, x_10); x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -859,7 +859,7 @@ return x_13; } } } -lean_object* l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_5) == 1) @@ -883,13 +883,13 @@ lean_ctor_set(x_12, 3, x_11); x_13 = l_Lean_MacroScopesView_review(x_12); lean_inc(x_13); lean_inc(x_1); -x_14 = l___private_Init_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(x_1, x_13, x_2); +x_14 = l___private_Lean_Elab_ResolveName_2__resolveUsingNamespace___main(x_1, x_13, x_2); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_inc(x_13); lean_inc(x_1); -x_15 = l___private_Init_Lean_Elab_ResolveName_3__resolveExact(x_1, x_13); +x_15 = l___private_Lean_Elab_ResolveName_3__resolveExact(x_1, x_13); if (lean_obj_tag(x_15) == 0) { uint8_t x_16; lean_object* x_17; lean_object* x_18; @@ -901,7 +901,7 @@ if (x_16 == 0) lean_object* x_24; lean_object* x_25; lean_inc(x_3); lean_inc(x_1); -x_24 = l___private_Init_Lean_Elab_ResolveName_4__resolveOpenDecls___main(x_1, x_13, x_3, x_14); +x_24 = l___private_Lean_Elab_ResolveName_4__resolveOpenDecls___main(x_1, x_13, x_3, x_14); x_25 = l_List_append___rarg(x_17, x_24); x_18 = x_25; goto block_23; @@ -915,7 +915,7 @@ lean_ctor_set(x_26, 0, x_13); lean_ctor_set(x_26, 1, x_14); lean_inc(x_3); lean_inc(x_1); -x_27 = l___private_Init_Lean_Elab_ResolveName_4__resolveOpenDecls___main(x_1, x_13, x_3, x_26); +x_27 = l___private_Lean_Elab_ResolveName_4__resolveOpenDecls___main(x_1, x_13, x_3, x_26); x_28 = l_List_append___rarg(x_17, x_27); x_18 = x_28; goto block_23; @@ -939,8 +939,8 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_3); lean_dec(x_1); -x_21 = l_List_eraseDups___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__1(x_18); -x_22 = l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(x_6, x_21); +x_21 = l_List_eraseDups___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__1(x_18); +x_22 = l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__3(x_6, x_21); return x_22; } } @@ -974,8 +974,8 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_3); lean_dec(x_1); -x_33 = l_List_eraseDups___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__1(x_14); -x_34 = l_List_map___main___at___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(x_6, x_33); +x_33 = l_List_eraseDups___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__1(x_14); +x_34 = l_List_map___main___at___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___spec__4(x_6, x_33); return x_34; } } @@ -991,29 +991,29 @@ return x_35; } } } -lean_object* l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_2); return x_7; } } -lean_object* l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_2); return x_7; @@ -1027,7 +1027,7 @@ x_5 = l_Lean_extractMacroScopes(x_4); x_6 = lean_ctor_get(x_5, 0); lean_inc(x_6); x_7 = lean_box(0); -x_8 = l___private_Init_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(x_1, x_2, x_3, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_ResolveName_5__resolveGlobalNameAux___main(x_1, x_2, x_3, x_5, x_6, x_7); lean_dec(x_5); return x_8; } @@ -1242,21 +1242,21 @@ lean_dec(x_1); return x_5; } } -lean_object* initialize_Init_Lean_Hygiene(lean_object*); -lean_object* initialize_Init_Lean_Modifiers(lean_object*); -lean_object* initialize_Init_Lean_Elab_Alias(lean_object*); +lean_object* initialize_Lean_Hygiene(lean_object*); +lean_object* initialize_Lean_Modifiers(lean_object*); +lean_object* initialize_Lean_Elab_Alias(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_ResolveName(lean_object* w) { +lean_object* initialize_Lean_Elab_ResolveName(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Hygiene(lean_io_mk_world()); +res = initialize_Lean_Hygiene(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Modifiers(lean_io_mk_world()); +res = initialize_Lean_Modifiers(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Alias(lean_io_mk_world()); +res = initialize_Lean_Elab_Alias(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_OpenDecl_Inhabited___closed__1 = _init_l_Lean_Elab_OpenDecl_Inhabited___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/StrategyAttrs.c b/stage0/stdlib/Lean/Elab/StrategyAttrs.c similarity index 99% rename from stage0/stdlib/Init/Lean/Elab/StrategyAttrs.c rename to stage0/stdlib/Lean/Elab/StrategyAttrs.c index d74cd04b7d..0604fb2c2b 100644 --- a/stage0/stdlib/Init/Lean/Elab/StrategyAttrs.c +++ b/stage0/stdlib/Lean/Elab/StrategyAttrs.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.StrategyAttrs -// Imports: Init.Lean.Attributes +// Module: Lean.Elab.StrategyAttrs +// Imports: Lean.Attributes #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,7 +14,6 @@ extern "C" { #endif extern lean_object* l_Lean_Name_toString___closed__1; -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkElaboratorStrategyAttrs___spec__4(lean_object*, 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*); @@ -43,6 +42,7 @@ lean_object* l_RBNode_find___main___at_Lean_getElaboratorStrategy___spec__2___bo lean_object* l_Lean_elaboratorStrategyAttrs; lean_object* l_Lean_mkElaboratorStrategyAttrs___closed__21; lean_object* lean_nat_add(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_List_map___main___at_Lean_mkElaboratorStrategyAttrs___spec__8___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__3; lean_object* l_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); @@ -62,7 +62,6 @@ lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__1; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkElaboratorStrategyAttrs___spec__7(lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__2; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* lean_get_elaborator_strategy(lean_object*, lean_object*); lean_object* l_Lean_EnumAttributes_getValue___at_Lean_getElaboratorStrategy___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_getElaboratorStrategy___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -70,6 +69,7 @@ lean_object* l_Lean_mkElaboratorStrategyAttrs___closed__6; lean_object* l_RBNode_find___main___at_Lean_getElaboratorStrategy___spec__2(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__2; +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_registerEnumAttributes___at_Lean_mkElaboratorStrategyAttrs___spec__1___lambda__2(lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_mkElaboratorStrategyAttrs___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; @@ -459,7 +459,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -647,7 +647,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkElaboratorS _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -2030,13 +2030,13 @@ lean_dec(x_1); return x_4; } } -lean_object* initialize_Init_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_StrategyAttrs(lean_object* w) { +lean_object* initialize_Lean_Elab_StrategyAttrs(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_ElaboratorStrategy_inhabited = _init_l_Lean_ElaboratorStrategy_inhabited(); diff --git a/stage0/stdlib/Init/Lean/Elab/StructInst.c b/stage0/stdlib/Lean/Elab/StructInst.c similarity index 83% rename from stage0/stdlib/Init/Lean/Elab/StructInst.c rename to stage0/stdlib/Lean/Elab/StructInst.c index 15b894a56a..8265fb6ea4 100644 --- a/stage0/stdlib/Init/Lean/Elab/StructInst.c +++ b/stage0/stdlib/Lean/Elab/StructInst.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.StructInst -// Imports: Init.Lean.Util.FindExpr Init.Lean.Elab.App Init.Lean.Elab.Binders Init.Lean.Elab.Quotation +// Module: Lean.Elab.StructInst +// Imports: Lean.Util.FindExpr Lean.Elab.App Lean.Elab.Binders Lean.Elab.Quotation #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,111 +13,103 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_reverse___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__4; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_formatStruct___main(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3; lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFields(lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Position_Lean_HasFormat___spec__1(lean_object*); lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_12__mkFieldMap___closed__1; lean_object* l_List_forM___main___at_Lean_Elab_Term_StructInst_DefaultFields_step___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2; -lean_object* l_List_map___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__1(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +lean_object* l___private_Lean_Elab_StructInst_5__getStructName___closed__4; +extern lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__2___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_12__mkFieldMap(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_2__getStructSource___closed__3; extern lean_object* l_Lean_fieldIdxKind; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_List_tail_x21___rarg(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_2__getStructSource(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__26; -lean_object* l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__1; +lean_object* l___private_Lean_Elab_StructInst_18__addMissingFields(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7; lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM(lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_declareBuiltinParser___closed__8; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); -uint8_t l_AssocList_contains___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__4(lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5___boxed(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__4(lean_object*, lean_object*); +lean_object* l_AssocList_find_x3f___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_formatStruct___main___closed__4; extern lean_object* l_Lean_Meta_mkExpectedTypeHint___closed__1; lean_object* l_Lean_Elab_Term_mkFreshExprMVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); lean_object* l_HashMap_toList___rarg(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getHierarchyDepth___main___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); extern lean_object* l_Lean_nullKind; -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3; -lean_object* l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_23__mkCtorHeader(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4; +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_List_mapM___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_18__addMissingFields___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_joinSep___main___at_Lean_Elab_Term_StructInst_formatField___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValueAux_x3f___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_inferType(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2(lean_object*); -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_19__expandStruct(lean_object*, lean_object*, lean_object*); +lean_object* l_AssocList_find_x3f___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__2___boxed(lean_object*, lean_object*); lean_object* lean_expr_update_mdata(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); extern lean_object* l_Lean_List_format___rarg___closed__2; -lean_object* l_HashMap_toList___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__6___boxed(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5; +lean_object* l___private_Lean_Elab_StructInst_3__isModifyOp_x3f(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2(lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_StructInst_14__getFieldIdx___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForall(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Option_get_x21___rarg___closed__3; lean_object* l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__5; -lean_object* l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__10; -lean_object* l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__6; +lean_object* l_AssocList_foldlM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__7(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_hasToString; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst___closed__1; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_27__regTraceClasses(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__3; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__12; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__19; lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_List_foldl___main___at_Lean_Elab_Term_StructInst_DefaultFields_collectStructNames___main___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__20; -lean_object* l___private_Init_Lean_Elab_StructInst_13__isSimpleField_x3f(lean_object*); lean_object* lean_metavar_ctx_get_expr_assignment(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getFieldValue_x3f(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_markDefaultMissing(lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_List_forM___main___at_Lean_Elab_Term_StructInst_DefaultFields_step___main___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_find(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__5; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValueAux_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__3; lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___spec__1(size_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_10__expandParentFields(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; lean_object* l_List_append___rarg(lean_object*, lean_object*); -lean_object* l_mkHashMap___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__9(lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isApp(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_formatStruct___main___closed__5; lean_object* l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst(lean_object*); -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6; +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2; lean_object* l_Lean_Elab_Term_StructInst_FieldLHS_inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__23; -lean_object* l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_16__mkSubstructSource___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5; lean_object* l_ReaderT_Monad___rarg(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2; +lean_object* l_HashMap_toList___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__6(lean_object*); extern lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__2; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5; +lean_object* l_AssocList_replace___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_ref(lean_object*); lean_object* l_Lean_Elab_Term_getMVarDecl(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); @@ -125,226 +117,219 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_List_find_x3f___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_setFields(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2; +lean_object* l_AssocList_foldlM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__7___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__2; lean_object* l_List_map___main___rarg(lean_object*, lean_object*); lean_object* l_Nat_max(lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__1; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3; extern lean_object* l_Lean_formatKVMap___closed__1; extern lean_object* l_Lean_Name_inhabited; -lean_object* l___private_Init_Lean_Elab_StructInst_8__expandCompositeFields(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__3; extern lean_object* l_Lean_Expr_getAppArgs___closed__1; lean_object* l_Lean_Elab_Term_StructInst_formatField(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__1(lean_object*); -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__3(lean_object*); -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__2___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_8__expandCompositeFields___closed__1; lean_object* l_Lean_WHNF_unfoldDefinitionAux___at_Lean_Meta_unfoldDefinition_x3f___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3; extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_StructInst_Field_hasFormat___closed__1; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__11; +extern lean_object* l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; lean_object* l_Lean_Elab_Term_StructInst_formatStruct___main___closed__1; extern lean_object* l_Id_monad; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__13; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1; lean_object* l_Lean_Expr_appArg_x21(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValueAux_x3f(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1; +lean_object* l_List_map___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__2(lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_head_x21___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_25__elabStructInstAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__12; +lean_object* l___private_Lean_Elab_StructInst_9__expandNumLitFields(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefault___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_AssocList_contains___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__4___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__3; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_foldl___main___at_Lean_Elab_Term_StructInst_DefaultFields_getHierarchyDepth___main___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_6__toFieldLHS(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__21; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagate(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2; -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7; +lean_object* l___private_Lean_Elab_StructInst_18__addMissingFields___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_mkHashMap___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__9(lean_object*); +lean_object* l_AssocList_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__7(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_27__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__26; extern lean_object* l_Lean_mkAppStx___closed__8; +lean_object* l___private_Lean_Elab_StructInst_21__getForallBody(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Source_inhabited; lean_object* l_Lean_fmt___at_Lean_Level_LevelToFormat_toResult___main___spec__1(lean_object*); extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__7; uint8_t l_Lean_Environment_isProjectionFn(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_3__fromMetaState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1; lean_object* l_Lean_Elab_Term_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_collectStructNames(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Field_isSimple___rarg___boxed(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Format_sbracket___closed__2; -lean_object* l_HashMapImp_insert___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_13__isSimpleField_x3f___boxed(lean_object*); lean_object* l_Lean_Elab_Term_whnf(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_15__mkProjStx(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getOptions(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_FieldLHS_toSyntax___boxed(lean_object*, lean_object*); -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__7___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_FieldLHS_hasFormat(lean_object*); extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__4; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Source_isNone___boxed(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_inhabited; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__1; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_step___main___closed__2; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; extern lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_StructInst_Struct_structName(lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); uint8_t lean_metavar_ctx_is_expr_assigned(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValueAux_x3f___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__2; +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__17; -lean_object* l___private_Init_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__4; lean_object* l_Lean_Elab_Term_StructInst_isDefaultMissing_x3f___boxed(lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1; lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_22__propagateExpectedType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_mkProj(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getHierarchyDepth___main(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__8; lean_object* l_Lean_Elab_Term_StructInst_findField_x3f___lambda__1___boxed(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_FieldVal_toSyntax___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_15__mkProjStx(lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_StructInst_14__getFieldIdx___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_StructInst_14__getFieldIdx___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4; +lean_object* l_HashMapImp_moveEntries___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main___closed__2; -lean_object* l___private_Init_Lean_Elab_StructInst_18__addMissingFields___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_14__getFieldIdx(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__9; -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__3; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__27; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1; +lean_object* l___private_Lean_Elab_StructInst_24__elabStruct___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_formatStruct(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Field_isSimple(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_fields___boxed(lean_object*); lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_findDefaultMissing_x3f(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_FieldLHS_toSyntax(uint8_t, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__2; +lean_object* l___private_Lean_Elab_StructInst_22__propagateExpectedType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__3___boxed(lean_object*); lean_object* l_Lean_mkAnnotation(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__2; -lean_object* l___private_Init_Lean_Elab_StructInst_13__isSimpleField_x3f___boxed(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__7(lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2; -lean_object* l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__2(lean_object*); extern lean_object* l_Lean_formatEntry___closed__2; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValue_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__3; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkConst___closed__4; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_HashMapImp_insert___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__1(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Field_inhabited(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_22__propagateExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_instantiate_type_lparams(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__1; +lean_object* l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_StructInst_Field_toSyntax___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__20; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getFieldName___boxed(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getHierarchyDepth(lean_object*); +lean_object* l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__3(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_12__mkFieldMap___closed__1; size_t l_Lean_Name_hash(lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___main(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__28; lean_object* l_Lean_Elab_Term_StructInst_markDefaultMissing___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__15; -lean_object* l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__2; +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3; +lean_object* l___private_Lean_Elab_StructInst_7__mkStructView(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__24; +lean_object* l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_reduceProjOf_x3f(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__3; lean_object* l_Lean_Elab_Term_logTrace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_23__mkCtorHeader___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__1; lean_object* l_Array_iterateMAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_23__mkCtorHeader(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__10; +lean_object* l___private_Lean_Elab_StructInst_5__getStructName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_Lean_Syntax_prettyPrint(lean_object*); +lean_object* l_HashMapImp_expand___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__5(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_markDefaultMissing___closed__2; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__5; -lean_object* l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__2(lean_object*); +uint8_t l_AssocList_contains___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__4(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1; lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__2(lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__1(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__16; lean_object* l_Lean_getStructureFields(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__14; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__18; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__3(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___closed__2; lean_object* l_Lean_Elab_Term_StructInst_Struct_hasFormat___closed__1; +lean_object* l___private_Lean_Elab_StructInst_5__getStructName___closed__3; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_reduce(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6; lean_object* l_Lean_Elab_Term_StructInst_findField_x3f(lean_object*, lean_object*); extern lean_object* l_Lean_Options_empty; lean_object* lean_expr_dbg_to_string(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; lean_object* l_Lean_getPathToBaseStructure_x3f(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_12__mkFieldMap(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_modn(size_t, lean_object*); extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_findDefaultMissing_x3f___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_isRoundDone___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_StructInst_findField_x3f___lambda__1(lean_object*, lean_object*); extern lean_object* l_List_head_x21___rarg___closed__2; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_23__mkCtorHeader___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__3; lean_object* l_Lean_Elab_Term_StructInst_elabStructInst___closed__1; extern lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__2; extern lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; uint8_t l_Array_contains___at_Lean_findField_x3f___main___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__7; +lean_object* l___private_Lean_Elab_StructInst_8__expandCompositeFields(lean_object*); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__25; lean_object* l_List_redLength___main___rarg(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_10__expandParentFields(lean_object*, lean_object*, lean_object*); lean_object* l_mkHashMapImp___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__2; -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2; +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; uint8_t l_Lean_Elab_Term_StructInst_Field_isSimple___rarg(lean_object*); +lean_object* l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5___boxed(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_fields(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_reduce___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; uint8_t l_Lean_Expr_isAppOfArity___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__6; uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); -lean_object* l___private_Init_Lean_Elab_StructInst_7__mkStructView(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__1; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__18; +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; uint8_t l_Lean_Expr_isLambda(lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_structName___boxed(lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__5; extern lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_StructInst_2__getStructSource___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_setStructSourceSyntax(lean_object*, lean_object*); lean_object* lean_expr_update_proj(lean_object*, lean_object*); -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__2(lean_object*, lean_object*); lean_object* l_List_mapM___main___at_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValue_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_21__getForallBody(lean_object*, lean_object*); -lean_object* l_HashMapImp_expand___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__5(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashMap_toList___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__6(lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__3(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_26__expandStructInstExpectedType___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_findDefaultMissing_x3f___main(lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_mkSepStx(lean_object*, lean_object*); @@ -353,43 +338,43 @@ extern lean_object* l_Lean_Elab_Term_termElabAttribute; extern lean_object* l_Lean_Format_sbracket___closed__3; lean_object* l_List_map___main___at_Lean_Elab_Term_StructInst_formatStruct___main___spec__1(lean_object*); lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_9__expandNumLitFields(lean_object*, lean_object*, lean_object*); size_t l_USize_mod(size_t, size_t); lean_object* l_Lean_Elab_Term_StructInst_FieldLHS_inhabited; lean_object* l_Lean_Elab_Term_isDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_18__addMissingFields___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_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__28; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__15; +lean_object* l_HashMapImp_find_x3f___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_lparams(lean_object*); lean_object* l_Array_umapMAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_HasRepr___closed__1; lean_object* l_Lean_Elab_Term_StructInst_Field_hasToString; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3; lean_object* l_List_foldl___main___at_Lean_Elab_Term_StructInst_DefaultFields_getHierarchyDepth___main___spec__1(lean_object*, lean_object*); -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_step___main___closed__1; extern lean_object* l_Lean_Expr_FindImpl_initCache; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1; +lean_object* l___private_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_inhabited; size_t lean_ptr_addr(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main___closed__3; -lean_object* l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__2; lean_object* lean_instantiate_value_lparams(lean_object*, lean_object*); lean_object* l_Lean_isAnnotation_x3f(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__2; extern lean_object* l_PersistentArray_Stats_toString___closed__4; -lean_object* l___private_Init_Lean_Elab_StructInst_18__addMissingFields(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_formatField___closed__1; lean_object* l_Lean_Elab_Term_setMCtx(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkHole(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_5__getStructName___closed__5; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__4; lean_object* lean_environment_main_module(lean_object*); -lean_object* l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_24__elabStruct(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__22; uint8_t l_Lean_Expr_isMVar(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_22__propagateExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5; lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__1; lean_object* l_Lean_Meta_reduceProj_x3f(lean_object*, lean_object*, lean_object*, lean_object*); @@ -399,167 +384,182 @@ lean_object* l_Lean_mkApp(lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; lean_object* l_Lean_Elab_Term_StructInst_Struct_source___boxed(lean_object*); lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_formatField___closed__2; lean_object* l_Lean_Syntax_getArgs(lean_object*); +lean_object* l_HashMapImp_find_x3f___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__1(lean_object*, lean_object*); uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); -lean_object* l___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); -lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_Monad___rarg(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_step___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4; lean_object* l_Array_forMAux___main___at_Lean_Elab_Term_synthesizeAppInstMVars___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__14; +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1; +lean_object* l___private_Lean_Elab_StructInst_19__expandStruct(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getFieldName(lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1; -extern lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; +lean_object* l___private_Lean_Elab_StructInst_16__mkSubstructSource(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_ref___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__1(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__25; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_isRoundDone(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_lambdaTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isExprMVarAssigned(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at_Lean_Elab_Term_StructInst_Struct_modifyFields___spec__1(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_AssocList_contains___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__4___boxed(lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___boxed(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* l_Lean_getStructureCtor(lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_source(lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_StructInst_14__getFieldIdx___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_hasToString___closed__1; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_letIdDecl___closed__2; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_reduceProjOf_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_18__addMissingFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__10(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__9; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; lean_object* l_Lean_Elab_Term_whnfForall(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_17__groupFields(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_TraceState_Inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__16; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_26__expandStructInstExpectedType(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9; +lean_object* l___private_Lean_Elab_StructInst_2__getStructSource(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__6; +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PUnit_Inhabited; extern lean_object* l_Lean_mkOptionalNode___closed__1; +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1; lean_object* l_Lean_Elab_Term_StructInst_isDefaultMissing_x3f(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_elabStructInst___closed__3; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_findDefaultMissing_x3f___main___boxed(lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__5; -lean_object* l___private_Init_Lean_Elab_StructInst_21__getForallBody___main(lean_object*, lean_object*); -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2; +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__2(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); extern lean_object* l_Lean_Expr_Inhabited; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; +lean_object* l___private_Lean_Elab_StructInst_24__elabStruct(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isSubobjectField_x3f(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8; lean_object* lean_mk_array(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2; lean_object* l_Lean_Elab_Term_StructInst_Struct_inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__7; lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__24; uint8_t l_Lean_Elab_Term_StructInst_Source_isNone(lean_object*); lean_object* l_List_foldl___main___at_Lean_Elab_Term_StructInst_DefaultFields_collectStructNames___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__6; lean_object* l_Lean_Elab_Term_StructInst_Struct_hasFormat; lean_object* l_Lean_Elab_Term_mkFreshLevelMVar(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_arrayExpr_toMessageData___main___closed__2; +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_collectStructNames___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__21; +lean_object* l___private_Lean_Elab_StructInst_14__getFieldIdx(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_5__getStructName___closed__6; +lean_object* l___private_Lean_Elab_StructInst_18__addMissingFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__10(lean_object*, lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Elab_Term_StructInst_formatStruct___main___spec__1___closed__1; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__4(lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3; +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__6; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__13; +lean_object* l___private_Lean_Elab_StructInst_14__getFieldIdx___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Field_hasToString___closed__1; lean_object* l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_19__expandStruct___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefault(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_reduce___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +lean_object* l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5(lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_step(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2; lean_object* l_Lean_Elab_Term_StructInst_formatStruct___main___closed__3; -lean_object* l___private_Init_Lean_Elab_Term_3__fromMetaState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3; -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__22; -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__1(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__23; +lean_object* l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__1; +lean_object* l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__2(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_2__getStructSource___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_findDefaultMissing_x3f___main___lambda__1(lean_object*, lean_object*); -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__3___boxed(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Field_inhabited___closed__1; lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +lean_object* l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__3; +lean_object* l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__1; extern lean_object* l_System_FilePath_dirName___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_arrayToExpr___rarg___closed__2; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__8; lean_object* l_Lean_Elab_Term_StructInst_Field_hasFormat; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__7(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_6__toFieldLHS(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_26__expandStructInstExpectedType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Field_inhabited___closed__2; lean_object* l_Lean_Elab_Term_StructInst_throwFailedToElabField(lean_object*); uint8_t l_Lean_isStructureLike(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__2; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_collectStructNames___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_reduce___main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__2; lean_object* l_Lean_Elab_Term_StructInst_formatField___closed__4; lean_object* l_Lean_Elab_Term_isLocalTermId_x3f(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__2; +lean_object* l___private_Lean_Elab_StructInst_19__expandStruct___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_2__getStructSource___closed__1; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getFieldValue_x3f___lambda__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__19; -lean_object* l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__1; +lean_object* l___private_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Field_toSyntax(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_formatStruct___main___closed__2; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2; -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4; lean_object* l_Lean_mkConst(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__4; +lean_object* l___private_Lean_Elab_StructInst_5__getStructName___closed__2; +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__9; +lean_object* l___private_Lean_Elab_StructInst_21__getForallBody___main(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_FieldVal_toSyntax(lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5; lean_object* l_Lean_findField_x3f___main(lean_object*, lean_object*, lean_object*); lean_object* l_ExceptT_Monad___rarg___lambda__8___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_5__getStructName___closed__1; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_StructInst_DefaultFields_reduce___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__11; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4; +lean_object* l___private_Lean_Elab_StructInst_5__getStructName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_collectStructNames___boxed(lean_object*, lean_object*); lean_object* l_Lean_Name_components(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +lean_object* l_HashMap_toList___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__6___boxed(lean_object*); lean_object* l_Lean_Elab_Term_getMCtx___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashMapImp_moveEntries___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__6(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__2___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__4; +lean_object* l___private_Lean_Elab_StructInst_2__getStructSource___closed__2; extern lean_object* l_addParenHeuristic___closed__1; +lean_object* l___private_Lean_Elab_StructInst_3__isModifyOp_x3f___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_List_findSome_x3f___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_elabStructInst___closed__2; extern lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1; -lean_object* l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__5; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getHierarchyDepth___boxed(lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7; -lean_object* l_AssocList_replace___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__8(lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; lean_object* l_Lean_Elab_Term_StructInst_elabStructInst(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__17; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getFieldValue_x3f___boxed(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8; lean_object* l_Lean_Elab_Term_StructInst_formatField___closed__3; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_StructInst_26__expandStructInstExpectedType___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__27; lean_object* l_monadInhabited___rarg(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); -lean_object* _init_l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1() { +lean_object* l___private_Lean_Elab_StructInst_13__isSimpleField_x3f(lean_object*); +lean_object* _init_l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1() { _start: { lean_object* x_1; @@ -567,22 +567,22 @@ x_1 = lean_mk_string("src"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2() { +lean_object* _init_l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1; +x_1 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3() { +lean_object* _init_l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1; +x_1 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2; +x_3 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -590,17 +590,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4() { +lean_object* _init_l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1; +x_2 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; @@ -649,11 +649,11 @@ lean_inc(x_22); x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); lean_dec(x_21); -x_24 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4; +x_24 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4; x_25 = l_Lean_addMacroScope(x_22, x_24, x_19); x_26 = lean_box(0); x_27 = l_Lean_SourceInfo_inhabited___closed__1; -x_28 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3; +x_28 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3; x_29 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); @@ -661,7 +661,7 @@ lean_ctor_set(x_29, 2, x_25); lean_ctor_set(x_29, 3, x_26); x_30 = l_Array_empty___closed__1; x_31 = lean_array_push(x_30, x_29); -x_32 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_32 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_33 = lean_array_push(x_31, x_32); x_34 = l_Lean_mkTermIdFromIdent___closed__2; x_35 = lean_alloc_ctor(1, 2, 0); @@ -691,16 +691,16 @@ lean_ctor_set(x_45, 3, x_26); x_46 = lean_array_push(x_30, x_45); x_47 = lean_array_push(x_46, x_32); x_48 = lean_array_push(x_47, x_32); -x_49 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_49 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_50 = lean_array_push(x_48, x_49); x_51 = lean_array_push(x_50, x_13); x_52 = l_Lean_Parser_Term_letIdDecl___closed__2; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_54 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_55 = lean_array_push(x_54, x_53); -x_56 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_56 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_57 = lean_array_push(x_55, x_56); x_58 = lean_array_push(x_57, x_37); x_59 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -729,16 +729,16 @@ lean_ctor_set(x_65, 3, x_26); x_66 = lean_array_push(x_30, x_65); x_67 = lean_array_push(x_66, x_32); x_68 = lean_array_push(x_67, x_32); -x_69 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_69 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_70 = lean_array_push(x_68, x_69); x_71 = lean_array_push(x_70, x_13); x_72 = l_Lean_Parser_Term_letIdDecl___closed__2; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); -x_74 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_74 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_75 = lean_array_push(x_74, x_73); -x_76 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_76 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_77 = lean_array_push(x_75, x_76); x_78 = lean_array_push(x_77, x_37); x_79 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -849,11 +849,11 @@ lean_inc(x_112); x_113 = lean_ctor_get(x_111, 1); lean_inc(x_113); lean_dec(x_111); -x_114 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4; +x_114 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4; x_115 = l_Lean_addMacroScope(x_112, x_114, x_109); x_116 = lean_box(0); x_117 = l_Lean_SourceInfo_inhabited___closed__1; -x_118 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3; +x_118 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3; x_119 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_119, 0, x_117); lean_ctor_set(x_119, 1, x_118); @@ -861,7 +861,7 @@ lean_ctor_set(x_119, 2, x_115); lean_ctor_set(x_119, 3, x_116); x_120 = l_Array_empty___closed__1; x_121 = lean_array_push(x_120, x_119); -x_122 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_122 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_123 = lean_array_push(x_121, x_122); x_124 = l_Lean_mkTermIdFromIdent___closed__2; x_125 = lean_alloc_ctor(1, 2, 0); @@ -898,16 +898,16 @@ lean_ctor_set(x_136, 3, x_116); x_137 = lean_array_push(x_120, x_136); x_138 = lean_array_push(x_137, x_122); x_139 = lean_array_push(x_138, x_122); -x_140 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_140 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_141 = lean_array_push(x_139, x_140); x_142 = lean_array_push(x_141, x_103); x_143 = l_Lean_Parser_Term_letIdDecl___closed__2; x_144 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_144, 0, x_143); lean_ctor_set(x_144, 1, x_142); -x_145 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_145 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_146 = lean_array_push(x_145, x_144); -x_147 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_147 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_148 = lean_array_push(x_146, x_147); x_149 = lean_array_push(x_148, x_127); x_150 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -1076,11 +1076,11 @@ lean_inc(x_192); x_193 = lean_ctor_get(x_191, 1); lean_inc(x_193); lean_dec(x_191); -x_194 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4; +x_194 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4; x_195 = l_Lean_addMacroScope(x_192, x_194, x_189); x_196 = lean_box(0); x_197 = l_Lean_SourceInfo_inhabited___closed__1; -x_198 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3; +x_198 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3; x_199 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_199, 0, x_197); lean_ctor_set(x_199, 1, x_198); @@ -1088,7 +1088,7 @@ lean_ctor_set(x_199, 2, x_195); lean_ctor_set(x_199, 3, x_196); x_200 = l_Array_empty___closed__1; x_201 = lean_array_push(x_200, x_199); -x_202 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_202 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_203 = lean_array_push(x_201, x_202); x_204 = l_Lean_mkTermIdFromIdent___closed__2; x_205 = lean_alloc_ctor(1, 2, 0); @@ -1125,16 +1125,16 @@ lean_ctor_set(x_216, 3, x_196); x_217 = lean_array_push(x_200, x_216); x_218 = lean_array_push(x_217, x_202); x_219 = lean_array_push(x_218, x_202); -x_220 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_220 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_221 = lean_array_push(x_219, x_220); x_222 = lean_array_push(x_221, x_183); x_223 = l_Lean_Parser_Term_letIdDecl___closed__2; x_224 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_224, 0, x_223); lean_ctor_set(x_224, 1, x_222); -x_225 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; +x_225 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__2; x_226 = lean_array_push(x_225, x_224); -x_227 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; +x_227 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__10; x_228 = lean_array_push(x_226, x_227); x_229 = lean_array_push(x_228, x_207); x_230 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -1275,7 +1275,7 @@ return x_19; } } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_2__getStructSource___closed__1() { _start: { lean_object* x_1; @@ -1283,27 +1283,27 @@ x_1 = lean_mk_string("invalid structure instance `with` and `..` cannot be used return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__2() { +lean_object* _init_l___private_Lean_Elab_StructInst_2__getStructSource___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__1; +x_1 = l___private_Lean_Elab_StructInst_2__getStructSource___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__3() { +lean_object* _init_l___private_Lean_Elab_StructInst_2__getStructSource___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__2; +x_1 = l___private_Lean_Elab_StructInst_2__getStructSource___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_StructInst_2__getStructSource(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_2__getStructSource(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; @@ -1321,7 +1321,7 @@ if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_dec(x_5); -x_10 = l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__3; +x_10 = l___private_Lean_Elab_StructInst_2__getStructSource___closed__3; x_11 = l_Lean_Elab_Term_throwError___rarg(x_1, x_10, x_2, x_3); return x_11; } @@ -1341,7 +1341,7 @@ lean_dec(x_5); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_18 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_19 = l_unreachable_x21___rarg(x_18); x_20 = lean_apply_2(x_19, x_2, x_17); return x_20; @@ -1414,16 +1414,16 @@ return x_33; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_2__getStructSource___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_2__getStructSource___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_StructInst_2__getStructSource(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_StructInst_2__getStructSource(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1() { +lean_object* _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1() { _start: { lean_object* x_1; @@ -1431,27 +1431,27 @@ x_1 = lean_mk_string("invalid {...} notation, can't mix field and `[..]` at a gi return x_1; } } -lean_object* _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2() { +lean_object* _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1; +x_1 = l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3() { +lean_object* _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2; +x_1 = l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4() { +lean_object* _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4() { _start: { lean_object* x_1; @@ -1459,27 +1459,27 @@ x_1 = lean_mk_string("invalid {...} notation, at most one `[..]` at a given leve return x_1; } } -lean_object* _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5() { +lean_object* _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4; +x_1 = l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6() { +lean_object* _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5; +x_1 = l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_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) { +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_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: { lean_object* x_7; uint8_t x_8; @@ -1541,7 +1541,7 @@ else lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_dec(x_4); lean_dec(x_3); -x_24 = l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3; +x_24 = l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3; x_25 = l_Lean_Elab_Term_throwError___rarg(x_10, x_24, x_5, x_6); lean_dec(x_10); x_26 = !lean_is_exclusive(x_25); @@ -1591,7 +1591,7 @@ lean_dec(x_34); if (x_35 == 0) { lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_36 = l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3; +x_36 = l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3; x_37 = l_Lean_Elab_Term_throwError___rarg(x_10, x_36, x_5, x_6); lean_dec(x_10); x_38 = !lean_is_exclusive(x_37); @@ -1616,7 +1616,7 @@ return x_41; else { lean_object* x_42; lean_object* x_43; uint8_t x_44; -x_42 = l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6; +x_42 = l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6; x_43 = l_Lean_Elab_Term_throwError___rarg(x_10, x_42, x_5, x_6); lean_dec(x_10); x_44 = !lean_is_exclusive(x_43); @@ -1643,7 +1643,7 @@ return x_47; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_3__isModifyOp_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -1653,7 +1653,7 @@ x_6 = l_Lean_Syntax_getArgs(x_5); lean_dec(x_5); x_7 = lean_box(0); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1(x_4, x_6, x_8, x_7, x_2, x_3); +x_9 = l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1(x_4, x_6, x_8, x_7, x_2, x_3); lean_dec(x_6); if (lean_obj_tag(x_9) == 0) { @@ -1770,26 +1770,26 @@ return x_33; } } } -lean_object* l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_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) { +lean_object* l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_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_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_3__isModifyOp_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_StructInst_3__isModifyOp_x3f(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__1() { _start: { lean_object* x_1; @@ -1797,17 +1797,17 @@ x_1 = lean_mk_string("struct"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__2() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; -x_2 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__3() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3() { _start: { lean_object* x_1; @@ -1815,17 +1815,17 @@ x_1 = lean_mk_string("modifyOp"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__4() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__2; -x_2 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__3; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__2; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__5() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__5() { _start: { lean_object* x_1; @@ -1833,22 +1833,22 @@ x_1 = lean_mk_string("s"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__6() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__5; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__5; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__7() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__5; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__6; +x_3 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__6; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1856,17 +1856,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__8() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__5; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__9() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1878,22 +1878,22 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__10() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__3; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__11() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__3; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__10; +x_3 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1901,66 +1901,66 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__12() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___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_Lean_Elab_StructInst_4__elabModifyOp___closed__3; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__13() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_arrayToExpr___rarg___closed__2; -x_2 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__3; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__14() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__13; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__13; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__15() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__14; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__16() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; +x_1 = l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__17() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; +x_1 = l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__16; +x_3 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__16; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1968,7 +1968,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__18() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__18() { _start: { lean_object* x_1; @@ -1976,27 +1976,27 @@ x_1 = lean_mk_string("\n===>\n"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__19() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__19() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__18; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__18; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__20() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__19; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__19; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__21() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__21() { _start: { lean_object* x_1; @@ -2004,51 +2004,51 @@ x_1 = lean_mk_string("\nval: "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__22() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__21; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__21; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__23() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__22; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__22; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__24() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__13; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__13; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__25() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__24; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__24; 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* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__26() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__26() { _start: { lean_object* x_1; @@ -2056,27 +2056,27 @@ x_1 = lean_mk_string("\nSource: "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__27() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__27() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__26; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__26; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__28() { +lean_object* _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__28() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__27; +x_1 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__27; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_StructInst_4__elabModifyOp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_StructInst_4__elabModifyOp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; uint8_t x_11; @@ -2106,7 +2106,7 @@ lean_inc(x_295); x_296 = lean_ctor_get(x_10, 1); lean_inc(x_296); lean_dec(x_10); -x_297 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__4; +x_297 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__4; x_298 = l_Lean_checkTraceOption(x_295, x_297); lean_dec(x_295); if (x_298 == 0) @@ -2120,7 +2120,7 @@ lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_inc(x_2); x_299 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_299, 0, x_2); -x_300 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__28; +x_300 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__28; x_301 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_301, 0, x_299); lean_ctor_set(x_301, 1, x_300); @@ -2155,11 +2155,11 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__8; +x_19 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__8; x_20 = l_Lean_addMacroScope(x_17, x_19, x_14); x_21 = lean_box(0); x_22 = l_Lean_SourceInfo_inhabited___closed__1; -x_23 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__7; +x_23 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__7; x_24 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); @@ -2167,7 +2167,7 @@ lean_ctor_set(x_24, 2, x_20); lean_ctor_set(x_24, 3, x_21); x_25 = l_Array_empty___closed__1; x_26 = lean_array_push(x_25, x_24); -x_27 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_27 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_28 = lean_array_push(x_26, x_27); x_29 = l_Lean_mkTermIdFromIdent___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); @@ -2299,7 +2299,7 @@ lean_inc(x_154); x_155 = lean_ctor_get(x_44, 1); lean_inc(x_155); lean_dec(x_44); -x_156 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__4; +x_156 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__4; x_157 = l_Lean_checkTraceOption(x_154, x_156); lean_dec(x_154); if (x_157 == 0) @@ -2313,7 +2313,7 @@ lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_inc(x_1); x_158 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_158, 0, x_1); -x_159 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__23; +x_159 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__23; x_160 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_160, 0, x_158); lean_ctor_set(x_160, 1, x_159); @@ -2347,14 +2347,14 @@ x_61 = lean_ctor_get(x_59, 1); lean_inc(x_61); lean_dec(x_59); x_62 = lean_array_push(x_25, x_43); -x_63 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__9; +x_63 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__9; x_64 = lean_array_push(x_62, x_63); -x_65 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__12; +x_65 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__12; lean_inc(x_57); lean_inc(x_60); x_66 = l_Lean_addMacroScope(x_60, x_65, x_57); -x_67 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__11; -x_68 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__15; +x_67 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__11; +x_68 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__15; x_69 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_69, 0, x_22); lean_ctor_set(x_69, 1, x_67); @@ -2366,22 +2366,22 @@ x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); x_73 = lean_array_push(x_25, x_72); -x_74 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; +x_74 = l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; lean_inc(x_57); lean_inc(x_60); x_75 = l_Lean_addMacroScope(x_60, x_74, x_57); -x_76 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__17; +x_76 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__17; x_77 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_77, 0, x_22); lean_ctor_set(x_77, 1, x_76); lean_ctor_set(x_77, 2, x_75); lean_ctor_set(x_77, 3, x_21); -x_78 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_78 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_79 = lean_array_push(x_78, x_77); -x_80 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_80 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_81 = lean_array_push(x_79, x_80); x_82 = lean_array_push(x_81, x_42); -x_83 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_83 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_84 = lean_array_push(x_82, x_83); x_85 = l_Lean_Parser_Term_namedArgument___elambda__1___closed__2; x_86 = lean_alloc_ctor(1, 2, 0); @@ -2439,7 +2439,7 @@ lean_inc(x_142); x_143 = lean_ctor_get(x_141, 1); lean_inc(x_143); lean_dec(x_141); -x_144 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__4; +x_144 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__4; x_145 = l_Lean_checkTraceOption(x_142, x_144); lean_dec(x_142); if (x_145 == 0) @@ -2453,7 +2453,7 @@ lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_inc(x_1); x_146 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_146, 0, x_1); -x_147 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__20; +x_147 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__20; x_148 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_148, 0, x_146); lean_ctor_set(x_148, 1, x_147); @@ -2575,16 +2575,16 @@ lean_inc(x_195); lean_dec(x_193); x_196 = l_Array_empty___closed__1; x_197 = lean_array_push(x_196, x_189); -x_198 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__9; +x_198 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__9; x_199 = lean_array_push(x_197, x_198); -x_200 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__12; +x_200 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__12; lean_inc(x_191); lean_inc(x_194); x_201 = l_Lean_addMacroScope(x_194, x_200, x_191); x_202 = lean_box(0); x_203 = l_Lean_SourceInfo_inhabited___closed__1; -x_204 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__11; -x_205 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__25; +x_204 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__11; +x_205 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__25; x_206 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_206, 0, x_203); lean_ctor_set(x_206, 1, x_204); @@ -2596,38 +2596,38 @@ x_209 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_209, 0, x_208); lean_ctor_set(x_209, 1, x_207); x_210 = lean_array_push(x_196, x_209); -x_211 = l___private_Init_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; +x_211 = l___private_Lean_Elab_App_18__elabAppLValsAux___main___closed__2; lean_inc(x_191); lean_inc(x_194); x_212 = l_Lean_addMacroScope(x_194, x_211, x_191); -x_213 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__17; +x_213 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__17; x_214 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_214, 0, x_203); lean_ctor_set(x_214, 1, x_213); lean_ctor_set(x_214, 2, x_212); lean_ctor_set(x_214, 3, x_202); -x_215 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_215 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_216 = lean_array_push(x_215, x_214); -x_217 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_217 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_218 = lean_array_push(x_216, x_217); x_219 = lean_array_push(x_218, x_188); -x_220 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_220 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_221 = lean_array_push(x_219, x_220); x_222 = l_Lean_Parser_Term_namedArgument___elambda__1___closed__2; x_223 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_223, 0, x_222); lean_ctor_set(x_223, 1, x_221); x_224 = lean_array_push(x_196, x_223); -x_225 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__8; +x_225 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__8; x_226 = l_Lean_addMacroScope(x_194, x_225, x_191); -x_227 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__7; +x_227 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__7; x_228 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_228, 0, x_203); lean_ctor_set(x_228, 1, x_227); lean_ctor_set(x_228, 2, x_226); lean_ctor_set(x_228, 3, x_202); x_229 = lean_array_push(x_196, x_228); -x_230 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_230 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_231 = lean_array_push(x_229, x_230); x_232 = l_Lean_mkTermIdFromIdent___closed__2; x_233 = lean_alloc_ctor(1, 2, 0); @@ -2673,7 +2673,7 @@ lean_inc(x_283); x_284 = lean_ctor_get(x_282, 1); lean_inc(x_284); lean_dec(x_282); -x_285 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__4; +x_285 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__4; x_286 = l_Lean_checkTraceOption(x_283, x_285); lean_dec(x_283); if (x_286 == 0) @@ -2687,7 +2687,7 @@ lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_inc(x_1); x_287 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_287, 0, x_1); -x_288 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__20; +x_288 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__20; x_289 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_289, 0, x_287); lean_ctor_set(x_289, 1, x_288); @@ -2783,7 +2783,7 @@ return x_280; } } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__1() { _start: { lean_object* x_1; @@ -2791,27 +2791,27 @@ x_1 = lean_mk_string("invalid {...} notation, expected type is not of the form ( return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__2() { +lean_object* _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__1; +x_1 = l___private_Lean_Elab_StructInst_5__getStructName___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__3() { +lean_object* _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__2; +x_1 = l___private_Lean_Elab_StructInst_5__getStructName___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__4() { +lean_object* _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__4() { _start: { lean_object* x_1; @@ -2819,27 +2819,27 @@ x_1 = lean_mk_string("invalid {...} notation, source type is not of the form (C return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__5() { +lean_object* _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__4; +x_1 = l___private_Lean_Elab_StructInst_5__getStructName___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6() { +lean_object* _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__5; +x_1 = l___private_Lean_Elab_StructInst_5__getStructName___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_StructInst_5__getStructName(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; @@ -2917,7 +2917,7 @@ lean_dec(x_36); x_37 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_37, 0, x_29); x_38 = l_Lean_indentExpr(x_37); -x_39 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_39 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_40 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -2959,7 +2959,7 @@ lean_dec(x_46); x_47 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_47, 0, x_29); x_48 = l_Lean_indentExpr(x_47); -x_49 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_49 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_50 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -3142,7 +3142,7 @@ lean_dec(x_94); x_95 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_95, 0, x_87); x_96 = l_Lean_indentExpr(x_95); -x_97 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_97 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_98 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); @@ -3184,7 +3184,7 @@ lean_dec(x_104); x_105 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_105, 0, x_87); x_106 = l_Lean_indentExpr(x_105); -x_107 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_107 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_108 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); @@ -3346,7 +3346,7 @@ lean_dec(x_139); x_140 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_140, 0, x_132); x_141 = l_Lean_indentExpr(x_140); -x_142 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_142 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_143 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_143, 0, x_142); lean_ctor_set(x_143, 1, x_141); @@ -3388,7 +3388,7 @@ lean_dec(x_149); x_150 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_150, 0, x_132); x_151 = l_Lean_indentExpr(x_150); -x_152 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_152 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_153 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); @@ -3550,7 +3550,7 @@ lean_dec(x_184); x_185 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_185, 0, x_177); x_186 = l_Lean_indentExpr(x_185); -x_187 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_187 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_188 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_188, 0, x_187); lean_ctor_set(x_188, 1, x_186); @@ -3592,7 +3592,7 @@ lean_dec(x_194); x_195 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_195, 0, x_177); x_196 = l_Lean_indentExpr(x_195); -x_197 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_197 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_198 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_198, 0, x_197); lean_ctor_set(x_198, 1, x_196); @@ -3754,7 +3754,7 @@ lean_dec(x_229); x_230 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_230, 0, x_222); x_231 = l_Lean_indentExpr(x_230); -x_232 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_232 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_233 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_233, 0, x_232); lean_ctor_set(x_233, 1, x_231); @@ -3796,7 +3796,7 @@ lean_dec(x_239); x_240 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_240, 0, x_222); x_241 = l_Lean_indentExpr(x_240); -x_242 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_242 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_243 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_243, 0, x_242); lean_ctor_set(x_243, 1, x_241); @@ -3970,7 +3970,7 @@ lean_dec(x_275); x_276 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_276, 0, x_268); x_277 = l_Lean_indentExpr(x_276); -x_278 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_278 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_279 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_279, 0, x_278); lean_ctor_set(x_279, 1, x_277); @@ -4012,7 +4012,7 @@ lean_dec(x_285); x_286 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_286, 0, x_268); x_287 = l_Lean_indentExpr(x_286); -x_288 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_288 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_289 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_289, 0, x_288); lean_ctor_set(x_289, 1, x_287); @@ -4174,7 +4174,7 @@ lean_dec(x_320); x_321 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_321, 0, x_313); x_322 = l_Lean_indentExpr(x_321); -x_323 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_323 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_324 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_324, 0, x_323); lean_ctor_set(x_324, 1, x_322); @@ -4216,7 +4216,7 @@ lean_dec(x_330); x_331 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_331, 0, x_313); x_332 = l_Lean_indentExpr(x_331); -x_333 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_333 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_334 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_334, 0, x_333); lean_ctor_set(x_334, 1, x_332); @@ -4378,7 +4378,7 @@ lean_dec(x_365); x_366 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_366, 0, x_358); x_367 = l_Lean_indentExpr(x_366); -x_368 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_368 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_369 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_369, 0, x_368); lean_ctor_set(x_369, 1, x_367); @@ -4420,7 +4420,7 @@ lean_dec(x_375); x_376 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_376, 0, x_358); x_377 = l_Lean_indentExpr(x_376); -x_378 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_378 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_379 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_379, 0, x_378); lean_ctor_set(x_379, 1, x_377); @@ -4582,7 +4582,7 @@ lean_dec(x_410); x_411 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_411, 0, x_403); x_412 = l_Lean_indentExpr(x_411); -x_413 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_413 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_414 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_414, 0, x_413); lean_ctor_set(x_414, 1, x_412); @@ -4624,7 +4624,7 @@ lean_dec(x_420); x_421 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_421, 0, x_403); x_422 = l_Lean_indentExpr(x_421); -x_423 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_423 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_424 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_424, 0, x_423); lean_ctor_set(x_424, 1, x_422); @@ -4786,7 +4786,7 @@ lean_dec(x_455); x_456 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_456, 0, x_448); x_457 = l_Lean_indentExpr(x_456); -x_458 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_458 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_459 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_459, 0, x_458); lean_ctor_set(x_459, 1, x_457); @@ -4828,7 +4828,7 @@ lean_dec(x_465); x_466 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_466, 0, x_448); x_467 = l_Lean_indentExpr(x_466); -x_468 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_468 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_469 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_469, 0, x_468); lean_ctor_set(x_469, 1, x_467); @@ -4990,7 +4990,7 @@ lean_dec(x_500); x_501 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_501, 0, x_493); x_502 = l_Lean_indentExpr(x_501); -x_503 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_503 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_504 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_504, 0, x_503); lean_ctor_set(x_504, 1, x_502); @@ -5032,7 +5032,7 @@ lean_dec(x_510); x_511 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_511, 0, x_493); x_512 = l_Lean_indentExpr(x_511); -x_513 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_513 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_514 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_514, 0, x_513); lean_ctor_set(x_514, 1, x_512); @@ -5194,7 +5194,7 @@ lean_dec(x_545); x_546 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_546, 0, x_538); x_547 = l_Lean_indentExpr(x_546); -x_548 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_548 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_549 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_549, 0, x_548); lean_ctor_set(x_549, 1, x_547); @@ -5236,7 +5236,7 @@ lean_dec(x_555); x_556 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_556, 0, x_538); x_557 = l_Lean_indentExpr(x_556); -x_558 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_558 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_559 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_559, 0, x_558); lean_ctor_set(x_559, 1, x_557); @@ -5398,7 +5398,7 @@ lean_dec(x_590); x_591 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_591, 0, x_583); x_592 = l_Lean_indentExpr(x_591); -x_593 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_593 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_594 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_594, 0, x_593); lean_ctor_set(x_594, 1, x_592); @@ -5440,7 +5440,7 @@ lean_dec(x_600); x_601 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_601, 0, x_583); x_602 = l_Lean_indentExpr(x_601); -x_603 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_603 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_604 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_604, 0, x_603); lean_ctor_set(x_604, 1, x_602); @@ -5540,7 +5540,7 @@ lean_dec(x_74); x_75 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_75, 0, x_69); x_76 = l_Lean_indentExpr(x_75); -x_77 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__3; +x_77 = l___private_Lean_Elab_StructInst_5__getStructName___closed__3; x_78 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); @@ -5637,7 +5637,7 @@ lean_dec(x_644); x_645 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_645, 0, x_638); x_646 = l_Lean_indentExpr(x_645); -x_647 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_647 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_648 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_648, 0, x_647); lean_ctor_set(x_648, 1, x_646); @@ -5812,7 +5812,7 @@ lean_dec(x_678); x_679 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_679, 0, x_672); x_680 = l_Lean_indentExpr(x_679); -x_681 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_681 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_682 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_682, 0, x_681); lean_ctor_set(x_682, 1, x_680); @@ -5987,7 +5987,7 @@ lean_dec(x_712); x_713 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_713, 0, x_706); x_714 = l_Lean_indentExpr(x_713); -x_715 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_715 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_716 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_716, 0, x_715); lean_ctor_set(x_716, 1, x_714); @@ -6162,7 +6162,7 @@ lean_dec(x_746); x_747 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_747, 0, x_740); x_748 = l_Lean_indentExpr(x_747); -x_749 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_749 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_750 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_750, 0, x_749); lean_ctor_set(x_750, 1, x_748); @@ -6351,7 +6351,7 @@ lean_dec(x_782); x_783 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_783, 0, x_776); x_784 = l_Lean_indentExpr(x_783); -x_785 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_785 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_786 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_786, 0, x_785); lean_ctor_set(x_786, 1, x_784); @@ -6526,7 +6526,7 @@ lean_dec(x_816); x_817 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_817, 0, x_810); x_818 = l_Lean_indentExpr(x_817); -x_819 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_819 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_820 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_820, 0, x_819); lean_ctor_set(x_820, 1, x_818); @@ -6701,7 +6701,7 @@ lean_dec(x_850); x_851 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_851, 0, x_844); x_852 = l_Lean_indentExpr(x_851); -x_853 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_853 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_854 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_854, 0, x_853); lean_ctor_set(x_854, 1, x_852); @@ -6876,7 +6876,7 @@ lean_dec(x_884); x_885 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_885, 0, x_878); x_886 = l_Lean_indentExpr(x_885); -x_887 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_887 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_888 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_888, 0, x_887); lean_ctor_set(x_888, 1, x_886); @@ -7051,7 +7051,7 @@ lean_dec(x_918); x_919 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_919, 0, x_912); x_920 = l_Lean_indentExpr(x_919); -x_921 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_921 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_922 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_922, 0, x_921); lean_ctor_set(x_922, 1, x_920); @@ -7226,7 +7226,7 @@ lean_dec(x_952); x_953 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_953, 0, x_946); x_954 = l_Lean_indentExpr(x_953); -x_955 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_955 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_956 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_956, 0, x_955); lean_ctor_set(x_956, 1, x_954); @@ -7401,7 +7401,7 @@ lean_dec(x_986); x_987 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_987, 0, x_980); x_988 = l_Lean_indentExpr(x_987); -x_989 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_989 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_990 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_990, 0, x_989); lean_ctor_set(x_990, 1, x_988); @@ -7576,7 +7576,7 @@ lean_dec(x_1020); x_1021 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1021, 0, x_1014); x_1022 = l_Lean_indentExpr(x_1021); -x_1023 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6; +x_1023 = l___private_Lean_Elab_StructInst_5__getStructName___closed__6; x_1024 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_1024, 0, x_1023); lean_ctor_set(x_1024, 1, x_1022); @@ -7681,7 +7681,7 @@ lean_dec(x_625); x_626 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_626, 0, x_69); x_627 = l_Lean_indentExpr(x_626); -x_628 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__3; +x_628 = l___private_Lean_Elab_StructInst_5__getStructName___closed__3; x_629 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_629, 0, x_628); lean_ctor_set(x_629, 1, x_627); @@ -7728,7 +7728,7 @@ x_11 = lean_panic_fn(x_9, x_10); x_12 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_12, 0, x_11); x_13 = l_Lean_indentExpr(x_12); -x_14 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__3; +x_14 = l___private_Lean_Elab_StructInst_5__getStructName___closed__3; x_15 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_13); @@ -7744,7 +7744,7 @@ lean_dec(x_2); x_18 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_18, 0, x_17); x_19 = l_Lean_indentExpr(x_18); -x_20 = l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__3; +x_20 = l___private_Lean_Elab_StructInst_5__getStructName___closed__3; x_21 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -7780,11 +7780,11 @@ return x_1050; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_5__getStructName___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_StructInst_5__getStructName___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_StructInst_5__getStructName(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_StructInst_5__getStructName(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } @@ -8379,7 +8379,7 @@ lean_inc(x_3); lean_dec(x_1); x_4 = l_List_map___main___at_Lean_Elab_Term_StructInst_formatStruct___main___spec__1(x_2); x_5 = l_Lean_formatKVMap___closed__1; -x_6 = l_Lean_Format_joinSep___main___at___private_Init_Lean_Data_Trie_6__toStringAux___main___spec__1(x_4, x_5); +x_6 = l_Lean_Format_joinSep___main___at___private_Lean_Data_Trie_6__toStringAux___main___spec__1(x_4, x_5); lean_dec(x_4); switch (lean_obj_tag(x_3)) { case 0: @@ -8735,7 +8735,7 @@ return x_25; } } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__1() { _start: { lean_object* x_1; @@ -8743,17 +8743,17 @@ x_1 = lean_mk_string("unexpected structure syntax"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__2() { +lean_object* _init_l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__1; +x_1 = l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_StructInst_6__toFieldLHS(lean_object* x_1) { +lean_object* l___private_Lean_Elab_StructInst_6__toFieldLHS(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -8780,7 +8780,7 @@ if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_dec(x_1); -x_10 = l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__2; +x_10 = l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__2; return x_10; } else @@ -8825,7 +8825,7 @@ if (lean_obj_tag(x_21) == 0) { lean_object* x_22; lean_dec(x_18); -x_22 = l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__2; +x_22 = l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__2; return x_22; } else @@ -8870,7 +8870,7 @@ return x_32; } } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_filterAux___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -8936,7 +8936,7 @@ goto _start; } } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -8946,13 +8946,13 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2(lean_object* x_1) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1; +x_2 = l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1; return x_2; } else @@ -8964,7 +8964,7 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); -x_6 = l___private_Init_Lean_Elab_StructInst_6__toFieldLHS(x_4); +x_6 = l___private_Lean_Elab_StructInst_6__toFieldLHS(x_4); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -8992,7 +8992,7 @@ lean_object* x_10; lean_object* x_11; x_10 = lean_ctor_get(x_6, 0); lean_inc(x_10); lean_dec(x_6); -x_11 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2(x_5); +x_11 = l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2(x_5); if (lean_obj_tag(x_11) == 0) { uint8_t x_12; @@ -9050,7 +9050,7 @@ x_20 = lean_ctor_get(x_1, 1); lean_inc(x_20); lean_inc(x_19); lean_dec(x_1); -x_21 = l___private_Init_Lean_Elab_StructInst_6__toFieldLHS(x_19); +x_21 = l___private_Lean_Elab_StructInst_6__toFieldLHS(x_19); if (lean_obj_tag(x_21) == 0) { lean_object* x_22; lean_object* x_23; lean_object* x_24; @@ -9078,7 +9078,7 @@ lean_object* x_25; lean_object* x_26; x_25 = lean_ctor_get(x_21, 0); lean_inc(x_25); lean_dec(x_21); -x_26 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2(x_20); +x_26 = l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2(x_20); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; @@ -9128,13 +9128,13 @@ return x_33; } } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__3(lean_object* x_1) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__3(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1; +x_2 = l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1; return x_2; } else @@ -9150,7 +9150,7 @@ x_6 = lean_unsigned_to_nat(3u); x_7 = l_Lean_Syntax_getArg(x_4, x_6); x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_4, x_8); -x_10 = l___private_Init_Lean_Elab_StructInst_6__toFieldLHS(x_9); +x_10 = l___private_Lean_Elab_StructInst_6__toFieldLHS(x_9); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -9186,7 +9186,7 @@ x_17 = l_Lean_Syntax_getArgs(x_16); lean_dec(x_16); x_18 = l_Array_toList___rarg(x_17); lean_dec(x_17); -x_19 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2(x_18); +x_19 = l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2(x_18); if (lean_obj_tag(x_19) == 0) { uint8_t x_20; @@ -9227,7 +9227,7 @@ lean_ctor_set(x_26, 0, x_4); lean_ctor_set(x_26, 1, x_1); lean_ctor_set(x_26, 2, x_24); lean_ctor_set(x_26, 3, x_25); -x_27 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__3(x_5); +x_27 = l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__3(x_5); if (lean_obj_tag(x_27) == 0) { uint8_t x_28; @@ -9291,7 +9291,7 @@ x_39 = lean_unsigned_to_nat(3u); x_40 = l_Lean_Syntax_getArg(x_37, x_39); x_41 = lean_unsigned_to_nat(0u); x_42 = l_Lean_Syntax_getArg(x_37, x_41); -x_43 = l___private_Init_Lean_Elab_StructInst_6__toFieldLHS(x_42); +x_43 = l___private_Lean_Elab_StructInst_6__toFieldLHS(x_42); if (lean_obj_tag(x_43) == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; @@ -9327,7 +9327,7 @@ x_50 = l_Lean_Syntax_getArgs(x_49); lean_dec(x_49); x_51 = l_Array_toList___rarg(x_50); lean_dec(x_50); -x_52 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2(x_51); +x_52 = l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2(x_51); if (lean_obj_tag(x_52) == 0) { lean_object* x_53; lean_object* x_54; lean_object* x_55; @@ -9369,7 +9369,7 @@ lean_ctor_set(x_60, 0, x_37); lean_ctor_set(x_60, 1, x_57); lean_ctor_set(x_60, 2, x_58); lean_ctor_set(x_60, 3, x_59); -x_61 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__3(x_38); +x_61 = l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__3(x_38); if (lean_obj_tag(x_61) == 0) { lean_object* x_62; lean_object* x_63; lean_object* x_64; @@ -9420,7 +9420,7 @@ return x_68; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_7__mkStructView(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_7__mkStructView(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -9429,10 +9429,10 @@ x_5 = l_Lean_Syntax_getArg(x_1, x_4); x_6 = l_Lean_Syntax_getArgs(x_5); lean_dec(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_filterAux___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__1(x_6, x_7, x_7); +x_8 = l_Array_filterAux___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__1(x_6, x_7, x_7); x_9 = l_Array_toList___rarg(x_8); lean_dec(x_8); -x_10 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__3(x_9); +x_10 = l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__3(x_9); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -9594,7 +9594,7 @@ x_4 = l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at_Lean_Elab_Term_Struc return x_4; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -9617,7 +9617,7 @@ lean_inc(x_1); x_7 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_7, 0, x_1); lean_ctor_set(x_7, 1, x_5); -x_8 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(x_1, x_6); +x_8 = l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(x_1, x_6); lean_ctor_set(x_2, 1, x_8); lean_ctor_set(x_2, 0, x_7); return x_2; @@ -9634,7 +9634,7 @@ lean_inc(x_1); x_11 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_11, 0, x_1); lean_ctor_set(x_11, 1, x_9); -x_12 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(x_1, x_10); +x_12 = l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(x_1, x_10); x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -9643,7 +9643,7 @@ return x_13; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__2(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -9661,7 +9661,7 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); -x_6 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__2(x_5); +x_6 = l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__2(x_5); x_7 = lean_ctor_get(x_4, 1); lean_inc(x_7); if (lean_obj_tag(x_7) == 0) @@ -9743,7 +9743,7 @@ block_22: lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_dec(x_16); x_17 = l_Lean_Name_components(x_15); -x_18 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(x_14, x_17); +x_18 = l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(x_14, x_17); x_19 = l_List_append___rarg(x_18, x_12); x_20 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_20, 0, x_9); @@ -9797,7 +9797,7 @@ x_30 = lean_ctor_get(x_1, 1); lean_inc(x_30); lean_inc(x_29); lean_dec(x_1); -x_31 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__2(x_30); +x_31 = l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__2(x_30); x_32 = lean_ctor_get(x_29, 1); lean_inc(x_32); if (lean_obj_tag(x_32) == 0) @@ -9887,7 +9887,7 @@ block_48: lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_dec(x_42); x_43 = l_Lean_Name_components(x_41); -x_44 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(x_40, x_43); +x_44 = l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__1(x_40, x_43); x_45 = l_List_append___rarg(x_44, x_38); x_46 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_46, 0, x_35); @@ -9930,24 +9930,24 @@ return x_54; } } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_8__expandCompositeFields___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_List_map___main___at___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___spec__2), 1, 0); +x_1 = lean_alloc_closure((void*)(l_List_map___main___at___private_Lean_Elab_StructInst_8__expandCompositeFields___spec__2), 1, 0); return x_1; } } -lean_object* l___private_Init_Lean_Elab_StructInst_8__expandCompositeFields(lean_object* x_1) { +lean_object* l___private_Lean_Elab_StructInst_8__expandCompositeFields(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___closed__1; +x_2 = l___private_Lean_Elab_StructInst_8__expandCompositeFields___closed__1; x_3 = l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at_Lean_Elab_Term_StructInst_Struct_modifyFields___spec__1(x_1, x_2); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1() { _start: { lean_object* x_1; @@ -9955,27 +9955,27 @@ x_1 = lean_mk_string("invalid field index, structure has only #"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4() { _start: { lean_object* x_1; @@ -9983,27 +9983,27 @@ x_1 = lean_mk_string(" fields"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7() { _start: { lean_object* x_1; @@ -10011,27 +10011,27 @@ x_1 = lean_mk_string("invalid field index, index must be greater than 0"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -10138,11 +10138,11 @@ x_47 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_47, 0, x_46); x_48 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_48, 0, x_47); -x_49 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; +x_49 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; x_50 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); -x_51 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; +x_51 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; x_52 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_52, 0, x_50); lean_ctor_set(x_52, 1, x_51); @@ -10181,7 +10181,7 @@ lean_dec(x_29); lean_dec(x_28); lean_dec(x_9); lean_dec(x_8); -x_58 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; +x_58 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; x_59 = l_Lean_Elab_Term_throwError___rarg(x_36, x_58, x_3, x_4); lean_dec(x_36); x_60 = !lean_is_exclusive(x_59); @@ -10254,11 +10254,11 @@ x_76 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_76, 0, x_75); x_77 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_77, 0, x_76); -x_78 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; +x_78 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; x_79 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); -x_80 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; +x_80 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; x_81 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_81, 0, x_79); lean_ctor_set(x_81, 1, x_80); @@ -10298,7 +10298,7 @@ lean_dec(x_29); lean_dec(x_28); lean_dec(x_9); lean_dec(x_8); -x_87 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; +x_87 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; x_88 = l_Lean_Elab_Term_throwError___rarg(x_64, x_87, x_3, x_4); lean_dec(x_64); x_89 = lean_ctor_get(x_88, 0); @@ -10392,11 +10392,11 @@ x_108 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_108, 0, x_107); x_109 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_109, 0, x_108); -x_110 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; +x_110 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; x_111 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_111, 0, x_110); lean_ctor_set(x_111, 1, x_109); -x_112 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; +x_112 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; x_113 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_113, 0, x_111); lean_ctor_set(x_113, 1, x_112); @@ -10436,7 +10436,7 @@ lean_dec(x_29); lean_dec(x_28); lean_dec(x_9); lean_dec(x_8); -x_119 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; +x_119 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; x_120 = l_Lean_Elab_Term_throwError___rarg(x_94, x_119, x_3, x_4); lean_dec(x_94); x_121 = lean_ctor_get(x_120, 0); @@ -10552,11 +10552,11 @@ x_145 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_145, 0, x_144); x_146 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_146, 0, x_145); -x_147 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; +x_147 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3; x_148 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_148, 0, x_147); lean_ctor_set(x_148, 1, x_146); -x_149 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; +x_149 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6; x_150 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_150, 0, x_148); lean_ctor_set(x_150, 1, x_149); @@ -10596,7 +10596,7 @@ lean_dec(x_126); lean_dec(x_125); lean_dec(x_9); lean_dec(x_8); -x_156 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; +x_156 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9; x_157 = l_Lean_Elab_Term_throwError___rarg(x_130, x_156, x_3, x_4); lean_dec(x_130); x_158 = lean_ctor_get(x_157, 0); @@ -10634,7 +10634,7 @@ goto block_24; block_24: { lean_object* x_12; -x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(x_1, x_8, x_3, x_11); +x_12 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(x_1, x_8, x_3, x_11); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -10702,7 +10702,7 @@ return x_23; } } } -lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -10841,7 +10841,7 @@ return x_33; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_StructInst_9__expandNumLitFields___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; @@ -10853,41 +10853,41 @@ lean_inc(x_7); lean_dec(x_5); x_8 = l_Lean_Elab_Term_StructInst_Struct_structName(x_1); x_9 = l_Lean_getStructureFields(x_6, x_8); -x_10 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(x_9, x_2, x_3, x_7); +x_10 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(x_9, x_2, x_3, x_7); lean_dec(x_9); return x_10; } } -lean_object* l___private_Init_Lean_Elab_StructInst_9__expandNumLitFields(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_9__expandNumLitFields(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_inc(x_1); -x_4 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1___boxed), 4, 1); +x_4 = lean_alloc_closure((void*)(l___private_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1___boxed), 4, 1); lean_closure_set(x_4, 0, x_1); -x_5 = l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(x_1, x_4, x_2, x_3); +x_5 = l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(x_1, x_4, x_2, x_3); return x_5; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___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_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_StructInst_9__expandNumLitFields___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___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_StructInst_9__expandNumLitFields___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_map___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -10907,7 +10907,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_2, 0); x_6 = lean_ctor_get(x_2, 1); lean_inc(x_1); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__1(x_1, x_6); +x_7 = l_List_map___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__1(x_1, x_6); if (lean_obj_tag(x_5) == 1) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -10944,7 +10944,7 @@ lean_inc(x_15); lean_inc(x_14); lean_dec(x_2); lean_inc(x_1); -x_16 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__1(x_1, x_15); +x_16 = l_List_map___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__1(x_1, x_15); if (lean_obj_tag(x_14) == 1) { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -10977,7 +10977,7 @@ return x_24; } } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1() { _start: { lean_object* x_1; @@ -10985,27 +10985,27 @@ x_1 = lean_mk_string("' is not a field of structure '"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4() { _start: { lean_object* x_1; @@ -11013,27 +11013,27 @@ x_1 = lean_mk_string("failed to access field '"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7() { _start: { lean_object* x_1; @@ -11041,27 +11041,27 @@ x_1 = lean_mk_string("' in parent structure"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9() { +lean_object* _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8; +x_1 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_3) == 0) @@ -11138,7 +11138,7 @@ x_36 = l_Lean_Elab_Term_mkConst___closed__4; x_37 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); -x_38 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3; +x_38 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3; x_39 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_39, 0, x_37); lean_ctor_set(x_39, 1, x_38); @@ -11209,11 +11209,11 @@ lean_dec(x_9); lean_dec(x_2); x_56 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_56, 0, x_32); -x_57 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6; +x_57 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6; x_58 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9; +x_59 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9; x_60 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -11245,7 +11245,7 @@ lean_dec(x_32); x_66 = lean_ctor_get(x_55, 0); lean_inc(x_66); lean_dec(x_55); -x_67 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__1(x_31, x_66); +x_67 = l_List_map___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__1(x_31, x_66); x_68 = l_List_append___rarg(x_67, x_26); lean_ctor_set(x_8, 1, x_68); x_11 = x_8; @@ -11272,11 +11272,11 @@ lean_dec(x_9); lean_dec(x_2); x_70 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_70, 0, x_32); -x_71 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6; +x_71 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6; x_72 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); -x_73 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9; +x_73 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9; x_74 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_74, 0, x_72); lean_ctor_set(x_74, 1, x_73); @@ -11310,7 +11310,7 @@ lean_dec(x_32); x_80 = lean_ctor_get(x_69, 0); lean_inc(x_80); lean_dec(x_69); -x_81 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__1(x_31, x_80); +x_81 = l_List_map___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__1(x_31, x_80); x_82 = l_List_append___rarg(x_81, x_26); x_83 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_83, 0, x_28); @@ -11351,7 +11351,7 @@ goto block_25; block_25: { lean_object* x_13; -x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2(x_1, x_2, x_9, x_4, x_12); +x_13 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2(x_1, x_2, x_9, x_4, x_12); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -11419,7 +11419,7 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_10__expandParentFields(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_10__expandParentFields(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; @@ -11430,23 +11430,23 @@ x_6 = lean_ctor_get(x_4, 1); lean_inc(x_6); lean_dec(x_4); lean_inc(x_1); -x_7 = lean_alloc_closure((void*)(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___boxed), 5, 2); +x_7 = lean_alloc_closure((void*)(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___boxed), 5, 2); lean_closure_set(x_7, 0, x_1); lean_closure_set(x_7, 1, x_5); -x_8 = l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(x_1, x_7, x_2, x_6); +x_8 = l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(x_1, x_7, x_2, x_6); return x_8; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___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* l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_find_x3f___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -11478,7 +11478,7 @@ return x_9; } } } -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_find_x3f___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -11488,12 +11488,12 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_AssocList_find_x3f___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__2(x_2, x_7); +x_8 = l_AssocList_find_x3f___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__2(x_2, x_7); lean_dec(x_7); return x_8; } } -uint8_t l_AssocList_contains___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__4(lean_object* x_1, lean_object* x_2) { +uint8_t l_AssocList_contains___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__4(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -11522,7 +11522,7 @@ return x_8; } } } -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__7(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -11576,7 +11576,7 @@ goto _start; } } } -lean_object* l_HashMapImp_moveEntries___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_HashMapImp_moveEntries___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11595,7 +11595,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj 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_AssocList_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__7(x_3, x_6); +x_9 = l_AssocList_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__7(x_3, x_6); x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_1, x_10); lean_dec(x_1); @@ -11606,7 +11606,7 @@ goto _start; } } } -lean_object* l_HashMapImp_expand___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_expand___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__5(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; @@ -11617,14 +11617,14 @@ 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_HashMapImp_moveEntries___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__6(x_8, x_2, x_7); +x_9 = l_HashMapImp_moveEntries___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__6(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; } } -lean_object* l_AssocList_replace___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_AssocList_replace___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -11647,7 +11647,7 @@ x_8 = lean_name_eq(x_5, x_1); if (x_8 == 0) { lean_object* x_9; -x_9 = l_AssocList_replace___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__8(x_1, x_2, x_7); +x_9 = l_AssocList_replace___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__8(x_1, x_2, x_7); lean_ctor_set(x_3, 2, x_9); return x_3; } @@ -11674,7 +11674,7 @@ x_13 = lean_name_eq(x_10, x_1); if (x_13 == 0) { lean_object* x_14; lean_object* x_15; -x_14 = l_AssocList_replace___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__8(x_1, x_2, x_12); +x_14 = l_AssocList_replace___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__8(x_1, x_2, x_12); x_15 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_15, 0, x_10); lean_ctor_set(x_15, 1, x_11); @@ -11696,7 +11696,7 @@ return x_16; } } } -lean_object* l_HashMapImp_insert___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_HashMapImp_insert___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -11710,7 +11710,7 @@ x_7 = lean_array_get_size(x_6); x_8 = l_Lean_Name_hash(x_2); x_9 = lean_usize_modn(x_8, x_7); x_10 = lean_array_uget(x_6, x_9); -x_11 = l_AssocList_contains___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__4(x_2, x_10); +x_11 = l_AssocList_contains___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__4(x_2, x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -11728,7 +11728,7 @@ if (x_16 == 0) { lean_object* x_17; lean_free_object(x_1); -x_17 = l_HashMapImp_expand___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__5(x_13, x_15); +x_17 = l_HashMapImp_expand___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__5(x_13, x_15); return x_17; } else @@ -11742,7 +11742,7 @@ else { lean_object* x_18; lean_object* x_19; lean_dec(x_7); -x_18 = l_AssocList_replace___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__8(x_2, x_3, x_10); +x_18 = l_AssocList_replace___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__8(x_2, x_3, x_10); x_19 = lean_array_uset(x_6, x_9, x_18); lean_ctor_set(x_1, 1, x_19); return x_1; @@ -11760,7 +11760,7 @@ x_22 = lean_array_get_size(x_21); x_23 = l_Lean_Name_hash(x_2); x_24 = lean_usize_modn(x_23, x_22); x_25 = lean_array_uget(x_21, x_24); -x_26 = l_AssocList_contains___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__4(x_2, x_25); +x_26 = l_AssocList_contains___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__4(x_2, x_25); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; @@ -11777,7 +11777,7 @@ lean_dec(x_22); if (x_31 == 0) { lean_object* x_32; -x_32 = l_HashMapImp_expand___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__5(x_28, x_30); +x_32 = l_HashMapImp_expand___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__5(x_28, x_30); return x_32; } else @@ -11793,7 +11793,7 @@ else { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_22); -x_34 = l_AssocList_replace___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__8(x_2, x_3, x_25); +x_34 = l_AssocList_replace___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__8(x_2, x_3, x_25); x_35 = lean_array_uset(x_21, x_24, x_34); x_36 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_36, 0, x_20); @@ -11803,7 +11803,7 @@ return x_36; } } } -lean_object* l_mkHashMap___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__9(lean_object* x_1) { +lean_object* l_mkHashMap___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__9(lean_object* x_1) { _start: { lean_object* x_2; @@ -11811,7 +11811,7 @@ x_2 = l_mkHashMapImp___rarg(x_1); return x_2; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1() { _start: { lean_object* x_1; @@ -11819,27 +11819,27 @@ x_1 = lean_mk_string("field '"); return x_1; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4() { _start: { lean_object* x_1; @@ -11847,27 +11847,27 @@ x_1 = lean_mk_string("' has already beed specified"); return x_1; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -11894,7 +11894,7 @@ lean_dec(x_1); x_8 = lean_ctor_get(x_2, 1); lean_inc(x_8); lean_dec(x_2); -x_9 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_9 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_10 = l_unreachable_x21___rarg(x_9); lean_inc(x_3); x_11 = lean_apply_2(x_10, x_3, x_4); @@ -11955,14 +11955,14 @@ lean_dec(x_2); x_23 = lean_ctor_get(x_20, 1); lean_inc(x_23); lean_dec(x_20); -x_24 = l_HashMapImp_find_x3f___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__1(x_1, x_23); +x_24 = l_HashMapImp_find_x3f___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__1(x_1, x_23); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; lean_object* x_26; x_25 = lean_box(0); lean_ctor_set(x_7, 1, x_25); lean_ctor_set(x_7, 0, x_6); -x_26 = l_HashMapImp_insert___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_23, x_7); +x_26 = l_HashMapImp_insert___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_23, x_7); x_1 = x_26; x_2 = x_22; goto _start; @@ -11978,7 +11978,7 @@ if (lean_obj_tag(x_28) == 0) lean_object* x_29; lean_ctor_set(x_7, 1, x_28); lean_ctor_set(x_7, 0, x_6); -x_29 = l_HashMapImp_insert___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_23, x_7); +x_29 = l_HashMapImp_insert___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_23, x_7); x_1 = x_29; x_2 = x_22; goto _start; @@ -11999,7 +11999,7 @@ if (x_33 == 0) lean_object* x_34; lean_ctor_set(x_7, 1, x_28); lean_ctor_set(x_7, 0, x_6); -x_34 = l_HashMapImp_insert___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_23, x_7); +x_34 = l_HashMapImp_insert___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_23, x_7); x_1 = x_34; x_2 = x_22; goto _start; @@ -12016,11 +12016,11 @@ lean_inc(x_36); lean_dec(x_6); x_37 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_37, 0, x_23); -x_38 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; +x_38 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; x_39 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); -x_40 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; +x_40 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; x_41 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_41, 0, x_39); lean_ctor_set(x_41, 1, x_40); @@ -12059,11 +12059,11 @@ lean_inc(x_47); lean_dec(x_6); x_48 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_48, 0, x_23); -x_49 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; +x_49 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; x_50 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); -x_51 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; +x_51 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; x_52 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_52, 0, x_50); lean_ctor_set(x_52, 1, x_51); @@ -12101,7 +12101,7 @@ lean_dec(x_1); x_58 = lean_ctor_get(x_2, 1); lean_inc(x_58); lean_dec(x_2); -x_59 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_59 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_60 = l_unreachable_x21___rarg(x_59); lean_inc(x_3); x_61 = lean_apply_2(x_60, x_3, x_4); @@ -12159,7 +12159,7 @@ lean_dec(x_2); x_71 = lean_ctor_get(x_69, 1); lean_inc(x_71); lean_dec(x_69); -x_72 = l_HashMapImp_find_x3f___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__1(x_1, x_71); +x_72 = l_HashMapImp_find_x3f___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__1(x_1, x_71); if (lean_obj_tag(x_72) == 0) { lean_object* x_73; lean_object* x_74; lean_object* x_75; @@ -12167,7 +12167,7 @@ x_73 = lean_box(0); x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_6); lean_ctor_set(x_74, 1, x_73); -x_75 = l_HashMapImp_insert___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_71, x_74); +x_75 = l_HashMapImp_insert___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_71, x_74); x_1 = x_75; x_2 = x_70; goto _start; @@ -12184,7 +12184,7 @@ lean_object* x_78; lean_object* x_79; x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_6); lean_ctor_set(x_78, 1, x_77); -x_79 = l_HashMapImp_insert___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_71, x_78); +x_79 = l_HashMapImp_insert___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_71, x_78); x_1 = x_79; x_2 = x_70; goto _start; @@ -12206,7 +12206,7 @@ lean_object* x_84; lean_object* x_85; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_6); lean_ctor_set(x_84, 1, x_77); -x_85 = l_HashMapImp_insert___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_71, x_84); +x_85 = l_HashMapImp_insert___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__3(x_1, x_71, x_84); x_1 = x_85; x_2 = x_70; goto _start; @@ -12222,11 +12222,11 @@ lean_inc(x_87); lean_dec(x_6); x_88 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_88, 0, x_71); -x_89 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; +x_89 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; x_90 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); -x_91 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; +x_91 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; x_92 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_92, 0, x_90); lean_ctor_set(x_92, 1, x_91); @@ -12266,11 +12266,11 @@ lean_inc(x_98); lean_dec(x_6); x_99 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_99, 0, x_71); -x_100 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; +x_100 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; x_101 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_101, 0, x_100); lean_ctor_set(x_101, 1, x_99); -x_102 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; +x_102 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6; x_103 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_103, 0, x_101); lean_ctor_set(x_103, 1, x_102); @@ -12309,7 +12309,7 @@ lean_dec(x_1); x_109 = lean_ctor_get(x_2, 1); lean_inc(x_109); lean_dec(x_2); -x_110 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; +x_110 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__1; x_111 = l_unreachable_x21___rarg(x_110); lean_inc(x_3); x_112 = lean_apply_2(x_111, x_3, x_4); @@ -12358,7 +12358,7 @@ return x_119; } } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_12__mkFieldMap___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_12__mkFieldMap___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -12367,47 +12367,47 @@ x_2 = l_mkHashMapImp___rarg(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_StructInst_12__mkFieldMap(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_12__mkFieldMap(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Elab_StructInst_12__mkFieldMap___closed__1; -x_5 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10(x_4, x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_StructInst_12__mkFieldMap___closed__1; +x_5 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10(x_4, x_1, x_2, x_3); return x_5; } } -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_find_x3f___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_AssocList_find_x3f___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__2(x_1, x_2); +x_3 = l_AssocList_find_x3f___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__2(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_find_x3f___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_HashMapImp_find_x3f___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__1(x_1, x_2); +x_3 = l_HashMapImp_find_x3f___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_AssocList_contains___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__4___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_contains___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__4___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_AssocList_contains___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__4(x_1, x_2); +x_3 = l_AssocList_contains___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__4(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_StructInst_13__isSimpleField_x3f(lean_object* x_1) { +lean_object* l___private_Lean_Elab_StructInst_13__isSimpleField_x3f(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -12449,16 +12449,16 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_13__isSimpleField_x3f___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_StructInst_13__isSimpleField_x3f___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_StructInst_13__isSimpleField_x3f(x_1); +x_2 = l___private_Lean_Elab_StructInst_13__isSimpleField_x3f(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_StructInst_14__getFieldIdx___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_StructInst_14__getFieldIdx___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12497,7 +12497,7 @@ return x_12; } } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__1() { _start: { lean_object* x_1; @@ -12505,42 +12505,42 @@ x_1 = lean_mk_string("' is not a valid field of '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__2() { +lean_object* _init_l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__1; +x_1 = l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__3() { +lean_object* _init_l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__2; +x_1 = l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_StructInst_14__getFieldIdx(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_StructInst_14__getFieldIdx(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_StructInst_14__getFieldIdx___spec__1(x_4, x_3, x_7); +x_8 = l_Array_findIdxAux___main___at___private_Lean_Elab_StructInst_14__getFieldIdx___spec__1(x_4, x_3, x_7); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_9 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_9, 0, x_4); -x_10 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; +x_10 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; x_11 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); -x_12 = l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__3; +x_12 = l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__3; x_13 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -12572,27 +12572,27 @@ return x_20; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_StructInst_14__getFieldIdx___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_StructInst_14__getFieldIdx___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_StructInst_14__getFieldIdx___spec__1(x_1, x_2, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Elab_StructInst_14__getFieldIdx___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_StructInst_14__getFieldIdx___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_StructInst_14__getFieldIdx(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_StructInst_14__getFieldIdx(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Elab_StructInst_15__mkProjStx(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_StructInst_15__mkProjStx(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; @@ -12610,7 +12610,7 @@ lean_ctor_set(x_11, 1, x_9); return x_11; } } -lean_object* l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_StructInst_16__mkSubstructSource(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { if (lean_obj_tag(x_5) == 2) @@ -12624,7 +12624,7 @@ x_9 = lean_ctor_get(x_5, 0); x_10 = lean_ctor_get(x_5, 1); lean_inc(x_4); lean_inc(x_2); -x_11 = l___private_Init_Lean_Elab_StructInst_14__getFieldIdx(x_1, x_2, x_3, x_4, x_6, x_7); +x_11 = l___private_Lean_Elab_StructInst_14__getFieldIdx(x_1, x_2, x_3, x_4, x_6, x_7); if (lean_obj_tag(x_11) == 0) { uint8_t x_12; @@ -12659,7 +12659,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean x_20 = lean_array_fget(x_16, x_18); x_21 = lean_box(0); x_22 = lean_array_fset(x_16, x_18, x_21); -x_23 = l___private_Init_Lean_Elab_StructInst_15__mkProjStx(x_20, x_4); +x_23 = l___private_Lean_Elab_StructInst_15__mkProjStx(x_20, x_4); x_24 = lean_array_fset(x_22, x_18, x_23); lean_ctor_set(x_9, 1, x_24); lean_ctor_set(x_5, 1, x_14); @@ -12697,7 +12697,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean x_31 = lean_array_fget(x_26, x_28); x_32 = lean_box(0); x_33 = lean_array_fset(x_26, x_28, x_32); -x_34 = l___private_Init_Lean_Elab_StructInst_15__mkProjStx(x_31, x_4); +x_34 = l___private_Lean_Elab_StructInst_15__mkProjStx(x_31, x_4); x_35 = lean_array_fset(x_33, x_28, x_34); x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_25); @@ -12769,7 +12769,7 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean x_48 = lean_array_fget(x_41, x_44); x_49 = lean_box(0); x_50 = lean_array_fset(x_41, x_44, x_49); -x_51 = l___private_Init_Lean_Elab_StructInst_15__mkProjStx(x_48, x_4); +x_51 = l___private_Lean_Elab_StructInst_15__mkProjStx(x_48, x_4); x_52 = lean_array_fset(x_50, x_44, x_51); if (lean_is_scalar(x_42)) { x_53 = lean_alloc_ctor(1, 2, 0); @@ -12836,7 +12836,7 @@ lean_inc(x_60); lean_dec(x_5); lean_inc(x_4); lean_inc(x_2); -x_62 = l___private_Init_Lean_Elab_StructInst_14__getFieldIdx(x_1, x_2, x_3, x_4, x_6, x_7); +x_62 = l___private_Lean_Elab_StructInst_14__getFieldIdx(x_1, x_2, x_3, x_4, x_6, x_7); if (lean_obj_tag(x_62) == 0) { lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; @@ -12901,7 +12901,7 @@ lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean x_76 = lean_array_fget(x_68, x_71); x_77 = lean_box(0); x_78 = lean_array_fset(x_68, x_71, x_77); -x_79 = l___private_Init_Lean_Elab_StructInst_15__mkProjStx(x_76, x_4); +x_79 = l___private_Lean_Elab_StructInst_15__mkProjStx(x_76, x_4); x_80 = lean_array_fset(x_78, x_71, x_79); if (lean_is_scalar(x_69)) { x_81 = lean_alloc_ctor(1, 2, 0); @@ -12983,17 +12983,17 @@ return x_90; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_StructInst_16__mkSubstructSource___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_StructInst_16__mkSubstructSource(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__1(lean_object* x_1) { +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__1(lean_object* x_1) { _start: { uint8_t x_2; @@ -13030,7 +13030,7 @@ return x_10; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__2(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -13038,15 +13038,15 @@ x_3 = l_Lean_Elab_Term_StructInst_Field_toSyntax(x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_StructInst_17__groupFields___lambda__1), 1, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2() { +lean_object* _init_l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2() { _start: { lean_object* x_1; @@ -13054,15 +13054,15 @@ x_1 = l_Lean_Elab_Term_StructInst_Field_inhabited(lean_box(0)); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3() { +lean_object* _init_l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__2___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_StructInst_17__groupFields___lambda__2___boxed), 2, 0); return x_1; } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -13071,11 +13071,11 @@ lean_inc(x_9); x_10 = lean_ctor_get(x_6, 1); lean_inc(x_10); lean_dec(x_6); -x_11 = l___private_Init_Lean_Elab_StructInst_13__isSimpleField_x3f(x_10); +x_11 = l___private_Lean_Elab_StructInst_13__isSimpleField_x3f(x_10); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1; +x_12 = l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1; lean_inc(x_10); x_13 = l_List_map___main___rarg(x_12, x_10); x_14 = l_Lean_Elab_Term_StructInst_Struct_ref(x_1); @@ -13083,7 +13083,7 @@ x_15 = l_Lean_Elab_Term_StructInst_Struct_source(x_1); lean_inc(x_7); lean_inc(x_9); lean_inc(x_2); -x_16 = l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource(x_14, x_2, x_3, x_9, x_15, x_7, x_8); +x_16 = l___private_Lean_Elab_StructInst_16__mkSubstructSource(x_14, x_2, x_3, x_9, x_15, x_7, x_8); if (lean_obj_tag(x_16) == 0) { uint8_t x_17; @@ -13093,7 +13093,7 @@ if (x_17 == 0) lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_18 = lean_ctor_get(x_16, 0); x_19 = lean_ctor_get(x_16, 1); -x_20 = l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2; +x_20 = l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2; x_21 = l_List_head_x21___rarg(x_20, x_10); lean_dec(x_10); x_22 = l_Lean_isSubobjectField_x3f(x_4, x_2, x_9); @@ -13112,7 +13112,7 @@ lean_dec(x_26); x_28 = l_List_toArrayAux___main___rarg(x_13, x_27); x_29 = x_28; x_30 = l_Id_monad; -x_31 = l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3; +x_31 = l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3; x_32 = lean_unsigned_to_nat(0u); x_33 = l_Array_umapMAux___main___rarg(x_30, lean_box(0), x_31, x_32, x_29); x_34 = x_33; @@ -13325,7 +13325,7 @@ x_99 = lean_ctor_get(x_16, 1); lean_inc(x_99); lean_inc(x_98); lean_dec(x_16); -x_100 = l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2; +x_100 = l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2; x_101 = l_List_head_x21___rarg(x_100, x_10); lean_dec(x_10); x_102 = l_Lean_isSubobjectField_x3f(x_4, x_2, x_9); @@ -13344,7 +13344,7 @@ lean_dec(x_106); x_108 = l_List_toArrayAux___main___rarg(x_13, x_107); x_109 = x_108; x_110 = l_Id_monad; -x_111 = l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3; +x_111 = l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3; x_112 = lean_unsigned_to_nat(0u); x_113 = l_Array_umapMAux___main___rarg(x_110, lean_box(0), x_111, x_112, x_109); x_114 = x_113; @@ -13543,12 +13543,12 @@ return x_158; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_inc(x_8); -x_10 = l___private_Init_Lean_Elab_StructInst_12__mkFieldMap(x_7, x_8, x_9); +x_10 = l___private_Lean_Elab_StructInst_12__mkFieldMap(x_7, x_8, x_9); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; @@ -13557,7 +13557,7 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); -x_13 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___boxed), 8, 5); +x_13 = lean_alloc_closure((void*)(l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___boxed), 8, 5); lean_closure_set(x_13, 0, x_1); lean_closure_set(x_13, 1, x_2); lean_closure_set(x_13, 2, x_3); @@ -13600,7 +13600,7 @@ return x_20; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_StructInst_17__groupFields(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; @@ -13616,7 +13616,7 @@ lean_inc(x_6); x_9 = l_Lean_getStructureFields(x_6, x_8); x_10 = l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; lean_inc(x_2); -x_11 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__4), 9, 6); +x_11 = lean_alloc_closure((void*)(l___private_Lean_Elab_StructInst_17__groupFields___lambda__4), 9, 6); lean_closure_set(x_11, 0, x_2); lean_closure_set(x_11, 1, x_8); lean_closure_set(x_11, 2, x_9); @@ -13628,20 +13628,20 @@ x_13 = lean_apply_2(x_12, x_3, x_7); return x_13; } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__2(x_1, x_2); +x_3 = l___private_Lean_Elab_StructInst_17__groupFields___lambda__2(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Elab_StructInst_17__groupFields___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_3); lean_dec(x_1); return x_9; @@ -13710,7 +13710,7 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_StructInst_18__addMissingFields___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Lean_Elab_StructInst_18__addMissingFields___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; @@ -13796,7 +13796,7 @@ lean_dec(x_32); x_35 = l_Lean_Syntax_getArg(x_34, x_33); lean_dec(x_34); lean_inc(x_9); -x_36 = l___private_Init_Lean_Elab_StructInst_15__mkProjStx(x_35, x_9); +x_36 = l___private_Lean_Elab_StructInst_15__mkProjStx(x_35, x_9); x_37 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_37, 0, x_36); lean_inc(x_4); @@ -13831,7 +13831,7 @@ lean_dec(x_15); x_45 = l_Lean_Elab_Term_StructInst_Struct_source(x_1); lean_inc(x_11); lean_inc(x_9); -x_46 = l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource(x_4, x_3, x_6, x_9, x_45, x_11, x_12); +x_46 = l___private_Lean_Elab_StructInst_16__mkSubstructSource(x_4, x_3, x_6, x_9, x_45, x_11, x_12); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; @@ -13990,7 +13990,7 @@ return x_78; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_18__addMissingFields(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_StructInst_18__addMissingFields(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; @@ -14008,7 +14008,7 @@ x_10 = l_Lean_Elab_Term_StructInst_Struct_ref(x_2); x_11 = lean_box(0); lean_inc(x_9); lean_inc(x_2); -x_12 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_StructInst_18__addMissingFields___lambda__1___boxed), 12, 7); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_StructInst_18__addMissingFields___lambda__1___boxed), 12, 7); lean_closure_set(x_12, 0, x_2); lean_closure_set(x_12, 1, x_6); lean_closure_set(x_12, 2, x_8); @@ -14074,18 +14074,18 @@ return x_29; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_18__addMissingFields___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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Lean_Elab_StructInst_18__addMissingFields___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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Init_Lean_Elab_StructInst_18__addMissingFields___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Lean_Elab_StructInst_18__addMissingFields___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_8); lean_dec(x_6); lean_dec(x_1); return x_13; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__2(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -14111,7 +14111,7 @@ x_7 = lean_ctor_get(x_4, 1); x_8 = l_List_tail_x21___rarg(x_7); lean_dec(x_7); lean_ctor_set(x_4, 1, x_8); -x_9 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_6); +x_9 = l_List_map___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_6); lean_ctor_set(x_1, 1, x_9); return x_1; } @@ -14135,7 +14135,7 @@ lean_ctor_set(x_16, 0, x_11); lean_ctor_set(x_16, 1, x_15); lean_ctor_set(x_16, 2, x_13); lean_ctor_set(x_16, 3, x_14); -x_17 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_10); +x_17 = l_List_map___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_10); lean_ctor_set(x_1, 1, x_17); lean_ctor_set(x_1, 0, x_16); return x_1; @@ -14178,7 +14178,7 @@ lean_ctor_set(x_26, 0, x_20); lean_ctor_set(x_26, 1, x_25); lean_ctor_set(x_26, 2, x_22); lean_ctor_set(x_26, 3, x_23); -x_27 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_19); +x_27 = l_List_map___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_19); x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -14187,13 +14187,13 @@ return x_28; } } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__3(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__3(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2; +x_2 = l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2; x_3 = l_List_head_x21___rarg___closed__2; x_4 = lean_panic_fn(x_2, x_3); return x_4; @@ -14207,7 +14207,7 @@ return x_5; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__4(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__4(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -14240,7 +14240,7 @@ goto _start; } } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -14260,7 +14260,7 @@ return x_5; } } } -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__7(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_foldlM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -14287,7 +14287,7 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -14303,7 +14303,7 @@ else { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = lean_array_fget(x_2, x_3); -x_8 = l_AssocList_foldlM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__7(x_4, x_7); +x_8 = l_AssocList_foldlM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__7(x_4, x_7); lean_dec(x_7); x_9 = lean_unsigned_to_nat(1u); x_10 = lean_nat_add(x_3, x_9); @@ -14314,18 +14314,18 @@ goto _start; } } } -lean_object* l_HashMap_toList___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__6(lean_object* x_1) { +lean_object* l_HashMap_toList___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__6(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = lean_box(0); x_3 = lean_ctor_get(x_1, 1); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__8(x_1, x_3, x_4, x_2); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__8(x_1, x_3, x_4, x_2); return x_5; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { if (lean_obj_tag(x_5) == 0) @@ -14354,18 +14354,18 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_11, 1); lean_inc(x_14); lean_dec(x_11); -x_15 = l___private_Init_Lean_Elab_StructInst_13__isSimpleField_x3f(x_14); +x_15 = l___private_Lean_Elab_StructInst_13__isSimpleField_x3f(x_14); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_inc(x_14); -x_16 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_14); +x_16 = l_List_map___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_14); x_17 = l_Lean_Elab_Term_StructInst_Struct_ref(x_1); x_18 = l_Lean_Elab_Term_StructInst_Struct_source(x_1); lean_inc(x_6); lean_inc(x_13); lean_inc(x_3); -x_19 = l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource(x_17, x_3, x_4, x_13, x_18, x_6, x_7); +x_19 = l___private_Lean_Elab_StructInst_16__mkSubstructSource(x_17, x_3, x_4, x_13, x_18, x_6, x_7); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -14374,7 +14374,7 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__3(x_14); +x_22 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__3(x_14); lean_dec(x_14); lean_inc(x_3); lean_inc(x_2); @@ -14392,7 +14392,7 @@ lean_dec(x_27); x_29 = l_List_toArrayAux___main___rarg(x_16, x_28); x_30 = x_29; x_31 = lean_unsigned_to_nat(0u); -x_32 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__4(x_31, x_30); +x_32 = l_Array_umapMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__4(x_31, x_30); x_33 = x_32; x_34 = l_Lean_List_format___rarg___closed__2; x_35 = l_Lean_mkAtomFrom(x_17, x_34); @@ -14409,7 +14409,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean x_41 = lean_ctor_get(x_22, 1); x_42 = lean_ctor_get(x_22, 2); lean_dec(x_42); -x_43 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_41); +x_43 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_41); lean_dec(x_41); x_44 = lean_box(0); lean_ctor_set(x_5, 1, x_44); @@ -14418,7 +14418,7 @@ x_45 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_45, 0, x_39); lean_ctor_set(x_22, 2, x_45); lean_ctor_set(x_22, 1, x_5); -x_46 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_21); +x_46 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_21); if (lean_obj_tag(x_46) == 0) { uint8_t x_47; @@ -14484,7 +14484,7 @@ lean_inc(x_60); lean_inc(x_59); lean_inc(x_58); lean_dec(x_22); -x_61 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_59); +x_61 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_59); lean_dec(x_59); x_62 = lean_box(0); lean_ctor_set(x_5, 1, x_62); @@ -14496,7 +14496,7 @@ lean_ctor_set(x_64, 0, x_58); lean_ctor_set(x_64, 1, x_5); lean_ctor_set(x_64, 2, x_63); lean_ctor_set(x_64, 3, x_60); -x_65 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_21); +x_65 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_21); if (lean_obj_tag(x_65) == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; @@ -14563,7 +14563,7 @@ lean_ctor_set(x_76, 1, x_75); lean_ctor_set(x_76, 2, x_16); lean_ctor_set(x_76, 3, x_20); lean_inc(x_6); -x_77 = l___private_Init_Lean_Elab_StructInst_19__expandStruct___main(x_76, x_6, x_21); +x_77 = l___private_Lean_Elab_StructInst_19__expandStruct___main(x_76, x_6, x_21); if (lean_obj_tag(x_77) == 0) { lean_object* x_78; lean_object* x_79; uint8_t x_80; @@ -14579,7 +14579,7 @@ lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean x_81 = lean_ctor_get(x_22, 1); x_82 = lean_ctor_get(x_22, 2); lean_dec(x_82); -x_83 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_81); +x_83 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_81); lean_dec(x_81); x_84 = lean_box(0); lean_ctor_set(x_5, 1, x_84); @@ -14588,7 +14588,7 @@ x_85 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_85, 0, x_78); lean_ctor_set(x_22, 2, x_85); lean_ctor_set(x_22, 1, x_5); -x_86 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_79); +x_86 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_79); if (lean_obj_tag(x_86) == 0) { uint8_t x_87; @@ -14654,7 +14654,7 @@ lean_inc(x_100); lean_inc(x_99); lean_inc(x_98); lean_dec(x_22); -x_101 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_99); +x_101 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_99); lean_dec(x_99); x_102 = lean_box(0); lean_ctor_set(x_5, 1, x_102); @@ -14666,7 +14666,7 @@ lean_ctor_set(x_104, 0, x_98); lean_ctor_set(x_104, 1, x_5); lean_ctor_set(x_104, 2, x_103); lean_ctor_set(x_104, 3, x_100); -x_105 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_79); +x_105 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_79); if (lean_obj_tag(x_105) == 0) { lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; @@ -14791,7 +14791,7 @@ lean_dec(x_13); x_123 = lean_ctor_get(x_15, 0); lean_inc(x_123); lean_dec(x_15); -x_124 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_7); +x_124 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_12, x_6, x_7); if (lean_obj_tag(x_124) == 0) { uint8_t x_125; @@ -14860,18 +14860,18 @@ lean_inc(x_136); x_137 = lean_ctor_get(x_134, 1); lean_inc(x_137); lean_dec(x_134); -x_138 = l___private_Init_Lean_Elab_StructInst_13__isSimpleField_x3f(x_137); +x_138 = l___private_Lean_Elab_StructInst_13__isSimpleField_x3f(x_137); if (lean_obj_tag(x_138) == 0) { lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_inc(x_137); -x_139 = l_List_map___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_137); +x_139 = l_List_map___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__2(x_137); x_140 = l_Lean_Elab_Term_StructInst_Struct_ref(x_1); x_141 = l_Lean_Elab_Term_StructInst_Struct_source(x_1); lean_inc(x_6); lean_inc(x_136); lean_inc(x_3); -x_142 = l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource(x_140, x_3, x_4, x_136, x_141, x_6, x_7); +x_142 = l___private_Lean_Elab_StructInst_16__mkSubstructSource(x_140, x_3, x_4, x_136, x_141, x_6, x_7); if (lean_obj_tag(x_142) == 0) { lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; @@ -14880,7 +14880,7 @@ lean_inc(x_143); x_144 = lean_ctor_get(x_142, 1); lean_inc(x_144); lean_dec(x_142); -x_145 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__3(x_137); +x_145 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__3(x_137); lean_dec(x_137); lean_inc(x_3); lean_inc(x_2); @@ -14898,7 +14898,7 @@ lean_dec(x_150); x_152 = l_List_toArrayAux___main___rarg(x_139, x_151); x_153 = x_152; x_154 = lean_unsigned_to_nat(0u); -x_155 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__4(x_154, x_153); +x_155 = l_Array_umapMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__4(x_154, x_153); x_156 = x_155; x_157 = l_Lean_List_format___rarg___closed__2; x_158 = l_Lean_mkAtomFrom(x_140, x_157); @@ -14924,7 +14924,7 @@ if (lean_is_exclusive(x_145)) { lean_dec_ref(x_145); x_166 = lean_box(0); } -x_167 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_164); +x_167 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_164); lean_dec(x_164); x_168 = lean_box(0); x_169 = lean_alloc_ctor(1, 2, 0); @@ -14941,7 +14941,7 @@ lean_ctor_set(x_171, 0, x_163); lean_ctor_set(x_171, 1, x_169); lean_ctor_set(x_171, 2, x_170); lean_ctor_set(x_171, 3, x_165); -x_172 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_135, x_6, x_144); +x_172 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_135, x_6, x_144); if (lean_obj_tag(x_172) == 0) { lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; @@ -15007,7 +15007,7 @@ lean_ctor_set(x_183, 1, x_182); lean_ctor_set(x_183, 2, x_139); lean_ctor_set(x_183, 3, x_143); lean_inc(x_6); -x_184 = l___private_Init_Lean_Elab_StructInst_19__expandStruct___main(x_183, x_6, x_144); +x_184 = l___private_Lean_Elab_StructInst_19__expandStruct___main(x_183, x_6, x_144); if (lean_obj_tag(x_184) == 0) { lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; @@ -15032,7 +15032,7 @@ if (lean_is_exclusive(x_145)) { lean_dec_ref(x_145); x_190 = lean_box(0); } -x_191 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_188); +x_191 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_188); lean_dec(x_188); x_192 = lean_box(0); x_193 = lean_alloc_ctor(1, 2, 0); @@ -15049,7 +15049,7 @@ lean_ctor_set(x_195, 0, x_187); lean_ctor_set(x_195, 1, x_193); lean_ctor_set(x_195, 2, x_194); lean_ctor_set(x_195, 3, x_189); -x_196 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_135, x_6, x_186); +x_196 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_135, x_6, x_186); if (lean_obj_tag(x_196) == 0) { lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; @@ -15175,7 +15175,7 @@ lean_dec(x_136); x_214 = lean_ctor_get(x_138, 0); lean_inc(x_214); lean_dec(x_138); -x_215 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_135, x_6, x_7); +x_215 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_135, x_6, x_7); if (lean_obj_tag(x_215) == 0) { lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; @@ -15233,12 +15233,12 @@ return x_224; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__1___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* l___private_Lean_Elab_StructInst_17__groupFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__1___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; lean_inc(x_6); -x_8 = l___private_Init_Lean_Elab_StructInst_12__mkFieldMap(x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_StructInst_12__mkFieldMap(x_5, x_6, x_7); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -15247,9 +15247,9 @@ lean_inc(x_9); x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); lean_dec(x_8); -x_11 = l_HashMap_toList___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__6(x_9); +x_11 = l_HashMap_toList___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__6(x_9); lean_dec(x_9); -x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_11, x_6, x_10); +x_12 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_11, x_6, x_10); return x_12; } else @@ -15279,7 +15279,7 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -15294,16 +15294,16 @@ lean_inc(x_7); lean_inc(x_5); x_8 = l_Lean_getStructureFields(x_5, x_7); lean_inc(x_1); -x_9 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_StructInst_17__groupFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__1___lambda__1___boxed), 7, 4); +x_9 = lean_alloc_closure((void*)(l___private_Lean_Elab_StructInst_17__groupFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__1___lambda__1___boxed), 7, 4); lean_closure_set(x_9, 0, x_1); lean_closure_set(x_9, 1, x_5); lean_closure_set(x_9, 2, x_7); lean_closure_set(x_9, 3, x_8); -x_10 = l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(x_1, x_9, x_2, x_6); +x_10 = l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__2(x_1, x_9, x_2, x_6); return x_10; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; uint8_t x_13; @@ -15413,7 +15413,7 @@ lean_dec(x_39); x_42 = l_Lean_Syntax_getArg(x_41, x_40); lean_dec(x_41); lean_inc(x_15); -x_43 = l___private_Init_Lean_Elab_StructInst_15__mkProjStx(x_42, x_15); +x_43 = l___private_Lean_Elab_StructInst_15__mkProjStx(x_42, x_15); x_44 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_44, 0, x_43); lean_inc(x_5); @@ -15450,7 +15450,7 @@ x_53 = l_Lean_Elab_Term_StructInst_Struct_source(x_1); lean_inc(x_10); lean_inc(x_15); lean_inc(x_3); -x_54 = l___private_Init_Lean_Elab_StructInst_16__mkSubstructSource(x_5, x_3, x_4, x_15, x_53, x_10, x_11); +x_54 = l___private_Lean_Elab_StructInst_16__mkSubstructSource(x_5, x_3, x_4, x_15, x_53, x_10, x_11); if (lean_obj_tag(x_54) == 0) { lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; @@ -15467,7 +15467,7 @@ lean_ctor_set(x_57, 1, x_52); lean_ctor_set(x_57, 2, x_6); lean_ctor_set(x_57, 3, x_55); lean_inc(x_10); -x_58 = l___private_Init_Lean_Elab_StructInst_19__expandStruct___main(x_57, x_10, x_56); +x_58 = l___private_Lean_Elab_StructInst_19__expandStruct___main(x_57, x_10, x_56); if (lean_obj_tag(x_58) == 0) { lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; @@ -15582,7 +15582,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_18__addMissingFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_18__addMissingFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -15599,7 +15599,7 @@ x_8 = l_Lean_getStructureFields(x_5, x_7); x_9 = l_Lean_Elab_Term_StructInst_Struct_ref(x_1); x_10 = lean_box(0); x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__11(x_1, x_5, x_7, x_8, x_9, x_10, x_8, x_11, x_10, x_2, x_6); +x_12 = l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__11(x_1, x_5, x_7, x_8, x_9, x_10, x_8, x_11, x_10, x_2, x_6); lean_dec(x_8); if (lean_obj_tag(x_12) == 0) { @@ -15655,14 +15655,14 @@ return x_25; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_19__expandStruct___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_19__expandStruct___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = l___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___closed__1; +x_4 = l___private_Lean_Elab_StructInst_8__expandCompositeFields___closed__1; x_5 = l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at_Lean_Elab_Term_StructInst_Struct_modifyFields___spec__1(x_1, x_4); lean_inc(x_2); -x_6 = l___private_Init_Lean_Elab_StructInst_9__expandNumLitFields(x_5, x_2, x_3); +x_6 = l___private_Lean_Elab_StructInst_9__expandNumLitFields(x_5, x_2, x_3); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -15672,7 +15672,7 @@ x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); lean_inc(x_2); -x_9 = l___private_Init_Lean_Elab_StructInst_10__expandParentFields(x_7, x_2, x_8); +x_9 = l___private_Lean_Elab_StructInst_10__expandParentFields(x_7, x_2, x_8); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -15682,7 +15682,7 @@ x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); lean_inc(x_2); -x_12 = l___private_Init_Lean_Elab_StructInst_17__groupFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__1(x_10, x_2, x_11); +x_12 = l___private_Lean_Elab_StructInst_17__groupFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__1(x_10, x_2, x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -15691,7 +15691,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec(x_12); -x_15 = l___private_Init_Lean_Elab_StructInst_18__addMissingFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__10(x_13, x_2, x_14); +x_15 = l___private_Lean_Elab_StructInst_18__addMissingFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__10(x_13, x_2, x_14); return x_15; } else @@ -15767,92 +15767,92 @@ return x_27; } } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__3___boxed(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__3___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__3(x_1); +x_2 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__3(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5___boxed(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_1); +x_2 = l_List_head_x21___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__5(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__7___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_foldlM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__7___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_AssocList_foldlM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__7(x_1, x_2); +x_3 = l_AssocList_foldlM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__7(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__8___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_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__8(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__8(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_HashMap_toList___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__6___boxed(lean_object* x_1) { +lean_object* l_HashMap_toList___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__6___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_HashMap_toList___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__6(x_1); +x_2 = l_HashMap_toList___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__6(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_List_mapM___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_StructInst_17__groupFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__1___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) { +lean_object* l___private_Lean_Elab_StructInst_17__groupFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__1___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___private_Init_Lean_Elab_StructInst_17__groupFields___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_StructInst_17__groupFields___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_1); return x_8; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_StructInst_19__expandStruct___main___spec__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Array_iterateMAux___main___at___private_Lean_Elab_StructInst_19__expandStruct___main___spec__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_7); lean_dec(x_4); lean_dec(x_1); return x_12; } } -lean_object* l___private_Init_Lean_Elab_StructInst_19__expandStruct(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_19__expandStruct(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_StructInst_19__expandStruct___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_StructInst_19__expandStruct___main(x_1, x_2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1() { _start: { lean_object* x_1; @@ -15860,27 +15860,27 @@ x_1 = lean_mk_string("unexpected constructor type"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1; +x_1 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2; +x_1 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -15984,7 +15984,7 @@ lean_dec(x_4); x_43 = lean_ctor_get(x_12, 1); lean_inc(x_43); lean_dec(x_12); -x_44 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; +x_44 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; x_45 = l_Lean_Elab_Term_throwError___rarg(x_1, x_44, x_6, x_43); return x_45; } @@ -16032,33 +16032,33 @@ return x_51; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_StructInst_21__getForallBody___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_StructInst_21__getForallBody___main(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -16098,15 +16098,15 @@ return x_10; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_21__getForallBody(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_StructInst_21__getForallBody(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_StructInst_21__getForallBody___main(x_1, x_2); +x_3 = l___private_Lean_Elab_StructInst_21__getForallBody___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_StructInst_22__propagateExpectedType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_StructInst_22__propagateExpectedType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_4) == 0) @@ -16127,7 +16127,7 @@ lean_object* x_9; lean_object* x_10; x_9 = lean_ctor_get(x_4, 0); lean_inc(x_9); lean_dec(x_4); -x_10 = l___private_Init_Lean_Elab_StructInst_21__getForallBody___main(x_3, x_2); +x_10 = l___private_Lean_Elab_StructInst_21__getForallBody___main(x_3, x_2); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; @@ -16215,16 +16215,16 @@ return x_27; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_22__propagateExpectedType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_StructInst_22__propagateExpectedType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_StructInst_22__propagateExpectedType(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_StructInst_22__propagateExpectedType(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); return x_7; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -16254,7 +16254,7 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); -x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(x_1, x_8, x_3, x_12); +x_13 = l_List_mapM___main___at___private_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(x_1, x_8, x_3, x_12); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { @@ -16294,7 +16294,7 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec(x_20); -x_23 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(x_1, x_19, x_3, x_22); +x_23 = l_List_mapM___main___at___private_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(x_1, x_19, x_3, x_22); x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); x_25 = lean_ctor_get(x_23, 1); @@ -16322,7 +16322,7 @@ return x_28; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_23__mkCtorHeader(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_StructInst_23__mkCtorHeader(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; @@ -16331,7 +16331,7 @@ lean_inc(x_6); x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_inc(x_4); -x_8 = l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(x_1, x_7, x_4, x_5); +x_8 = l_List_mapM___main___at___private_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(x_1, x_7, x_4, x_5); x_9 = lean_ctor_get(x_8, 0); lean_inc(x_9); x_10 = lean_ctor_get(x_8, 1); @@ -16352,7 +16352,7 @@ x_15 = lean_ctor_get(x_2, 3); lean_inc(x_15); x_16 = l_Array_empty___closed__1; lean_inc(x_4); -x_17 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(x_1, x_15, x_14, x_12, x_16, x_4, x_10); +x_17 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main(x_1, x_15, x_14, x_12, x_16, x_4, x_10); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -16369,7 +16369,7 @@ lean_dec(x_2); x_22 = lean_ctor_get(x_18, 2); lean_inc(x_22); lean_inc(x_4); -x_23 = l___private_Init_Lean_Elab_StructInst_22__propagateExpectedType(x_1, x_20, x_21, x_3, x_4, x_19); +x_23 = l___private_Lean_Elab_StructInst_22__propagateExpectedType(x_1, x_20, x_21, x_3, x_4, x_19); if (lean_obj_tag(x_23) == 0) { lean_object* x_24; lean_object* x_25; lean_object* x_26; @@ -16482,11 +16482,11 @@ return x_42; } } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_23__mkCtorHeader___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Lean_Elab_StructInst_23__mkCtorHeader___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_List_mapM___main___at___private_Init_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_List_mapM___main___at___private_Lean_Elab_StructInst_23__mkCtorHeader___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -16639,7 +16639,7 @@ lean_dec(x_1); return x_7; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1() { _start: { lean_object* x_1; @@ -16647,27 +16647,27 @@ x_1 = lean_mk_string("unexpected unexpanded structure field"); return x_1; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_3) == 0) @@ -16923,7 +16923,7 @@ lean_ctor_set(x_83, 0, x_79); lean_inc(x_4); lean_inc(x_83); lean_inc(x_82); -x_84 = l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(x_82, x_83, x_4, x_43); +x_84 = l___private_Lean_Elab_StructInst_24__elabStruct___main(x_82, x_83, x_4, x_43); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; uint8_t x_87; @@ -17166,7 +17166,7 @@ lean_ctor_set(x_128, 0, x_79); lean_inc(x_4); lean_inc(x_128); lean_inc(x_127); -x_129 = l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(x_127, x_128, x_4, x_43); +x_129 = l___private_Lean_Elab_StructInst_24__elabStruct___main(x_127, x_128, x_4, x_43); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; @@ -17395,7 +17395,7 @@ lean_dec(x_44); x_45 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_45, 0, x_42); x_46 = l_Lean_indentExpr(x_45); -x_47 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; +x_47 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; x_48 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -17632,7 +17632,7 @@ lean_ctor_set(x_222, 0, x_218); lean_inc(x_4); lean_inc(x_222); lean_inc(x_220); -x_223 = l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(x_220, x_222, x_4, x_185); +x_223 = l___private_Lean_Elab_StructInst_24__elabStruct___main(x_220, x_222, x_4, x_185); if (lean_obj_tag(x_223) == 0) { 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; @@ -17858,7 +17858,7 @@ lean_dec(x_186); x_187 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_187, 0, x_184); x_188 = l_Lean_indentExpr(x_187); -x_189 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; +x_189 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; x_190 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_190, 0, x_189); lean_ctor_set(x_190, 1, x_188); @@ -18114,7 +18114,7 @@ lean_ctor_set(x_315, 0, x_311); lean_inc(x_4); lean_inc(x_315); lean_inc(x_313); -x_316 = l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(x_313, x_315, x_4, x_277); +x_316 = l___private_Lean_Elab_StructInst_24__elabStruct___main(x_313, x_315, x_4, x_277); if (lean_obj_tag(x_316) == 0) { 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; @@ -18351,7 +18351,7 @@ lean_dec(x_278); x_279 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_279, 0, x_276); x_280 = l_Lean_indentExpr(x_279); -x_281 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; +x_281 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; x_282 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_282, 0, x_281); lean_ctor_set(x_282, 1, x_280); @@ -18621,7 +18621,7 @@ lean_ctor_set(x_413, 0, x_409); lean_inc(x_4); lean_inc(x_413); lean_inc(x_411); -x_414 = l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(x_411, x_413, x_4, x_374); +x_414 = l___private_Lean_Elab_StructInst_24__elabStruct___main(x_411, x_413, x_4, x_374); if (lean_obj_tag(x_414) == 0) { 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; @@ -18869,7 +18869,7 @@ lean_dec(x_375); x_376 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_376, 0, x_373); x_377 = l_Lean_indentExpr(x_376); -x_378 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; +x_378 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; x_379 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_379, 0, x_378); lean_ctor_set(x_379, 1, x_377); @@ -18992,7 +18992,7 @@ lean_dec(x_19); x_20 = lean_ctor_get(x_8, 0); lean_inc(x_20); lean_dec(x_8); -x_21 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3; +x_21 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3; lean_inc(x_4); x_22 = l_Lean_Elab_Term_throwError___rarg(x_20, x_21, x_4, x_5); lean_dec(x_20); @@ -19266,7 +19266,7 @@ lean_ctor_set(x_537, 0, x_533); lean_inc(x_4); lean_inc(x_537); lean_inc(x_535); -x_538 = l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(x_535, x_537, x_4, x_497); +x_538 = l___private_Lean_Elab_StructInst_24__elabStruct___main(x_535, x_537, x_4, x_497); if (lean_obj_tag(x_538) == 0) { 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; @@ -19518,7 +19518,7 @@ lean_dec(x_498); x_499 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_499, 0, x_496); x_500 = l_Lean_indentExpr(x_499); -x_501 = l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; +x_501 = l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3; x_502 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_502, 0, x_501); lean_ctor_set(x_502, 1, x_500); @@ -19640,7 +19640,7 @@ lean_dec(x_476); x_477 = lean_ctor_get(x_465, 0); lean_inc(x_477); lean_dec(x_465); -x_478 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3; +x_478 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3; lean_inc(x_4); x_479 = l_Lean_Elab_Term_throwError___rarg(x_477, x_478, x_4, x_5); lean_dec(x_477); @@ -19651,7 +19651,7 @@ goto block_475; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_StructInst_24__elabStruct___main(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; @@ -19666,7 +19666,7 @@ lean_inc(x_8); x_9 = l_Lean_getStructureCtor(x_6, x_8); x_10 = l_Lean_Elab_Term_StructInst_Struct_ref(x_1); lean_inc(x_3); -x_11 = l___private_Init_Lean_Elab_StructInst_23__mkCtorHeader(x_10, x_9, x_2, x_3, x_7); +x_11 = l___private_Lean_Elab_StructInst_23__mkCtorHeader(x_10, x_9, x_2, x_3, x_7); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -19688,7 +19688,7 @@ x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); x_19 = l_Lean_Elab_Term_StructInst_Struct_fields(x_1); -x_20 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1(x_8, x_18, x_19, x_3, x_13); +x_20 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1(x_8, x_18, x_19, x_3, x_13); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; lean_object* x_22; uint8_t x_23; @@ -19819,11 +19819,11 @@ return x_50; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_24__elabStruct(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_StructInst_24__elabStruct(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_StructInst_24__elabStruct___main(x_1, x_2, x_3, x_4); return x_5; } } @@ -21065,7 +21065,7 @@ x_25 = lean_mk_array(x_23, x_24); x_26 = lean_unsigned_to_nat(1u); x_27 = lean_nat_sub(x_23, x_26); lean_dec(x_23); -x_28 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_25, x_27); +x_28 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_25, x_27); x_29 = x_28; x_30 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Term_StructInst_DefaultFields_reduce___main___spec__1), 5, 3); lean_closure_set(x_30, 0, x_1); @@ -21133,7 +21133,7 @@ x_44 = lean_unsigned_to_nat(0u); x_45 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_44); x_46 = lean_mk_empty_array_with_capacity(x_45); lean_dec(x_45); -x_47 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_46); +x_47 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_46); x_48 = l_Lean_Expr_betaRev(x_19, x_47); lean_dec(x_47); lean_dec(x_19); @@ -22117,7 +22117,7 @@ x_53 = lean_ctor_get(x_51, 1); lean_inc(x_53); lean_dec(x_51); lean_inc(x_9); -x_54 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_53, x_48); +x_54 = l___private_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_53, x_48); lean_dec(x_45); x_55 = 8192; x_56 = l_Lean_Expr_FindImpl_initCache; @@ -22245,8 +22245,8 @@ lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; x_86 = lean_ctor_get(x_51, 0); x_87 = lean_ctor_get(x_51, 1); lean_inc(x_9); -x_88 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_9, x_45, x_86); -x_89 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_87, x_48); +x_88 = l___private_Lean_Elab_Term_2__fromMetaException(x_9, x_45, x_86); +x_89 = l___private_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_87, x_48); lean_dec(x_45); lean_ctor_set(x_51, 1, x_89); lean_ctor_set(x_51, 0, x_88); @@ -22261,8 +22261,8 @@ lean_inc(x_91); lean_inc(x_90); lean_dec(x_51); lean_inc(x_9); -x_92 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_9, x_45, x_90); -x_93 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_91, x_48); +x_92 = l___private_Lean_Elab_Term_2__fromMetaException(x_9, x_45, x_90); +x_93 = l___private_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_91, x_48); lean_dec(x_45); x_94 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_94, 0, x_92); @@ -22308,7 +22308,7 @@ x_106 = lean_ctor_get(x_104, 1); lean_inc(x_106); lean_dec(x_104); lean_inc(x_9); -x_107 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_106, x_99); +x_107 = l___private_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_106, x_99); lean_dec(x_45); x_108 = 8192; x_109 = l_Lean_Expr_FindImpl_initCache; @@ -22440,8 +22440,8 @@ if (lean_is_exclusive(x_104)) { x_137 = lean_box(0); } lean_inc(x_9); -x_138 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_9, x_45, x_135); -x_139 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_136, x_99); +x_138 = l___private_Lean_Elab_Term_2__fromMetaException(x_9, x_45, x_135); +x_139 = l___private_Lean_Elab_Term_3__fromMetaState(x_45, x_9, x_42, x_136, x_99); lean_dec(x_45); if (lean_is_scalar(x_137)) { x_140 = lean_alloc_ctor(1, 2, 0); @@ -22513,7 +22513,7 @@ x_156 = lean_ctor_get(x_154, 1); lean_inc(x_156); lean_dec(x_154); lean_inc(x_9); -x_157 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_142, x_9, x_42, x_156, x_148); +x_157 = l___private_Lean_Elab_Term_3__fromMetaState(x_142, x_9, x_42, x_156, x_148); lean_dec(x_142); x_158 = 8192; x_159 = l_Lean_Expr_FindImpl_initCache; @@ -22644,8 +22644,8 @@ if (lean_is_exclusive(x_154)) { x_188 = lean_box(0); } lean_inc(x_9); -x_189 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_9, x_142, x_186); -x_190 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_142, x_9, x_42, x_187, x_148); +x_189 = l___private_Lean_Elab_Term_2__fromMetaException(x_9, x_142, x_186); +x_190 = l___private_Lean_Elab_Term_3__fromMetaState(x_142, x_9, x_42, x_187, x_148); lean_dec(x_142); if (lean_is_scalar(x_188)) { x_191 = lean_alloc_ctor(1, 2, 0); @@ -23473,7 +23473,7 @@ x_57 = l_Lean_Elab_Term_StructInst_DefaultFields_getFieldName(x_15); lean_dec(x_15); x_58 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_58, 0, x_57); -x_59 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; +x_59 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; x_60 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); @@ -23649,7 +23649,7 @@ x_98 = l_Lean_Elab_Term_StructInst_DefaultFields_getFieldName(x_74); lean_dec(x_74); x_99 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_99, 0, x_98); -x_100 = l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; +x_100 = l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3; x_101 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_101, 0, x_100); lean_ctor_set(x_101, 1, x_99); @@ -23781,7 +23781,7 @@ return x_22; } } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__1() { +lean_object* _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__1() { _start: { lean_object* x_1; @@ -23789,27 +23789,27 @@ x_1 = lean_mk_string("invalid {...} notation, '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__2() { +lean_object* _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__1; +x_1 = l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__3() { +lean_object* _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__2; +x_1 = l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__4() { +lean_object* _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__4() { _start: { lean_object* x_1; @@ -23817,34 +23817,34 @@ x_1 = lean_mk_string("' is not a structure"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__5() { +lean_object* _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__4; +x_1 = l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__6() { +lean_object* _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__5; +x_1 = l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_StructInst_25__elabStructInstAux(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_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_6 = l___private_Init_Lean_Elab_StructInst_5__getStructName(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_StructInst_5__getStructName(x_1, x_2, x_3, x_4, x_5); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; @@ -23863,7 +23863,7 @@ lean_inc(x_7); x_12 = l_Lean_isStructureLike(x_10, x_7); lean_inc(x_7); lean_inc(x_1); -x_13 = l___private_Init_Lean_Elab_StructInst_7__mkStructView(x_1, x_7, x_3); +x_13 = l___private_Lean_Elab_StructInst_7__mkStructView(x_1, x_7, x_3); if (x_12 == 0) { lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; @@ -23871,11 +23871,11 @@ lean_dec(x_13); lean_dec(x_2); x_76 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_76, 0, x_7); -x_77 = l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__3; +x_77 = l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__3; x_78 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); -x_79 = l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__6; +x_79 = l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__6; x_80 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_80, 0, x_78); lean_ctor_set(x_80, 1, x_79); @@ -23930,7 +23930,7 @@ x_19 = lean_ctor_get(x_13, 0); lean_inc(x_19); lean_dec(x_13); lean_inc(x_4); -x_20 = l___private_Init_Lean_Elab_StructInst_19__expandStruct___main(x_19, x_4, x_14); +x_20 = l___private_Lean_Elab_StructInst_19__expandStruct___main(x_19, x_4, x_14); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; @@ -23945,7 +23945,7 @@ lean_inc(x_24); x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); lean_dec(x_23); -x_26 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__2; +x_26 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__2; x_27 = l_Lean_checkTraceOption(x_24, x_26); lean_dec(x_24); if (x_27 == 0) @@ -23953,7 +23953,7 @@ if (x_27 == 0) lean_object* x_28; lean_dec(x_1); lean_inc(x_4); -x_28 = l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(x_21, x_2, x_4, x_25); +x_28 = l___private_Lean_Elab_StructInst_24__elabStruct___main(x_21, x_2, x_4, x_25); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; @@ -24058,7 +24058,7 @@ x_52 = lean_ctor_get(x_51, 1); lean_inc(x_52); lean_dec(x_51); lean_inc(x_4); -x_53 = l___private_Init_Lean_Elab_StructInst_24__elabStruct___main(x_21, x_2, x_4, x_52); +x_53 = l___private_Lean_Elab_StructInst_24__elabStruct___main(x_21, x_2, x_4, x_52); if (lean_obj_tag(x_53) == 0) { lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; @@ -24202,7 +24202,7 @@ return x_89; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_26__expandStructInstExpectedType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_26__expandStructInstExpectedType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -24234,9 +24234,9 @@ x_20 = lean_array_push(x_12, x_19); x_21 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_21, 0, x_18); lean_ctor_set(x_21, 1, x_20); -x_22 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; +x_22 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__28; x_23 = lean_array_push(x_22, x_21); -x_24 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_24 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_25 = lean_array_push(x_23, x_24); x_26 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_27 = lean_alloc_ctor(1, 2, 0); @@ -24262,11 +24262,11 @@ return x_31; } } } -lean_object* l___private_Init_Lean_Elab_StructInst_26__expandStructInstExpectedType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_StructInst_26__expandStructInstExpectedType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_StructInst_26__expandStructInstExpectedType(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_StructInst_26__expandStructInstExpectedType(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -24325,7 +24325,7 @@ x_93 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_85); lean_inc(x_1); -x_94 = l___private_Init_Lean_Elab_StructInst_26__expandStructInstExpectedType(x_1, x_93, x_91); +x_94 = l___private_Lean_Elab_StructInst_26__expandStructInstExpectedType(x_1, x_93, x_91); lean_dec(x_93); x_95 = lean_ctor_get(x_94, 0); lean_inc(x_95); @@ -24358,7 +24358,7 @@ x_104 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_85); lean_inc(x_1); -x_105 = l___private_Init_Lean_Elab_StructInst_26__expandStructInstExpectedType(x_1, x_104, x_102); +x_105 = l___private_Lean_Elab_StructInst_26__expandStructInstExpectedType(x_1, x_104, x_102); lean_dec(x_104); x_106 = lean_ctor_get(x_105, 0); lean_inc(x_106); @@ -24383,7 +24383,7 @@ if (lean_obj_tag(x_5) == 0) lean_object* x_7; lean_object* x_8; lean_inc(x_3); lean_inc(x_1); -x_7 = l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource(x_1, x_3, x_6); +x_7 = l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource(x_1, x_3, x_6); x_8 = lean_ctor_get(x_7, 0); lean_inc(x_8); if (lean_obj_tag(x_8) == 0) @@ -24393,7 +24393,7 @@ x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); lean_inc(x_3); -x_10 = l___private_Init_Lean_Elab_StructInst_2__getStructSource(x_1, x_3, x_9); +x_10 = l___private_Lean_Elab_StructInst_2__getStructSource(x_1, x_3, x_9); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -24403,7 +24403,7 @@ x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); lean_inc(x_3); -x_13 = l___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f(x_1, x_3, x_12); +x_13 = l___private_Lean_Elab_StructInst_3__isModifyOp_x3f(x_1, x_3, x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -24415,7 +24415,7 @@ lean_object* x_15; lean_object* x_16; x_15 = lean_ctor_get(x_13, 1); lean_inc(x_15); lean_dec(x_13); -x_16 = l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux(x_1, x_2, x_11, x_3, x_15); +x_16 = l___private_Lean_Elab_StructInst_25__elabStructInstAux(x_1, x_2, x_11, x_3, x_15); return x_16; } else @@ -24432,7 +24432,7 @@ lean_dec(x_14); x_19 = lean_ctor_get(x_11, 0); lean_inc(x_19); lean_dec(x_11); -x_20 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp(x_1, x_18, x_19, x_2, x_3, x_17); +x_20 = l___private_Lean_Elab_StructInst_4__elabModifyOp(x_1, x_18, x_19, x_2, x_3, x_17); return x_20; } else @@ -24682,11 +24682,11 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_StructInst_27__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Elab_StructInst_27__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__2; +x_2 = l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__2; x_3 = l_Lean_registerTraceClass(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -24738,123 +24738,123 @@ return x_13; } } } -lean_object* initialize_Init_Lean_Util_FindExpr(lean_object*); -lean_object* initialize_Init_Lean_Elab_App(lean_object*); -lean_object* initialize_Init_Lean_Elab_Binders(lean_object*); -lean_object* initialize_Init_Lean_Elab_Quotation(lean_object*); +lean_object* initialize_Lean_Util_FindExpr(lean_object*); +lean_object* initialize_Lean_Elab_App(lean_object*); +lean_object* initialize_Lean_Elab_Binders(lean_object*); +lean_object* initialize_Lean_Elab_Quotation(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_StructInst(lean_object* w) { +lean_object* initialize_Lean_Elab_StructInst(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Util_FindExpr(lean_io_mk_world()); +res = initialize_Lean_Util_FindExpr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_App(lean_io_mk_world()); +res = initialize_Lean_Elab_App(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Binders(lean_io_mk_world()); +res = initialize_Lean_Elab_Binders(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Quotation(lean_io_mk_world()); +res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1); -l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2 = _init_l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2); -l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3 = _init_l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3); -l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4 = _init_l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4); +l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1 = _init_l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__1); +l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2 = _init_l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__2); +l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3 = _init_l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__3); +l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4 = _init_l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_1__expandNonAtomicExplicitSource___closed__4); l_Lean_Elab_Term_StructInst_Source_inhabited = _init_l_Lean_Elab_Term_StructInst_Source_inhabited(); lean_mark_persistent(l_Lean_Elab_Term_StructInst_Source_inhabited); -l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__1); -l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__2 = _init_l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__2); -l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__3 = _init_l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_2__getStructSource___closed__3); -l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1 = _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1(); -lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1); -l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2 = _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2(); -lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2); -l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3 = _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3(); -lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3); -l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4 = _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4(); -lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4); -l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5 = _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5(); -lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5); -l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6 = _init_l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6(); -lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Init_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__1); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__2 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__2); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__3 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__3); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__4 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__4); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__5 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__5); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__6 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__6); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__7 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__7); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__8 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__8); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__9 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__9); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__10 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__10); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__11 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__11); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__12 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__12); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__13 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__13); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__14 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__14); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__15 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__15); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__16 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__16); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__17 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__17); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__18 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__18); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__19 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__19); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__20 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__20); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__21 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__21); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__22 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__22); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__23 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__23); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__24 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__24); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__25 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__25); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__26 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__26); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__27 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__27); -l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__28 = _init_l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_4__elabModifyOp___closed__28); -l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__1); -l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__2 = _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__2); -l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__3 = _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__3); -l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__4 = _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__4); -l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__5 = _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__5); -l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6 = _init_l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_5__getStructName___closed__6); +l___private_Lean_Elab_StructInst_2__getStructSource___closed__1 = _init_l___private_Lean_Elab_StructInst_2__getStructSource___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_2__getStructSource___closed__1); +l___private_Lean_Elab_StructInst_2__getStructSource___closed__2 = _init_l___private_Lean_Elab_StructInst_2__getStructSource___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_2__getStructSource___closed__2); +l___private_Lean_Elab_StructInst_2__getStructSource___closed__3 = _init_l___private_Lean_Elab_StructInst_2__getStructSource___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_2__getStructSource___closed__3); +l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1 = _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1(); +lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__1); +l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2 = _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2(); +lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__2); +l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3 = _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3(); +lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__3); +l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4 = _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4(); +lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__4); +l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5 = _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5(); +lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__5); +l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6 = _init_l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6(); +lean_mark_persistent(l_Array_foldlStepMAux___main___at___private_Lean_Elab_StructInst_3__isModifyOp_x3f___spec__1___closed__6); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__1 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__1); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__2 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__2); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__3); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__4 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__4); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__5 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__5); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__6 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__6); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__7 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__7); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__8 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__8); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__9 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__9); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__10 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__10); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__11 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__11); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__12 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__12); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__13 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__13); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__14 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__14); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__15 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__15); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__16 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__16); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__17 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__17); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__18 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__18(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__18); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__19 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__19(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__19); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__20 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__20(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__20); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__21 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__21(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__21); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__22 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__22(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__22); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__23 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__23(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__23); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__24 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__24(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__24); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__25 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__25(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__25); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__26 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__26(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__26); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__27 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__27(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__27); +l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__28 = _init_l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__28(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_4__elabModifyOp___closed__28); +l___private_Lean_Elab_StructInst_5__getStructName___closed__1 = _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_5__getStructName___closed__1); +l___private_Lean_Elab_StructInst_5__getStructName___closed__2 = _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_5__getStructName___closed__2); +l___private_Lean_Elab_StructInst_5__getStructName___closed__3 = _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_5__getStructName___closed__3); +l___private_Lean_Elab_StructInst_5__getStructName___closed__4 = _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_5__getStructName___closed__4); +l___private_Lean_Elab_StructInst_5__getStructName___closed__5 = _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_5__getStructName___closed__5); +l___private_Lean_Elab_StructInst_5__getStructName___closed__6 = _init_l___private_Lean_Elab_StructInst_5__getStructName___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_5__getStructName___closed__6); l_Lean_Elab_Term_StructInst_FieldLHS_inhabited___closed__1 = _init_l_Lean_Elab_Term_StructInst_FieldLHS_inhabited___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_StructInst_FieldLHS_inhabited___closed__1); l_Lean_Elab_Term_StructInst_FieldLHS_inhabited = _init_l_Lean_Elab_Term_StructInst_FieldLHS_inhabited(); @@ -24903,82 +24903,82 @@ l_Lean_Elab_Term_StructInst_Field_hasToString___closed__1 = _init_l_Lean_Elab_Te lean_mark_persistent(l_Lean_Elab_Term_StructInst_Field_hasToString___closed__1); l_Lean_Elab_Term_StructInst_Field_hasToString = _init_l_Lean_Elab_Term_StructInst_Field_hasToString(); lean_mark_persistent(l_Lean_Elab_Term_StructInst_Field_hasToString); -l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__1); -l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__2 = _init_l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_6__toFieldLHS___closed__2); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1); -l___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_8__expandCompositeFields___closed__1); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8); -l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9); -l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1); -l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2); -l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3); -l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4); -l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5); -l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6); -l___private_Init_Lean_Elab_StructInst_12__mkFieldMap___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_12__mkFieldMap___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_12__mkFieldMap___closed__1); -l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__1); -l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__2 = _init_l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__2); -l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__3 = _init_l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_14__getFieldIdx___closed__3); -l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1); -l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2); -l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3 = _init_l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3); -l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1); -l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2 = _init_l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2); -l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3 = _init_l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3); +l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__1 = _init_l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__1); +l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__2 = _init_l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_6__toFieldLHS___closed__2); +l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_7__mkStructView___spec__2___closed__1); +l___private_Lean_Elab_StructInst_8__expandCompositeFields___closed__1 = _init_l___private_Lean_Elab_StructInst_8__expandCompositeFields___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_8__expandCompositeFields___closed__1); +l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__1); +l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__2); +l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__3); +l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__4); +l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__5); +l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__6); +l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__7); +l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__8); +l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_9__expandNumLitFields___spec__1___closed__9); +l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__1); +l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__2); +l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__3); +l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__4); +l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__5); +l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__6); +l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__7); +l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__8); +l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9 = _init_l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9(); +lean_mark_persistent(l_List_mapM___main___at___private_Lean_Elab_StructInst_10__expandParentFields___spec__2___closed__9); +l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1 = _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__1); +l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2 = _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__2); +l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3 = _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__3); +l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4 = _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__4); +l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5 = _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__5); +l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6 = _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_StructInst_12__mkFieldMap___spec__10___closed__6); +l___private_Lean_Elab_StructInst_12__mkFieldMap___closed__1 = _init_l___private_Lean_Elab_StructInst_12__mkFieldMap___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_12__mkFieldMap___closed__1); +l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__1 = _init_l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__1); +l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__2 = _init_l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__2); +l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__3 = _init_l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_14__getFieldIdx___closed__3); +l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1 = _init_l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__1); +l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2 = _init_l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__2); +l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3 = _init_l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_17__groupFields___lambda__3___closed__3); +l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1 = _init_l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__1); +l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2 = _init_l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__2); +l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3 = _init_l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_20__mkCtorHeaderAux___main___closed__3); l_Lean_Elab_Term_StructInst_markDefaultMissing___closed__1 = _init_l_Lean_Elab_Term_StructInst_markDefaultMissing___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_StructInst_markDefaultMissing___closed__1); l_Lean_Elab_Term_StructInst_markDefaultMissing___closed__2 = _init_l_Lean_Elab_Term_StructInst_markDefaultMissing___closed__2(); @@ -24995,12 +24995,12 @@ l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__5 = _init_l_ lean_mark_persistent(l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__5); l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__6 = _init_l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__6(); lean_mark_persistent(l_Lean_Elab_Term_StructInst_throwFailedToElabField___rarg___closed__6); -l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1); -l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2); -l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3); +l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1 = _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__1); +l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2 = _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__2); +l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3 = _init_l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_StructInst_24__elabStruct___main___spec__1___closed__3); l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___closed__1 = _init_l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___closed__1); l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___closed__2 = _init_l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefaultAux___main___closed__2(); @@ -25015,18 +25015,18 @@ l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main___closed__2 = _in lean_mark_persistent(l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main___closed__2); l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main___closed__3 = _init_l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main___closed__3(); lean_mark_persistent(l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___main___closed__3); -l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__1 = _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__1); -l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__2 = _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__2); -l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__3 = _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__3); -l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__4 = _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__4); -l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__5 = _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__5); -l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__6 = _init_l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_StructInst_25__elabStructInstAux___closed__6); +l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__1 = _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__1); +l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__2 = _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__2); +l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__3 = _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__3); +l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__4 = _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__4); +l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__5 = _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__5); +l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__6 = _init_l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_StructInst_25__elabStructInstAux___closed__6); l_Lean_Elab_Term_StructInst_elabStructInst___closed__1 = _init_l_Lean_Elab_Term_StructInst_elabStructInst___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_StructInst_elabStructInst___closed__1); l_Lean_Elab_Term_StructInst_elabStructInst___closed__2 = _init_l_Lean_Elab_Term_StructInst_elabStructInst___closed__2(); @@ -25038,7 +25038,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst___c res = l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l___private_Init_Lean_Elab_StructInst_27__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_Elab_StructInst_27__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c similarity index 93% rename from stage0/stdlib/Init/Lean/Elab/Syntax.c rename to stage0/stdlib/Lean/Elab/Syntax.c index 294085c10c..40ba96babd 100644 --- a/stage0/stdlib/Init/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Syntax -// Imports: Init.Lean.Elab.Command Init.Lean.Elab.Quotation +// Module: Lean.Elab.Syntax +// Imports: Lean.Elab.Command Lean.Elab.Quotation #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -20,10 +20,8 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__95; extern lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__6; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRules___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__79; extern lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__1; @@ -34,7 +32,6 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__12; lean_object* l_Lean_Name_eraseMacroScopes(lean_object*); lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandNotation___closed__2; -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(lean_object*); extern lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__2; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Command_expandNotation___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getOptions(lean_object*, lean_object*); @@ -47,8 +44,9 @@ extern lean_object* l_Lean_Elab_mkMacroAttribute___closed__7; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__75; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__15; extern lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__1; +lean_object* l___private_Lean_Elab_Syntax_3__markAsTrailingParser___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Syntax_many1___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Syntax_1__expandOptPrecedence(lean_object*); +lean_object* l___private_Lean_Elab_Syntax_5__withoutLeftRec___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__36; lean_object* l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabReserve___closed__1; @@ -57,15 +55,15 @@ lean_object* l_unreachable_x21___rarg(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__4; extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__26; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +lean_object* l___private_Lean_Syntax_7__quoteName___main(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__8; extern lean_object* l_Lean_identKind___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__92; -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main(lean_object*); lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__14; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__28; lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1; +lean_object* l___private_Lean_Elab_Syntax_2__mkParserSeq(lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Command_expandNotation___spec__3(lean_object*, lean_object*); lean_object* l_Array_filterSepElemsM___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__1; @@ -80,6 +78,7 @@ lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__3; extern lean_object* l_Lean_Elab_Command_commandElabAttribute; lean_object* l___private_Init_LeanInit_13__filterSepElemsMAux___main___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_6__elabKind(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__33; lean_object* l___regBuiltin_Lean_Elab_Command_elabMacroRules(lean_object*); lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); @@ -88,26 +87,33 @@ lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__13; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__23; lean_object* l_Lean_Elab_Command_elabSyntax___closed__7; lean_object* l_Lean_Elab_Command_expandMacroArgIntoPattern(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_7__antiquote___main(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__101; lean_object* l___regBuiltin_Lean_Elab_Command_expandMacro___closed__1; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; extern lean_object* l_Lean_Parser_unquotedSymbolFn___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__46; lean_object* l_Array_mapSepElemsM___at_Lean_Elab_Command_elabMacroRulesAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_7__antiquote___main___closed__3; uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_2__mkParserSeq___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__24; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8; +lean_object* l___private_Lean_Elab_Command_6__mkTermContext(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; extern lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__19; +lean_object* l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg(lean_object*); lean_object* l_Lean_Elab_Command_strLitPrecToPattern___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_checkLeftRec___closed__9; +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; lean_object* l_Lean_Elab_Command_elabSyntax___closed__16; lean_object* l___private_Init_LeanInit_14__mapSepElemsMAux___main___at_Lean_Elab_Command_elabMacroRulesAux___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__118; -lean_object* l___private_Init_Lean_Elab_Command_9__getVarDecls(lean_object*); +lean_object* l___private_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__39; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); @@ -115,19 +121,18 @@ lean_object* l_Lean_Elab_Term_checkLeftRec___closed__8; lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__51; extern lean_object* l_Lean_charLitKind___closed__1; -lean_object* l___private_Init_Lean_Elab_Syntax_4__withNotFirst(lean_object*); lean_object* l_Lean_Elab_Command_strLitPrecToPattern(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_8__regTraceClasses(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__20; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__9; lean_object* l_Lean_Elab_Term_toParserDescrAux(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__81; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__6; lean_object* l_Lean_Elab_Command_expandMacro___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__27; extern lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__73; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__98; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__25; lean_object* lean_string_utf8_byte_size(lean_object*); @@ -142,7 +147,6 @@ lean_object* l_Lean_Elab_Command_elabSyntax___closed__32; extern lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__29; -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__43; lean_object* l___regBuiltin_Lean_Elab_Command_elabReserve(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__120; @@ -151,15 +155,14 @@ lean_object* l_Lean_Elab_Command_elabMixfix___boxed(lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Command_expandNotation___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__37; lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_4__withNotFirst(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__5; -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__3; lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__103; lean_object* l_Array_filterSepElemsM___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__28; -lean_object* l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2; lean_object* l___private_Init_LeanInit_13__filterSepElemsMAux___main___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__30; lean_object* l_Lean_Elab_Term_checkLeftRec___closed__1; lean_object* l_Lean_Elab_Term_checkLeftRec___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -171,12 +174,12 @@ extern lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__49; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__105; extern lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote___main(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__115; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_toParserDescrAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_expandNotation(lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__85; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1; extern lean_object* l_Lean_Elab_mkMacroAttribute___closed__9; lean_object* l_Lean_Elab_Command_expandMacro(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__100; @@ -190,17 +193,20 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__112; lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMixfix___rarg(lean_object*); lean_object* l_Lean_Elab_Command_getCurrNamespace(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Command_expandNotation___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Nat_HasQuote___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__61; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__11; extern lean_object* l_Lean_numLitKind; extern lean_object* l_Lean_Parser_Command_strLitPrec___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__1; +lean_object* l___private_Lean_Elab_Syntax_8__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; extern lean_object* l_Lean_Expr_isSyntheticSorry___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__87; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__68; @@ -221,15 +227,15 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__67; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__83; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__2; extern lean_object* l_Lean_Parser_Command_def___elambda__1___closed__2; +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; lean_object* l_Lean_Macro_addMacroScope(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Syntax_8__regTraceClasses(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_String_HasQuote___closed__1; lean_object* l_Lean_Elab_Command_elabSyntax___closed__25; extern lean_object* l_Lean_numLitKind___closed__1; extern lean_object* l_Lean_Parser_Command_def___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser(lean_object*, uint8_t, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_strLitKind___closed__1; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__32; @@ -238,21 +244,22 @@ lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__10; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__1; lean_object* l_Lean_Elab_Command_elabMacroRules___closed__1; lean_object* l_Lean_Elab_Command_elabSyntax___closed__29; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2; lean_object* l_Array_filterAux___main___at_Lean_Elab_Command_expandNotation___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__20; extern lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__4; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__56; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__66; lean_object* l_Nat_repr(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_attrInstance___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Command_1__ioErrorToMessage(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__3; lean_object* l_Lean_Elab_Command_elabMacroRules(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__55; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__37; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__4; -lean_object* l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__7; lean_object* l_Lean_Elab_Command_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*); @@ -261,19 +268,17 @@ extern lean_object* l_Lean_Parser_mkParserAttributeImpl___closed__1; extern lean_object* l_Lean_Parser_termParser___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__33; extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__5; +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_Elab_Command_elabSyntax___closed__22; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__16; extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Command_expandMacro(lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; lean_object* l_Lean_Elab_Command_expandNotation___closed__3; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_checkLeftRec___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__91; @@ -281,19 +286,20 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__78; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__22; lean_object* l_Lean_Elab_Command_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_5__withoutLeftRec___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_1__expandOptPrecedence(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__93; +lean_object* l___private_Lean_Elab_Syntax_7__antiquote___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__121; extern lean_object* l_Lean_Parser_Command_docComment___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Command_6__mkTermContext(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__28; extern lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_mkKindName___closed__1; +extern lean_object* l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__89; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__47; lean_object* l_Lean_Elab_Term_toParserDescrAux___main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__5; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_elabSyntax___closed__14; lean_object* l_Lean_Elab_Command_elabSyntax___closed__30; @@ -302,6 +308,7 @@ extern lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__1; extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__2; extern lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__5; lean_object* l_Lean_Elab_Command_elabSyntax___closed__18; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabMixfix(lean_object*); lean_object* l_Lean_Elab_Command_elabCommand___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__15; @@ -316,11 +323,11 @@ lean_object* l_Lean_Elab_Command_mkKindName___closed__2; extern lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__25; lean_object* l_Lean_Elab_Command_elabSyntax___closed__3; +lean_object* l___private_Lean_Elab_Syntax_5__withoutLeftRec___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_macroArgSimple___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_6__elabKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__52; lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__34; @@ -330,7 +337,6 @@ lean_object* l_Array_umapMAux___main___at_Lean_Elab_Command_expandMacro___spec__ lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__11; extern lean_object* l_Lean_Parser_Command_declModifiers___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabSyntax___closed__35; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__117; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__77; @@ -338,6 +344,7 @@ lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_checkLeftRec___closed__5; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__5; extern lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Command_2__getState(lean_object*, lean_object*); extern lean_object* l_Lean_String_HasQuote___closed__2; lean_object* l_Lean_Elab_Term_checkLeftRec___closed__6; extern lean_object* l_Lean_nullKind___closed__2; @@ -350,9 +357,7 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__108; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__7; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__71; extern lean_object* l_Lean_mkAppStx___closed__3; -lean_object* l___private_Init_Lean_Elab_Command_2__getState(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_inferMacroRulesAltKind(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_2__mkParserSeq___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_hasMacroScopes___main(lean_object*); lean_object* l_Lean_Parser_registerParserCategory(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__63; @@ -361,6 +366,8 @@ extern lean_object* l_Bool_HasRepr___closed__1; extern lean_object* l_Lean_Syntax_inhabited; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; lean_object* l_Lean_Elab_Term_toParserDescrAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +extern lean_object* l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__102; lean_object* l_Lean_Elab_Command_elabSyntax___closed__4; lean_object* l_Lean_Elab_Command_elabReserve(lean_object*, lean_object*); @@ -370,78 +377,77 @@ lean_object* l_Lean_Elab_Command_elabSyntax___closed__27; extern lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__90; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__76; -lean_object* l___private_Init_Lean_Elab_Syntax_8__regTraceClasses___closed__1; extern lean_object* l_Lean_Elab_macroAttribute; lean_object* l_Lean_Elab_Command_elabSyntax___closed__17; -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__18; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__3; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__3; extern lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1; +lean_object* l___private_Lean_Elab_Command_7__mkTermState(lean_object*); uint8_t l_Lean_Parser_isParserCategory(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_5__withoutLeftRec___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getCurrMacroScope(lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; lean_object* l_Lean_Elab_Command_getMainModule(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__31; extern lean_object* l_Lean_Parser_Syntax_optional___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Command_reserve___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabSyntax___closed__8; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_7__antiquote___main___closed__2; lean_object* l___regBuiltin_Lean_Elab_Command_expandNotation___closed__1; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__7; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Elab_Term_checkLeftRec___closed__3; lean_object* l_Lean_Syntax_getKind(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; extern lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__24; -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2; lean_object* l_Array_findMAux___main___at_Lean_Elab_Command_elabMacroRulesAux___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__48; -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__1; lean_object* l_Lean_Elab_Term_checkLeftRec(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__111; +lean_object* l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__97; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Command_expandMacro___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_5__withoutLeftRec(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; +lean_object* l___private_Lean_Elab_Syntax_7__antiquote___main___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__64; -lean_object* l___private_Init_Lean_Elab_Syntax_1__expandOptPrecedence___boxed(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__2; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5; lean_object* l_Lean_Elab_Command_elabSyntax___closed__2; lean_object* l_Lean_Elab_Command_inferMacroRulesAltKind___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabReserve___rarg(lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__26; extern lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__1; extern lean_object* l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__3; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__74; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__60; +lean_object* l___private_Lean_Elab_Syntax_7__antiquote___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkStxStrLit(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__110; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__80; lean_object* l_Array_findMAux___main___at_Lean_Elab_Command_elabMacroRulesAux___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__7; +lean_object* l___private_Lean_Elab_Syntax_3__markAsTrailingParser(lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkCAppStx(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__69; lean_object* l_Lean_Elab_Command_elabSyntax___closed__21; lean_object* l_Lean_Elab_Command_expandNotationItemIntoPattern___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__9; +extern lean_object* l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__35; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__4; +lean_object* l___private_Lean_Elab_Command_9__getVarDecls(lean_object*); lean_object* l_Array_mapSepElemsM___at_Lean_Elab_Command_elabMacroRulesAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_6__elabKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getEnv(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__27; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__17; @@ -453,30 +459,29 @@ extern lean_object* l_Lean_Parser_Term_matchAlt___closed__2; lean_object* l_Lean_Elab_Command_elabSyntax___closed__13; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__57; +lean_object* l___private_Lean_Elab_Syntax_1__expandOptPrecedence___boxed(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__122; +lean_object* l___private_Lean_Elab_Syntax_4__withNotFirst___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__34; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__94; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__8; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__65; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__109; -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__1; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__62; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__54; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__119; extern lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Syntax_4__withNotFirst___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__29; -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBinders___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__3; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__84; lean_object* l_Lean_Elab_Command_setEnv(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Syntax_7__antiquote(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabReserve___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_checkLeftRec___closed__7; extern lean_object* l_Lean_optionToExpr___rarg___lambda__1___closed__2; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2; lean_object* lean_mk_syntax_ident(lean_object*); @@ -493,20 +498,18 @@ extern lean_object* l_Lean_Parser_Command_quotedSymbolPrec___elambda__1___closed lean_object* lean_nat_mod(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__99; extern lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__11; -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +lean_object* l___private_Lean_Elab_Syntax_5__withoutLeftRec(lean_object*); +lean_object* l___private_Lean_Elab_Syntax_4__withNotFirst___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; lean_object* l___regBuiltin_Lean_Elab_Command_elabMacroRules___closed__1; lean_object* l_Lean_Elab_Command_mkFreshKind(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMixfix(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Command_mkKindName(lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__1; lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__106; extern lean_object* l_Lean_Elab_mkMacroAttribute___closed__8; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__24; @@ -514,15 +517,16 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__21; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__38; extern lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabSyntax___closed__12; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__3(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__3; extern lean_object* l_Lean_Parser_currLbp___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__88; extern lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabSyntax___closed__26; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__107; -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMacroHeadIntoPattern___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__72; +lean_object* l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__96; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__13; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__41; @@ -530,31 +534,27 @@ extern lean_object* l_Lean_mkAppStx___closed__2; extern lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__3; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__23; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__2; -lean_object* l___private_Init_Lean_Elab_Syntax_4__withNotFirst___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7; +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__44; extern lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Command_7__mkTermState(lean_object*); lean_object* l_Lean_Elab_Command_expandNotationItemIntoSyntaxItem(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__35; extern lean_object* l_Lean_Parser_mkAntiquot___closed__2; extern lean_object* l_Lean_Elab_Command_liftTermElabM___rarg___closed__1; extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -extern lean_object* l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; lean_object* l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem___boxed(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__70; lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__17; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__4(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_char___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__113; lean_object* l_Lean_Elab_Command_expandNotation(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_6__elabKind(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Command_expandMacro___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___closed__31; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__31; @@ -568,7 +568,7 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__59; lean_object* l_Lean_Elab_Term_toParserDescrAux___main___closed__82; extern lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_logTrace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Syntax_1__expandOptPrecedence(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Syntax_1__expandOptPrecedence(lean_object* x_1) { _start: { uint8_t x_2; @@ -603,16 +603,16 @@ return x_10; } } } -lean_object* l___private_Init_Lean_Elab_Syntax_1__expandOptPrecedence___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Syntax_1__expandOptPrecedence___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Syntax_1__expandOptPrecedence(x_1); +x_2 = l___private_Lean_Elab_Syntax_1__expandOptPrecedence(x_1); lean_dec(x_1); return x_2; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1() { _start: { lean_object* x_1; @@ -620,22 +620,22 @@ x_1 = lean_mk_string("ParserDescr.andthen"); return x_1; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2; +x_3 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -643,7 +643,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -653,17 +653,17 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_Term_andthen___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -673,41 +673,41 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_Term_andthen___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7; +x_2 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7; 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_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8; +x_2 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___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; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -742,11 +742,11 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5; +x_19 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5; x_20 = l_Lean_addMacroScope(x_17, x_19, x_14); x_21 = l_Lean_SourceInfo_inhabited___closed__1; -x_22 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3; -x_23 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9; +x_22 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3; +x_23 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9; x_24 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_24, 0, x_21); lean_ctor_set(x_24, 1, x_22); @@ -754,7 +754,7 @@ lean_ctor_set(x_24, 2, x_20); lean_ctor_set(x_24, 3, x_23); x_25 = l_Array_empty___closed__1; x_26 = lean_array_push(x_25, x_24); -x_27 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_27 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_28 = lean_array_push(x_26, x_27); x_29 = l_Lean_mkTermIdFromIdent___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); @@ -779,7 +779,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Syntax_2__mkParserSeq(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -797,7 +797,7 @@ if (x_8 == 0) lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = l_Lean_Syntax_inhabited; x_10 = lean_array_get(x_9, x_1, x_5); -x_11 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1(x_1, x_1, x_7, x_10, x_2, x_3); +x_11 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1(x_1, x_1, x_7, x_10, x_2, x_3); return x_11; } else @@ -820,28 +820,28 @@ return x_15; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___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_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Syntax_2__mkParserSeq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Syntax_2__mkParserSeq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Syntax_2__mkParserSeq(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1() { +lean_object* _init_l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; @@ -854,38 +854,38 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1; +x_2 = l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1; 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_object* l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Syntax_3__markAsTrailingParser(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg), 1, 0); +x_4 = lean_alloc_closure((void*)(l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg), 1, 0); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Syntax_3__markAsTrailingParser___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser(x_1, x_4, x_3); +x_5 = l___private_Lean_Elab_Syntax_3__markAsTrailingParser(x_1, x_4, x_3); lean_dec(x_3); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Syntax_4__withNotFirst___rarg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Syntax_4__withNotFirst___rarg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -919,25 +919,25 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Elab_Syntax_4__withNotFirst(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Syntax_4__withNotFirst(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Syntax_4__withNotFirst___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Syntax_4__withNotFirst___rarg___boxed), 5, 0); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Syntax_4__withNotFirst___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Syntax_4__withNotFirst___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_3); lean_dec(x_3); -x_7 = l___private_Init_Lean_Elab_Syntax_4__withNotFirst___rarg(x_1, x_2, x_6, x_4, x_5); +x_7 = l___private_Lean_Elab_Syntax_4__withNotFirst___rarg(x_1, x_2, x_6, x_4, x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Syntax_5__withoutLeftRec___rarg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Syntax_5__withoutLeftRec___rarg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -971,21 +971,21 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Elab_Syntax_5__withoutLeftRec(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Syntax_5__withoutLeftRec(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Syntax_5__withoutLeftRec___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Syntax_5__withoutLeftRec___rarg___boxed), 5, 0); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Syntax_5__withoutLeftRec___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Syntax_5__withoutLeftRec___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_3); lean_dec(x_3); -x_7 = l___private_Init_Lean_Elab_Syntax_5__withoutLeftRec___rarg(x_1, x_2, x_6, x_4, x_5); +x_7 = l___private_Lean_Elab_Syntax_5__withoutLeftRec___rarg(x_1, x_2, x_6, x_4, x_5); return x_7; } } @@ -1149,7 +1149,7 @@ else lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; uint8_t x_34; x_30 = lean_unsigned_to_nat(1u); x_31 = l_Lean_Syntax_getArg(x_1, x_30); -x_32 = l___private_Init_Lean_Elab_Syntax_1__expandOptPrecedence(x_31); +x_32 = l___private_Lean_Elab_Syntax_1__expandOptPrecedence(x_31); x_33 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 1); if (lean_obj_tag(x_32) == 0) { @@ -1289,7 +1289,7 @@ lean_object* x_51; uint8_t x_52; lean_dec(x_22); lean_dec(x_4); lean_dec(x_1); -x_51 = l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg(x_38); +x_51 = l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg(x_38); x_52 = !lean_is_exclusive(x_51); if (x_52 == 0) { @@ -1374,7 +1374,7 @@ lean_dec(x_2); return x_7; } } -lean_object* _init_l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1() { +lean_object* _init_l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1384,23 +1384,23 @@ x_3 = l_Lean_mkTermIdFrom(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2() { +lean_object* _init_l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_optionToExpr___rarg___lambda__1___closed__2; -x_2 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; +x_2 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1; +x_2 = l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1; return x_2; } else @@ -1420,7 +1420,7 @@ x_11 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); x_12 = lean_array_push(x_8, x_11); -x_13 = l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2; +x_13 = l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2; x_14 = l_Lean_mkCAppStx(x_13, x_12); return x_14; } @@ -1584,7 +1584,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_Term_orelse___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1594,7 +1594,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_Term_orelse___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1659,7 +1659,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_Syntax_optional___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1669,7 +1669,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_Syntax_optional___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1734,7 +1734,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_Syntax_many1___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1744,7 +1744,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_Syntax_many1___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1809,7 +1809,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_Syntax_many___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1819,7 +1819,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_Syntax_many___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1884,7 +1884,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1894,7 +1894,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1959,7 +1959,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1969,7 +1969,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2034,7 +2034,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__49() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2044,7 +2044,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__50() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2109,7 +2109,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__56() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_Syntax_try___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2119,7 +2119,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__57() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_Syntax_try___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2184,7 +2184,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__63() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_identKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2194,7 +2194,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__64() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_identKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2259,7 +2259,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__70() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_charLitKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2269,7 +2269,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__71() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_charLitKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2334,7 +2334,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__77() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_strLitKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2344,7 +2344,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__78() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_strLitKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2409,7 +2409,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__84() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_numLitKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2419,7 +2419,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__85() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_numLitKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2484,7 +2484,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__91() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_unquotedSymbolFn___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2494,7 +2494,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__92() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_unquotedSymbolFn___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2567,7 +2567,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__99() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Elab_Term_toParserDescrAux___main___closed__98; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2577,7 +2577,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__100() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Elab_Term_toParserDescrAux___main___closed__98; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2719,7 +2719,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__113() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Parser_mkParserAttributeImpl___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2729,7 +2729,7 @@ lean_object* _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__114() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Parser_mkParserAttributeImpl___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3007,7 +3007,7 @@ lean_ctor_set(x_77, 2, x_73); lean_ctor_set(x_77, 3, x_76); x_78 = l_Array_empty___closed__1; x_79 = lean_array_push(x_78, x_77); -x_80 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_80 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_81 = lean_array_push(x_79, x_80); x_82 = l_Lean_mkTermIdFromIdent___closed__2; x_83 = lean_alloc_ctor(1, 2, 0); @@ -3049,7 +3049,7 @@ lean_ctor_set(x_99, 2, x_95); lean_ctor_set(x_99, 3, x_98); x_100 = l_Array_empty___closed__1; x_101 = lean_array_push(x_100, x_99); -x_102 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_102 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_103 = lean_array_push(x_101, x_102); x_104 = l_Lean_mkTermIdFromIdent___closed__2; x_105 = lean_alloc_ctor(1, 2, 0); @@ -3114,7 +3114,7 @@ lean_ctor_set(x_129, 2, x_125); lean_ctor_set(x_129, 3, x_128); x_130 = l_Array_empty___closed__1; x_131 = lean_array_push(x_130, x_129); -x_132 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_132 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_133 = lean_array_push(x_131, x_132); x_134 = l_Lean_mkTermIdFromIdent___closed__2; x_135 = lean_alloc_ctor(1, 2, 0); @@ -3285,7 +3285,7 @@ lean_ctor_set(x_185, 2, x_181); lean_ctor_set(x_185, 3, x_184); x_186 = l_Array_empty___closed__1; x_187 = lean_array_push(x_186, x_185); -x_188 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_188 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_189 = lean_array_push(x_187, x_188); x_190 = l_Lean_mkTermIdFromIdent___closed__2; x_191 = lean_alloc_ctor(1, 2, 0); @@ -3429,7 +3429,7 @@ lean_ctor_set(x_230, 2, x_226); lean_ctor_set(x_230, 3, x_229); x_231 = l_Array_empty___closed__1; x_232 = lean_array_push(x_231, x_230); -x_233 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_233 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_234 = lean_array_push(x_232, x_233); x_235 = l_Lean_mkTermIdFromIdent___closed__2; x_236 = lean_alloc_ctor(1, 2, 0); @@ -3470,7 +3470,7 @@ lean_ctor_set(x_251, 2, x_247); lean_ctor_set(x_251, 3, x_250); x_252 = l_Array_empty___closed__1; x_253 = lean_array_push(x_252, x_251); -x_254 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_254 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_255 = lean_array_push(x_253, x_254); x_256 = l_Lean_mkTermIdFromIdent___closed__2; x_257 = lean_alloc_ctor(1, 2, 0); @@ -3534,7 +3534,7 @@ lean_ctor_set(x_280, 2, x_276); lean_ctor_set(x_280, 3, x_279); x_281 = l_Array_empty___closed__1; x_282 = lean_array_push(x_281, x_280); -x_283 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_283 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_284 = lean_array_push(x_282, x_283); x_285 = l_Lean_mkTermIdFromIdent___closed__2; x_286 = lean_alloc_ctor(1, 2, 0); @@ -3656,7 +3656,7 @@ lean_ctor_set(x_323, 2, x_319); lean_ctor_set(x_323, 3, x_322); x_324 = l_Array_empty___closed__1; x_325 = lean_array_push(x_324, x_323); -x_326 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_326 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_327 = lean_array_push(x_325, x_326); x_328 = l_Lean_mkTermIdFromIdent___closed__2; x_329 = lean_alloc_ctor(1, 2, 0); @@ -3770,7 +3770,7 @@ lean_ctor_set(x_363, 2, x_359); lean_ctor_set(x_363, 3, x_362); x_364 = l_Array_empty___closed__1; x_365 = lean_array_push(x_364, x_363); -x_366 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_366 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_367 = lean_array_push(x_365, x_366); x_368 = l_Lean_mkTermIdFromIdent___closed__2; x_369 = lean_alloc_ctor(1, 2, 0); @@ -3811,7 +3811,7 @@ lean_ctor_set(x_384, 2, x_380); lean_ctor_set(x_384, 3, x_383); x_385 = l_Array_empty___closed__1; x_386 = lean_array_push(x_385, x_384); -x_387 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_387 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_388 = lean_array_push(x_386, x_387); x_389 = l_Lean_mkTermIdFromIdent___closed__2; x_390 = lean_alloc_ctor(1, 2, 0); @@ -3875,7 +3875,7 @@ lean_ctor_set(x_413, 2, x_409); lean_ctor_set(x_413, 3, x_412); x_414 = l_Array_empty___closed__1; x_415 = lean_array_push(x_414, x_413); -x_416 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_416 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_417 = lean_array_push(x_415, x_416); x_418 = l_Lean_mkTermIdFromIdent___closed__2; x_419 = lean_alloc_ctor(1, 2, 0); @@ -3997,7 +3997,7 @@ lean_ctor_set(x_456, 2, x_452); lean_ctor_set(x_456, 3, x_455); x_457 = l_Array_empty___closed__1; x_458 = lean_array_push(x_457, x_456); -x_459 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_459 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_460 = lean_array_push(x_458, x_459); x_461 = l_Lean_mkTermIdFromIdent___closed__2; x_462 = lean_alloc_ctor(1, 2, 0); @@ -4111,7 +4111,7 @@ lean_ctor_set(x_496, 2, x_492); lean_ctor_set(x_496, 3, x_495); x_497 = l_Array_empty___closed__1; x_498 = lean_array_push(x_497, x_496); -x_499 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_499 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_500 = lean_array_push(x_498, x_499); x_501 = l_Lean_mkTermIdFromIdent___closed__2; x_502 = lean_alloc_ctor(1, 2, 0); @@ -4152,7 +4152,7 @@ lean_ctor_set(x_517, 2, x_513); lean_ctor_set(x_517, 3, x_516); x_518 = l_Array_empty___closed__1; x_519 = lean_array_push(x_518, x_517); -x_520 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_520 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_521 = lean_array_push(x_519, x_520); x_522 = l_Lean_mkTermIdFromIdent___closed__2; x_523 = lean_alloc_ctor(1, 2, 0); @@ -4216,7 +4216,7 @@ lean_ctor_set(x_546, 2, x_542); lean_ctor_set(x_546, 3, x_545); x_547 = l_Array_empty___closed__1; x_548 = lean_array_push(x_547, x_546); -x_549 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_549 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_550 = lean_array_push(x_548, x_549); x_551 = l_Lean_mkTermIdFromIdent___closed__2; x_552 = lean_alloc_ctor(1, 2, 0); @@ -4338,7 +4338,7 @@ lean_ctor_set(x_589, 2, x_585); lean_ctor_set(x_589, 3, x_588); x_590 = l_Array_empty___closed__1; x_591 = lean_array_push(x_590, x_589); -x_592 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_592 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_593 = lean_array_push(x_591, x_592); x_594 = l_Lean_mkTermIdFromIdent___closed__2; x_595 = lean_alloc_ctor(1, 2, 0); @@ -4472,7 +4472,7 @@ lean_ctor_set(x_637, 2, x_633); lean_ctor_set(x_637, 3, x_636); x_638 = l_Array_empty___closed__1; x_639 = lean_array_push(x_638, x_637); -x_640 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_640 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_641 = lean_array_push(x_639, x_640); x_642 = l_Lean_mkTermIdFromIdent___closed__2; x_643 = lean_alloc_ctor(1, 2, 0); @@ -4514,7 +4514,7 @@ lean_ctor_set(x_659, 2, x_655); lean_ctor_set(x_659, 3, x_658); x_660 = l_Array_empty___closed__1; x_661 = lean_array_push(x_660, x_659); -x_662 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_662 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_663 = lean_array_push(x_661, x_662); x_664 = l_Lean_mkTermIdFromIdent___closed__2; x_665 = lean_alloc_ctor(1, 2, 0); @@ -4579,7 +4579,7 @@ lean_ctor_set(x_689, 2, x_685); lean_ctor_set(x_689, 3, x_688); x_690 = l_Array_empty___closed__1; x_691 = lean_array_push(x_690, x_689); -x_692 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_692 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_693 = lean_array_push(x_691, x_692); x_694 = l_Lean_mkTermIdFromIdent___closed__2; x_695 = lean_alloc_ctor(1, 2, 0); @@ -4750,7 +4750,7 @@ lean_ctor_set(x_745, 2, x_741); lean_ctor_set(x_745, 3, x_744); x_746 = l_Array_empty___closed__1; x_747 = lean_array_push(x_746, x_745); -x_748 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_748 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_749 = lean_array_push(x_747, x_748); x_750 = l_Lean_mkTermIdFromIdent___closed__2; x_751 = lean_alloc_ctor(1, 2, 0); @@ -4914,7 +4914,7 @@ lean_ctor_set(x_798, 2, x_794); lean_ctor_set(x_798, 3, x_797); x_799 = l_Array_empty___closed__1; x_800 = lean_array_push(x_799, x_798); -x_801 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_801 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_802 = lean_array_push(x_800, x_801); x_803 = l_Lean_mkTermIdFromIdent___closed__2; x_804 = lean_alloc_ctor(1, 2, 0); @@ -4956,7 +4956,7 @@ lean_ctor_set(x_820, 2, x_816); lean_ctor_set(x_820, 3, x_819); x_821 = l_Array_empty___closed__1; x_822 = lean_array_push(x_821, x_820); -x_823 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_823 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_824 = lean_array_push(x_822, x_823); x_825 = l_Lean_mkTermIdFromIdent___closed__2; x_826 = lean_alloc_ctor(1, 2, 0); @@ -5021,7 +5021,7 @@ lean_ctor_set(x_850, 2, x_846); lean_ctor_set(x_850, 3, x_849); x_851 = l_Array_empty___closed__1; x_852 = lean_array_push(x_851, x_850); -x_853 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_853 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_854 = lean_array_push(x_852, x_853); x_855 = l_Lean_mkTermIdFromIdent___closed__2; x_856 = lean_alloc_ctor(1, 2, 0); @@ -5192,7 +5192,7 @@ lean_ctor_set(x_906, 2, x_902); lean_ctor_set(x_906, 3, x_905); x_907 = l_Array_empty___closed__1; x_908 = lean_array_push(x_907, x_906); -x_909 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_909 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_910 = lean_array_push(x_908, x_909); x_911 = l_Lean_mkTermIdFromIdent___closed__2; x_912 = lean_alloc_ctor(1, 2, 0); @@ -5336,7 +5336,7 @@ lean_ctor_set(x_951, 2, x_947); lean_ctor_set(x_951, 3, x_950); x_952 = l_Array_empty___closed__1; x_953 = lean_array_push(x_952, x_951); -x_954 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_954 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_955 = lean_array_push(x_953, x_954); x_956 = l_Lean_mkTermIdFromIdent___closed__2; x_957 = lean_alloc_ctor(1, 2, 0); @@ -5377,7 +5377,7 @@ lean_ctor_set(x_972, 2, x_968); lean_ctor_set(x_972, 3, x_971); x_973 = l_Array_empty___closed__1; x_974 = lean_array_push(x_973, x_972); -x_975 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_975 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_976 = lean_array_push(x_974, x_975); x_977 = l_Lean_mkTermIdFromIdent___closed__2; x_978 = lean_alloc_ctor(1, 2, 0); @@ -5441,7 +5441,7 @@ lean_ctor_set(x_1001, 2, x_997); lean_ctor_set(x_1001, 3, x_1000); x_1002 = l_Array_empty___closed__1; x_1003 = lean_array_push(x_1002, x_1001); -x_1004 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1004 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1005 = lean_array_push(x_1003, x_1004); x_1006 = l_Lean_mkTermIdFromIdent___closed__2; x_1007 = lean_alloc_ctor(1, 2, 0); @@ -5563,7 +5563,7 @@ lean_ctor_set(x_1044, 2, x_1040); lean_ctor_set(x_1044, 3, x_1043); x_1045 = l_Array_empty___closed__1; x_1046 = lean_array_push(x_1045, x_1044); -x_1047 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1047 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1048 = lean_array_push(x_1046, x_1047); x_1049 = l_Lean_mkTermIdFromIdent___closed__2; x_1050 = lean_alloc_ctor(1, 2, 0); @@ -5677,7 +5677,7 @@ lean_ctor_set(x_1084, 2, x_1080); lean_ctor_set(x_1084, 3, x_1083); x_1085 = l_Array_empty___closed__1; x_1086 = lean_array_push(x_1085, x_1084); -x_1087 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1087 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1088 = lean_array_push(x_1086, x_1087); x_1089 = l_Lean_mkTermIdFromIdent___closed__2; x_1090 = lean_alloc_ctor(1, 2, 0); @@ -5718,7 +5718,7 @@ lean_ctor_set(x_1105, 2, x_1101); lean_ctor_set(x_1105, 3, x_1104); x_1106 = l_Array_empty___closed__1; x_1107 = lean_array_push(x_1106, x_1105); -x_1108 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1108 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1109 = lean_array_push(x_1107, x_1108); x_1110 = l_Lean_mkTermIdFromIdent___closed__2; x_1111 = lean_alloc_ctor(1, 2, 0); @@ -5782,7 +5782,7 @@ lean_ctor_set(x_1134, 2, x_1130); lean_ctor_set(x_1134, 3, x_1133); x_1135 = l_Array_empty___closed__1; x_1136 = lean_array_push(x_1135, x_1134); -x_1137 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1137 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1138 = lean_array_push(x_1136, x_1137); x_1139 = l_Lean_mkTermIdFromIdent___closed__2; x_1140 = lean_alloc_ctor(1, 2, 0); @@ -5904,7 +5904,7 @@ lean_ctor_set(x_1177, 2, x_1173); lean_ctor_set(x_1177, 3, x_1176); x_1178 = l_Array_empty___closed__1; x_1179 = lean_array_push(x_1178, x_1177); -x_1180 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1180 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1181 = lean_array_push(x_1179, x_1180); x_1182 = l_Lean_mkTermIdFromIdent___closed__2; x_1183 = lean_alloc_ctor(1, 2, 0); @@ -5996,7 +5996,7 @@ lean_ctor_set(x_1208, 2, x_1204); lean_ctor_set(x_1208, 3, x_1207); x_1209 = l_Array_empty___closed__1; x_1210 = lean_array_push(x_1209, x_1208); -x_1211 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1211 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1212 = lean_array_push(x_1210, x_1211); x_1213 = l_Lean_mkTermIdFromIdent___closed__2; x_1214 = lean_alloc_ctor(1, 2, 0); @@ -6029,7 +6029,7 @@ lean_ctor_set(x_1224, 2, x_1220); lean_ctor_set(x_1224, 3, x_1223); x_1225 = l_Array_empty___closed__1; x_1226 = lean_array_push(x_1225, x_1224); -x_1227 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1227 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1228 = lean_array_push(x_1226, x_1227); x_1229 = l_Lean_mkTermIdFromIdent___closed__2; x_1230 = lean_alloc_ctor(1, 2, 0); @@ -6077,7 +6077,7 @@ lean_ctor_set(x_1245, 2, x_1241); lean_ctor_set(x_1245, 3, x_1244); x_1246 = l_Array_empty___closed__1; x_1247 = lean_array_push(x_1246, x_1245); -x_1248 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1248 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1249 = lean_array_push(x_1247, x_1248); x_1250 = l_Lean_mkTermIdFromIdent___closed__2; x_1251 = lean_alloc_ctor(1, 2, 0); @@ -6110,7 +6110,7 @@ lean_ctor_set(x_1261, 2, x_1257); lean_ctor_set(x_1261, 3, x_1260); x_1262 = l_Array_empty___closed__1; x_1263 = lean_array_push(x_1262, x_1261); -x_1264 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1264 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1265 = lean_array_push(x_1263, x_1264); x_1266 = l_Lean_mkTermIdFromIdent___closed__2; x_1267 = lean_alloc_ctor(1, 2, 0); @@ -6158,7 +6158,7 @@ lean_ctor_set(x_1282, 2, x_1278); lean_ctor_set(x_1282, 3, x_1281); x_1283 = l_Array_empty___closed__1; x_1284 = lean_array_push(x_1283, x_1282); -x_1285 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1285 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1286 = lean_array_push(x_1284, x_1285); x_1287 = l_Lean_mkTermIdFromIdent___closed__2; x_1288 = lean_alloc_ctor(1, 2, 0); @@ -6191,7 +6191,7 @@ lean_ctor_set(x_1298, 2, x_1294); lean_ctor_set(x_1298, 3, x_1297); x_1299 = l_Array_empty___closed__1; x_1300 = lean_array_push(x_1299, x_1298); -x_1301 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1301 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1302 = lean_array_push(x_1300, x_1301); x_1303 = l_Lean_mkTermIdFromIdent___closed__2; x_1304 = lean_alloc_ctor(1, 2, 0); @@ -6239,7 +6239,7 @@ lean_ctor_set(x_1319, 2, x_1315); lean_ctor_set(x_1319, 3, x_1318); x_1320 = l_Array_empty___closed__1; x_1321 = lean_array_push(x_1320, x_1319); -x_1322 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1322 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1323 = lean_array_push(x_1321, x_1322); x_1324 = l_Lean_mkTermIdFromIdent___closed__2; x_1325 = lean_alloc_ctor(1, 2, 0); @@ -6272,7 +6272,7 @@ lean_ctor_set(x_1335, 2, x_1331); lean_ctor_set(x_1335, 3, x_1334); x_1336 = l_Array_empty___closed__1; x_1337 = lean_array_push(x_1336, x_1335); -x_1338 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1338 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1339 = lean_array_push(x_1337, x_1338); x_1340 = l_Lean_mkTermIdFromIdent___closed__2; x_1341 = lean_alloc_ctor(1, 2, 0); @@ -6332,7 +6332,7 @@ lean_dec(x_1347); x_1354 = lean_unsigned_to_nat(1u); x_1355 = l_Lean_Syntax_getArg(x_1, x_1354); lean_dec(x_1); -x_1356 = l___private_Init_Lean_Elab_Syntax_1__expandOptPrecedence(x_1355); +x_1356 = l___private_Lean_Elab_Syntax_1__expandOptPrecedence(x_1355); lean_dec(x_1355); x_1454 = lean_ctor_get_uint8(x_2, sizeof(void*)*1 + 2); lean_dec(x_2); @@ -6386,7 +6386,7 @@ lean_ctor_set(x_1471, 2, x_1467); lean_ctor_set(x_1471, 3, x_1470); x_1472 = l_Array_empty___closed__1; x_1473 = lean_array_push(x_1472, x_1471); -x_1474 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1474 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1475 = lean_array_push(x_1473, x_1474); x_1476 = l_Lean_mkTermIdFromIdent___closed__2; x_1477 = lean_alloc_ctor(1, 2, 0); @@ -6454,7 +6454,7 @@ lean_ctor_set(x_1508, 2, x_1504); lean_ctor_set(x_1508, 3, x_1507); x_1509 = l_Array_empty___closed__1; x_1510 = lean_array_push(x_1509, x_1508); -x_1511 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1511 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1512 = lean_array_push(x_1510, x_1511); x_1513 = l_Lean_mkTermIdFromIdent___closed__2; x_1514 = lean_alloc_ctor(1, 2, 0); @@ -6548,7 +6548,7 @@ lean_ctor_set(x_1369, 2, x_1365); lean_ctor_set(x_1369, 3, x_1368); x_1370 = l_Array_empty___closed__1; x_1371 = lean_array_push(x_1370, x_1369); -x_1372 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1372 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1373 = lean_array_push(x_1371, x_1372); x_1374 = l_Lean_mkTermIdFromIdent___closed__2; x_1375 = lean_alloc_ctor(1, 2, 0); @@ -6563,7 +6563,7 @@ x_1381 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1381, 0, x_1380); lean_ctor_set(x_1381, 1, x_1379); x_1382 = lean_array_push(x_1370, x_1381); -x_1383 = l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(x_1356); +x_1383 = l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(x_1356); x_1384 = lean_array_push(x_1382, x_1383); x_1385 = l_Lean_nullKind___closed__2; x_1386 = lean_alloc_ctor(1, 2, 0); @@ -6598,7 +6598,7 @@ lean_ctor_set(x_1397, 2, x_1393); lean_ctor_set(x_1397, 3, x_1396); x_1398 = l_Array_empty___closed__1; x_1399 = lean_array_push(x_1398, x_1397); -x_1400 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1400 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1401 = lean_array_push(x_1399, x_1400); x_1402 = l_Lean_mkTermIdFromIdent___closed__2; x_1403 = lean_alloc_ctor(1, 2, 0); @@ -6613,7 +6613,7 @@ x_1409 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1409, 0, x_1408); lean_ctor_set(x_1409, 1, x_1407); x_1410 = lean_array_push(x_1398, x_1409); -x_1411 = l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(x_1356); +x_1411 = l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(x_1356); x_1412 = lean_array_push(x_1410, x_1411); x_1413 = l_Lean_nullKind___closed__2; x_1414 = lean_alloc_ctor(1, 2, 0); @@ -6664,7 +6664,7 @@ lean_ctor_set(x_1430, 2, x_1426); lean_ctor_set(x_1430, 3, x_1429); x_1431 = l_Array_empty___closed__1; x_1432 = lean_array_push(x_1431, x_1430); -x_1433 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1433 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1434 = lean_array_push(x_1432, x_1433); x_1435 = l_Lean_mkTermIdFromIdent___closed__2; x_1436 = lean_alloc_ctor(1, 2, 0); @@ -6679,7 +6679,7 @@ x_1442 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1442, 0, x_1441); lean_ctor_set(x_1442, 1, x_1440); x_1443 = lean_array_push(x_1431, x_1442); -x_1444 = l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(x_1356); +x_1444 = l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1(x_1356); x_1445 = lean_array_push(x_1443, x_1444); x_1446 = l_Lean_nullKind___closed__2; x_1447 = lean_alloc_ctor(1, 2, 0); @@ -6771,7 +6771,7 @@ lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_15 lean_dec(x_1547); x_1548 = lean_unsigned_to_nat(1u); x_1549 = l_Lean_Syntax_getArg(x_1, x_1548); -x_1550 = l___private_Init_Lean_Elab_Syntax_1__expandOptPrecedence(x_1549); +x_1550 = l___private_Lean_Elab_Syntax_1__expandOptPrecedence(x_1549); lean_dec(x_1549); x_1551 = l_Lean_Elab_Term_getEnv___rarg(x_5); x_1552 = lean_ctor_get(x_1551, 0); @@ -6898,14 +6898,14 @@ lean_ctor_set(x_1569, 2, x_1565); lean_ctor_set(x_1569, 3, x_1568); x_1570 = l_Array_empty___closed__1; x_1571 = lean_array_push(x_1570, x_1569); -x_1572 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1572 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1573 = lean_array_push(x_1571, x_1572); x_1574 = l_Lean_mkTermIdFromIdent___closed__2; x_1575 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1575, 0, x_1574); lean_ctor_set(x_1575, 1, x_1573); x_1576 = lean_array_push(x_1570, x_1575); -x_1577 = l___private_Init_Lean_Syntax_7__quoteName___main(x_1546); +x_1577 = l___private_Lean_Syntax_7__quoteName___main(x_1546); x_1578 = lean_array_push(x_1570, x_1577); x_1579 = l_Nat_repr(x_1556); x_1580 = l_Lean_numLitKind; @@ -6950,14 +6950,14 @@ lean_ctor_set(x_1599, 2, x_1595); lean_ctor_set(x_1599, 3, x_1598); x_1600 = l_Array_empty___closed__1; x_1601 = lean_array_push(x_1600, x_1599); -x_1602 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1602 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1603 = lean_array_push(x_1601, x_1602); x_1604 = l_Lean_mkTermIdFromIdent___closed__2; x_1605 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1605, 0, x_1604); lean_ctor_set(x_1605, 1, x_1603); x_1606 = lean_array_push(x_1600, x_1605); -x_1607 = l___private_Init_Lean_Syntax_7__quoteName___main(x_1546); +x_1607 = l___private_Lean_Syntax_7__quoteName___main(x_1546); x_1608 = lean_array_push(x_1600, x_1607); x_1609 = l_Nat_repr(x_1556); x_1610 = l_Lean_numLitKind; @@ -7018,14 +7018,14 @@ lean_ctor_set(x_1634, 2, x_1630); lean_ctor_set(x_1634, 3, x_1633); x_1635 = l_Array_empty___closed__1; x_1636 = lean_array_push(x_1635, x_1634); -x_1637 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_1637 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_1638 = lean_array_push(x_1636, x_1637); x_1639 = l_Lean_mkTermIdFromIdent___closed__2; x_1640 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1640, 0, x_1639); lean_ctor_set(x_1640, 1, x_1638); x_1641 = lean_array_push(x_1635, x_1640); -x_1642 = l___private_Init_Lean_Syntax_7__quoteName___main(x_1546); +x_1642 = l___private_Lean_Syntax_7__quoteName___main(x_1546); x_1643 = lean_array_push(x_1635, x_1642); x_1644 = l_Nat_repr(x_1556); x_1645 = l_Lean_numLitKind; @@ -7135,7 +7135,7 @@ if (x_1715 == 0) lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; x_1716 = lean_ctor_get(x_1713, 0); x_1717 = lean_ctor_get(x_1713, 1); -x_1718 = l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(x_1716, x_4, x_1714); +x_1718 = l___private_Lean_Elab_Syntax_2__mkParserSeq(x_1716, x_4, x_1714); lean_dec(x_4); lean_dec(x_1716); if (lean_obj_tag(x_1718) == 0) @@ -7198,7 +7198,7 @@ x_1729 = lean_ctor_get(x_1713, 1); lean_inc(x_1729); lean_inc(x_1728); lean_dec(x_1713); -x_1730 = l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(x_1728, x_4, x_1714); +x_1730 = l___private_Lean_Elab_Syntax_2__mkParserSeq(x_1728, x_4, x_1714); lean_dec(x_4); lean_dec(x_1728); if (lean_obj_tag(x_1730) == 0) @@ -7334,7 +7334,7 @@ if (x_1757 == 0) lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; x_1758 = lean_ctor_get(x_1755, 0); x_1759 = lean_ctor_get(x_1755, 1); -x_1760 = l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(x_1758, x_4, x_1756); +x_1760 = l___private_Lean_Elab_Syntax_2__mkParserSeq(x_1758, x_4, x_1756); lean_dec(x_4); lean_dec(x_1758); if (lean_obj_tag(x_1760) == 0) @@ -7397,7 +7397,7 @@ x_1771 = lean_ctor_get(x_1755, 1); lean_inc(x_1771); lean_inc(x_1770); lean_dec(x_1755); -x_1772 = l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(x_1770, x_4, x_1756); +x_1772 = l___private_Lean_Elab_Syntax_2__mkParserSeq(x_1770, x_4, x_1756); lean_dec(x_4); lean_dec(x_1770); if (lean_obj_tag(x_1772) == 0) @@ -7640,7 +7640,7 @@ if (x_16 == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_12, 0); -x_18 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_1, x_17); +x_18 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_1, x_17); x_19 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_12, 0, x_19); @@ -7654,7 +7654,7 @@ x_21 = lean_ctor_get(x_12, 1); lean_inc(x_21); lean_inc(x_20); lean_dec(x_12); -x_22 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_1, x_20); +x_22 = l___private_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_1, x_20); x_23 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_23, 0, x_22); x_24 = lean_alloc_ctor(1, 2, 0); @@ -7821,7 +7821,7 @@ x_5 = l_Lean_Macro_addMacroScope(x_4, x_2, x_3); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Syntax_6__elabKind(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Syntax_6__elabKind(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -7908,11 +7908,11 @@ return x_22; } } } -lean_object* l___private_Init_Lean_Elab_Syntax_6__elabKind___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Syntax_6__elabKind___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___private_Init_Lean_Elab_Syntax_6__elabKind(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Syntax_6__elabKind(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -7932,7 +7932,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_2 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -8058,7 +8058,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -8082,7 +8082,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; +x_2 = l___private_Lean_Elab_Quotation_4__getHeadInfo___elambda__3___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -8122,7 +8122,7 @@ lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8132,7 +8132,7 @@ lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8270,7 +8270,7 @@ lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; x_2 = l_Lean_Elab_Command_elabSyntax___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8280,7 +8280,7 @@ lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_1 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; x_2 = l_Lean_Elab_Command_elabSyntax___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8379,7 +8379,7 @@ block_382: lean_object* x_14; lean_inc(x_2); lean_inc(x_9); -x_14 = l___private_Init_Lean_Elab_Syntax_6__elabKind(x_12, x_9, x_2, x_13); +x_14 = l___private_Lean_Elab_Syntax_6__elabKind(x_12, x_9, x_2, x_13); lean_dec(x_12); if (lean_obj_tag(x_14) == 0) { @@ -8399,7 +8399,7 @@ x_282 = lean_alloc_closure((void*)(l_Lean_Elab_Command_elabSyntax___lambda__1___ lean_closure_set(x_282, 0, x_1); lean_closure_set(x_282, 1, x_9); lean_inc(x_2); -x_283 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_16); +x_283 = l___private_Lean_Elab_Command_2__getState(x_2, x_16); if (lean_obj_tag(x_283) == 0) { lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; @@ -8408,10 +8408,10 @@ lean_inc(x_284); x_285 = lean_ctor_get(x_283, 1); lean_inc(x_285); lean_dec(x_283); -x_286 = l___private_Init_Lean_Elab_Command_9__getVarDecls(x_284); +x_286 = l___private_Lean_Elab_Command_9__getVarDecls(x_284); lean_dec(x_284); lean_inc(x_2); -x_287 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_285); +x_287 = l___private_Lean_Elab_Command_2__getState(x_2, x_285); if (lean_obj_tag(x_287) == 0) { lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; @@ -8420,8 +8420,8 @@ lean_inc(x_288); x_289 = lean_ctor_get(x_287, 1); lean_inc(x_289); lean_dec(x_287); -x_290 = l___private_Init_Lean_Elab_Command_6__mkTermContext(x_2, x_288, x_281); -x_291 = l___private_Init_Lean_Elab_Command_7__mkTermState(x_288); +x_290 = l___private_Lean_Elab_Command_6__mkTermContext(x_2, x_288, x_281); +x_291 = l___private_Lean_Elab_Command_7__mkTermState(x_288); lean_dec(x_288); x_292 = l_Lean_Elab_Term_elabBinders___rarg(x_286, x_282, x_290, x_291); lean_dec(x_286); @@ -8434,7 +8434,7 @@ x_294 = lean_ctor_get(x_292, 1); lean_inc(x_294); lean_dec(x_292); lean_inc(x_2); -x_295 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_289); +x_295 = l___private_Lean_Elab_Command_2__getState(x_2, x_289); if (lean_obj_tag(x_295) == 0) { lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; uint8_t x_301; @@ -8462,7 +8462,7 @@ lean_dec(x_303); lean_ctor_set(x_297, 1, x_300); lean_ctor_set(x_297, 0, x_299); lean_inc(x_2); -x_304 = l___private_Init_Lean_Elab_Command_3__setState(x_297, x_2, x_298); +x_304 = l___private_Lean_Elab_Command_3__setState(x_297, x_2, x_298); if (lean_obj_tag(x_304) == 0) { lean_object* x_305; @@ -8518,7 +8518,7 @@ lean_ctor_set(x_313, 2, x_310); lean_ctor_set(x_313, 3, x_311); lean_ctor_set(x_313, 4, x_312); lean_inc(x_2); -x_314 = l___private_Init_Lean_Elab_Command_3__setState(x_313, x_2, x_298); +x_314 = l___private_Lean_Elab_Command_3__setState(x_313, x_2, x_298); if (lean_obj_tag(x_314) == 0) { lean_object* x_315; @@ -8607,7 +8607,7 @@ x_326 = lean_ctor_get(x_324, 0); lean_inc(x_326); lean_dec(x_324); lean_inc(x_2); -x_327 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_289); +x_327 = l___private_Lean_Elab_Command_2__getState(x_2, x_289); if (lean_obj_tag(x_327) == 0) { lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; uint8_t x_333; @@ -8634,7 +8634,7 @@ x_335 = lean_ctor_get(x_329, 0); lean_dec(x_335); lean_ctor_set(x_329, 1, x_332); lean_ctor_set(x_329, 0, x_331); -x_336 = l___private_Init_Lean_Elab_Command_3__setState(x_329, x_2, x_330); +x_336 = l___private_Lean_Elab_Command_3__setState(x_329, x_2, x_330); if (lean_obj_tag(x_336) == 0) { uint8_t x_337; @@ -8700,7 +8700,7 @@ lean_ctor_set(x_348, 1, x_332); lean_ctor_set(x_348, 2, x_345); lean_ctor_set(x_348, 3, x_346); lean_ctor_set(x_348, 4, x_347); -x_349 = l___private_Init_Lean_Elab_Command_3__setState(x_348, x_2, x_330); +x_349 = l___private_Lean_Elab_Command_3__setState(x_348, x_2, x_330); if (lean_obj_tag(x_349) == 0) { lean_object* x_350; lean_object* x_351; lean_object* x_352; @@ -8913,7 +8913,7 @@ lean_inc(x_30); lean_dec(x_28); x_31 = l_Array_empty___closed__1; x_32 = lean_array_push(x_31, x_19); -x_33 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_33 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_34 = lean_array_push(x_32, x_33); x_35 = l_Lean_Parser_Command_attrInstance___elambda__1___closed__2; x_36 = lean_alloc_ctor(1, 2, 0); @@ -8967,7 +8967,7 @@ lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); x_67 = l_Lean_Elab_Command_elabSyntax___closed__5; x_68 = lean_array_push(x_67, x_66); -x_69 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_69 = l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; lean_inc(x_26); lean_inc(x_29); x_70 = l_Lean_addMacroScope(x_29, x_69, x_26); @@ -9015,7 +9015,7 @@ x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_76); lean_ctor_set(x_95, 1, x_94); x_96 = lean_array_push(x_31, x_95); -x_97 = l___private_Init_Lean_Syntax_7__quoteName___main(x_15); +x_97 = l___private_Lean_Syntax_7__quoteName___main(x_15); x_98 = lean_array_push(x_31, x_97); x_99 = lean_array_push(x_98, x_24); x_100 = lean_alloc_ctor(1, 2, 0); @@ -9052,7 +9052,7 @@ lean_inc(x_133); x_134 = lean_ctor_get(x_132, 1); lean_inc(x_134); lean_dec(x_132); -x_135 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_135 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_136 = l_Lean_checkTraceOption(x_133, x_135); lean_dec(x_133); if (x_136 == 0) @@ -9239,7 +9239,7 @@ lean_inc(x_158); lean_dec(x_156); x_159 = l_Array_empty___closed__1; x_160 = lean_array_push(x_159, x_19); -x_161 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_161 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_162 = lean_array_push(x_160, x_161); x_163 = l_Lean_Parser_Command_attrInstance___elambda__1___closed__2; x_164 = lean_alloc_ctor(1, 2, 0); @@ -9341,7 +9341,7 @@ x_223 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_223, 0, x_204); lean_ctor_set(x_223, 1, x_222); x_224 = lean_array_push(x_159, x_223); -x_225 = l___private_Init_Lean_Syntax_7__quoteName___main(x_15); +x_225 = l___private_Lean_Syntax_7__quoteName___main(x_15); x_226 = lean_array_push(x_159, x_225); x_227 = lean_array_push(x_226, x_152); x_228 = lean_alloc_ctor(1, 2, 0); @@ -9378,7 +9378,7 @@ lean_inc(x_261); x_262 = lean_ctor_get(x_260, 1); lean_inc(x_262); lean_dec(x_260); -x_263 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_263 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_264 = l_Lean_checkTraceOption(x_261, x_263); lean_dec(x_261); if (x_264 == 0) @@ -9975,7 +9975,7 @@ x_36 = lean_ctor_get(x_34, 0); lean_dec(x_36); x_37 = l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__8; x_38 = lean_array_push(x_37, x_31); -x_39 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_39 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_40 = lean_array_push(x_38, x_39); x_41 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; x_42 = lean_alloc_ctor(1, 2, 0); @@ -9994,7 +9994,7 @@ lean_inc(x_45); lean_dec(x_34); x_46 = l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__8; x_47 = lean_array_push(x_46, x_31); -x_48 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_48 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_49 = lean_array_push(x_47, x_48); x_50 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; x_51 = lean_alloc_ctor(1, 2, 0); @@ -10242,7 +10242,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -10516,7 +10516,7 @@ lean_ctor_set(x_39, 0, x_25); lean_ctor_set(x_39, 1, x_38); x_40 = l_Lean_Elab_Command_elabSyntax___closed__1; x_41 = lean_array_push(x_40, x_39); -x_42 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_42 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_43 = lean_array_push(x_41, x_42); x_44 = lean_array_push(x_43, x_42); x_45 = lean_array_push(x_44, x_42); @@ -10603,13 +10603,13 @@ x_90 = l_Lean_Elab_Term_expandCDot_x3f___closed__3; x_91 = lean_array_push(x_89, x_90); x_92 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_93 = lean_array_push(x_92, x_85); -x_94 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_94 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_95 = lean_array_push(x_93, x_94); x_96 = lean_array_push(x_95, x_42); x_97 = lean_unsigned_to_nat(0u); x_98 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_7, x_7, x_97, x_21); lean_dec(x_7); -x_99 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_99 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; x_100 = lean_array_push(x_98, x_99); x_101 = l_Lean_Elab_Command_elabMacroRulesAux___closed__23; lean_inc(x_10); @@ -10741,7 +10741,7 @@ lean_ctor_set(x_171, 0, x_157); lean_ctor_set(x_171, 1, x_170); x_172 = l_Lean_Elab_Command_elabSyntax___closed__1; x_173 = lean_array_push(x_172, x_171); -x_174 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_174 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_175 = lean_array_push(x_173, x_174); x_176 = lean_array_push(x_175, x_174); x_177 = lean_array_push(x_176, x_174); @@ -10828,13 +10828,13 @@ x_222 = l_Lean_Elab_Term_expandCDot_x3f___closed__3; x_223 = lean_array_push(x_221, x_222); x_224 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_225 = lean_array_push(x_224, x_217); -x_226 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; +x_226 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__3; x_227 = lean_array_push(x_225, x_226); x_228 = lean_array_push(x_227, x_174); x_229 = lean_unsigned_to_nat(0u); x_230 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_7, x_7, x_229, x_153); lean_dec(x_7); -x_231 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; +x_231 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__4; x_232 = lean_array_push(x_230, x_231); x_233 = l_Lean_Elab_Command_elabMacroRulesAux___closed__23; lean_inc(x_10); @@ -11390,7 +11390,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -11400,7 +11400,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__3; -x_2 = l___private_Init_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; +x_2 = l___private_Lean_Elab_Quotation_8__letBindRhss___main___closed__17; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -12286,7 +12286,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12307,7 +12307,7 @@ x_7 = lean_array_fget(x_3, x_2); x_8 = lean_unsigned_to_nat(0u); x_9 = lean_array_fset(x_3, x_2, x_8); x_10 = x_7; -x_11 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main(x_1, x_10); +x_11 = l___private_Lean_Elab_Syntax_7__antiquote___main(x_1, x_10); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_add(x_2, x_12); x_14 = x_11; @@ -12319,7 +12319,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12340,7 +12340,7 @@ x_7 = lean_array_fget(x_3, x_2); x_8 = lean_unsigned_to_nat(0u); x_9 = lean_array_fset(x_3, x_2, x_8); x_10 = x_7; -x_11 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main(x_1, x_10); +x_11 = l___private_Lean_Elab_Syntax_7__antiquote___main(x_1, x_10); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_add(x_2, x_12); x_14 = x_11; @@ -12352,7 +12352,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12373,7 +12373,7 @@ x_7 = lean_array_fget(x_3, x_2); x_8 = lean_unsigned_to_nat(0u); x_9 = lean_array_fset(x_3, x_2, x_8); x_10 = x_7; -x_11 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main(x_1, x_10); +x_11 = l___private_Lean_Elab_Syntax_7__antiquote___main(x_1, x_10); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_add(x_2, x_12); x_14 = x_11; @@ -12385,7 +12385,7 @@ goto _start; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12428,7 +12428,7 @@ return x_14; } } } -lean_object* _init_l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Syntax_7__antiquote___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -12437,27 +12437,27 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Syntax_7__antiquote___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_mkExplicitBinder___closed__5; -x_2 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__1; +x_2 = l___private_Lean_Elab_Syntax_7__antiquote___main___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Syntax_7__antiquote___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__2; +x_1 = l___private_Lean_Elab_Syntax_7__antiquote___main___closed__2; x_2 = l_Lean_mkOptionalNode___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Syntax_7__antiquote___main(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_62; uint8_t x_63; @@ -12497,7 +12497,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_obj x_5 = lean_ctor_get(x_2, 1); x_6 = x_5; x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__1(x_1, x_7, x_6); +x_8 = l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__1(x_1, x_7, x_6); x_9 = x_8; lean_ctor_set(x_2, 1, x_9); return x_2; @@ -12512,7 +12512,7 @@ lean_inc(x_10); lean_dec(x_2); x_12 = x_11; x_13 = lean_unsigned_to_nat(0u); -x_14 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__1(x_1, x_13, x_12); +x_14 = l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__1(x_1, x_13, x_12); x_15 = x_14; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_10); @@ -12545,7 +12545,7 @@ if (x_21 == 0) lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_22 = lean_ctor_get(x_2, 1); x_23 = x_22; -x_24 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__2(x_1, x_17, x_23); +x_24 = l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__2(x_1, x_17, x_23); x_25 = x_24; lean_ctor_set(x_2, 1, x_25); return x_2; @@ -12559,7 +12559,7 @@ lean_inc(x_27); lean_inc(x_26); lean_dec(x_2); x_28 = x_27; -x_29 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__2(x_1, x_17, x_28); +x_29 = l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__2(x_1, x_17, x_28); x_30 = x_29; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_26); @@ -12614,7 +12614,7 @@ if (x_35 == 0) lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; x_36 = lean_ctor_get(x_2, 1); x_37 = x_36; -x_38 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__3(x_1, x_17, x_37); +x_38 = l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__3(x_1, x_17, x_37); x_39 = x_38; lean_ctor_set(x_2, 1, x_39); return x_2; @@ -12628,7 +12628,7 @@ lean_inc(x_41); lean_inc(x_40); lean_dec(x_2); x_42 = x_41; -x_43 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__3(x_1, x_17, x_42); +x_43 = l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__3(x_1, x_17, x_42); x_44 = x_43; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_40); @@ -12644,7 +12644,7 @@ return x_2; else { lean_object* x_46; -x_46 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__4(x_18, x_1, x_17); +x_46 = l_Array_findIdxAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__4(x_18, x_1, x_17); if (lean_obj_tag(x_46) == 0) { lean_dec(x_18); @@ -12655,7 +12655,7 @@ else lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_dec(x_46); lean_dec(x_2); -x_47 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__3; +x_47 = l___private_Lean_Elab_Syntax_7__antiquote___main___closed__3; x_48 = lean_array_push(x_47, x_18); x_49 = l_Lean_mkOptionalNode___closed__1; x_50 = lean_array_push(x_48, x_49); @@ -12673,65 +12673,65 @@ return x_53; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__1(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__1(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__2(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__2(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__3(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__3(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Syntax_7__antiquote___main___spec__4(x_1, x_2, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Elab_Syntax_7__antiquote___main___spec__4(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote___main___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Syntax_7__antiquote___main___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main(x_1, x_2); +x_3 = l___private_Lean_Elab_Syntax_7__antiquote___main(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Syntax_7__antiquote(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main(x_1, x_2); +x_3 = l___private_Lean_Elab_Syntax_7__antiquote___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Syntax_7__antiquote___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Syntax_7__antiquote___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Elab_Syntax_7__antiquote(x_1, x_2); +x_3 = l___private_Lean_Elab_Syntax_7__antiquote(x_1, x_2); lean_dec(x_1); return x_3; } @@ -12983,7 +12983,7 @@ lean_dec(x_4); x_19 = lean_unsigned_to_nat(0u); x_20 = l_Lean_Syntax_getArg(x_1, x_19); lean_dec(x_1); -x_21 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__3; +x_21 = l___private_Lean_Elab_Syntax_7__antiquote___main___closed__3; x_22 = lean_array_push(x_21, x_20); x_23 = l_Lean_mkOptionalNode___closed__1; x_24 = lean_array_push(x_22, x_23); @@ -13279,7 +13279,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__3; -x_2 = l___private_Init_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; +x_2 = l___private_Lean_Elab_Binders_11__expandFunBindersAux___main___closed__6; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -13364,7 +13364,7 @@ x_25 = l_Array_filterAux___main___at_Lean_Elab_Command_expandNotation___spec__2( x_26 = x_25; x_27 = l_Array_umapMAux___main___at_Lean_Elab_Command_expandNotation___spec__3(x_17, x_26); x_28 = x_27; -x_29 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main(x_28, x_10); +x_29 = l___private_Lean_Elab_Syntax_7__antiquote___main(x_28, x_10); lean_dec(x_28); x_30 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at_Lean_Elab_Command_expandNotation___spec__4___boxed), 4, 2); lean_closure_set(x_30, 0, x_17); @@ -13412,7 +13412,7 @@ lean_ctor_set(x_53, 1, x_51); x_54 = lean_array_push(x_45, x_53); x_55 = l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__8; x_56 = lean_array_push(x_55, x_35); -x_57 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_57 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_58 = lean_array_push(x_56, x_57); x_59 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; x_60 = lean_alloc_ctor(1, 2, 0); @@ -13493,7 +13493,7 @@ lean_ctor_set(x_100, 1, x_98); x_101 = lean_array_push(x_92, x_100); x_102 = l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__8; x_103 = lean_array_push(x_102, x_82); -x_104 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_104 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_105 = lean_array_push(x_103, x_104); x_106 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; x_107 = lean_alloc_ctor(1, 2, 0); @@ -14025,7 +14025,7 @@ lean_dec(x_4); x_12 = lean_unsigned_to_nat(0u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); lean_dec(x_1); -x_14 = l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__3; +x_14 = l___private_Lean_Elab_Syntax_7__antiquote___main___closed__3; x_15 = lean_array_push(x_14, x_13); x_16 = l_Lean_mkOptionalNode___closed__1; x_17 = lean_array_push(x_15, x_16); @@ -14352,7 +14352,7 @@ lean_ctor_set(x_62, 1, x_60); x_63 = lean_array_push(x_54, x_62); x_64 = l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__8; x_65 = lean_array_push(x_64, x_39); -x_66 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_66 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_67 = lean_array_push(x_65, x_66); x_68 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; x_69 = lean_alloc_ctor(1, 2, 0); @@ -14425,7 +14425,7 @@ lean_ctor_set(x_108, 1, x_106); x_109 = lean_array_push(x_100, x_108); x_110 = l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__8; x_111 = lean_array_push(x_110, x_39); -x_112 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_112 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_113 = lean_array_push(x_111, x_112); x_114 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; x_115 = lean_alloc_ctor(1, 2, 0); @@ -14514,7 +14514,7 @@ lean_ctor_set(x_159, 1, x_157); x_160 = lean_array_push(x_151, x_159); x_161 = l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__8; x_162 = lean_array_push(x_161, x_136); -x_163 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_163 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_164 = lean_array_push(x_162, x_163); x_165 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; x_166 = lean_alloc_ctor(1, 2, 0); @@ -14589,7 +14589,7 @@ lean_ctor_set(x_206, 1, x_204); x_207 = lean_array_push(x_198, x_206); x_208 = l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__8; x_209 = lean_array_push(x_208, x_136); -x_210 = l___private_Init_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; +x_210 = l___private_Lean_Elab_Quotation_2__quoteSyntax___main___closed__44; x_211 = lean_array_push(x_209, x_210); x_212 = l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; x_213 = lean_alloc_ctor(1, 2, 0); @@ -14787,21 +14787,21 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Syntax_8__regTraceClasses___closed__1() { +lean_object* _init_l___private_Lean_Elab_Syntax_8__regTraceClasses___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Syntax_8__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Syntax_8__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Syntax_8__regTraceClasses___closed__1; +x_2 = l___private_Lean_Elab_Syntax_8__regTraceClasses___closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -14853,39 +14853,39 @@ return x_13; } } } -lean_object* initialize_Init_Lean_Elab_Command(lean_object*); -lean_object* initialize_Init_Lean_Elab_Quotation(lean_object*); +lean_object* initialize_Lean_Elab_Command(lean_object*); +lean_object* initialize_Lean_Elab_Quotation(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Syntax(lean_object* w) { +lean_object* initialize_Lean_Elab_Syntax(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Command(lean_io_mk_world()); +res = initialize_Lean_Elab_Command(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Quotation(lean_io_mk_world()); +res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9); -l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1 = _init_l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1); +l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1); +l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2); +l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3); +l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4); +l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5); +l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6); +l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7); +l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8); +l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9 = _init_l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9); +l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1 = _init_l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Syntax_3__markAsTrailingParser___rarg___closed__1); l_Lean_Elab_Term_checkLeftRec___closed__1 = _init_l_Lean_Elab_Term_checkLeftRec___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_checkLeftRec___closed__1); l_Lean_Elab_Term_checkLeftRec___closed__2 = _init_l_Lean_Elab_Term_checkLeftRec___closed__2(); @@ -14904,10 +14904,10 @@ l_Lean_Elab_Term_checkLeftRec___closed__8 = _init_l_Lean_Elab_Term_checkLeftRec_ lean_mark_persistent(l_Lean_Elab_Term_checkLeftRec___closed__8); l_Lean_Elab_Term_checkLeftRec___closed__9 = _init_l_Lean_Elab_Term_checkLeftRec___closed__9(); lean_mark_persistent(l_Lean_Elab_Term_checkLeftRec___closed__9); -l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1 = _init_l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1); -l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2 = _init_l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2); +l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1 = _init_l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1(); +lean_mark_persistent(l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__1); +l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2 = _init_l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2(); +lean_mark_persistent(l___private_Lean_Syntax_9__quoteOption___at_Lean_Elab_Term_toParserDescrAux___main___spec__1___closed__2); l_Lean_Elab_Term_toParserDescrAux___main___closed__1 = _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_toParserDescrAux___main___closed__1); l_Lean_Elab_Term_toParserDescrAux___main___closed__2 = _init_l_Lean_Elab_Term_toParserDescrAux___main___closed__2(); @@ -15359,12 +15359,12 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabReserve___closed__1); res = l___regBuiltin_Lean_Elab_Command_elabReserve(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__1 = _init_l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__1); -l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__2 = _init_l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__2); -l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__3 = _init_l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Syntax_7__antiquote___main___closed__3); +l___private_Lean_Elab_Syntax_7__antiquote___main___closed__1 = _init_l___private_Lean_Elab_Syntax_7__antiquote___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Syntax_7__antiquote___main___closed__1); +l___private_Lean_Elab_Syntax_7__antiquote___main___closed__2 = _init_l___private_Lean_Elab_Syntax_7__antiquote___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Syntax_7__antiquote___main___closed__2); +l___private_Lean_Elab_Syntax_7__antiquote___main___closed__3 = _init_l___private_Lean_Elab_Syntax_7__antiquote___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Syntax_7__antiquote___main___closed__3); l_Lean_Elab_Command_expandNotation___closed__1 = _init_l_Lean_Elab_Command_expandNotation___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_expandNotation___closed__1); l_Lean_Elab_Command_expandNotation___closed__2 = _init_l_Lean_Elab_Command_expandNotation___closed__2(); @@ -15381,9 +15381,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_expandMacro___closed__1); res = l___regBuiltin_Lean_Elab_Command_expandMacro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Syntax_8__regTraceClasses___closed__1 = _init_l___private_Init_Lean_Elab_Syntax_8__regTraceClasses___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Syntax_8__regTraceClasses___closed__1); -res = l___private_Init_Lean_Elab_Syntax_8__regTraceClasses(lean_io_mk_world()); +l___private_Lean_Elab_Syntax_8__regTraceClasses___closed__1 = _init_l___private_Lean_Elab_Syntax_8__regTraceClasses___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Syntax_8__regTraceClasses___closed__1); +res = l___private_Lean_Elab_Syntax_8__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Elab/SyntheticMVars.c b/stage0/stdlib/Lean/Elab/SyntheticMVars.c similarity index 76% rename from stage0/stdlib/Init/Lean/Elab/SyntheticMVars.c rename to stage0/stdlib/Lean/Elab/SyntheticMVars.c index d0b918bb33..f42b1c6f62 100644 --- a/stage0/stdlib/Init/Lean/Elab/SyntheticMVars.c +++ b/stage0/stdlib/Lean/Elab/SyntheticMVars.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.SyntheticMVars -// Imports: Init.Lean.Elab.Term Init.Lean.Elab.Tactic.Basic +// Module: Lean.Elab.SyntheticMVars +// Imports: Lean.Elab.Term Lean.Elab.Tactic.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,133 +15,133 @@ extern "C" { #endif lean_object* l_List_reverse___rarg(lean_object*); lean_object* l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__1; +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4; +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4; lean_object* l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__2; -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2; -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_fmt___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__1(lean_object*); +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9; +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9; +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8; lean_object* l_unreachable_x21___rarg(lean_object*); lean_object* l_Lean_Elab_Term_liftTacticElabM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_runTactic___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureAssignmentHasNoMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8; lean_object* l_Lean_mkMVar(lean_object*); lean_object* l_Lean_Elab_Term_liftTacticElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10; +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTermAndSynthesize(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); +lean_object* l_Lean_fmt___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__1(lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMVarDecl(lean_object*, lean_object*, lean_object*); lean_object* l_List_find_x3f___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1; lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1; +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1(lean_object*); lean_object* l_Lean_Elab_Term_getOptions(lean_object*, lean_object*); +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Format_repr___main___closed__13; -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___boxed(lean_object*); +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2; +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_1__resumeElabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2; extern lean_object* l_Lean_Elab_Term_withIncRecDepth___rarg___closed__2; lean_object* l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__3; -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux(uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8; -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4; +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_5__checkWithDefault___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef(lean_object*); +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1; uint8_t l_Lean_Expr_hasExprMVar(lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5; lean_object* l_ReaderT_lift___at_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMVarDecl___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9; lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_getUnsolvedGoals(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3; +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabTermAux___main(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_logTrace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1; -lean_object* l_Lean_fmt___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3(uint8_t); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_5__checkWithDefault___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3; -extern lean_object* l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__1; -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_1__resumeElabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5; -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1; -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3; -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2; +lean_object* l___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_5__checkWithDefault(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_1__resumeElabTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Term_liftTacticElabM(lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withMVarContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_TermElabM_inhabited___boxed(lean_object*, lean_object*); -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault(lean_object*, lean_object*); -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6; lean_object* l_Lean_Elab_Term_runTactic(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_5__checkWithDefault(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_isDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8; -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3; -lean_object* l_Lean_fmt___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6; -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4; +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3; +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5; +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6; uint8_t l_Lean_Expr_isMVar(lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7; -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9; +lean_object* l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1___boxed(lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTactic___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Term_logTrace___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2; -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1; -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef(lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7; +lean_object* l___private_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos(lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars(lean_object*, lean_object*); -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3; -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instantiateMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5; -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_1__resumeElabTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_reportUnsolvedGoals(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailWithPos___main(lean_object*); lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7; -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1; -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1; +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_instantiateMVarDeclMVars(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +uint8_t l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1(lean_object*); +extern lean_object* l___private_Lean_Elab_Term_10__postponeElabTerm___closed__1; +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2; +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3; uint8_t l_List_isEmpty___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1; +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7; +lean_object* l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg(lean_object*); +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); extern lean_object* l_Lean_Format_repr___main___closed__16; -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10; -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___boxed(lean_object*); +lean_object* l_Lean_fmt___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3___boxed(lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_EStateM_MonadState___closed__2; -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1; +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_fmt___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3(uint8_t); +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6; +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_ensureAssignmentHasNoMVars(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_liftTacticElabM___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -1415,7 +1415,7 @@ return x_104; } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_1__resumeElabTerm(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_SyntheticMVars_1__resumeElabTerm(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -1540,17 +1540,17 @@ return x_46; } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_1__resumeElabTerm___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_SyntheticMVars_1__resumeElabTerm___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_3); lean_dec(x_3); -x_7 = l___private_Init_Lean_Elab_SyntheticMVars_1__resumeElabTerm(x_1, x_2, x_6, x_4, x_5); +x_7 = l___private_Lean_Elab_SyntheticMVars_1__resumeElabTerm(x_1, x_2, x_6, x_4, x_5); return x_7; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -1559,7 +1559,7 @@ lean_closure_set(x_1, 0, lean_box(0)); return x_1; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; 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; uint8_t x_48; uint8_t x_49; uint8_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; @@ -1623,7 +1623,7 @@ x_60 = 1; lean_inc(x_51); lean_inc(x_59); lean_inc(x_4); -x_61 = l___private_Init_Lean_Elab_SyntheticMVars_1__resumeElabTerm(x_4, x_59, x_60, x_51, x_58); +x_61 = l___private_Lean_Elab_SyntheticMVars_1__resumeElabTerm(x_4, x_59, x_60, x_51, x_58); if (lean_obj_tag(x_61) == 0) { lean_object* x_62; lean_object* x_63; lean_object* x_64; @@ -1708,7 +1708,7 @@ x_78 = 0; lean_inc(x_51); lean_inc(x_59); lean_inc(x_4); -x_79 = l___private_Init_Lean_Elab_SyntheticMVars_1__resumeElabTerm(x_4, x_59, x_78, x_51, x_58); +x_79 = l___private_Lean_Elab_SyntheticMVars_1__resumeElabTerm(x_4, x_59, x_78, x_51, x_58); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; @@ -1869,7 +1869,7 @@ else { lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_dec(x_5); -x_32 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; +x_32 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; x_33 = l_unreachable_x21___rarg(x_32); x_34 = lean_apply_2(x_33, x_6, x_9); return x_34; @@ -1890,7 +1890,7 @@ return x_37; } } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -1900,18 +1900,18 @@ lean_closure_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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; x_7 = lean_box(x_4); lean_inc(x_3); -x_8 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___boxed), 7, 4); +x_8 = lean_alloc_closure((void*)(l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___boxed), 7, 4); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); lean_closure_set(x_8, 2, x_3); lean_closure_set(x_8, 3, x_2); -x_9 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1; +x_9 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1; x_10 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg), 4, 2); lean_closure_set(x_10, 0, x_9); lean_closure_set(x_10, 1, x_8); @@ -1920,27 +1920,27 @@ lean_dec(x_3); return x_11; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___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) { +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___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: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_1); lean_dec(x_1); -x_9 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1(x_8, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1(x_8, x_2, x_3, x_4, x_5, x_6, x_7); return x_9; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___boxed(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_4); lean_dec(x_4); -x_8 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed(x_1, x_2, x_3, x_7, x_5, x_6); +x_8 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed(x_1, x_2, x_3, x_7, x_5, x_6); return x_8; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -2080,7 +2080,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; x_41 = lean_ctor_get(x_5, 1); lean_inc(x_41); lean_dec(x_5); -x_42 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; +x_42 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; x_43 = l_unreachable_x21___rarg(x_42); x_44 = lean_apply_2(x_43, x_3, x_41); return x_44; @@ -2092,7 +2092,7 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; x_45 = lean_ctor_get(x_5, 1); lean_inc(x_45); lean_dec(x_5); -x_46 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; +x_46 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; x_47 = l_unreachable_x21___rarg(x_46); x_48 = lean_apply_2(x_47, x_3, x_45); return x_48; @@ -2100,12 +2100,12 @@ return x_48; } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar(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_inc(x_2); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1___boxed), 4, 2); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1___boxed), 4, 2); lean_closure_set(x_5, 0, x_1); lean_closure_set(x_5, 1, x_2); x_6 = l_Lean_Elab_Term_withMVarContext___rarg(x_2, x_5, x_3, x_4); @@ -2113,16 +2113,16 @@ lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___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___private_Init_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___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* l___private_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___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) { _start: { lean_object* x_9; @@ -2176,7 +2176,7 @@ lean_dec(x_3); x_17 = lean_ctor_get(x_9, 1); lean_inc(x_17); lean_dec(x_9); -x_18 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; +x_18 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; x_19 = l_unreachable_x21___rarg(x_18); x_20 = lean_apply_2(x_19, x_7, x_17); return x_20; @@ -2192,7 +2192,7 @@ lean_dec(x_3); x_21 = lean_ctor_get(x_9, 1); lean_inc(x_21); lean_dec(x_9); -x_22 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; +x_22 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; x_23 = l_unreachable_x21___rarg(x_22); x_24 = lean_apply_2(x_23, x_7, x_21); return x_24; @@ -2200,12 +2200,12 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar(lean_object* x_1, lean_object* x_2, 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_inc(x_2); -x_9 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___lambda__1___boxed), 8, 6); +x_9 = lean_alloc_closure((void*)(l___private_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___lambda__1___boxed), 8, 6); lean_closure_set(x_9, 0, x_1); lean_closure_set(x_9, 1, x_2); lean_closure_set(x_9, 2, x_3); @@ -2217,16 +2217,16 @@ lean_dec(x_2); return x_10; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___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, lean_object* x_8) { +lean_object* l___private_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___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, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l___private_Init_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_5__checkWithDefault(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_5__checkWithDefault(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -2293,16 +2293,16 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_5__checkWithDefault___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_5__checkWithDefault___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___private_Init_Lean_Elab_SyntheticMVars_5__checkWithDefault(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_SyntheticMVars_5__checkWithDefault(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; @@ -2317,7 +2317,7 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_1, 0); lean_inc(x_8); lean_dec(x_1); -x_9 = l___private_Init_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar(x_7, x_8, x_4, x_5); +x_9 = l___private_Lean_Elab_SyntheticMVars_3__synthesizePendingInstMVar(x_7, x_8, x_4, x_5); return x_9; } case 1: @@ -2337,7 +2337,7 @@ lean_inc(x_14); x_15 = lean_ctor_get(x_1, 0); lean_inc(x_15); lean_dec(x_1); -x_16 = l___private_Init_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar(x_14, x_15, x_10, x_11, x_12, x_13, x_4, x_5); +x_16 = l___private_Lean_Elab_SyntheticMVars_4__synthesizePendingCoeInstMVar(x_14, x_15, x_10, x_11, x_12, x_13, x_4, x_5); return x_16; } case 2: @@ -2430,7 +2430,7 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_1, 0); lean_inc(x_38); lean_dec(x_1); -x_39 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed(x_36, x_37, x_38, x_2, x_4, x_5); +x_39 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed(x_36, x_37, x_38, x_2, x_4, x_5); return x_39; } default: @@ -2442,14 +2442,14 @@ lean_inc(x_40); x_41 = lean_ctor_get(x_1, 0); lean_inc(x_41); lean_dec(x_1); -x_42 = l___private_Init_Lean_Elab_SyntheticMVars_5__checkWithDefault(x_40, x_41, x_4, x_5); +x_42 = l___private_Lean_Elab_SyntheticMVars_5__checkWithDefault(x_40, x_41, x_4, x_5); lean_dec(x_40); return x_42; } } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar___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; uint8_t x_7; lean_object* x_8; @@ -2457,11 +2457,11 @@ x_6 = lean_unbox(x_2); lean_dec(x_2); x_7 = lean_unbox(x_3); lean_dec(x_3); -x_8 = l___private_Init_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar(x_1, x_6, x_7, x_4, x_5); +x_8 = l___private_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar(x_1, x_6, x_7, x_4, x_5); return x_8; } } -lean_object* l_Lean_fmt___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__1(lean_object* x_1) { +lean_object* l_Lean_fmt___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__1(lean_object* x_1) { _start: { lean_object* x_2; @@ -2470,7 +2470,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1() { _start: { lean_object* x_1; @@ -2478,27 +2478,27 @@ x_1 = lean_mk_string("not ready yet"); return x_1; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1; +x_1 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2; +x_1 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4() { _start: { lean_object* x_1; @@ -2506,27 +2506,27 @@ x_1 = lean_mk_string("succeeded"); return x_1; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4; +x_1 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5; +x_1 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7() { _start: { lean_object* x_1; @@ -2534,27 +2534,27 @@ x_1 = lean_mk_string("resuming ?"); return x_1; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7; +x_1 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8; +x_1 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { if (lean_obj_tag(x_4) == 0) @@ -2582,7 +2582,7 @@ if (lean_is_exclusive(x_4)) { lean_dec_ref(x_4); x_11 = lean_box(0); } -x_18 = l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__1; +x_18 = l___private_Lean_Elab_Term_10__postponeElabTerm___closed__1; lean_inc(x_3); x_19 = lean_name_mk_string(x_3, x_18); x_20 = lean_ctor_get(x_9, 0); @@ -2609,7 +2609,7 @@ else lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; x_53 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_53, 0, x_20); -x_54 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9; +x_54 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9; x_55 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); @@ -2653,7 +2653,7 @@ block_48: lean_object* x_23; lean_inc(x_6); lean_inc(x_9); -x_23 = l___private_Init_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar(x_9, x_1, x_2, x_6, x_22); +x_23 = l___private_Lean_Elab_SyntheticMVars_6__synthesizeSyntheticMVar(x_9, x_1, x_2, x_6, x_22); if (lean_obj_tag(x_23) == 0) { lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; @@ -2689,7 +2689,7 @@ goto block_17; else { lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_32 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3; +x_32 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3; lean_inc(x_6); x_33 = l_Lean_Elab_Term_logTrace(x_19, x_21, x_32, x_6, x_29); lean_dec(x_21); @@ -2726,7 +2726,7 @@ goto block_17; else { lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_40 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6; +x_40 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6; lean_inc(x_6); x_41 = l_Lean_Elab_Term_logTrace(x_19, x_21, x_40, x_6, x_37); lean_dec(x_21); @@ -2774,7 +2774,7 @@ return x_47; } } } -lean_object* l_Lean_fmt___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3(uint8_t x_1) { +lean_object* l_Lean_fmt___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3(uint8_t x_1) { _start: { if (x_1 == 0) @@ -2791,7 +2791,7 @@ return x_3; } } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1() { _start: { lean_object* x_1; @@ -2799,17 +2799,17 @@ x_1 = lean_mk_string("resuming"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; -x_2 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_2 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3() { _start: { lean_object* x_1; @@ -2817,27 +2817,27 @@ x_1 = lean_mk_string("resuming synthetic metavariables, mayPostpone: "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3; +x_1 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4; +x_1 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6() { _start: { lean_object* x_1; @@ -2845,27 +2845,27 @@ x_1 = lean_mk_string(", postponeOnError: "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6; +x_1 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7; +x_1 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -2875,7 +2875,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10() { _start: { lean_object* x_1; lean_object* x_2; @@ -2885,7 +2885,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; @@ -2895,7 +2895,7 @@ lean_inc(x_100); x_101 = lean_ctor_get(x_99, 1); lean_inc(x_101); lean_dec(x_99); -x_102 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2; +x_102 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2; x_103 = l_Lean_checkTraceOption(x_100, x_102); lean_dec(x_100); if (x_103 == 0) @@ -2907,21 +2907,21 @@ else { uint8_t x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; x_104 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); -x_105 = l_Lean_fmt___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3(x_104); +x_105 = l_Lean_fmt___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3(x_104); x_106 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_106, 0, x_105); -x_107 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5; +x_107 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5; x_108 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); -x_109 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8; +x_109 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8; x_110 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_110, 0, x_108); lean_ctor_set(x_110, 1, x_109); if (x_1 == 0) { lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_111 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9; +x_111 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9; x_112 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_112, 0, x_110); lean_ctor_set(x_112, 1, x_111); @@ -2937,7 +2937,7 @@ goto block_98; else { lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_116 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10; +x_116 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10; x_117 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_117, 0, x_110); lean_ctor_set(x_117, 1, x_116); @@ -2964,8 +2964,8 @@ x_9 = l_List_lengthAux___main___rarg(x_7, x_8); x_10 = l_List_reverse___rarg(x_7); x_11 = lean_box(0); lean_ctor_set(x_5, 1, x_11); -x_12 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; -x_13 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(x_1, x_2, x_12, x_10, x_11, x_3, x_5); +x_12 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_13 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(x_1, x_2, x_12, x_10, x_11, x_3, x_5); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -3168,8 +3168,8 @@ lean_ctor_set(x_71, 2, x_63); lean_ctor_set(x_71, 3, x_64); lean_ctor_set(x_71, 4, x_65); lean_ctor_set(x_71, 5, x_66); -x_72 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; -x_73 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(x_1, x_2, x_72, x_69, x_70, x_3, x_71); +x_72 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_73 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(x_1, x_2, x_72, x_69, x_70, x_3, x_71); if (lean_obj_tag(x_73) == 0) { lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t 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; @@ -3283,7 +3283,7 @@ return x_97; } } } -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___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* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___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: { uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -3291,21 +3291,21 @@ x_8 = lean_unbox(x_1); lean_dec(x_1); x_9 = lean_unbox(x_2); lean_dec(x_2); -x_10 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(x_8, x_9, x_3, x_4, x_5, x_6, x_7); +x_10 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2(x_8, x_9, x_3, x_4, x_5, x_6, x_7); return x_10; } } -lean_object* l_Lean_fmt___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3___boxed(lean_object* x_1) { +lean_object* l_Lean_fmt___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; x_2 = lean_unbox(x_1); lean_dec(x_1); -x_3 = l_Lean_fmt___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3(x_2); +x_3 = l_Lean_fmt___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__3(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; uint8_t x_6; lean_object* x_7; @@ -3313,11 +3313,11 @@ x_5 = lean_unbox(x_1); lean_dec(x_1); x_6 = lean_unbox(x_2); lean_dec(x_2); -x_7 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_5, x_6, x_3, x_4); +x_7 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_5, x_6, x_3, x_4); return x_7; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -3325,27 +3325,27 @@ x_1 = lean_mk_string("failed to assign default value to metavariable"); return x_1; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1; +x_1 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3() { +lean_object* _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2; +x_1 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___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; uint8_t x_7; @@ -3383,7 +3383,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; x_14 = lean_ctor_get(x_11, 1); lean_inc(x_14); lean_dec(x_11); -x_15 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3; +x_15 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3; x_16 = l_Lean_Elab_Term_throwError___rarg(x_1, x_15, x_4, x_14); x_17 = !lean_is_exclusive(x_16); if (x_17 == 0) @@ -3460,7 +3460,7 @@ return x_32; } } } -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3502,7 +3502,7 @@ lean_inc(x_13); x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Term_instantiateMVars___boxed), 4, 2); lean_closure_set(x_15, 0, x_13); lean_closure_set(x_15, 1, x_14); -x_16 = lean_alloc_closure((void*)(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___boxed), 5, 2); +x_16 = lean_alloc_closure((void*)(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___boxed), 5, 2); lean_closure_set(x_16, 0, x_13); lean_closure_set(x_16, 1, x_11); x_17 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg), 4, 2); @@ -3595,7 +3595,7 @@ lean_inc(x_32); x_34 = lean_alloc_closure((void*)(l_Lean_Elab_Term_instantiateMVars___boxed), 4, 2); lean_closure_set(x_34, 0, x_32); lean_closure_set(x_34, 1, x_33); -x_35 = lean_alloc_closure((void*)(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___boxed), 5, 2); +x_35 = lean_alloc_closure((void*)(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___boxed), 5, 2); lean_closure_set(x_35, 0, x_32); lean_closure_set(x_35, 1, x_30); x_36 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg), 4, 2); @@ -3704,7 +3704,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault(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; @@ -3713,7 +3713,7 @@ lean_inc(x_3); x_4 = lean_unsigned_to_nat(0u); x_5 = l_List_lengthAux___main___rarg(x_3, x_4); x_6 = lean_box(0); -x_7 = l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1(x_3, x_6, x_1, x_2); +x_7 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1(x_3, x_6, x_1, x_2); if (lean_obj_tag(x_7) == 0) { uint8_t x_8; @@ -3886,16 +3886,16 @@ return x_51; } } } -lean_object* l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___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* l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___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_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* _init_l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1() { +lean_object* _init_l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -3903,27 +3903,27 @@ x_1 = lean_mk_string("failed to create type class instance for "); return x_1; } } -lean_object* _init_l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2() { +lean_object* _init_l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1; +x_1 = l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3() { +lean_object* _init_l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2; +x_1 = l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___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; uint8_t x_11; lean_object* x_12; @@ -3933,7 +3933,7 @@ lean_inc(x_6); x_7 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_7, 0, x_6); x_8 = l_Lean_indentExpr(x_7); -x_9 = l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3; +x_9 = l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3; x_10 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_8); @@ -3942,7 +3942,7 @@ x_12 = l_Lean_Elab_log___at_Lean_Elab_Term_logTrace___spec__1(x_5, x_11, x_10, x return x_12; } } -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _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; @@ -3952,7 +3952,7 @@ lean_inc(x_10); x_11 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_11, 0, x_10); x_12 = l_Lean_indentExpr(x_11); -x_13 = l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3; +x_13 = l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3; x_14 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_12); @@ -3963,7 +3963,7 @@ lean_dec(x_15); return x_16; } } -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3995,7 +3995,7 @@ lean_inc(x_9); lean_inc(x_9); x_10 = lean_alloc_closure((void*)(l_Lean_Elab_Term_getMVarDecl___boxed), 3, 1); lean_closure_set(x_10, 0, x_9); -x_11 = lean_alloc_closure((void*)(l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___boxed), 4, 1); +x_11 = lean_alloc_closure((void*)(l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___boxed), 4, 1); lean_closure_set(x_11, 0, x_6); x_12 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2___rarg), 4, 2); lean_closure_set(x_12, 0, x_10); @@ -4058,7 +4058,7 @@ lean_inc(x_25); lean_inc(x_25); x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Term_getMVarDecl___boxed), 3, 1); lean_closure_set(x_26, 0, x_25); -x_27 = lean_alloc_closure((void*)(l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2___boxed), 8, 5); +x_27 = lean_alloc_closure((void*)(l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2___boxed), 8, 5); lean_closure_set(x_27, 0, x_6); lean_closure_set(x_27, 1, x_21); lean_closure_set(x_27, 2, x_22); @@ -4113,7 +4113,7 @@ lean_dec(x_6); x_36 = lean_ctor_get(x_1, 1); lean_inc(x_36); lean_dec(x_1); -x_37 = l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; +x_37 = l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1; x_38 = l_unreachable_x21___rarg(x_37); lean_inc(x_2); x_39 = lean_apply_2(x_38, x_2, x_3); @@ -4156,37 +4156,37 @@ return x_45; } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_ctor_get(x_2, 1); lean_inc(x_3); -x_4 = l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1(x_3, x_1, x_2); +x_4 = l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1(x_3, x_1, x_2); return x_4; } } -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___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_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_6); lean_dec(x_1); return x_9; } } -uint8_t l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1(lean_object* x_1) { +uint8_t l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -4207,21 +4207,21 @@ return x_5; } } } -lean_object* _init_l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1() { +lean_object* _init_l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1___boxed), 1, 0); return x_1; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_3 = l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1; +x_3 = l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1; x_4 = l_List_find_x3f___main___rarg(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -4248,39 +4248,39 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef(lean_object* x_1) { +lean_object* l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1(x_1); +x_2 = l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___lambda__1(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef(x_1); +x_2 = l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_dec(x_2); -x_5 = l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg(x_4); +x_5 = l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg(x_4); x_6 = lean_ctor_get(x_3, 0); lean_inc(x_6); x_7 = lean_ctor_get(x_5, 0); @@ -4456,7 +4456,7 @@ block_98: uint8_t x_33; lean_object* x_34; x_33 = 0; lean_inc(x_31); -x_34 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_33, x_33, x_31, x_25); +x_34 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_33, x_33, x_31, x_25); if (lean_obj_tag(x_34) == 0) { lean_object* x_35; uint8_t x_36; @@ -4488,7 +4488,7 @@ lean_ctor_set_uint8(x_38, sizeof(void*)*10 + 1, x_20); lean_ctor_set_uint8(x_38, sizeof(void*)*10 + 2, x_21); x_39 = 1; lean_inc(x_38); -x_40 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_39, x_33, x_38, x_37); +x_40 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_39, x_33, x_38, x_37); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; uint8_t x_42; @@ -4503,7 +4503,7 @@ x_43 = lean_ctor_get(x_40, 1); lean_inc(x_43); lean_dec(x_40); lean_inc(x_31); -x_44 = l___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault(x_31, x_43); +x_44 = l___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault(x_31, x_43); if (lean_obj_tag(x_44) == 0) { lean_object* x_45; uint8_t x_46; @@ -4517,7 +4517,7 @@ lean_object* x_47; lean_object* x_48; x_47 = lean_ctor_get(x_44, 1); lean_inc(x_47); lean_dec(x_44); -x_48 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_33, x_33, x_38, x_47); +x_48 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_33, x_33, x_38, x_47); if (lean_obj_tag(x_48) == 0) { lean_object* x_49; uint8_t x_50; @@ -4532,7 +4532,7 @@ x_51 = lean_ctor_get(x_48, 1); lean_inc(x_51); lean_dec(x_48); lean_inc(x_31); -x_52 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_33, x_39, x_31, x_51); +x_52 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_33, x_39, x_31, x_51); if (lean_obj_tag(x_52) == 0) { lean_object* x_53; uint8_t x_54; @@ -4546,7 +4546,7 @@ lean_object* x_55; lean_object* x_56; x_55 = lean_ctor_get(x_52, 1); lean_inc(x_55); lean_dec(x_52); -x_56 = l___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars(x_31, x_55); +x_56 = l___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars(x_31, x_55); return x_56; } else @@ -4891,7 +4891,7 @@ block_176: uint8_t x_113; lean_object* x_114; x_113 = 0; lean_inc(x_111); -x_114 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_113, x_113, x_111, x_25); +x_114 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_113, x_113, x_111, x_25); if (lean_obj_tag(x_114) == 0) { lean_object* x_115; uint8_t x_116; @@ -4923,7 +4923,7 @@ lean_ctor_set_uint8(x_118, sizeof(void*)*10 + 1, x_20); lean_ctor_set_uint8(x_118, sizeof(void*)*10 + 2, x_21); x_119 = 1; lean_inc(x_118); -x_120 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_119, x_113, x_118, x_117); +x_120 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_119, x_113, x_118, x_117); if (lean_obj_tag(x_120) == 0) { lean_object* x_121; uint8_t x_122; @@ -4938,7 +4938,7 @@ x_123 = lean_ctor_get(x_120, 1); lean_inc(x_123); lean_dec(x_120); lean_inc(x_111); -x_124 = l___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault(x_111, x_123); +x_124 = l___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault(x_111, x_123); if (lean_obj_tag(x_124) == 0) { lean_object* x_125; uint8_t x_126; @@ -4952,7 +4952,7 @@ lean_object* x_127; lean_object* x_128; x_127 = lean_ctor_get(x_124, 1); lean_inc(x_127); lean_dec(x_124); -x_128 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_113, x_113, x_118, x_127); +x_128 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_113, x_113, x_118, x_127); if (lean_obj_tag(x_128) == 0) { lean_object* x_129; uint8_t x_130; @@ -4967,7 +4967,7 @@ x_131 = lean_ctor_get(x_128, 1); lean_inc(x_131); lean_dec(x_128); lean_inc(x_111); -x_132 = l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_113, x_119, x_111, x_131); +x_132 = l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep(x_113, x_119, x_111, x_131); if (lean_obj_tag(x_132) == 0) { lean_object* x_133; uint8_t x_134; @@ -4981,7 +4981,7 @@ lean_object* x_135; lean_object* x_136; x_135 = lean_ctor_get(x_132, 1); lean_inc(x_135); lean_dec(x_132); -x_136 = l___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars(x_111, x_135); +x_136 = l___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars(x_111, x_135); return x_136; } else @@ -5242,31 +5242,31 @@ return x_175; } } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_1); lean_dec(x_1); -x_6 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_5, x_2, x_3, x_4); +x_6 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_5, x_2, x_3, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_1); lean_dec(x_1); -x_6 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux(x_5, x_2, x_3, x_4); +x_6 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux(x_5, x_2, x_3, x_4); return x_6; } } @@ -5275,7 +5275,7 @@ _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_box(0); -x_5 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_1, x_4, x_2, x_3); +x_5 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_1, x_4, x_2, x_3); return x_5; } } @@ -5315,7 +5315,7 @@ lean_dec(x_9); x_12 = 0; x_13 = lean_box(0); lean_inc(x_3); -x_14 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_12, x_13, x_3, x_11); +x_14 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_12, x_13, x_3, x_11); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -5652,7 +5652,7 @@ lean_dec(x_101); x_104 = 0; x_105 = lean_box(0); lean_inc(x_3); -x_106 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_104, x_105, x_3, x_103); +x_106 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_104, x_105, x_3, x_103); if (lean_obj_tag(x_106) == 0) { lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; 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; @@ -5847,17 +5847,17 @@ return x_147; } } } -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_Basic(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_SyntheticMVars(lean_object* w) { +lean_object* initialize_Lean_Elab_SyntheticMVars(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_Basic(lean_io_mk_world()); +res = initialize_Lean_Elab_Tactic_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__1 = _init_l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__1(); @@ -5866,62 +5866,62 @@ l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__2 = _init_l_Lean_Elab_Term lean_mark_persistent(l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__2); l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__3 = _init_l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__3(); lean_mark_persistent(l_Lean_Elab_Term_ensureAssignmentHasNoMVars___closed__3); -l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1); -l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1 = _init_l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9); -l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10 = _init_l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2); -l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3 = _init_l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3(); -lean_mark_persistent(l_List_filterAuxM___main___at___private_Init_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3); -l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1 = _init_l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1(); -lean_mark_persistent(l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1); -l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2 = _init_l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2(); -lean_mark_persistent(l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2); -l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3 = _init_l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3(); -lean_mark_persistent(l_List_forM___main___at___private_Init_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3); -l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1 = _init_l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1); +l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1 = _init_l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___lambda__1___closed__1); +l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1 = _init_l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_2__resumePostponed___closed__1); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__1); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__2); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__3); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__4); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__5); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__6); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__7); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__8); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___spec__2___closed__9); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__1); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__2); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__3); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__4); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__5); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__6); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__7); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__8); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__9); +l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10 = _init_l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_7__synthesizeSyntheticMVarsStep___closed__10); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__1); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__2); +l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3 = _init_l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3(); +lean_mark_persistent(l_List_filterAuxM___main___at___private_Lean_Elab_SyntheticMVars_8__synthesizeUsingDefault___spec__1___lambda__1___closed__3); +l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1 = _init_l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1(); +lean_mark_persistent(l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__1); +l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2 = _init_l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2(); +lean_mark_persistent(l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__2); +l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3 = _init_l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3(); +lean_mark_persistent(l_List_forM___main___at___private_Lean_Elab_SyntheticMVars_9__reportStuckSyntheticMVars___spec__1___lambda__1___closed__3); +l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1 = _init_l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_SyntheticMVars_10__getSomeSynthethicMVarsRef___rarg___closed__1); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Elab/Tactic.c b/stage0/stdlib/Lean/Elab/Tactic.c new file mode 100644 index 0000000000..d8d15f6924 --- /dev/null +++ b/stage0/stdlib/Lean/Elab/Tactic.c @@ -0,0 +1,49 @@ +// Lean compiler output +// Module: Lean.Elab.Tactic +// Imports: Lean.Elab.Term Lean.Elab.Tactic.Basic Lean.Elab.Tactic.ElabTerm Lean.Elab.Tactic.Induction Lean.Elab.Tactic.Generalize Lean.Elab.Tactic.Injection +#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* initialize_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Basic(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_ElabTerm(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Induction(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Generalize(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Injection(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Lean_Elab_Tactic(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_mk_io_result(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Elab_Term(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_Basic(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_ElabTerm(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_Induction(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_Generalize(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_Injection(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_mk_io_result(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c similarity index 98% rename from stage0/stdlib/Init/Lean/Elab/Tactic/Basic.c rename to stage0/stdlib/Lean/Elab/Tactic/Basic.c index 22c1ba1467..dfed46d239 100644 --- a/stage0/stdlib/Init/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Tactic.Basic -// Imports: Init.Lean.Util.CollectMVars Init.Lean.Meta.Tactic.Assumption Init.Lean.Meta.Tactic.Intro Init.Lean.Meta.Tactic.Clear Init.Lean.Meta.Tactic.Revert Init.Lean.Meta.Tactic.Subst Init.Lean.Elab.Util Init.Lean.Elab.Term +// Module: Lean.Elab.Tactic.Basic +// Imports: Lean.Util.CollectMVars Lean.Meta.Tactic.Assumption Lean.Meta.Tactic.Intro Lean.Meta.Tactic.Clear Lean.Meta.Tactic.Revert Lean.Meta.Tactic.Subst Lean.Elab.Util Lean.Elab.Term #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,13 +18,13 @@ lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTactic___main___spec lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTraceState___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_withIncRecDepth___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_monadLog; -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getLocalInsts___boxed(lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_withMVarContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__5; lean_object* l_Lean_Elab_Tactic_Lean_Elab_MonadMacroAdapter___closed__7; lean_object* l_Lean_Elab_Tactic_evalTactic___main___closed__3; +lean_object* l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_withMainMVarContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__3; extern lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__2; @@ -60,12 +60,10 @@ lean_object* l_Lean_Elab_Tactic_evalClear(lean_object*, lean_object*, lean_objec lean_object* l_ReaderT_lift___at_Lean_Elab_Tactic_Lean_Elab_MonadMacroAdapter___spec__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__1; lean_object* l_Lean_Elab_Tactic_trace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_1__evalTacticUsing(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_appendGoals___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_focus(lean_object*); lean_object* l_Lean_Elab_Tactic_getLCtx___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_monadQuotation___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; lean_object* l_Lean_Elab_Tactic_evalIntro___lambda__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_resolveGlobalName(lean_object*, lean_object*, lean_object*); @@ -81,7 +79,6 @@ lean_object* l_Lean_Elab_Tactic_forEachVar(lean_object*, lean_object*, lean_obje lean_object* lean_dbg_trace(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_restore(lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_Elab_Tactic_tacticElabAttribute___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_clear___lambda__1___closed__6; @@ -90,7 +87,6 @@ lean_object* l_Lean_Elab_goalsToMessageData___closed__1; lean_object* l_Array_forMAux___main___at_Lean_Elab_Tactic_forEachVar___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1; lean_object* l_Array_forMAux___main___at_Lean_Elab_Tactic_forEachVar___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___boxed(lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_Elab_Tactic_tacticElabAttribute___spec__1; lean_object* l_Lean_Elab_Tactic_resettingSynthInstanceCacheWhen___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntro(lean_object*, lean_object*, lean_object*); @@ -98,6 +94,7 @@ lean_object* l_Lean_Elab_Tactic_unfoldDefinition_x3f(lean_object*, lean_object*, lean_object* l_PersistentHashMap_findAux___main___at_Lean_Elab_Tactic_evalTactic___main___spec__3(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Tactic_evalCase___closed__3; lean_object* lean_array_get_size(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_setGoals___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_inferType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMCtx___boxed(lean_object*); @@ -132,10 +129,9 @@ lean_object* l_Lean_Elab_Tactic_collectMVars___closed__1; lean_object* l_Lean_Elab_Term_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_whnfCore(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Lean_Elab_MonadMacroAdapter___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___main___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize(lean_object*); lean_object* l_Lean_Elab_Tactic_monadLog___closed__3; +extern lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalClear(lean_object*); lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__3; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntros___closed__1; @@ -146,12 +142,12 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAssumption(lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTactic___closed__1; lean_object* l_List_findM_x3f___main___at_Lean_Elab_Tactic_evalCase___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_isEqvAux___main___at_Lean_Elab_Tactic_withMVarContext___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(lean_object*); lean_object* l_Lean_Elab_getPos___at_Lean_Elab_Tactic_evalTraceState___spec__2(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_dbgTrace___rarg___closed__1; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSeq(lean_object*); lean_object* l_List_findM_x3f___main___at_Lean_Elab_Tactic_evalCase___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTactic___main___closed__2; +lean_object* l___private_Lean_Elab_Tactic_Basic_4__regTraceClasses(lean_object*); extern lean_object* l_Lean_Elab_Term_withIncRecDepth___rarg___closed__2; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSkip___closed__1; lean_object* l_Lean_Elab_Tactic_evalCase(lean_object*, lean_object*, lean_object*); @@ -188,7 +184,6 @@ lean_object* l_Lean_Elab_Tactic_evalSeq___boxed(lean_object*, lean_object*, lean lean_object* l_Lean_Elab_Tactic_EStateM_Backtrackable; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSkip(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1; lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftTermElabM(lean_object*); @@ -219,6 +214,7 @@ lean_object* l_Lean_Elab_Tactic_monadLog___closed__7; lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_Lean_Syntax_prettyPrint(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_tacticElabAttribute___closed__4; lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_revert___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -237,6 +233,7 @@ lean_object* l_Lean_Elab_Tactic_monadLog___closed__8; extern lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__2; lean_object* l_Lean_Elab_Tactic_Lean_Elab_MonadMacroAdapter___closed__4; lean_object* l_Lean_Elab_Tactic_getMainModule___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___main___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_evalChoice(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_withLCtx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntros(lean_object*); @@ -256,9 +253,10 @@ lean_object* l_Lean_Elab_Tactic_save___boxed(lean_object*); lean_object* l_mkHashMapImp___rarg(lean_object*); lean_object* l_Lean_Elab_Term_whnfCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__2; +lean_object* l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___boxed(lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Term_reportUnsolvedGoals___closed__1; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalOrelse___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_4__regTraceClasses(lean_object*); lean_object* l_Lean_Elab_Term_reportUnsolvedGoals___closed__4; lean_object* l_Lean_Elab_Tactic_whnf(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__3; @@ -269,10 +267,12 @@ lean_object* l_Lean_MessageData_joinSep___main(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_State_inhabited; extern lean_object* l_HashSet_Inhabited___closed__1; lean_object* l_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTactic___main___spec__5(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(lean_object*); size_t l_USize_land(size_t, size_t); lean_object* l_Lean_Elab_Tactic_evalOrelse(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__2; lean_object* l_Lean_Elab_Tactic_forEachVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_Tactic_monadLog___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalRevert(lean_object*, lean_object*, lean_object*); @@ -330,6 +330,7 @@ lean_object* l_Lean_Elab_Tactic_monadLog___closed__2; lean_object* l_Lean_Elab_Tactic_evalChoiceAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_setGoals(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_modifyMCtx(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; lean_object* l_Lean_Elab_Tactic_getOptions___boxed(lean_object*, lean_object*); @@ -346,14 +347,12 @@ lean_object* l_Lean_Elab_Tactic_withFreshMacroScope___rarg(lean_object*, lean_ob lean_object* l_Lean_Elab_Tactic_throwError(lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Elab_Tactic_evalTactic___main___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalParen___closed__1; lean_object* l_Lean_Elab_Tactic_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRevert(lean_object*); extern lean_object* l_Lean_Parser_Tactic_seq___elambda__1___closed__4; lean_object* l_Lean_Elab_Tactic_ensureHasNoMVars(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_erase___main___at_Lean_Elab_Tactic_evalCase___spec__2___boxed(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; lean_object* l_Lean_Elab_Term_instantiateMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_EStateM_Backtrackable___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Tactic_evalIntros___spec__1(lean_object*, lean_object*); @@ -364,6 +363,7 @@ lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux(lean_object*); lean_object* l_Lean_Elab_Tactic_Lean_Elab_MonadMacroAdapter___closed__6; lean_object* l_Lean_Elab_Tactic_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_focusAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize(lean_object*); lean_object* l_Lean_Elab_Tactic_getFVarIds(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTraceState___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getEnv___rarg(lean_object*); @@ -388,7 +388,6 @@ lean_object* l_Lean_Elab_Tactic_evalRevert___lambda__1(lean_object*, lean_object extern lean_object* l_Lean_Parser_regBuiltinTacticParserAttr___closed__3; lean_object* l_Lean_Elab_Tactic_throwUnsupportedSyntax___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMVarDecl(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTactic___main___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalSubst___closed__1; lean_object* l_Lean_Elab_Tactic_evalIntros(lean_object*, lean_object*, lean_object*); @@ -409,7 +408,6 @@ lean_object* l_Lean_Elab_Tactic_withMacroExpansion(lean_object*); lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resetSynthInstanceCache___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_Lean_Elab_MonadMacroAdapter; -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_Lean_Elab_Tactic_monadLog___lambda__1___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_regBuiltinTacticParserAttr___closed__4; @@ -420,6 +418,7 @@ uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalOrelse(lean_object*); lean_object* l_Lean_Elab_Tactic_dbgTrace(lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Tactic_monadLog___lambda__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_EStateM_Backtrackable___closed__3; lean_object* lean_usize_to_nat(size_t); @@ -430,6 +429,7 @@ extern lean_object* l_Lean_Parser_Tactic_seq___elambda__1___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Tactic_getFVarIds___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainModule(lean_object*); lean_object* l_Lean_Elab_Tactic_throwUnsupportedSyntax___rarg___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__2; lean_object* l_List_foldl___main___at_Lean_Elab_Tactic_tagUntaggedGoals___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); @@ -3032,7 +3032,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_dbgTrace___rarg), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_3) == 0) @@ -3051,7 +3051,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); -x_12 = l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; +x_12 = l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; x_13 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_11); @@ -3150,11 +3150,11 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_1__evalTacticUsing(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } @@ -3574,7 +3574,7 @@ lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_3) == 0) @@ -4134,11 +4134,11 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } @@ -4169,7 +4169,7 @@ if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; x_14 = lean_box(0); -x_15 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(x_1, x_2, x_14, x_3, x_7); +x_15 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(x_1, x_2, x_14, x_3, x_7); return x_15; } else @@ -4178,7 +4178,7 @@ lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_13, 0); lean_inc(x_16); lean_dec(x_13); -x_17 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(x_1, x_2, x_16, x_3, x_7); +x_17 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main(x_1, x_2, x_16, x_3, x_7); return x_17; } } @@ -4401,7 +4401,7 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -5227,7 +5227,7 @@ lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_inc(x_1); x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalTactic___main___lambda__1___boxed), 2, 1); lean_closure_set(x_39, 0, x_1); -x_40 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; +x_40 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; lean_inc(x_1); x_41 = lean_alloc_closure((void*)(l_Lean_Elab_Term_trace___boxed), 5, 3); lean_closure_set(x_41, 0, x_40); @@ -5285,7 +5285,7 @@ if (lean_obj_tag(x_60) == 0) { lean_object* x_61; lean_object* x_62; x_61 = lean_box(0); -x_62 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_61, x_35, x_55); +x_62 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_61, x_35, x_55); return x_62; } else @@ -5294,7 +5294,7 @@ lean_object* x_63; lean_object* x_64; x_63 = lean_ctor_get(x_60, 0); lean_inc(x_63); lean_dec(x_60); -x_64 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_63, x_35, x_55); +x_64 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_63, x_35, x_55); return x_64; } } @@ -5306,7 +5306,7 @@ x_65 = lean_ctor_get(x_52, 0); lean_inc(x_65); lean_dec(x_52); lean_inc(x_43); -x_66 = l___private_Init_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_43, x_1, x_65, x_35, x_43); +x_66 = l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_43, x_1, x_65, x_35, x_43); return x_66; } } @@ -5417,7 +5417,7 @@ lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_inc(x_1); x_91 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalTactic___main___lambda__1___boxed), 2, 1); lean_closure_set(x_91, 0, x_1); -x_92 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; +x_92 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; lean_inc(x_1); x_93 = lean_alloc_closure((void*)(l_Lean_Elab_Term_trace___boxed), 5, 3); lean_closure_set(x_93, 0, x_92); @@ -5475,7 +5475,7 @@ if (lean_obj_tag(x_112) == 0) { lean_object* x_113; lean_object* x_114; x_113 = lean_box(0); -x_114 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_113, x_87, x_107); +x_114 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_113, x_87, x_107); return x_114; } else @@ -5484,7 +5484,7 @@ lean_object* x_115; lean_object* x_116; x_115 = lean_ctor_get(x_112, 0); lean_inc(x_115); lean_dec(x_112); -x_116 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_115, x_87, x_107); +x_116 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_115, x_87, x_107); return x_116; } } @@ -5496,7 +5496,7 @@ x_117 = lean_ctor_get(x_104, 0); lean_inc(x_117); lean_dec(x_104); lean_inc(x_95); -x_118 = l___private_Init_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_95, x_1, x_117, x_87, x_95); +x_118 = l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_95, x_1, x_117, x_87, x_95); return x_118; } } @@ -5632,7 +5632,7 @@ lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_inc(x_1); x_147 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalTactic___main___lambda__1___boxed), 2, 1); lean_closure_set(x_147, 0, x_1); -x_148 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; +x_148 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; lean_inc(x_1); x_149 = lean_alloc_closure((void*)(l_Lean_Elab_Term_trace___boxed), 5, 3); lean_closure_set(x_149, 0, x_148); @@ -5690,7 +5690,7 @@ if (lean_obj_tag(x_168) == 0) { lean_object* x_169; lean_object* x_170; x_169 = lean_box(0); -x_170 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_169, x_143, x_163); +x_170 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_169, x_143, x_163); return x_170; } else @@ -5699,7 +5699,7 @@ lean_object* x_171; lean_object* x_172; x_171 = lean_ctor_get(x_168, 0); lean_inc(x_171); lean_dec(x_168); -x_172 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_171, x_143, x_163); +x_172 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_171, x_143, x_163); return x_172; } } @@ -5711,7 +5711,7 @@ x_173 = lean_ctor_get(x_160, 0); lean_inc(x_173); lean_dec(x_160); lean_inc(x_151); -x_174 = l___private_Init_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_151, x_1, x_173, x_143, x_151); +x_174 = l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_151, x_1, x_173, x_143, x_151); return x_174; } } @@ -5874,7 +5874,7 @@ lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_inc(x_1); x_210 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalTactic___main___lambda__1___boxed), 2, 1); lean_closure_set(x_210, 0, x_1); -x_211 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; +x_211 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; lean_inc(x_1); x_212 = lean_alloc_closure((void*)(l_Lean_Elab_Term_trace___boxed), 5, 3); lean_closure_set(x_212, 0, x_211); @@ -5932,7 +5932,7 @@ if (lean_obj_tag(x_231) == 0) { lean_object* x_232; lean_object* x_233; x_232 = lean_box(0); -x_233 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_232, x_206, x_226); +x_233 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_232, x_206, x_226); return x_233; } else @@ -5941,7 +5941,7 @@ lean_object* x_234; lean_object* x_235; x_234 = lean_ctor_get(x_231, 0); lean_inc(x_234); lean_dec(x_231); -x_235 = l___private_Init_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_234, x_206, x_226); +x_235 = l___private_Lean_Elab_Tactic_Basic_2__expandTacticMacroFns___main___at_Lean_Elab_Tactic_evalTactic___main___spec__7(x_1, x_234, x_206, x_226); return x_235; } } @@ -5953,7 +5953,7 @@ x_236 = lean_ctor_get(x_223, 0); lean_inc(x_236); lean_dec(x_223); lean_inc(x_214); -x_237 = l___private_Init_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_214, x_1, x_236, x_206, x_214); +x_237 = l___private_Lean_Elab_Tactic_Basic_1__evalTacticUsing___main(x_214, x_1, x_236, x_206, x_214); return x_237; } } @@ -13602,7 +13602,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { @@ -13610,7 +13610,7 @@ case 7: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = lean_ctor_get(x_1, 2); -x_3 = l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_2); +x_3 = l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_2); x_4 = lean_unsigned_to_nat(1u); x_5 = lean_nat_add(x_3, x_4); lean_dec(x_3); @@ -13620,7 +13620,7 @@ case 8: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_6 = lean_ctor_get(x_1, 3); -x_7 = l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_6); +x_7 = l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_6); x_8 = lean_unsigned_to_nat(1u); x_9 = lean_nat_add(x_7, x_8); lean_dec(x_7); @@ -13635,28 +13635,28 @@ return x_10; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___main___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_1); +x_2 = l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_1); +x_2 = l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize(x_1); +x_2 = l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize(x_1); lean_dec(x_1); return x_2; } @@ -13791,7 +13791,7 @@ lean_inc(x_8); x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); -x_10 = l___private_Init_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_8); +x_10 = l___private_Lean_Elab_Tactic_Basic_3__getIntrosSize___main(x_8); lean_dec(x_8); x_11 = lean_box(0); x_12 = 1; @@ -15400,21 +15400,21 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Parser_regBuiltinTacticParserAttr___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Basic_4__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Basic_4__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1; +x_2 = l___private_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -15466,41 +15466,41 @@ return x_13; } } } -lean_object* initialize_Init_Lean_Util_CollectMVars(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Assumption(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Intro(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Clear(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Revert(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Subst(lean_object*); -lean_object* initialize_Init_Lean_Elab_Util(lean_object*); -lean_object* initialize_Init_Lean_Elab_Term(lean_object*); +lean_object* initialize_Lean_Util_CollectMVars(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Assumption(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Intro(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Clear(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Revert(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Subst(lean_object*); +lean_object* initialize_Lean_Elab_Util(lean_object*); +lean_object* initialize_Lean_Elab_Term(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Tactic_Basic(lean_object* w) { +lean_object* initialize_Lean_Elab_Tactic_Basic(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Util_CollectMVars(lean_io_mk_world()); +res = initialize_Lean_Util_CollectMVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Assumption(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Assumption(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Intro(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Intro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Clear(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Clear(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Revert(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Revert(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Subst(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Subst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Util(lean_io_mk_world()); +res = initialize_Lean_Elab_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Term(lean_io_mk_world()); +res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_goalsToMessageData___closed__1 = _init_l_Lean_Elab_goalsToMessageData___closed__1(); @@ -15736,9 +15736,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalOrelse___closed__1); res = l___regBuiltin_Lean_Elab_Tactic_evalOrelse(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1); -res = l___private_Init_Lean_Elab_Tactic_Basic_4__regTraceClasses(lean_io_mk_world()); +l___private_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1 = _init_l___private_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Basic_4__regTraceClasses___closed__1); +res = l___private_Lean_Elab_Tactic_Basic_4__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Elab/Tactic/ElabTerm.c b/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c similarity index 97% rename from stage0/stdlib/Init/Lean/Elab/Tactic/ElabTerm.c rename to stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c index 9d14202143..1aff659c38 100644 --- a/stage0/stdlib/Init/Lean/Elab/Tactic/ElabTerm.c +++ b/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Tactic.ElabTerm -// Imports: Init.Lean.Meta.Tactic.Apply Init.Lean.Meta.Tactic.Assert Init.Lean.Elab.Tactic.Basic Init.Lean.Elab.SyntheticMVars +// Module: Lean.Elab.Tactic.ElabTerm +// Imports: Lean.Meta.Tactic.Apply Lean.Meta.Tactic.Assert Lean.Elab.Tactic.Basic Lean.Elab.SyntheticMVars #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -25,9 +25,9 @@ lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalApply(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_inferType(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalRefine(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabTerm___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_monadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -102,7 +102,7 @@ lean_inc(x_11); lean_dec(x_9); x_12 = lean_box(0); lean_inc(x_4); -x_13 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_3, x_12, x_4, x_11); +x_13 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_3, x_12, x_4, x_11); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; @@ -219,7 +219,7 @@ lean_inc(x_41); lean_dec(x_39); x_42 = lean_box(0); lean_inc(x_37); -x_43 = l___private_Init_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_3, x_42, x_37, x_41); +x_43 = l___private_Lean_Elab_SyntheticMVars_11__synthesizeSyntheticMVarsAux___main(x_3, x_42, x_37, x_41); if (lean_obj_tag(x_43) == 0) { lean_object* x_44; lean_object* x_45; @@ -1640,25 +1640,25 @@ lean_dec(x_2); return x_4; } } -lean_object* initialize_Init_Lean_Meta_Tactic_Apply(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Assert(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_Basic(lean_object*); -lean_object* initialize_Init_Lean_Elab_SyntheticMVars(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Apply(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Assert(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Basic(lean_object*); +lean_object* initialize_Lean_Elab_SyntheticMVars(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Tactic_ElabTerm(lean_object* w) { +lean_object* initialize_Lean_Elab_Tactic_ElabTerm(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Tactic_Apply(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Apply(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Assert(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Assert(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_Basic(lean_io_mk_world()); +res = initialize_Lean_Elab_Tactic_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_SyntheticMVars(lean_io_mk_world()); +res = initialize_Lean_Elab_SyntheticMVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___regBuiltin_Lean_Elab_Tactic_evalExact___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalExact___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Tactic/Generalize.c b/stage0/stdlib/Lean/Elab/Tactic/Generalize.c similarity index 80% rename from stage0/stdlib/Init/Lean/Elab/Tactic/Generalize.c rename to stage0/stdlib/Lean/Elab/Tactic/Generalize.c index 0fb6aea1d9..87289f69d5 100644 --- a/stage0/stdlib/Init/Lean/Elab/Tactic/Generalize.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Generalize.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Tactic.Generalize -// Imports: Init.Lean.Meta.Tactic.Generalize Init.Lean.Meta.Check Init.Lean.Meta.Tactic.Intro Init.Lean.Elab.Tactic.ElabTerm +// Module: Lean.Elab.Tactic.Generalize +// Imports: Lean.Meta.Tactic.Generalize Lean.Meta.Check Lean.Meta.Tactic.Intro Lean.Elab.Tactic.ElabTerm #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,43 +13,42 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_eq_x3f___closed__2; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_Lean_Elab_Tactic_withMVarContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName___boxed(lean_object*); lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_3__evalGeneralizeFinalize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalGeneralizeAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarTag(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_restore(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2; lean_object* lean_expr_lift_loose_bvars(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_3__evalGeneralizeFinalize(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* l___private_Init_Lean_Elab_Tactic_Generalize_2__getVarName___boxed(lean_object*); extern lean_object* l_Lean_Elab_Tactic_liftMetaTactic___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_2__getVarName___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1; lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_monadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_generalize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalGeneralizeAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalGeneralize(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; extern lean_object* l_Lean_Meta_mkEqRefl___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1; lean_object* l_Lean_Elab_Tactic_evalGeneralizeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprMVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalGeneralize(lean_object*); lean_object* l_Lean_Elab_Tactic_save(lean_object*); lean_object* l_Lean_Meta_generalize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_2__getVarName(lean_object*); +extern lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; lean_object* l_Lean_Meta_introNCore___at_Lean_Meta_introN___spec__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); @@ -58,17 +57,18 @@ uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_intro1(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalGeneralize___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_2__getVarName(lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName(lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -94,16 +94,16 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName(x_1); +x_2 = l___private_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_2__getVarName(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Generalize_2__getVarName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -112,16 +112,16 @@ x_3 = l_Lean_Syntax_getIdAt(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_2__getVarName___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Generalize_2__getVarName___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Generalize_2__getVarName(x_1); +x_2 = l___private_Lean_Elab_Tactic_Generalize_2__getVarName(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_3__evalGeneralizeFinalize(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Generalize_3__evalGeneralizeFinalize(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; @@ -358,7 +358,7 @@ return x_59; } } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -366,17 +366,17 @@ x_1 = lean_mk_string("unexpected type after generalize"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1; +x_1 = l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1; x_2 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___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* l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___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) { _start: { lean_object* x_7; @@ -440,7 +440,7 @@ lean_ctor_set(x_24, 0, x_21); lean_ctor_set(x_24, 1, x_23); x_25 = l_Lean_Expr_eq_x3f___closed__2; x_26 = l_Lean_mkConst(x_25, x_24); -x_27 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; +x_27 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; lean_inc(x_1); lean_inc(x_18); x_28 = l_Lean_mkApp3(x_26, x_18, x_1, x_27); @@ -451,7 +451,7 @@ lean_dec(x_11); x_32 = 0; x_33 = l_Lean_mkForall(x_2, x_32, x_28, x_31); x_34 = l_Lean_mkForall(x_3, x_32, x_18, x_33); -x_35 = l___private_Init_Lean_Elab_Tactic_Generalize_3__evalGeneralizeFinalize(x_16, x_1, x_34, x_5, x_22); +x_35 = l___private_Lean_Elab_Tactic_Generalize_3__evalGeneralizeFinalize(x_16, x_1, x_34, x_5, x_22); return x_35; } else @@ -548,7 +548,7 @@ if (x_48 == 0) lean_object* x_49; lean_object* x_50; x_49 = lean_ctor_get(x_7, 0); lean_dec(x_49); -x_50 = l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2; +x_50 = l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2; lean_ctor_set_tag(x_7, 1); lean_ctor_set(x_7, 0, x_50); return x_7; @@ -559,7 +559,7 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; x_51 = lean_ctor_get(x_7, 1); lean_inc(x_51); lean_dec(x_7); -x_52 = l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2; +x_52 = l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); @@ -594,7 +594,7 @@ return x_57; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq(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; @@ -621,7 +621,7 @@ x_12 = lean_alloc_closure((void*)(l_Lean_Meta_generalize___boxed), 5, 3); lean_closure_set(x_12, 0, x_10); lean_closure_set(x_12, 1, x_3); lean_closure_set(x_12, 2, x_4); -x_13 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___boxed), 6, 3); +x_13 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___boxed), 6, 3); lean_closure_set(x_13, 0, x_3); lean_closure_set(x_13, 1, x_2); lean_closure_set(x_13, 2, x_4); @@ -673,17 +673,17 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___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* l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___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) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___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* l___private_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___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; @@ -714,14 +714,14 @@ lean_ctor_set(x_15, 0, x_9); lean_ctor_set(x_15, 1, x_14); x_16 = l_Lean_Expr_eq_x3f___closed__2; x_17 = l_Lean_mkConst(x_16, x_15); -x_18 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; +x_18 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; lean_inc(x_2); lean_inc(x_5); x_19 = l_Lean_mkApp3(x_17, x_5, x_2, x_18); x_20 = 0; x_21 = l_Lean_mkForall(x_3, x_20, x_19, x_12); x_22 = l_Lean_mkForall(x_4, x_20, x_5, x_21); -x_23 = l___private_Init_Lean_Elab_Tactic_Generalize_3__evalGeneralizeFinalize(x_1, x_2, x_22, x_6, x_13); +x_23 = l___private_Lean_Elab_Tactic_Generalize_3__evalGeneralizeFinalize(x_1, x_2, x_22, x_6, x_13); return x_23; } else @@ -780,7 +780,7 @@ return x_31; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback(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; @@ -804,7 +804,7 @@ lean_inc(x_3); x_12 = lean_alloc_closure((void*)(l_Lean_Meta_inferType), 3, 1); lean_closure_set(x_12, 0, x_3); lean_inc(x_10); -x_13 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___lambda__1___boxed), 7, 4); +x_13 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___lambda__1___boxed), 7, 4); lean_closure_set(x_13, 0, x_10); lean_closure_set(x_13, 1, x_3); lean_closure_set(x_13, 2, x_2); @@ -857,11 +857,11 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___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) { +lean_object* l___private_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___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___private_Init_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_3); return x_8; @@ -1050,7 +1050,7 @@ lean_inc(x_4); lean_inc(x_3); lean_inc(x_23); lean_inc(x_1); -x_25 = l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq(x_1, x_23, x_3, x_4, x_5, x_6); +x_25 = l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq(x_1, x_23, x_3, x_4, x_5, x_6); if (lean_obj_tag(x_25) == 0) { lean_dec(x_24); @@ -1069,7 +1069,7 @@ lean_inc(x_26); lean_dec(x_25); x_27 = l_Lean_Elab_Tactic_restore(x_26, x_24); lean_dec(x_24); -x_28 = l___private_Init_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback(x_1, x_23, x_3, x_4, x_5, x_27); +x_28 = l___private_Lean_Elab_Tactic_Generalize_5__evalGeneralizeFallback(x_1, x_23, x_3, x_4, x_5, x_27); return x_28; } } @@ -1088,7 +1088,7 @@ lean_object* l_Lean_Elab_Tactic_evalGeneralize(lean_object* x_1, lean_object* x_ _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; -x_4 = l___private_Init_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName(x_1); +x_4 = l___private_Lean_Elab_Tactic_Generalize_1__getAuxHypothesisName(x_1); x_5 = lean_unsigned_to_nat(4u); x_6 = l_Lean_Syntax_getIdAt(x_1, x_5); x_7 = lean_unsigned_to_nat(2u); @@ -1155,31 +1155,31 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* initialize_Init_Lean_Meta_Tactic_Generalize(lean_object*); -lean_object* initialize_Init_Lean_Meta_Check(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Intro(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_ElabTerm(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Generalize(lean_object*); +lean_object* initialize_Lean_Meta_Check(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Intro(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_ElabTerm(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Tactic_Generalize(lean_object* w) { +lean_object* initialize_Lean_Elab_Tactic_Generalize(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Tactic_Generalize(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Generalize(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Check(lean_io_mk_world()); +res = initialize_Lean_Meta_Check(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Intro(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Intro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_ElabTerm(lean_io_mk_world()); +res = initialize_Lean_Elab_Tactic_ElabTerm(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1); -l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2); +l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1 = _init_l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__1); +l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2 = _init_l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Generalize_4__evalGeneralizeWithEq___lambda__1___closed__2); l___regBuiltin_Lean_Elab_Tactic_evalGeneralize___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalGeneralize___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalGeneralize___closed__1); res = l___regBuiltin_Lean_Elab_Tactic_evalGeneralize(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Elab/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c similarity index 81% rename from stage0/stdlib/Init/Lean/Elab/Tactic/Induction.c rename to stage0/stdlib/Lean/Elab/Tactic/Induction.c index 4153bbaebc..de5284109a 100644 --- a/stage0/stdlib/Init/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Tactic.Induction -// Imports: Init.Lean.Meta.RecursorInfo Init.Lean.Meta.Tactic.Induction Init.Lean.Meta.Tactic.Cases Init.Lean.Elab.Tactic.ElabTerm Init.Lean.Elab.Tactic.Generalize +// Module: Lean.Elab.Tactic.Induction +// Imports: Lean.Meta.RecursorInfo Lean.Meta.Tactic.Induction Lean.Meta.Tactic.Cases Lean.Elab.Tactic.ElabTerm Lean.Elab.Tactic.Generalize #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,248 +17,248 @@ lean_object* l_Lean_Elab_Tactic_getRecFromUsing___closed__5; lean_object* l_Lean_Elab_Tactic_evalCases(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_Meta_induction___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2; +lean_object* l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3; +lean_object* l___private_Lean_Elab_Tactic_Induction_7__getAlts___boxed(lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5; lean_object* l_Lean_Name_eraseMacroScopes(lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2; lean_object* l_Lean_Elab_Tactic_withMVarContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_get_unused_name(lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_Elab_Tactic_withMainMVarContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_18__checkCasesResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2; lean_object* l_Lean_Elab_Tactic_getRecFromUsing___closed__3; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__6; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_18__checkCasesResult___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1; lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_7__getAlts(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1; -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getLCtx___boxed(lean_object*, lean_object*); lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7; lean_object* l_Lean_Elab_Tactic_resolveGlobalName(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalCases___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_done(lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_15__isTermRHS___boxed(lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; lean_object* l_Lean_Elab_Tactic_restore(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4; lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8; lean_object* l_List_append___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1; uint8_t l_Lean_Meta_RecursorInfo_isMinor(lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_unfoldDefinition_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find_from_user_name(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2; lean_object* l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2; +lean_object* l___private_Lean_Elab_Tactic_Induction_10__getAltRHS(lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_inhabited; +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__10; lean_object* l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__1; lean_object* l_Lean_Elab_Tactic_inferType(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3; +lean_object* l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_trace___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1; +uint8_t l___private_Lean_Elab_Tactic_Induction_15__isTermRHS(lean_object*); lean_object* l_Lean_Elab_Tactic_whnfCore(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_2__getMajor(lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3; lean_object* l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__3; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_15__isTermRHS___boxed(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__7; +lean_object* l___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_withIncRecDepth___rarg___closed__2; lean_object* lean_array_fget(lean_object*, lean_object*); -uint8_t l_Array_contains___at___private_Init_Lean_Class_1__checkOutParam___main___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_List_toString___at_Lean_Elab_OpenDecl_HasToString___spec__2(lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_monadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__10; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_7__getAlts(lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5; lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2; +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3; +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_2__getMajor(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(lean_object*); lean_object* l_Lean_Elab_Tactic_getInductiveValFromMajor(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__4; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getRecFromUsing___closed__6; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5; lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkConst___closed__4; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames___boxed(lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2; +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__7; +lean_object* l___private_Lean_Elab_Tactic_Induction_10__getAltRHS___boxed(lean_object*); extern lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__2; -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__5; lean_object* l_Nat_repr(lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__1; lean_object* l_Lean_Elab_Tactic_getMVarDecl___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__2; lean_object* l_Lean_Syntax_getId(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4; lean_object* l_Lean_Meta_revert___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getRecFromUsing(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_2__getMajor___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__8; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2; +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkRecFor___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_7__getAlts___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__3; +lean_object* l___private_Lean_Elab_Tactic_Induction_8__getAltName(lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_toExpr(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_redLength___main___rarg(lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2; lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4; +lean_object* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkRecursorInfo(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_List_foldr___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(lean_object*, uint8_t, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_List_foldr___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(lean_object*, uint8_t, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9; uint8_t l_Lean_Syntax_isMissing(lean_object*); lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalGeneralizeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__5; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_contains___at___private_Lean_Class_1__checkOutParam___main___spec__1(lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_inhabited; -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_8__getAltName(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3; +lean_object* l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__6; +lean_object* l_List_foldr___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTactic___main___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getRecFromUsing___closed__7; -uint8_t l___private_Init_Lean_Elab_Tactic_Induction_15__isTermRHS(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3; +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTactic___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_save(lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalInduction(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_generalize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_setGoals(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_10__getAltRHS(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__2; lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isSuffixOf___main(lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3; lean_object* l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4; lean_object* l_List_map___main___at_Lean_Elab_Tactic_getRecFromUsing___spec__1(lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__3(lean_object*); lean_object* l_Array_filterAux___main___at_Lean_Elab_Tactic_evalCases___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__9; lean_object* l_Lean_Elab_Tactic_getRecFromUsing___closed__2; +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2; lean_object* l_Lean_Elab_Tactic_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Tactic_evalCases___spec__1(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Tactic_evalIntros___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2; lean_object* l_Lean_Elab_Tactic_liftTermElabM___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_focusAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getFVarIds(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; lean_object* l_Lean_Elab_Tactic_getEnv___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__4; lean_object* l_Lean_Meta_intro1(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_14__getRecInfo(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); lean_object* l_Lean_Elab_Tactic_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_18__checkCasesResult___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__9; +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__1; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_8__getAltName___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_getRecFromUsing___closed__8; extern lean_object* l_Lean_MessageData_arrayExpr_toMessageData___main___closed__2; lean_object* l_Lean_Elab_Tactic_getRecFromUsing___closed__4; extern lean_object* l_Lean_mkHole___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3; -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__3(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getRecFromUsing___closed__1; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2; +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3; extern lean_object* l_Lean_Format_paren___closed__3; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction___closed__1; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_collectMVars(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6; +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1; lean_object* l_Lean_Meta_getParamNames(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_InductionSubgoal_inhabited; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1; extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__4; lean_object* l_Lean_indentExpr(lean_object*); -lean_object* l_List_foldr___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2; +lean_object* l___private_Lean_Elab_Tactic_Induction_2__getMajor___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8; lean_object* l_Lean_Elab_Tactic_elabTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_10__getAltRHS___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_18__checkCasesResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_8__getAltName___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__8; extern lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__1; +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4; extern lean_object* l_Lean_Parser_Tactic_underscoreFn___closed__4; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1; lean_object* l_Lean_Meta_cases___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -286,16 +286,16 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(x_1); +x_2 = l___private_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_2__getMajor(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_2__getMajor(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -306,16 +306,16 @@ lean_dec(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_2__getMajor___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_2__getMajor___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Induction_2__getMajor(x_1); +x_2 = l___private_Lean_Elab_Tactic_Induction_2__getMajor(x_1); lean_dec(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -323,27 +323,27 @@ x_1 = lean_mk_string("failed to generalize"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1; +x_1 = l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2; +x_1 = l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor___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; @@ -351,7 +351,7 @@ x_6 = lean_local_ctx_find_from_user_name(x_3, x_1); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; -x_7 = l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3; +x_7 = l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3; x_8 = l_Lean_Elab_Tactic_throwError___rarg(x_2, x_7, x_4, x_5); return x_8; } @@ -372,7 +372,7 @@ return x_11; } } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -380,7 +380,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_getLCtx___boxed), 2, 0); return x_1; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; @@ -400,10 +400,10 @@ lean_inc(x_13); lean_dec(x_11); lean_inc(x_2); lean_inc(x_8); -x_14 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1), 5, 2); +x_14 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1), 5, 2); lean_closure_set(x_14, 0, x_8); lean_closure_set(x_14, 1, x_2); -x_15 = l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1; +x_15 = l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1; x_16 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_monadLog___spec__2___rarg), 4, 2); lean_closure_set(x_16, 0, x_15); lean_closure_set(x_16, 1, x_14); @@ -473,7 +473,7 @@ return x_27; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Induction_3__elabMajor(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_2) == 0) @@ -493,11 +493,11 @@ else { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_inc(x_1); -x_11 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2), 6, 3); +x_11 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2), 6, 3); lean_closure_set(x_11, 0, x_3); lean_closure_set(x_11, 1, x_1); lean_closure_set(x_11, 2, x_2); -x_12 = l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1; +x_12 = l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1; x_13 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Tactic_monadLog___spec__2___rarg), 4, 2); lean_closure_set(x_13, 0, x_12); lean_closure_set(x_13, 1, x_11); @@ -506,7 +506,7 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; @@ -617,15 +617,15 @@ return x_33; } } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1___boxed), 3, 0); return x_1; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -672,7 +672,7 @@ x_12 = lean_alloc_closure((void*)(l_Lean_Meta_generalize___boxed), 5, 3); lean_closure_set(x_12, 0, x_9); lean_closure_set(x_12, 1, x_2); lean_closure_set(x_12, 2, x_11); -x_13 = l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1; +x_13 = l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1; x_14 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg), 4, 2); lean_closure_set(x_14, 0, x_12); lean_closure_set(x_14, 1, x_13); @@ -716,16 +716,16 @@ return x_22; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___lambda__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___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* l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___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) { _start: { lean_object* x_7; lean_object* x_8; @@ -770,17 +770,17 @@ return x_14; } } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -798,9 +798,9 @@ x_9 = l_Lean_Syntax_getArg(x_5, x_8); lean_dec(x_5); x_10 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_11 = l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1; +x_11 = l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1; lean_inc(x_1); -x_12 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___lambda__1), 6, 4); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___lambda__1), 6, 4); lean_closure_set(x_12, 0, x_11); lean_closure_set(x_12, 1, x_1); lean_closure_set(x_12, 2, x_7); @@ -822,7 +822,7 @@ return x_15; } } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -832,7 +832,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2() { _start: { lean_object* x_1; @@ -840,27 +840,27 @@ x_1 = lean_mk_string("major premise depends on variable being generalized"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2; +x_1 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3; +x_1 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1(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; @@ -871,7 +871,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_7 = lean_ctor_get(x_3, 0); x_8 = lean_ctor_get(x_3, 1); x_9 = l_Lean_Expr_fvarId_x21(x_1); -x_10 = l_Array_contains___at___private_Init_Lean_Class_1__checkOutParam___main___spec__1(x_7, x_9); +x_10 = l_Array_contains___at___private_Lean_Class_1__checkOutParam___main___spec__1(x_7, x_9); lean_dec(x_9); x_11 = lean_array_get_size(x_7); lean_dec(x_7); @@ -894,8 +894,8 @@ else { lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_dec(x_3); -x_15 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; -x_16 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4; +x_15 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; +x_16 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4; x_17 = l_Lean_Meta_throwTacticEx___rarg(x_15, x_2, x_16, x_4, x_5); x_18 = !lean_is_exclusive(x_17); if (x_18 == 0) @@ -926,7 +926,7 @@ lean_inc(x_23); lean_inc(x_22); lean_dec(x_3); x_24 = l_Lean_Expr_fvarId_x21(x_1); -x_25 = l_Array_contains___at___private_Init_Lean_Class_1__checkOutParam___main___spec__1(x_22, x_24); +x_25 = l_Array_contains___at___private_Lean_Class_1__checkOutParam___main___spec__1(x_22, x_24); lean_dec(x_24); x_26 = lean_array_get_size(x_22); lean_dec(x_22); @@ -950,8 +950,8 @@ else { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_dec(x_29); -x_31 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; -x_32 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4; +x_31 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; +x_32 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4; x_33 = l_Lean_Meta_throwTacticEx___rarg(x_31, x_2, x_32, x_4, x_5); x_34 = lean_ctor_get(x_33, 0); lean_inc(x_34); @@ -977,13 +977,13 @@ return x_37; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_inc(x_3); lean_inc(x_1); -x_5 = l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds(x_1, x_3, x_4); +x_5 = l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds(x_1, x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; @@ -1016,7 +1016,7 @@ lean_closure_set(x_15, 0, x_11); lean_closure_set(x_15, 1, x_6); lean_closure_set(x_15, 2, x_14); lean_inc(x_11); -x_16 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___boxed), 5, 2); +x_16 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___boxed), 5, 2); lean_closure_set(x_16, 0, x_2); lean_closure_set(x_16, 1, x_11); x_17 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg), 4, 2); @@ -1088,17 +1088,17 @@ return x_29; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___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* l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___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___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_7__getAlts(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_7__getAlts(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; @@ -1113,16 +1113,16 @@ lean_dec(x_4); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_7__getAlts___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_7__getAlts___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Induction_7__getAlts(x_1); +x_2 = l___private_Lean_Elab_Tactic_Induction_7__getAlts(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_8__getAltName(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_8__getAltName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -1135,16 +1135,16 @@ lean_dec(x_4); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_8__getAltName___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_8__getAltName___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Induction_8__getAltName(x_1); +x_2 = l___private_Lean_Elab_Tactic_Induction_8__getAltName(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(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; @@ -1159,16 +1159,16 @@ x_8 = x_7; return x_8; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_1); +x_2 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_10__getAltRHS(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_10__getAltRHS(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -1177,16 +1177,16 @@ x_3 = l_Lean_Syntax_getArg(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_10__getAltRHS___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_10__getAltRHS___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Induction_10__getAltRHS(x_1); +x_2 = l___private_Lean_Elab_Tactic_Induction_10__getAltRHS(x_1); lean_dec(x_1); return x_2; } } -uint8_t l_List_foldr___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +uint8_t l_List_foldr___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -1198,7 +1198,7 @@ else lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; x_4 = lean_ctor_get(x_3, 0); x_5 = lean_ctor_get(x_3, 1); -x_6 = l_List_foldr___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(x_1, x_2, x_5); +x_6 = l_List_foldr___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(x_1, x_2, x_5); x_7 = l_Lean_Name_isSuffixOf___main(x_1, x_4); if (x_7 == 0) { @@ -1213,7 +1213,7 @@ return x_8; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; @@ -1231,7 +1231,7 @@ lean_ctor_set(x_8, 1, x_7); return x_8; } } -lean_object* _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1() { +lean_object* _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1() { _start: { lean_object* x_1; @@ -1239,17 +1239,17 @@ x_1 = lean_mk_string("checkAlt"); return x_1; } } -lean_object* _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2() { +lean_object* _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; -x_2 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_2 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3() { +lean_object* _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3() { _start: { lean_object* x_1; @@ -1257,27 +1257,27 @@ x_1 = lean_mk_string("invalid constructor name '"); return x_1; } } -lean_object* _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4() { +lean_object* _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3; +x_1 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5() { +lean_object* _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4; +x_1 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -1302,15 +1302,15 @@ x_10 = lean_array_fget(x_2, x_3); x_11 = lean_unsigned_to_nat(1u); x_12 = lean_nat_add(x_3, x_11); lean_dec(x_3); -x_13 = l___private_Init_Lean_Elab_Tactic_Induction_8__getAltName(x_10); +x_13 = l___private_Lean_Elab_Tactic_Induction_8__getAltName(x_10); lean_inc(x_10); lean_inc(x_13); -x_14 = lean_alloc_closure((void*)(l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1___boxed), 3, 2); +x_14 = lean_alloc_closure((void*)(l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1___boxed), 3, 2); lean_closure_set(x_14, 0, x_13); lean_closure_set(x_14, 1, x_10); x_15 = l_Lean_Parser_Tactic_underscoreFn___closed__4; x_16 = lean_name_eq(x_13, x_15); -x_17 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2; +x_17 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2; lean_inc(x_10); x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Term_trace___boxed), 5, 3); lean_closure_set(x_18, 0, x_17); @@ -1322,7 +1322,7 @@ if (x_16 == 0) { uint8_t x_20; uint8_t x_21; x_20 = 0; -x_21 = l_List_foldr___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(x_13, x_20, x_1); +x_21 = l_List_foldr___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(x_13, x_20, x_1); if (x_21 == 0) { if (lean_obj_tag(x_19) == 0) @@ -1340,7 +1340,7 @@ x_27 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_27, 0, x_26); x_28 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_28, 0, x_27); -x_29 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5; +x_29 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5; x_30 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -1494,52 +1494,52 @@ return x_55; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames(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 = lean_unsigned_to_nat(0u); -x_6 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(x_2, x_1, x_5, x_3, x_4); +x_6 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(x_2, x_1, x_5, x_3, x_4); return x_6; } } -lean_object* l_List_foldr___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldr___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; lean_object* x_6; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l_List_foldr___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(x_1, x_4, x_3); +x_5 = l_List_foldr___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__1(x_1, x_4, x_3); lean_dec(x_3); lean_dec(x_1); x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1(x_1, x_2, x_3); +x_4 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___lambda__1(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___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* l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___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___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; @@ -1655,7 +1655,7 @@ x_12 = l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__3; x_13 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_11); -x_14 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; +x_14 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; x_15 = l_Lean_Meta_throwTacticEx___rarg(x_14, x_1, x_13, x_3, x_8); lean_dec(x_3); return x_15; @@ -1735,7 +1735,7 @@ x_31 = l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__3; x_32 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; +x_33 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; x_34 = l_Lean_Meta_throwTacticEx___rarg(x_33, x_1, x_32, x_3, x_27); lean_dec(x_3); return x_34; @@ -1828,7 +1828,7 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -1840,15 +1840,15 @@ lean_ctor_set(x_5, 1, x_3); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1___boxed), 3, 0); return x_1; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main(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; @@ -3300,7 +3300,7 @@ x_384 = lean_box(0); x_385 = lean_alloc_closure((void*)(l_Lean_Meta_mkRecursorInfo), 4, 2); lean_closure_set(x_385, 0, x_251); lean_closure_set(x_385, 1, x_384); -x_386 = l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1; +x_386 = l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1; x_387 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg), 4, 2); lean_closure_set(x_387, 0, x_385); lean_closure_set(x_387, 1, x_386); @@ -5883,20 +5883,20 @@ return x_875; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___lambda__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } @@ -6040,7 +6040,7 @@ lean_dec(x_6); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_9 = l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main(x_1, x_3, x_7, x_4, x_8); +x_9 = l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main(x_1, x_3, x_7, x_4, x_8); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; @@ -6360,7 +6360,7 @@ return x_87; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -6378,7 +6378,7 @@ else { lean_object* x_7; lean_object* x_8; uint8_t x_9; x_7 = lean_array_fget(x_2, x_3); -x_8 = l___private_Init_Lean_Elab_Tactic_Induction_8__getAltName(x_7); +x_8 = l___private_Lean_Elab_Tactic_Induction_8__getAltName(x_7); lean_dec(x_7); x_9 = l_Lean_Name_isSuffixOf___main(x_8, x_1); lean_dec(x_8); @@ -6401,7 +6401,7 @@ return x_13; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -6419,7 +6419,7 @@ else { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_6 = lean_array_fget(x_1, x_2); -x_7 = l___private_Init_Lean_Elab_Tactic_Induction_8__getAltName(x_6); +x_7 = l___private_Lean_Elab_Tactic_Induction_8__getAltName(x_6); lean_dec(x_6); x_8 = l_Lean_Parser_Tactic_underscoreFn___closed__4; x_9 = lean_name_eq(x_7, x_8); @@ -6443,7 +6443,7 @@ return x_13; } } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1() { _start: { lean_object* x_1; @@ -6451,27 +6451,27 @@ x_1 = lean_mk_string("alternative for constructor '"); return x_1; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4() { _start: { lean_object* x_1; @@ -6479,27 +6479,27 @@ x_1 = lean_mk_string("' is missing"); return x_1; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5; +x_1 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_4) == 0) @@ -6543,11 +6543,11 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_9, 1); lean_inc(x_19); x_20 = lean_unsigned_to_nat(0u); -x_21 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(x_10, x_18, x_20); +x_21 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(x_10, x_18, x_20); if (lean_obj_tag(x_21) == 0) { lean_object* x_22; -x_22 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_18, x_20); +x_22 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_18, x_20); if (lean_obj_tag(x_22) == 0) { lean_dec(x_18); @@ -6567,11 +6567,11 @@ x_25 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_25, 0, x_24); x_26 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_26, 0, x_25); -x_27 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3; +x_27 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3; x_28 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); -x_29 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; +x_29 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; x_30 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); @@ -6638,7 +6638,7 @@ lean_dec(x_10); x_44 = lean_ctor_get(x_19, 0); lean_inc(x_44); lean_dec(x_19); -x_45 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_44); +x_45 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_44); x_46 = l_Array_toList___rarg(x_45); lean_dec(x_45); x_47 = lean_array_push(x_13, x_46); @@ -6672,7 +6672,7 @@ lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean x_56 = lean_ctor_get(x_22, 0); x_57 = l_Lean_Syntax_inhabited; x_58 = lean_array_get(x_57, x_18, x_56); -x_59 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_58); +x_59 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_58); x_60 = l_Array_toList___rarg(x_59); lean_dec(x_59); x_61 = lean_array_push(x_13, x_60); @@ -6697,7 +6697,7 @@ lean_inc(x_67); lean_dec(x_22); x_68 = l_Lean_Syntax_inhabited; x_69 = lean_array_get(x_68, x_18, x_67); -x_70 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_69); +x_70 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_69); x_71 = l_Array_toList___rarg(x_70); lean_dec(x_70); x_72 = lean_array_push(x_13, x_71); @@ -6731,7 +6731,7 @@ if (lean_is_exclusive(x_22)) { } x_81 = l_Lean_Syntax_inhabited; x_82 = lean_array_get(x_81, x_18, x_79); -x_83 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_82); +x_83 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_82); x_84 = l_Array_toList___rarg(x_83); lean_dec(x_83); x_85 = lean_array_push(x_13, x_84); @@ -6774,7 +6774,7 @@ lean_inc(x_96); lean_dec(x_21); x_97 = l_Lean_Syntax_inhabited; x_98 = lean_array_get(x_97, x_18, x_96); -x_99 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_98); +x_99 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_98); x_100 = l_Array_toList___rarg(x_99); lean_dec(x_99); x_101 = lean_array_push(x_13, x_100); @@ -6799,7 +6799,7 @@ lean_inc(x_107); lean_dec(x_21); x_108 = l_Lean_Syntax_inhabited; x_109 = lean_array_get(x_108, x_18, x_107); -x_110 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_109); +x_110 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_109); x_111 = l_Array_toList___rarg(x_110); lean_dec(x_110); x_112 = lean_array_push(x_13, x_111); @@ -6831,11 +6831,11 @@ lean_inc(x_120); x_121 = lean_ctor_get(x_9, 1); lean_inc(x_121); x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(x_10, x_120, x_122); +x_123 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(x_10, x_120, x_122); if (lean_obj_tag(x_123) == 0) { lean_object* x_124; -x_124 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_120, x_122); +x_124 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_120, x_122); if (lean_obj_tag(x_124) == 0) { lean_dec(x_120); @@ -6854,11 +6854,11 @@ x_127 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_127, 0, x_126); x_128 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_128, 0, x_127); -x_129 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3; +x_129 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3; x_130 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_130, 0, x_129); lean_ctor_set(x_130, 1, x_128); -x_131 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; +x_131 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; x_132 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_132, 0, x_130); lean_ctor_set(x_132, 1, x_131); @@ -6930,7 +6930,7 @@ lean_dec(x_10); x_147 = lean_ctor_get(x_121, 0); lean_inc(x_147); lean_dec(x_121); -x_148 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_147); +x_148 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_147); x_149 = l_Array_toList___rarg(x_148); lean_dec(x_148); x_150 = lean_array_push(x_13, x_149); @@ -6971,7 +6971,7 @@ if (lean_is_exclusive(x_124)) { } x_159 = l_Lean_Syntax_inhabited; x_160 = lean_array_get(x_159, x_120, x_157); -x_161 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_160); +x_161 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_160); x_162 = l_Array_toList___rarg(x_161); lean_dec(x_161); x_163 = lean_array_push(x_13, x_162); @@ -7019,7 +7019,7 @@ lean_inc(x_173); lean_dec(x_123); x_174 = l_Lean_Syntax_inhabited; x_175 = lean_array_get(x_174, x_120, x_173); -x_176 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_175); +x_176 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_175); x_177 = l_Array_toList___rarg(x_176); lean_dec(x_176); x_178 = lean_array_push(x_13, x_177); @@ -7067,11 +7067,11 @@ lean_inc(x_189); x_190 = lean_ctor_get(x_9, 1); lean_inc(x_190); x_191 = lean_unsigned_to_nat(0u); -x_192 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(x_10, x_189, x_191); +x_192 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(x_10, x_189, x_191); if (lean_obj_tag(x_192) == 0) { lean_object* x_193; -x_193 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_189, x_191); +x_193 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_189, x_191); if (lean_obj_tag(x_193) == 0) { lean_dec(x_189); @@ -7090,11 +7090,11 @@ x_196 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_196, 0, x_195); x_197 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_197, 0, x_196); -x_198 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3; +x_198 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3; x_199 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_199, 0, x_198); lean_ctor_set(x_199, 1, x_197); -x_200 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; +x_200 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; x_201 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_201, 0, x_199); lean_ctor_set(x_201, 1, x_200); @@ -7172,7 +7172,7 @@ lean_dec(x_10); x_217 = lean_ctor_get(x_190, 0); lean_inc(x_217); lean_dec(x_190); -x_218 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_217); +x_218 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_217); x_219 = l_Array_toList___rarg(x_218); lean_dec(x_218); x_220 = lean_array_push(x_186, x_219); @@ -7219,7 +7219,7 @@ if (lean_is_exclusive(x_193)) { } x_230 = l_Lean_Syntax_inhabited; x_231 = lean_array_get(x_230, x_189, x_228); -x_232 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_231); +x_232 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_231); x_233 = l_Array_toList___rarg(x_232); lean_dec(x_232); x_234 = lean_array_push(x_186, x_233); @@ -7273,7 +7273,7 @@ lean_inc(x_245); lean_dec(x_192); x_246 = l_Lean_Syntax_inhabited; x_247 = lean_array_get(x_246, x_189, x_245); -x_248 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_247); +x_248 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_247); x_249 = l_Array_toList___rarg(x_248); lean_dec(x_248); x_250 = lean_array_push(x_186, x_249); @@ -7308,7 +7308,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1() { _start: { lean_object* x_1; @@ -7316,27 +7316,27 @@ x_1 = lean_mk_string("unused alternative"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1; +x_1 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2; +x_1 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; @@ -7367,7 +7367,7 @@ lean_free_object(x_7); x_16 = lean_ctor_get(x_9, 4); lean_inc(x_16); lean_dec(x_9); -x_17 = l___private_Init_Lean_Elab_Tactic_Induction_7__getAlts(x_3); +x_17 = l___private_Lean_Elab_Tactic_Induction_7__getAlts(x_3); x_18 = lean_box(0); lean_inc(x_17); x_19 = lean_alloc_ctor(0, 2, 0); @@ -7382,7 +7382,7 @@ lean_ctor_set(x_22, 0, x_20); lean_ctor_set(x_22, 1, x_21); x_23 = lean_unsigned_to_nat(0u); lean_inc(x_5); -x_24 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(x_16, x_17, x_23, x_5, x_10); +x_24 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(x_16, x_17, x_23, x_5, x_10); lean_dec(x_17); if (lean_obj_tag(x_24) == 0) { @@ -7392,7 +7392,7 @@ lean_inc(x_25); lean_dec(x_24); lean_inc(x_5); lean_inc(x_16); -x_26 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(x_1, x_4, x_22, x_16, x_5, x_25); +x_26 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(x_1, x_4, x_22, x_16, x_5, 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; @@ -7440,7 +7440,7 @@ lean_free_object(x_26); x_43 = l_Lean_Syntax_inhabited; x_44 = lean_array_get(x_43, x_36, x_23); lean_dec(x_36); -x_45 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; +x_45 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; x_46 = l_Lean_Elab_Tactic_throwError___rarg(x_44, x_45, x_5, x_31); if (lean_obj_tag(x_46) == 0) { @@ -7523,7 +7523,7 @@ lean_free_object(x_26); x_62 = l_Lean_Syntax_inhabited; x_63 = lean_array_get(x_62, x_55, x_23); lean_dec(x_55); -x_64 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; +x_64 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; x_65 = l_Lean_Elab_Tactic_throwError___rarg(x_63, x_64, x_5, x_31); if (lean_obj_tag(x_65) == 0) { @@ -7626,7 +7626,7 @@ lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; x_84 = l_Lean_Syntax_inhabited; x_85 = lean_array_get(x_84, x_76, x_23); lean_dec(x_76); -x_86 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; +x_86 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; x_87 = l_Lean_Elab_Tactic_throwError___rarg(x_85, x_86, x_5, x_73); if (lean_obj_tag(x_87) == 0) { @@ -7782,7 +7782,7 @@ lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; x_114 = lean_ctor_get(x_107, 4); lean_inc(x_114); lean_dec(x_107); -x_115 = l___private_Init_Lean_Elab_Tactic_Induction_7__getAlts(x_3); +x_115 = l___private_Lean_Elab_Tactic_Induction_7__getAlts(x_3); x_116 = lean_box(0); lean_inc(x_115); x_117 = lean_alloc_ctor(0, 2, 0); @@ -7797,7 +7797,7 @@ lean_ctor_set(x_120, 0, x_118); lean_ctor_set(x_120, 1, x_119); x_121 = lean_unsigned_to_nat(0u); lean_inc(x_5); -x_122 = l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(x_114, x_115, x_121, x_5, x_108); +x_122 = l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2(x_114, x_115, x_121, x_5, x_108); lean_dec(x_115); if (lean_obj_tag(x_122) == 0) { @@ -7807,7 +7807,7 @@ lean_inc(x_123); lean_dec(x_122); lean_inc(x_5); lean_inc(x_114); -x_124 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(x_1, x_4, x_120, x_114, x_5, x_123); +x_124 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(x_1, x_4, x_120, x_114, x_5, x_123); if (lean_obj_tag(x_124) == 0) { lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; @@ -7866,7 +7866,7 @@ lean_dec(x_129); x_140 = l_Lean_Syntax_inhabited; x_141 = lean_array_get(x_140, x_132, x_121); lean_dec(x_132); -x_142 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; +x_142 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; x_143 = l_Lean_Elab_Tactic_throwError___rarg(x_141, x_142, x_5, x_128); if (lean_obj_tag(x_143) == 0) { @@ -8036,47 +8036,47 @@ return x_167; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(x_1, x_2, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_1, x_2); +x_3 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___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* l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___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: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_2); lean_dec(x_2); -x_8 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(x_1, x_7, x_3, x_4, x_5, x_6); +x_8 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3(x_1, x_7, x_3, x_4, x_5, x_6); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___boxed(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_4); lean_dec(x_4); -x_8 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(x_1, x_2, x_3, x_7, x_5, x_6); +x_8 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(x_1, x_2, x_3, x_7, x_5, x_6); lean_dec(x_3); return x_8; } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -8094,7 +8094,7 @@ else { lean_object* x_7; lean_object* x_8; uint8_t x_9; x_7 = lean_array_fget(x_2, x_3); -x_8 = l___private_Init_Lean_Elab_Tactic_Induction_8__getAltName(x_7); +x_8 = l___private_Lean_Elab_Tactic_Induction_8__getAltName(x_7); lean_dec(x_7); x_9 = lean_name_eq(x_8, x_1); lean_dec(x_8); @@ -8117,7 +8117,7 @@ return x_13; } } } -lean_object* _init_l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1() { +lean_object* _init_l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1() { _start: { lean_object* x_1; @@ -8125,27 +8125,27 @@ x_1 = lean_mk_string("alternative for minor premise '"); return x_1; } } -lean_object* _init_l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2() { +lean_object* _init_l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1; +x_1 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3() { +lean_object* _init_l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2; +x_1 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; uint8_t x_10; @@ -8195,11 +8195,11 @@ x_27 = lean_ctor_get(x_20, 0); lean_inc(x_27); x_28 = lean_ctor_get(x_20, 1); lean_inc(x_28); -x_29 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(x_18, x_27, x_9); +x_29 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(x_18, x_27, x_9); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; -x_30 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_27, x_9); +x_30 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_27, x_9); if (lean_obj_tag(x_30) == 0) { lean_dec(x_27); @@ -8217,11 +8217,11 @@ x_33 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_33, 0, x_32); x_34 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_34, 0, x_33); -x_35 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3; +x_35 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3; x_36 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); -x_37 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; +x_37 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; x_38 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_38, 0, x_36); lean_ctor_set(x_38, 1, x_37); @@ -8274,7 +8274,7 @@ lean_dec(x_18); x_47 = lean_ctor_get(x_28, 0); lean_inc(x_47); lean_dec(x_28); -x_48 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_47); +x_48 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_47); x_49 = l_Array_toList___rarg(x_48); lean_dec(x_48); x_50 = lean_array_push(x_22, x_49); @@ -8308,7 +8308,7 @@ lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean x_59 = lean_ctor_get(x_30, 0); x_60 = l_Lean_Syntax_inhabited; x_61 = lean_array_get(x_60, x_27, x_59); -x_62 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_61); +x_62 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_61); x_63 = l_Array_toList___rarg(x_62); lean_dec(x_62); x_64 = lean_array_push(x_22, x_63); @@ -8333,7 +8333,7 @@ lean_inc(x_70); lean_dec(x_30); x_71 = l_Lean_Syntax_inhabited; x_72 = lean_array_get(x_71, x_27, x_70); -x_73 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_72); +x_73 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_72); x_74 = l_Array_toList___rarg(x_73); lean_dec(x_73); x_75 = lean_array_push(x_22, x_74); @@ -8367,7 +8367,7 @@ if (lean_is_exclusive(x_30)) { } x_84 = l_Lean_Syntax_inhabited; x_85 = lean_array_get(x_84, x_27, x_82); -x_86 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_85); +x_86 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_85); x_87 = l_Array_toList___rarg(x_86); lean_dec(x_86); x_88 = lean_array_push(x_22, x_87); @@ -8410,7 +8410,7 @@ lean_inc(x_99); lean_dec(x_29); x_100 = l_Lean_Syntax_inhabited; x_101 = lean_array_get(x_100, x_27, x_99); -x_102 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_101); +x_102 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_101); x_103 = l_Array_toList___rarg(x_102); lean_dec(x_102); x_104 = lean_array_push(x_22, x_103); @@ -8435,7 +8435,7 @@ lean_inc(x_110); lean_dec(x_29); x_111 = l_Lean_Syntax_inhabited; x_112 = lean_array_get(x_111, x_27, x_110); -x_113 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_112); +x_113 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_112); x_114 = l_Array_toList___rarg(x_113); lean_dec(x_113); x_115 = lean_array_push(x_22, x_114); @@ -8466,11 +8466,11 @@ x_123 = lean_ctor_get(x_20, 0); lean_inc(x_123); x_124 = lean_ctor_get(x_20, 1); lean_inc(x_124); -x_125 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(x_18, x_123, x_9); +x_125 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(x_18, x_123, x_9); if (lean_obj_tag(x_125) == 0) { lean_object* x_126; -x_126 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_123, x_9); +x_126 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_123, x_9); if (lean_obj_tag(x_126) == 0) { lean_dec(x_123); @@ -8487,11 +8487,11 @@ x_129 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_129, 0, x_128); x_130 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_130, 0, x_129); -x_131 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3; +x_131 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3; x_132 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); -x_133 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; +x_133 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; x_134 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_134, 0, x_132); lean_ctor_set(x_134, 1, x_133); @@ -8546,7 +8546,7 @@ lean_dec(x_18); x_143 = lean_ctor_get(x_124, 0); lean_inc(x_143); lean_dec(x_124); -x_144 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_143); +x_144 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_143); x_145 = l_Array_toList___rarg(x_144); lean_dec(x_144); x_146 = lean_array_push(x_22, x_145); @@ -8587,7 +8587,7 @@ if (lean_is_exclusive(x_126)) { } x_155 = l_Lean_Syntax_inhabited; x_156 = lean_array_get(x_155, x_123, x_153); -x_157 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_156); +x_157 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_156); x_158 = l_Array_toList___rarg(x_157); lean_dec(x_157); x_159 = lean_array_push(x_22, x_158); @@ -8635,7 +8635,7 @@ lean_inc(x_169); lean_dec(x_125); x_170 = l_Lean_Syntax_inhabited; x_171 = lean_array_get(x_170, x_123, x_169); -x_172 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_171); +x_172 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_171); x_173 = l_Array_toList___rarg(x_172); lean_dec(x_172); x_174 = lean_array_push(x_22, x_173); @@ -8682,11 +8682,11 @@ x_185 = lean_ctor_get(x_20, 0); lean_inc(x_185); x_186 = lean_ctor_get(x_20, 1); lean_inc(x_186); -x_187 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(x_18, x_185, x_9); +x_187 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(x_18, x_185, x_9); if (lean_obj_tag(x_187) == 0) { lean_object* x_188; -x_188 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_185, x_9); +x_188 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__2(x_185, x_9); if (lean_obj_tag(x_188) == 0) { lean_dec(x_185); @@ -8703,11 +8703,11 @@ x_191 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_191, 0, x_190); x_192 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_192, 0, x_191); -x_193 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3; +x_193 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3; x_194 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_194, 0, x_193); lean_ctor_set(x_194, 1, x_192); -x_195 = l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; +x_195 = l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6; x_196 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_196, 0, x_194); lean_ctor_set(x_196, 1, x_195); @@ -8762,7 +8762,7 @@ lean_dec(x_18); x_205 = lean_ctor_get(x_186, 0); lean_inc(x_205); lean_dec(x_186); -x_206 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_205); +x_206 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_205); x_207 = l_Array_toList___rarg(x_206); lean_dec(x_206); x_208 = lean_array_push(x_182, x_207); @@ -8809,7 +8809,7 @@ if (lean_is_exclusive(x_188)) { } x_218 = l_Lean_Syntax_inhabited; x_219 = lean_array_get(x_218, x_185, x_216); -x_220 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_219); +x_220 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_219); x_221 = l_Array_toList___rarg(x_220); lean_dec(x_220); x_222 = lean_array_push(x_182, x_221); @@ -8863,7 +8863,7 @@ lean_inc(x_233); lean_dec(x_187); x_234 = l_Lean_Syntax_inhabited; x_235 = lean_array_get(x_234, x_185, x_233); -x_236 = l___private_Init_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_235); +x_236 = l___private_Lean_Elab_Tactic_Induction_9__getAltVarNames(x_235); x_237 = l_Array_toList___rarg(x_236); lean_dec(x_236); x_238 = lean_array_push(x_182, x_237); @@ -8910,7 +8910,7 @@ return x_247; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Tactic_Induction_14__getRecInfo(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -8946,7 +8946,7 @@ if (x_18 == 0) { lean_object* x_19; lean_object* x_20; lean_free_object(x_13); -x_19 = l___private_Init_Lean_Elab_Tactic_Induction_7__getAlts(x_8); +x_19 = l___private_Lean_Elab_Tactic_Induction_7__getAlts(x_8); lean_dec(x_8); lean_inc(x_3); lean_inc(x_1); @@ -8997,7 +8997,7 @@ lean_ctor_set(x_34, 1, x_33); x_35 = lean_array_get_size(x_29); lean_inc(x_3); lean_inc(x_35); -x_36 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(x_1, x_15, x_29, x_35, x_35, x_34, x_3, x_30); +x_36 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(x_1, x_15, x_29, x_35, x_35, x_34, x_3, x_30); lean_dec(x_35); lean_dec(x_29); lean_dec(x_15); @@ -9039,7 +9039,7 @@ x_48 = l_Lean_Syntax_inhabited; x_49 = lean_unsigned_to_nat(0u); x_50 = lean_array_get(x_48, x_45, x_49); lean_dec(x_45); -x_51 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; +x_51 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; x_52 = l_Lean_Elab_Tactic_throwError___rarg(x_50, x_51, x_3, x_41); if (lean_obj_tag(x_52) == 0) { @@ -9124,7 +9124,7 @@ x_67 = l_Lean_Syntax_inhabited; x_68 = lean_unsigned_to_nat(0u); x_69 = lean_array_get(x_67, x_64, x_68); lean_dec(x_64); -x_70 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; +x_70 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; x_71 = l_Lean_Elab_Tactic_throwError___rarg(x_69, x_70, x_3, x_61); if (lean_obj_tag(x_71) == 0) { @@ -9278,7 +9278,7 @@ lean_ctor_set(x_98, 1, x_97); x_99 = lean_array_get_size(x_92); lean_inc(x_3); lean_inc(x_99); -x_100 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(x_1, x_15, x_92, x_99, x_99, x_98, x_3, x_93); +x_100 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(x_1, x_15, x_92, x_99, x_99, x_98, x_3, x_93); lean_dec(x_99); lean_dec(x_92); lean_dec(x_15); @@ -9323,7 +9323,7 @@ x_111 = l_Lean_Syntax_inhabited; x_112 = lean_unsigned_to_nat(0u); x_113 = lean_array_get(x_111, x_108, x_112); lean_dec(x_108); -x_114 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; +x_114 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; x_115 = l_Lean_Elab_Tactic_throwError___rarg(x_113, x_114, x_3, x_104); if (lean_obj_tag(x_115) == 0) { @@ -9504,7 +9504,7 @@ x_141 = l_Lean_Syntax_isNone(x_8); if (x_141 == 0) { lean_object* x_142; lean_object* x_143; -x_142 = l___private_Init_Lean_Elab_Tactic_Induction_7__getAlts(x_8); +x_142 = l___private_Lean_Elab_Tactic_Induction_7__getAlts(x_8); lean_dec(x_8); lean_inc(x_3); lean_inc(x_1); @@ -9563,7 +9563,7 @@ lean_ctor_set(x_157, 1, x_156); x_158 = lean_array_get_size(x_151); lean_inc(x_3); lean_inc(x_158); -x_159 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(x_1, x_138, x_151, x_158, x_158, x_157, x_3, x_152); +x_159 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(x_1, x_138, x_151, x_158, x_158, x_157, x_3, x_152); lean_dec(x_158); lean_dec(x_151); lean_dec(x_138); @@ -9608,7 +9608,7 @@ x_170 = l_Lean_Syntax_inhabited; x_171 = lean_unsigned_to_nat(0u); x_172 = lean_array_get(x_170, x_167, x_171); lean_dec(x_167); -x_173 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; +x_173 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3; x_174 = l_Lean_Elab_Tactic_throwError___rarg(x_172, x_173, x_3, x_163); if (lean_obj_tag(x_174) == 0) { @@ -9811,7 +9811,7 @@ else uint8_t x_202; lean_object* x_203; lean_dec(x_6); x_202 = 0; -x_203 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(x_1, x_2, x_8, x_202, x_3, x_4); +x_203 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(x_1, x_2, x_8, x_202, x_3, x_4); lean_dec(x_8); if (lean_obj_tag(x_203) == 0) { @@ -9869,28 +9869,28 @@ return x_214; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(x_1, x_2, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___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* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_9; } } -uint8_t l___private_Init_Lean_Elab_Tactic_Induction_15__isTermRHS(lean_object* x_1) { +uint8_t l___private_Lean_Elab_Tactic_Induction_15__isTermRHS(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; @@ -9913,16 +9913,16 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_15__isTermRHS___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Induction_15__isTermRHS___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Tactic_Induction_15__isTermRHS(x_1); +x_2 = l___private_Lean_Elab_Tactic_Induction_15__isTermRHS(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__1___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* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1___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) { _start: { lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; @@ -9978,7 +9978,7 @@ lean_inc(x_21); lean_dec(x_4); lean_inc(x_19); x_22 = l_List_append___rarg(x_3, x_19); -x_23 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; +x_23 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1; x_24 = l_Lean_Elab_Tactic_tagUntaggedGoals(x_21, x_23, x_19, x_5, x_20); lean_dec(x_5); x_25 = !lean_is_exclusive(x_24); @@ -10114,7 +10114,7 @@ return x_44; } } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -10138,7 +10138,7 @@ x_18 = lean_ctor_get(x_15, 0); lean_inc(x_18); lean_dec(x_15); lean_inc(x_17); -x_19 = l___private_Init_Lean_Elab_Tactic_Induction_15__isTermRHS(x_17); +x_19 = l___private_Lean_Elab_Tactic_Induction_15__isTermRHS(x_17); if (x_19 == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; @@ -10231,7 +10231,7 @@ lean_inc(x_18); x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_getMVarDecl___boxed), 3, 1); lean_closure_set(x_37, 0, x_18); lean_inc(x_18); -x_38 = lean_alloc_closure((void*)(l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__1___lambda__1), 6, 3); +x_38 = lean_alloc_closure((void*)(l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1___lambda__1), 6, 3); lean_closure_set(x_38, 0, x_17); lean_closure_set(x_38, 1, x_18); lean_closure_set(x_38, 2, x_5); @@ -10292,7 +10292,7 @@ return x_48; } } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -10316,7 +10316,7 @@ x_18 = lean_ctor_get(x_15, 0); lean_inc(x_18); lean_dec(x_15); lean_inc(x_17); -x_19 = l___private_Init_Lean_Elab_Tactic_Induction_15__isTermRHS(x_17); +x_19 = l___private_Lean_Elab_Tactic_Induction_15__isTermRHS(x_17); if (x_19 == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; @@ -10409,7 +10409,7 @@ lean_inc(x_18); x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_getMVarDecl___boxed), 3, 1); lean_closure_set(x_37, 0, x_18); lean_inc(x_18); -x_38 = lean_alloc_closure((void*)(l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__1___lambda__1), 6, 3); +x_38 = lean_alloc_closure((void*)(l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1___lambda__1), 6, 3); lean_closure_set(x_38, 0, x_17); lean_closure_set(x_38, 1, x_18); lean_closure_set(x_38, 2, x_5); @@ -10470,7 +10470,7 @@ return x_48; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__3(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__3(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -10491,7 +10491,7 @@ x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get(x_4, 0); lean_inc(x_6); lean_dec(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__3(x_5); +x_7 = l_List_map___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__3(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -10507,7 +10507,7 @@ lean_dec(x_1); x_10 = lean_ctor_get(x_8, 0); lean_inc(x_10); lean_dec(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__3(x_9); +x_11 = l_List_map___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__3(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -10516,7 +10516,7 @@ return x_12; } } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__1() { _start: { lean_object* x_1; @@ -10524,27 +10524,27 @@ x_1 = lean_mk_string("mistmatch on the number of subgoals produced ("); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__2() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__1; +x_1 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__3() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__2; +x_1 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__4() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__4() { _start: { lean_object* x_1; @@ -10552,27 +10552,27 @@ x_1 = lean_mk_string(") and "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__5() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__4; +x_1 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__6() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__5; +x_1 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__7() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__7() { _start: { lean_object* x_1; @@ -10580,27 +10580,27 @@ x_1 = lean_mk_string("alternatives provided ("); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__8() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__7; +x_1 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__9() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__8; +x_1 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__10() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__10() { _start: { lean_object* x_1; lean_object* x_2; @@ -10610,7 +10610,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult(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; @@ -10631,15 +10631,15 @@ x_12 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_12, 0, x_11); x_13 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_13, 0, x_12); -x_14 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__3; +x_14 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__3; x_15 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_13); -x_16 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__6; +x_16 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__6; x_17 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); -x_18 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__9; +x_18 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__9; x_19 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); @@ -10651,7 +10651,7 @@ lean_ctor_set(x_22, 0, x_21); x_23 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_23, 0, x_19); lean_ctor_set(x_23, 1, x_22); -x_24 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__10; +x_24 = l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__10; x_25 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_25, 0, x_23); lean_ctor_set(x_25, 1, x_24); @@ -10665,7 +10665,7 @@ lean_inc(x_27); lean_dec(x_26); lean_inc(x_4); lean_inc(x_8); -x_28 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__1(x_2, x_3, x_8, x_8, x_10, x_4, x_27); +x_28 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1(x_2, x_3, x_8, x_8, x_10, x_4, x_27); lean_dec(x_8); if (lean_obj_tag(x_28) == 0) { @@ -10735,7 +10735,7 @@ lean_dec(x_7); lean_dec(x_1); lean_inc(x_4); lean_inc(x_8); -x_40 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__2(x_2, x_3, x_8, x_8, x_10, x_4, x_5); +x_40 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__2(x_2, x_3, x_8, x_8, x_10, x_4, x_5); lean_dec(x_8); if (lean_obj_tag(x_40) == 0) { @@ -10779,40 +10779,40 @@ else lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_dec(x_1); x_48 = l_Array_toList___rarg(x_3); -x_49 = l_List_map___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__3(x_48); +x_49 = l_List_map___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__3(x_48); x_50 = l_Lean_Elab_Tactic_setGoals(x_49, x_4, x_5); lean_dec(x_4); return x_50; } } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___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* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_8; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___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* l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_16__processResult___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_16__processResult___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Tactic_Induction_16__processResult___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Tactic_Induction_16__processResult(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; @@ -10824,7 +10824,7 @@ _start: lean_object* x_5; lean_inc(x_3); lean_inc(x_1); -x_5 = l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor(x_1, x_2, x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; @@ -10836,7 +10836,7 @@ lean_dec(x_5); lean_inc(x_3); lean_inc(x_6); lean_inc(x_1); -x_8 = l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars(x_1, x_6, x_3, x_7); +x_8 = l___private_Lean_Elab_Tactic_Induction_6__generalizeVars(x_1, x_6, x_3, x_7); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; @@ -10846,7 +10846,7 @@ lean_dec(x_8); lean_inc(x_3); lean_inc(x_6); lean_inc(x_1); -x_10 = l___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo(x_1, x_6, x_3, x_9); +x_10 = l___private_Lean_Elab_Tactic_Induction_14__getRecInfo(x_1, x_6, x_3, x_9); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -10897,7 +10897,7 @@ lean_dec(x_23); x_26 = lean_ctor_get(x_11, 2); lean_inc(x_26); lean_dec(x_11); -x_27 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult(x_1, x_26, x_24, x_3, x_25); +x_27 = l___private_Lean_Elab_Tactic_Induction_16__processResult(x_1, x_26, x_24, x_3, x_25); lean_dec(x_24); lean_dec(x_26); return x_27; @@ -11037,10 +11037,10 @@ lean_object* l_Lean_Elab_Tactic_evalInduction(lean_object* x_1, lean_object* x_2 _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_4 = l___private_Init_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(x_1); -x_5 = l___private_Init_Lean_Elab_Tactic_Induction_2__getMajor(x_1); +x_4 = l___private_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(x_1); +x_5 = l___private_Lean_Elab_Tactic_Induction_2__getMajor(x_1); lean_inc(x_1); -x_6 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor), 5, 3); +x_6 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Induction_3__elabMajor), 5, 3); lean_closure_set(x_6, 0, x_1); lean_closure_set(x_6, 1, x_4); lean_closure_set(x_6, 2, x_5); @@ -11073,7 +11073,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1() { _start: { lean_object* x_1; @@ -11081,27 +11081,27 @@ x_1 = lean_mk_string("alternative for '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1; +x_1 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2; +x_1 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4() { _start: { lean_object* x_1; @@ -11109,27 +11109,27 @@ x_1 = lean_mk_string("' has not been provided"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4; +x_1 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5; +x_1 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7() { _start: { lean_object* x_1; @@ -11137,27 +11137,27 @@ x_1 = lean_mk_string("' is not needed"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7; +x_1 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9() { +lean_object* _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8; +x_1 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; uint8_t x_10; @@ -11193,11 +11193,11 @@ lean_inc(x_16); lean_dec(x_15); x_17 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_17, 0, x_16); -x_18 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3; +x_18 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3; x_19 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); -x_20 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6; +x_20 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6; x_21 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); @@ -11226,11 +11226,11 @@ lean_dec(x_6); lean_dec(x_5); x_29 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_29, 0, x_26); -x_30 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3; +x_30 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3; x_31 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); -x_32 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9; +x_32 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9; x_33 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_33, 0, x_31); lean_ctor_set(x_33, 1, x_32); @@ -11253,11 +11253,11 @@ lean_dec(x_6); lean_dec(x_5); x_38 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_38, 0, x_36); -x_39 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3; +x_39 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3; x_40 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); -x_41 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6; +x_41 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6; x_42 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_42, 0, x_40); lean_ctor_set(x_42, 1, x_41); @@ -11291,37 +11291,37 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___boxed(lean_object* x_1, lean_object* x_2, 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___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_9; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux(lean_object* x_1, lean_object* x_2, 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___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_9; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___boxed(lean_object* x_1, lean_object* x_2, 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___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_9; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_18__checkCasesResult(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Tactic_Induction_18__checkCasesResult(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; @@ -11330,7 +11330,7 @@ if (x_7 == 0) { lean_object* x_8; lean_object* x_9; x_8 = lean_unsigned_to_nat(0u); -x_9 = l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(x_1, x_2, x_3, x_4, x_8, x_8, x_5, x_6); +x_9 = l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main(x_1, x_2, x_3, x_4, x_8, x_8, x_5, x_6); return x_9; } else @@ -11346,11 +11346,11 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Induction_18__checkCasesResult___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Tactic_Induction_18__checkCasesResult___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Tactic_Induction_18__checkCasesResult(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Elab_Tactic_Induction_18__checkCasesResult(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -11462,7 +11462,7 @@ _start: lean_object* x_5; lean_inc(x_3); lean_inc(x_1); -x_5 = l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor(x_1, x_2, x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; @@ -11491,7 +11491,7 @@ x_14 = 1; lean_inc(x_3); lean_inc(x_6); lean_inc(x_1); -x_15 = l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(x_1, x_6, x_13, x_14, x_3, x_10); +x_15 = l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault(x_1, x_6, x_13, x_14, x_3, x_10); lean_dec(x_13); if (lean_obj_tag(x_15) == 0) { @@ -11540,7 +11540,7 @@ lean_inc(x_28); x_33 = l_Array_filterAux___main___at_Lean_Elab_Tactic_evalCases___spec__2(x_28, x_30, x_30); lean_inc(x_3); lean_inc(x_1); -x_34 = l___private_Init_Lean_Elab_Tactic_Induction_18__checkCasesResult(x_1, x_26, x_19, x_28, x_3, x_27); +x_34 = l___private_Lean_Elab_Tactic_Induction_18__checkCasesResult(x_1, x_26, x_19, x_28, x_3, x_27); lean_dec(x_28); lean_dec(x_19); lean_dec(x_26); @@ -11550,7 +11550,7 @@ lean_object* x_35; lean_object* x_36; x_35 = lean_ctor_get(x_34, 1); lean_inc(x_35); lean_dec(x_34); -x_36 = l___private_Init_Lean_Elab_Tactic_Induction_16__processResult(x_1, x_33, x_32, x_3, x_35); +x_36 = l___private_Lean_Elab_Tactic_Induction_16__processResult(x_1, x_33, x_32, x_3, x_35); lean_dec(x_32); lean_dec(x_33); return x_36; @@ -11692,10 +11692,10 @@ lean_object* l_Lean_Elab_Tactic_evalCases(lean_object* x_1, lean_object* x_2, le _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_4 = l___private_Init_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(x_1); -x_5 = l___private_Init_Lean_Elab_Tactic_Induction_2__getMajor(x_1); +x_4 = l___private_Lean_Elab_Tactic_Induction_1__getAuxHypothesisName(x_1); +x_5 = l___private_Lean_Elab_Tactic_Induction_2__getMajor(x_1); lean_inc(x_1); -x_6 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor), 5, 3); +x_6 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Induction_3__elabMajor), 5, 3); lean_closure_set(x_6, 0, x_1); lean_closure_set(x_6, 1, x_4); lean_closure_set(x_6, 2, x_5); @@ -11728,69 +11728,69 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* initialize_Init_Lean_Meta_RecursorInfo(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Induction(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Cases(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_ElabTerm(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_Generalize(lean_object*); +lean_object* initialize_Lean_Meta_RecursorInfo(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Induction(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Cases(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_ElabTerm(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Generalize(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Tactic_Induction(lean_object* w) { +lean_object* initialize_Lean_Elab_Tactic_Induction(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_RecursorInfo(lean_io_mk_world()); +res = initialize_Lean_Meta_RecursorInfo(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Induction(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Induction(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Cases(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Cases(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_ElabTerm(lean_io_mk_world()); +res = initialize_Lean_Elab_Tactic_ElabTerm(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_Generalize(lean_io_mk_world()); +res = initialize_Lean_Elab_Tactic_Generalize(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1); -l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2); -l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3); -l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1); -l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1); -l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1); -l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1); -l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2); -l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3); -l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4 = _init_l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4); -l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1 = _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1(); -lean_mark_persistent(l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1); -l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2 = _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2(); -lean_mark_persistent(l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2); -l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3 = _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3(); -lean_mark_persistent(l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3); -l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4 = _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4(); -lean_mark_persistent(l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4); -l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5 = _init_l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5(); -lean_mark_persistent(l_Array_forMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5); +l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__1); +l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2 = _init_l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__2); +l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3 = _init_l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__1___closed__3); +l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_3__elabMajor___lambda__2___closed__1); +l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_4__generalizeMajor___closed__1); +l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_5__getGeneralizingFVarIds___closed__1); +l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__1); +l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2 = _init_l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__2); +l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3 = _init_l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__3); +l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4 = _init_l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_6__generalizeVars___lambda__1___closed__4); +l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1 = _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1(); +lean_mark_persistent(l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__1); +l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2 = _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2(); +lean_mark_persistent(l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__2); +l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3 = _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3(); +lean_mark_persistent(l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__3); +l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4 = _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4(); +lean_mark_persistent(l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__4); +l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5 = _init_l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5(); +lean_mark_persistent(l_Array_forMAux___main___at___private_Lean_Elab_Tactic_Induction_11__checkAltCtorNames___spec__2___closed__5); l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__1); l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__2 = _init_l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__2(); lean_mark_persistent(l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__2); l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__3 = _init_l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__3(); lean_mark_persistent(l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__3); -l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1); +l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_12__getRecFromUsingLoop___main___closed__1); l_Lean_Elab_Tactic_getRecFromUsing___closed__1 = _init_l_Lean_Elab_Tactic_getRecFromUsing___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_getRecFromUsing___closed__1); l_Lean_Elab_Tactic_getRecFromUsing___closed__2 = _init_l_Lean_Elab_Tactic_getRecFromUsing___closed__2(); @@ -11807,73 +11807,73 @@ l_Lean_Elab_Tactic_getRecFromUsing___closed__7 = _init_l_Lean_Elab_Tactic_getRec lean_mark_persistent(l_Lean_Elab_Tactic_getRecFromUsing___closed__7); l_Lean_Elab_Tactic_getRecFromUsing___closed__8 = _init_l_Lean_Elab_Tactic_getRecFromUsing___closed__8(); lean_mark_persistent(l_Lean_Elab_Tactic_getRecFromUsing___closed__8); -l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1); -l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2); -l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3); -l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4); -l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5); -l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6 = _init_l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6); -l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1); -l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2 = _init_l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2); -l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3 = _init_l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3); -l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1 = _init_l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1(); -lean_mark_persistent(l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1); -l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2 = _init_l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2(); -lean_mark_persistent(l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2); -l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3 = _init_l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3(); -lean_mark_persistent(l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__1); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__2 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__2); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__3 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__3); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__4 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__4); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__5 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__5); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__6 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__6); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__7 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__7); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__8 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__8); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__9 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__9); -l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__10 = _init_l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_16__processResult___closed__10); +l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1 = _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__1); +l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2 = _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__2); +l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3 = _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__3); +l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4 = _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__4); +l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5 = _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__5); +l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6 = _init_l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___spec__3___closed__6); +l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__1); +l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2 = _init_l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__2); +l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3 = _init_l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_13__getRecInfoDefault___closed__3); +l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1 = _init_l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1(); +lean_mark_persistent(l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__1); +l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2 = _init_l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2(); +lean_mark_persistent(l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__2); +l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3 = _init_l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3(); +lean_mark_persistent(l_Nat_foldMAux___main___at___private_Lean_Elab_Tactic_Induction_14__getRecInfo___spec__2___closed__3); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__1); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__2 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__2); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__3 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__3); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__4 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__4); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__5 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__5); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__6 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__6); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__7 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__7); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__8 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__8); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__9 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__9); +l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__10 = _init_l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_16__processResult___closed__10); l___regBuiltin_Lean_Elab_Tactic_evalInduction___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalInduction___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalInduction___closed__1); res = l___regBuiltin_Lean_Elab_Tactic_evalInduction(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1); -l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2 = _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2); -l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3 = _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3); -l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4 = _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4); -l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5 = _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5); -l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6 = _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6); -l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7 = _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7); -l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8 = _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8); -l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9 = _init_l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9); +l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__1); +l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2 = _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__2); +l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3 = _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__3); +l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4 = _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__4); +l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5 = _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__5); +l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6 = _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__6); +l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7 = _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__7); +l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8 = _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__8); +l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9 = _init_l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_17__checkCasesResultAux___main___closed__9); l___regBuiltin_Lean_Elab_Tactic_evalCases___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalCases___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalCases___closed__1); res = l___regBuiltin_Lean_Elab_Tactic_evalCases(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Elab/Tactic/Injection.c b/stage0/stdlib/Lean/Elab/Tactic/Injection.c similarity index 75% rename from stage0/stdlib/Init/Lean/Elab/Tactic/Injection.c rename to stage0/stdlib/Lean/Elab/Tactic/Injection.c index a7d62da691..13717be2e7 100644 --- a/stage0/stdlib/Init/Lean/Elab/Tactic/Injection.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Injection.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Tactic.Injection -// Imports: Init.Lean.Meta.Tactic.Injection Init.Lean.Elab.Tactic.ElabTerm +// Module: Lean.Elab.Tactic.Injection +// Imports: Lean.Meta.Tactic.Injection Lean.Elab.Tactic.ElabTerm #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,43 +13,43 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3; lean_object* l_Lean_Elab_Tactic_withMVarContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Tactic_liftMetaTactic___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInjection(lean_object*); lean_object* l_List_toString___at_Lean_Elab_OpenDecl_HasToString___spec__2(lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_monadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2; -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds(lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1; -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__1; lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4; lean_object* l_Lean_Meta_injection___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalInjection(lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2; +lean_object* l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalInjection___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Array_toList___rarg(lean_object*); lean_object* l_Lean_Elab_Tactic_evalInjection___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInjection___closed__1; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___boxed(lean_object*); extern lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__2; lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -69,7 +69,7 @@ x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); x_6 = l_Lean_Syntax_getId(x_4); lean_dec(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(x_5); +x_7 = l_List_map___main___at___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -84,7 +84,7 @@ lean_inc(x_8); lean_dec(x_1); x_10 = l_Lean_Syntax_getId(x_8); lean_dec(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(x_9); +x_11 = l_List_map___main___at___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -93,7 +93,7 @@ return x_12; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds(lean_object* x_1) { _start: { uint8_t x_2; @@ -107,7 +107,7 @@ x_5 = l_Lean_Syntax_getArgs(x_4); lean_dec(x_4); x_6 = l_Array_toList___rarg(x_5); lean_dec(x_5); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(x_6); +x_7 = l_List_map___main___at___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___spec__1(x_6); return x_7; } else @@ -118,16 +118,16 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds(x_1); +x_2 = l___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds(x_1); lean_dec(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1() { +lean_object* _init_l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -137,7 +137,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2() { +lean_object* _init_l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2() { _start: { lean_object* x_1; @@ -145,27 +145,27 @@ x_1 = lean_mk_string("too many identifiers provided, unused: "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3() { +lean_object* _init_l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2; +x_1 = l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4() { +lean_object* _init_l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3; +x_1 = l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -178,11 +178,11 @@ x_7 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_7, 0, x_6); x_8 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_8, 0, x_7); -x_9 = l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4; +x_9 = l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4; x_10 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_8); -x_11 = l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1; +x_11 = l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1; x_12 = l_Lean_Meta_throwTacticEx___rarg(x_11, x_1, x_10, x_3, x_4); return x_12; } @@ -199,11 +199,11 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___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___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -215,7 +215,7 @@ if (lean_obj_tag(x_3) == 0) { lean_object* x_6; lean_object* x_7; x_6 = lean_box(0); -x_7 = l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds(x_1, x_2, x_4, x_5); +x_7 = l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds(x_1, x_2, x_4, x_5); if (lean_obj_tag(x_7) == 0) { uint8_t x_8; @@ -276,7 +276,7 @@ x_18 = lean_box(0); x_19 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_19, 0, x_16); lean_ctor_set(x_19, 1, x_18); -x_20 = l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds(x_1, x_17, x_4, x_5); +x_20 = l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds(x_1, x_17, x_4, x_5); if (lean_obj_tag(x_20) == 0) { uint8_t x_21; @@ -346,7 +346,7 @@ lean_inc(x_9); lean_dec(x_7); x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); -x_12 = l___private_Init_Lean_Elab_Tactic_Injection_1__getInjectionNewIds(x_11); +x_12 = l___private_Lean_Elab_Tactic_Injection_1__getInjectionNewIds(x_11); lean_dec(x_11); lean_inc(x_2); lean_inc(x_1); @@ -510,27 +510,27 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* initialize_Init_Lean_Meta_Tactic_Injection(lean_object*); -lean_object* initialize_Init_Lean_Elab_Tactic_ElabTerm(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Injection(lean_object*); +lean_object* initialize_Lean_Elab_Tactic_ElabTerm(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Tactic_Injection(lean_object* w) { +lean_object* initialize_Lean_Elab_Tactic_Injection(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Tactic_Injection(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Injection(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Tactic_ElabTerm(lean_io_mk_world()); +res = initialize_Lean_Elab_Tactic_ElabTerm(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1 = _init_l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1); -l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2 = _init_l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2); -l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3 = _init_l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3); -l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4 = _init_l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4); +l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1 = _init_l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__1); +l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2 = _init_l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__2); +l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3 = _init_l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__3); +l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4 = _init_l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Injection_2__checkUnusedIds___closed__4); l___regBuiltin_Lean_Elab_Tactic_evalInjection___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalInjection___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalInjection___closed__1); res = l___regBuiltin_Lean_Elab_Tactic_evalInjection(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c similarity index 93% rename from stage0/stdlib/Init/Lean/Elab/Term.c rename to stage0/stdlib/Lean/Elab/Term.c index ea2ba037b4..a930b6c1f4 100644 --- a/stage0/stdlib/Init/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Term -// Imports: Init.Lean.Util.Sorry Init.Lean.Structure Init.Lean.Meta.ExprDefEq Init.Lean.Meta.AppBuilder Init.Lean.Meta.SynthInstance Init.Lean.Meta.Tactic.Util Init.Lean.Hygiene Init.Lean.Util.RecDepth Init.Lean.Elab.Log Init.Lean.Elab.Alias Init.Lean.Elab.ResolveName Init.Lean.Elab.Level +// Module: Lean.Elab.Term +// Imports: Lean.Util.Sorry Lean.Structure Lean.Meta.ExprDefEq Lean.Meta.AppBuilder Lean.Meta.SynthInstance Lean.Meta.Tactic.Util Lean.Hygiene Lean.Util.RecDepth Lean.Elab.Log Lean.Elab.Alias Lean.Elab.ResolveName Lean.Elab.Level #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,13 +15,12 @@ extern "C" { #endif lean_object* l_Lean_Elab_mkMessage___at_Lean_Elab_Term_throwError___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__4; -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4; lean_object* l_Lean_Elab_Term_elabChar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_1__mkMessageAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_6__isTypeApp_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); +uint8_t l___private_Lean_Elab_Term_4__hasCDot(lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_20__resolveLocalName___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabImplicitLambdaAux___closed__2; lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__1; @@ -37,19 +36,19 @@ lean_object* l_Lean_extractMacroScopes(lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__8; uint8_t l_Lean_MessageData_hasSyntheticSorry___main(lean_object*); lean_object* l_Lean_Elab_Term_elabArrayLit___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_7__isMonad_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabImplicitLambdaAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabStr(lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_Lean_Elab_Term_elabArrayLit___closed__8; +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabImplicitLambdaAux___closed__1; lean_object* l_Lean_Elab_Term_elabRawStrLit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__4; lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; extern lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNum___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_declareBuiltinParser___closed__8; lean_object* l_Lean_Elab_Term_State_inhabited; @@ -62,7 +61,6 @@ lean_object* l_Lean_Elab_Term_mkFreshExprMVar(lean_object*, lean_object*, uint8_ extern lean_object* l_Lean_Nat_HasQuote___closed__2; extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Meta_whnfForall(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Term_5__expandCDot___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadLog___lambda__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__8; lean_object* l_Lean_Elab_Term_isDefEqNoConstantApprox(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -71,8 +69,6 @@ lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_Elab_Term_tryPostpone___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_inferType(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__7; -lean_object* l___private_Init_Lean_Elab_Term_9__exceptionToSorry(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_assignExprMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ppGoal___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_hasSorry___main___closed__1; @@ -84,17 +80,14 @@ lean_object* l_Lean_Elab_Term_throwErrorIfErrors___closed__1; lean_object* l_Lean_Elab_Term_resettingSynthInstanceCacheWhen(lean_object*); lean_object* l_Lean_Elab_Term_monadLog___closed__3; lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1; lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_7__isMonad_x3f(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabTacticBlock(lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForall(lean_object*, lean_object*, lean_object*, lean_object*); extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParen(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__5; lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); lean_object* l_ReaderT_read___at_Lean_Elab_Term_monadLog___spec__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabQuotedName___closed__1; @@ -103,21 +96,27 @@ extern lean_object* l_Lean_maxRecDepthErrorMessage; lean_object* l_Lean_Elab_Term_getLocalInsts___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resettingSynthInstanceCacheWhen___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getPos___at_Lean_Elab_Term_throwError___spec__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__7; uint8_t l_List_elem___main___at_Lean_NameHashSet_insert___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrayLit___closed__2; extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2; extern lean_object* l_Prod_HasRepr___rarg___closed__1; lean_object* l_Lean_Elab_Term_elabUsingElabFns___closed__2; -lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; lean_object* l_Lean_Elab_Term_elabQuotedName___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MacroScopesView_format(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_21__mkFreshLevelMVars(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_setMCtx___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData(lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Term_22__mkConsts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l_Lean_mkMVar(lean_object*); extern lean_object* l_Array_empty___closed__1; +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_find(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSort___rarg(lean_object*); lean_object* l_Lean_Elab_Term_tryCoe___closed__2; lean_object* l_Lean_Elab_Term_resolveName___closed__3; @@ -126,8 +125,8 @@ uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__2; lean_object* l_Lean_Elab_Term_elabTypeStx___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_dbg_trace(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_19__resolveLocalNameAux(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabNum___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getEnv___boxed(lean_object*); lean_object* l_Lean_Elab_Term_throwErrorIfErrors___closed__2; extern lean_object* l_Lean_charLitKind___closed__2; @@ -136,24 +135,26 @@ lean_object* l_Lean_Meta_Exception_mkAppTypeMismatchMessage(lean_object*, lean_o lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax___rarg___closed__1; lean_object* l_Lean_Elab_Term_unfoldDefinition_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkForallUsedOnly___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_declareBuiltinParser___closed__5; lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__6; lean_object* l_Lean_Elab_Term_getDecLevel(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadQuotation___closed__2; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withoutPostponing(lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__13; lean_object* l_Lean_Elab_Term_decLevel(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_compileDecl(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabRawStrLit___closed__2; lean_object* l_Lean_Elab_Term_elabParen___closed__3; lean_object* lean_local_ctx_find_from_user_name(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMVarDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_6__isTypeApp_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_compileDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_9__exceptionToSorry___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Literal_type___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); @@ -166,12 +167,11 @@ lean_object* l_Lean_Elab_Term_inferType___boxed(lean_object*, lean_object*, lean lean_object* l_Lean_Elab_Term_monadLog___closed__7; lean_object* l___regBuiltin_Lean_Elab_Term_elabProp(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_toStr___closed__1; -uint8_t l___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit(lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabListLit___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureType(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBadCDot___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__3; extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; lean_object* l_Lean_Expr_getAppFn___main(lean_object*); lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); @@ -179,28 +179,25 @@ lean_object* l_Array_back___at_Lean_Parser_checkStackTopFn___spec__1(lean_object lean_object* l___regBuiltin_Lean_Elab_Term_elabParen(lean_object*); lean_object* l_PersistentHashMap_empty___at_Lean_Elab_Term_termElabAttribute___spec__3; extern lean_object* l_String_splitAux___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2; lean_object* l_Lean_Elab_Term_logTrace___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1; lean_object* l_Lean_Elab_Term_mkFreshAnonymousName___rarg___closed__1; lean_object* l_Lean_Elab_Term_isTypeFormer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withIncRecDepth(lean_object*); lean_object* l_Lean_Elab_Level_elabLevel(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkAuxName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___at_Lean_Meta_unfoldDefinition_x3f___spec__1(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Elab_Term_12__isExplicit(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabRawCharLit(lean_object*); extern lean_object* l_List_repr___rarg___closed__3; extern lean_object* l_Lean_unitToExpr___lambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_throwError(lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__1; lean_object* l_Lean_Elab_Term_elabSort___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMCtx(lean_object*); size_t l_USize_shiftRight(size_t, size_t); -lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; lean_object* l_Lean_Elab_Term_withLCtx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__5; lean_object* l_Lean_Elab_Term_synthesizeInst(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrayLit___closed__6; lean_object* l_Lean_Elab_Term_monadLog___closed__10; @@ -210,6 +207,7 @@ lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabByTactic(lean_object*); lean_object* l_Lean_mkAtom(lean_object*); extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__2; +lean_object* l_PersistentArray_foldlM___at___private_Lean_Elab_Term_3__fromMetaState___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabTypeStx(lean_object*); lean_object* l_Lean_Elab_Term_dbgTrace___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabRawStrLit___closed__3; @@ -218,6 +216,7 @@ lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_obj lean_object* l_Lean_Elab_Term_withLetDecl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Term_22__mkConsts___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Exception_hasToString(lean_object*); lean_object* l_Lean_Elab_Term_elabParen___closed__5; lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__5; @@ -229,13 +228,14 @@ lean_object* l_Lean_Elab_Term_elabImplicitLambda___main(lean_object*, uint8_t, l lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___closed__7; lean_object* l_Lean_Elab_Term_mkFreshAnonymousName___rarg___closed__2; lean_object* l_Lean_Elab_Term_trace___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Elab_Term_elabUsingElabFns___spec__6(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__2; extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l_Lean_Elab_Term_elabBadCDot___closed__1; lean_object* l_Lean_Elab_Term_MetaHasEval___rarg___closed__6; lean_object* l_Lean_Elab_Term_mkExpectedTypeHint(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_TermElabResult_inhabited___closed__1; +lean_object* l___private_Lean_Elab_Term_3__fromMetaState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Meta_ppGoal(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshInstanceName___rarg___closed__1; @@ -245,24 +245,31 @@ lean_object* l_Lean_Elab_Term_getTraceState(lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_Elab_Term_termElabAttribute___spec__1; lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshTypeMVar(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_9__exceptionToSorry(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___main___closed__1; lean_object* l_Lean_Elab_Term_withConfig(lean_object*); +lean_object* l___private_Lean_Elab_Term_7__isMonad_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshAnonymousIdent(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParen___closed__2; lean_object* l_Lean_Elab_Term_mkLet(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_20__resolveLocalName(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabImplicitLambdaAux(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_whnf(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrayLit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getOptions(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadLog___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_7__isMonad_x3f___closed__1; +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; lean_object* l_Lean_Elab_Term_elabParen___closed__1; lean_object* l_Lean_Elab_Term_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__1; extern lean_object* l_Lean_mkTermIdFromIdent___closed__2; lean_object* l_Array_foldlStepMAux___main___at_Lean_Elab_Term_elabParen___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_liftMetaM(lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__1; +lean_object* l___private_Lean_Elab_Term_7__isMonad_x3f___closed__2; +lean_object* l___private_Lean_Elab_Term_21__mkFreshLevelMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_metavar_ctx_is_expr_assigned(lean_object*, lean_object*); extern lean_object* l_Lean_LocalContext_Inhabited___closed__2; lean_object* l_Lean_Meta_isClass(lean_object*, lean_object*, lean_object*); @@ -271,6 +278,7 @@ lean_object* l_Lean_Elab_Term_withTransparency(lean_object*); extern lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_withIncRecDepth___rarg___closed__1; extern lean_object* l_Lean_Meta_run___rarg___closed__5; +lean_object* l___private_Lean_Elab_Term_7__isMonad_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withConfig___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryCoe___closed__4; @@ -279,12 +287,9 @@ extern lean_object* l_Lean_Meta_dbgTrace___rarg___closed__1; lean_object* l_Lean_Elab_Term_mkConst___closed__6; lean_object* l_Lean_Elab_Term_monadLog___closed__5; extern lean_object* l_Lean_Parser_termParser___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_19__resolveLocalNameAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withIncRecDepth___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryCoe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_2__fromMetaException___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParen___closed__4; lean_object* l_Lean_Elab_Term_withIncRecDepth___rarg___closed__2; lean_object* l_Lean_Elab_Term_elabLevel(lean_object*, lean_object*, lean_object*); @@ -299,16 +304,17 @@ lean_object* l_Lean_Elab_Term_elabRawCharLit(lean_object*, lean_object*, lean_ob lean_object* l_Lean_Elab_Term_mkFreshAnonymousName___rarg(lean_object*); lean_object* l_Lean_Elab_Term_MetaHasEval___rarg___closed__2; extern lean_object* l_Lean_Expr_Inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_22__mkConsts(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withMVarContext(lean_object*); lean_object* l_Lean_Elab_Term_termElabAttribute___closed__4; -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addContext___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_levelMVarToParam(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabByTactic(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_observing(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkLet___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withoutMacroStackAtErr(lean_object*); lean_object* l_Lean_Elab_Term_withMacroExpansion(lean_object*); lean_object* l_Lean_Elab_Term_getTraceState___rarg(lean_object*); @@ -322,13 +328,11 @@ extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Elab_Term_elabTermWithoutImplicitLambdas(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_levelMVarToParam(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshFVarId___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkLambda___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getLevel(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryCoe___closed__1; lean_object* l_Lean_Elab_Term_mkConst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrNamespace(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(lean_object*); extern lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__1; @@ -337,35 +341,38 @@ lean_object* l_Lean_Elab_Term_tryLiftAndCoe___closed__4; lean_object* l_Lean_Elab_Term_isExprMVarAssigned___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabProp___rarg(lean_object*); lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__2; lean_object* l_Lean_Elab_Term_termElabAttribute___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; lean_object* l_Lean_Elab_Term_mkFreshInstanceName(lean_object*); lean_object* l_Lean_Elab_Term_elabChar___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__2; +lean_object* l___private_Lean_Elab_Term_22__mkConsts(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__3; lean_object* l_Lean_Elab_mkMessageCore(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); extern lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_withMacroExpansion___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_16__mkAuxNameAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabByTactic___closed__2; lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__3; lean_object* l_Lean_KernelException_toMessageData(lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Term_5__expandCDot___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabStr___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__2; lean_object* l_Lean_Elab_Term_mkConst___closed__2; lean_object* l_Lean_Elab_Term_isType(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_setEnv___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_5__expandCDot___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabQuotedName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryLiftAndCoe___closed__1; -uint8_t l___private_Init_Lean_Elab_Term_13__isExplicitApp(lean_object*); +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__1; lean_object* l_Lean_Elab_Term_TermElabM_inhabited(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkInstMVar(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_10__postponeElabTerm(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_levelMVarToParam___lambda__1___boxed(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; lean_object* l_PersistentHashMap_find_x3f___at_Lean_Elab_Term_elabUsingElabFns___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_Elab_Term_termElabAttribute___spec__1___closed__1; lean_object* l_Lean_Elab_Term_withTransparency___rarg(uint8_t, lean_object*, lean_object*, lean_object*); @@ -380,24 +387,23 @@ lean_object* l_Lean_SMap_empty___at_Lean_Elab_Term_termElabAttribute___spec__1__ lean_object* l_Lean_Elab_Term_tryLiftAndCoe___closed__2; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkConst___closed__4; +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallUsedOnly(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabNum(lean_object*); lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabListLit(lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__6; lean_object* l_Lean_Elab_Term_blockImplicitLambda___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_1__mkMessageAux(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Elab_Term_monadQuotation___closed__1; -extern lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_4__hasCDot___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; uint8_t l_Lean_Elab_Term_blockImplicitLambda(lean_object*); lean_object* l_Lean_Elab_Term_elabTypeStx(lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Term_22__mkConsts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg___closed__3; lean_object* l_Lean_Elab_Term_monadLog___closed__6; extern lean_object* l_Lean_strLitKind___closed__2; lean_object* l_Lean_Elab_Term_dropTermParens(lean_object*); +lean_object* l___private_Lean_Elab_Term_13__isExplicitApp___boxed(lean_object*); lean_object* l_Lean_Elab_Term_elabUsingElabFns___closed__1; lean_object* l_Lean_Elab_Term_withFreshMacroScope(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__1; @@ -406,8 +412,8 @@ lean_object* l_Lean_Elab_Term_addDecl___boxed(lean_object*, lean_object*, lean_o size_t l_Lean_Name_hash(lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___main(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_termElabAttribute___closed__3; -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__4; lean_object* l_Nat_repr(lean_object*); +lean_object* l___private_Lean_Elab_Term_14__isLambdaWithImplicit___boxed(lean_object*); lean_object* l_Lean_Elab_Term_State_inhabited___closed__2; extern lean_object* l_Char_HasRepr___closed__1; lean_object* l_Lean_Elab_Term_elabUsingElabFns___closed__6; @@ -423,7 +429,6 @@ lean_object* l_Lean_Elab_Term_liftLevelM___rarg(lean_object*, lean_object*, lean extern lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabParen___closed__1; lean_object* l_Lean_Elab_Term_elabRawStrLit___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__5; lean_object* l_Lean_Syntax_prettyPrint(lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter; lean_object* l_Lean_Elab_Term_elabRawStrLit___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -433,22 +438,24 @@ lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getLevel___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__2; lean_object* l_Lean_Elab_Term_trySynthInstance___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_10__postponeElabTerm(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isClass___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__2; lean_object* l_Lean_Elab_log___at_Lean_Elab_Term_logTrace___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__5; +lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_Elab_Term_monadLog___lambda__2___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabTypeStx___rarg___closed__1; extern lean_object* l_Lean_Elab_Exception_hasToString___closed__1; +lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__1; extern lean_object* l_PersistentArray_empty___closed__3; lean_object* l_Lean_Elab_Term_resolveName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabRawNumLit(lean_object*); lean_object* l_Lean_Elab_Term_elabProp___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_assignExpr(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__2; uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_applyResult___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadQuotation___closed__4; @@ -461,20 +468,16 @@ extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__4; lean_object* l_Lean_Elab_Term_MetaHasEval___rarg___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTacticBlock___closed__2; extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__1; lean_object* l_Lean_Elab_Term_monadLog___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkAppM___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrMacroScope___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__6; extern lean_object* l_Lean_Options_empty; -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_4__hasCDot___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkConst___closed__7; -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_useImplicitLambda_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshFVarId(lean_object*); lean_object* l_Lean_Elab_Term_elabTermAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLevel___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__1; size_t lean_usize_modn(size_t, lean_object*); lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__2; lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Term_elabUsingElabFns___spec__1___boxed(lean_object*, lean_object*); @@ -489,18 +492,20 @@ lean_object* l_Lean_Elab_addMacroStack(lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_toExpr(lean_object*); extern lean_object* l_Lean_firstFrontendMacroScope; lean_object* l_Lean_Elab_Term_elabTermAux(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Elab_Term_elabUsingElabFns___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_termElabAttribute___closed__5; +lean_object* l___private_Lean_Elab_Term_18__elabCDot(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_mkElabAttribute___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabRawNumLit___closed__1; lean_object* l_Lean_Elab_mkMessageAt___at_Lean_Elab_Term_throwError___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_23__regTraceClasses(lean_object*); lean_object* l_mkHashMapImp___rarg(lean_object*); lean_object* l_Lean_Elab_Term_whnfCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrNamespace___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__2; +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +lean_object* l___private_Lean_Elab_Term_1__mkMessageAux(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Elab_Term_getLocalInsts(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__6; lean_object* l_Lean_Elab_Term_mkFreshInstanceName___rarg(lean_object*); lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isClass(lean_object*, lean_object*, lean_object*, lean_object*); @@ -515,28 +520,30 @@ lean_object* l_Lean_Elab_Term_elabArrayLit___closed__4; uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); lean_object* l_Lean_Elab_Term_TermElabM_inhabited___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkPure(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_20__resolveLocalName(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshAnonymousIdent___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabRawNumLit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Term_elabUsingElabFns___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__3; lean_object* l_Lean_Elab_Term_tryLiftAndCoe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_6__isTypeApp_x3f(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__4; lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__3; extern lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwTypeMismatchError(lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrayLit___closed__9; lean_object* l___regBuiltin_Lean_Elab_Term_elabSort(lean_object*); lean_object* l_Lean_Elab_Term_resolveName___closed__9; lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__5; size_t l_USize_land(size_t, size_t); extern lean_object* l_Lean_String_HasQuote___closed__2; lean_object* l_Lean_Elab_Term_mkConst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkConst___closed__3; lean_object* l_Lean_Elab_Term_resolveName___closed__4; extern lean_object* l_Lean_nullKind___closed__2; +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__3; lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg___closed__2; lean_object* l_Lean_Elab_Term_elabNamedHole___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInst___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -557,37 +564,32 @@ lean_object* l_Lean_ConstantInfo_lparams(lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__9; lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Elab_Term_mkFreshAnonymousName(lean_object*); -uint8_t l___private_Init_Lean_Elab_Term_4__hasCDot(lean_object*); lean_object* l_Lean_Elab_Term_withLCtx(lean_object*); extern lean_object* l_Option_HasRepr___rarg___closed__3; -uint8_t l___private_Init_Lean_Elab_Term_4__hasCDot___main(lean_object*); +lean_object* l___private_Lean_Elab_Term_19__resolveLocalNameAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withoutPostponing___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_savingMCtx(lean_object*); lean_object* l_Lean_Elab_Term_Exception_inhabited; lean_object* l_Lean_Elab_Term_elabHole(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__3; -lean_object* l___private_Init_Lean_Elab_Term_8__tryPureCoe_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_inhabited; lean_object* l___regBuiltin_Lean_Elab_Term_elabNamedHole___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBadCDot___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabRawStrLit(lean_object*); lean_object* l_Lean_Elab_Term_liftMetaM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_trySynthInstance(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__5; +lean_object* l___private_Lean_Elab_Term_10__postponeElabTerm___closed__2; extern lean_object* l_Lean_Expr_listLitAux___main___closed__6; lean_object* l_Lean_Elab_Term_MetaHasEval___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_6__isTypeApp_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isTypeFormer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___at_Lean_Meta_whnfCore___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_16__mkAuxNameAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_setMCtx(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabStr(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_19__resolveLocalNameAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MetaHasEval___rarg___closed__1; lean_object* l_Lean_Elab_Term_getLCtx(lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Elab_Term_4__hasCDot___main(lean_object*); lean_object* l_Lean_Elab_Term_traceAtCmdPos(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); lean_object* l_Lean_Elab_Term_elabTacticBlock___closed__3; @@ -596,9 +598,9 @@ lean_object* l_Lean_Elab_Term_withReducible(lean_object*); lean_object* l_Lean_Elab_Term_elabUsingElabFns___closed__5; lean_object* l_Lean_Elab_Term_TermElabM_inhabited___rarg(lean_object*); uint8_t l_Lean_Expr_isMVar(lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadLog___closed__9; lean_object* l_Lean_Meta_mkFreshExprMVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkConst___closed__5; lean_object* l_Lean_mkApp(lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; @@ -609,24 +611,25 @@ lean_object* l_Lean_Elab_Term_throwError___rarg___boxed(lean_object*, lean_objec lean_object* l_Lean_Elab_Term_MetaHasEval___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabHole___closed__1; lean_object* l_Lean_Syntax_isTermId_x3f(lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Elab_Term_12__isExplicit___boxed(lean_object*); lean_object* l_Lean_Elab_Term_ensureType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); lean_object* l_Lean_Elab_Term_registerSyntheticMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabSort___closed__1; +lean_object* l___private_Lean_Elab_Term_4__hasCDot___boxed(lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Term_monadLog___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_decLevel___closed__3; lean_object* l_Lean_Elab_Term_withTransparency___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; +uint8_t l___private_Lean_Elab_Term_12__isExplicit(lean_object*); extern lean_object* l_Lean_Meta_evalNat___main___closed__9; -lean_object* l_PersistentArray_foldlM___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__4; +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryLiftAndCoe___closed__6; lean_object* l_Lean_Elab_Term_savingMCtx___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_decLevel_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshFVarId___boxed(lean_object*); lean_object* l_Lean_Elab_Term_elabImplicitLambda___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Term_logTrace___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); @@ -637,29 +640,35 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabBadCDot(lean_object*); lean_object* l_Lean_Elab_Term_elabUsingElabFns___closed__3; lean_object* l_Lean_Elab_Term_elabTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_boolToExpr___lambda__1___closed__5; +uint8_t l___private_Lean_Elab_Term_14__isLambdaWithImplicit(lean_object*); +extern lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; extern lean_object* l_Lean_EnvExtension_setState___closed__1; lean_object* l_Lean_Elab_Term_liftLevelM___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__6; lean_object* l_Lean_Elab_Term_tryPostponeIfMVar___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_lift___at_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___spec__1(lean_object*); lean_object* l_Lean_Elab_Term_whnfCore(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadLog___lambda__4___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; +lean_object* l___private_Lean_Elab_Term_1__mkMessageAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resettingSynthInstanceCacheWhen___rarg(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Term_logTrace___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_4__hasCDot___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveGlobalName___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_3__fromMetaState___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; +lean_object* l_PersistentArray_foldlM___at___private_Lean_Elab_Term_3__fromMetaState___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabProp___closed__1; lean_object* l_Lean_Elab_Term_mkConst___closed__1; lean_object* l_Lean_Elab_Term_isExprMVarAssigned(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_whnf___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabHole___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; lean_object* l_Lean_Elab_Term_unfoldDefinition_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_evalNat___main___closed__8; lean_object* l_Lean_Elab_Term_mkExplicitBinder(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isDefEqNoConstantApprox___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSort(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_levelMVarToParam___lambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_16__mkAuxNameAux(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* l_Lean_Elab_Term_withMVarContext___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*); @@ -670,22 +679,19 @@ lean_object* l_Lean_Syntax_getPos(lean_object*); lean_object* l_Lean_Elab_Term_mkExpectedTypeHint___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabListLit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withIncRecDepth___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; +lean_object* l___private_Lean_Elab_Term_4__hasCDot___main___boxed(lean_object*); lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabQuotedName(lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__9; lean_object* l_Lean_Elab_Term_whnfForall(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; lean_object* l_Lean_Elab_Term_instantiateMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getDecLevel___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withFreshMacroScope___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_4__hasCDot___main___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_4__hasCDot___boxed(lean_object*); extern lean_object* l_Lean_TraceState_Inhabited___closed__1; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resetSynthInstanceCache___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Term_8__tryPureCoe_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getEnv(lean_object*); lean_object* l_Lean_Elab_Term_getOpenDecls(lean_object*, lean_object*); @@ -699,9 +705,7 @@ extern lean_object* l_Lean_prodToExpr___rarg___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_logDbgTrace(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isNameLit_x3f(lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_23__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Term_decLevel___closed__4; -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__12; lean_object* l_Lean_Meta_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___closed__3; @@ -709,8 +713,8 @@ extern lean_object* l_Lean_KernelException_toMessageData___closed__12; lean_object* l_Lean_Elab_Term_monadLog___closed__11; lean_object* l_Lean_Elab_Term_mkTacticMVar___closed__2; lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_18__elabCDot(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__1; +uint8_t l___private_Lean_Elab_Term_13__isExplicitApp(lean_object*); lean_object* l_Lean_Elab_Term_elabImplicitLambda___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Elab_Term_elabUsingElabFns___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__6; @@ -731,6 +735,7 @@ lean_object* l_Lean_Elab_Term_withoutMacroStackAtErr___rarg(lean_object*, lean_o lean_object* l_Lean_Elab_Term_resettingSynthInstanceCache___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkHole___closed__2; lean_object* l_Lean_Elab_Term_withLocalDecl(lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Term_22__mkConsts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveName___closed__2; extern lean_object* l_Lean_Expr_arrayLit_x3f___closed__2; lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabListLit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -739,12 +744,11 @@ lean_object* l_Lean_Elab_Term_mkPairs___boxed(lean_object*, lean_object*, lean_o lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__11; lean_object* l_Lean_Elab_Term_isDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_decLevel___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getLCtx___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Elab_Term_elabUsingElabFns___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__3; lean_object* l_Lean_Elab_Term_mkFreshLevelMVar___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabByTactic___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___boxed(lean_object*); lean_object* l_Lean_Elab_Term_ppGoal(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkExpectedTypeHint(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_setTraceState(lean_object*, lean_object*, lean_object*); @@ -753,9 +757,12 @@ lean_object* l_Lean_Elab_Term_mkPairs(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwErrorIfErrors(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Elab_Term_elabUsingElabFns___spec__3(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Term_monadLog___lambda__3(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_20__resolveLocalName___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_10__postponeElabTerm___closed__1; +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___closed__6; lean_object* l_Lean_Elab_Term_monadQuotation___closed__3; lean_object* l_Lean_Elab_Term_setEnv(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshLevelMVar___rarg(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_Lean_MetavarContext_Inhabited___closed__1; @@ -763,7 +770,7 @@ lean_object* l_Lean_Elab_Term_elabTacticBlock(lean_object*, lean_object*, lean_o extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Elab_Term_monadLog___lambda__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNum(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_3__fromMetaState(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_2__fromMetaException___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Unhygienic_run___rarg___closed__1; lean_object* l_Lean_mkNatLit(lean_object*); lean_object* l_Lean_mkStrLit(lean_object*); @@ -772,8 +779,8 @@ extern lean_object* l_Lean_MessageData_coeOfOptExpr___closed__1; extern lean_object* l_Lean_Parser_Term_listLit___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabTacticBlock___closed__1; uint8_t l_Lean_LocalInstance_beq(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1; uint8_t l_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* lean_compile_decl(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; lean_object* l_Lean_Elab_Term_elabRawCharLit___closed__1; @@ -781,48 +788,50 @@ lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resetSynthInstanceCache___boxed(lean_object*); lean_object* l_Lean_Elab_Term_decLevel___closed__2; +lean_object* l___private_Lean_Elab_Term_3__fromMetaState___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_decLevel___closed__1; +lean_object* l___private_Lean_Elab_Term_12__isExplicit___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___lambda__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Term_elabRawCharLit___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabChar___closed__1; uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__2; -lean_object* l___private_Init_Lean_Elab_Term_9__exceptionToSorry___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMCtx___boxed(lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Elab_Term_elabUsingElabFns___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_applyResult(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeFormer(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_22__mkConsts___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MetaHasEval___rarg___closed__3; +lean_object* l___private_Lean_Elab_Term_23__regTraceClasses(lean_object*); lean_object* l_Lean_Elab_Term_mkTacticMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabRawStrLit___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); extern lean_object* l_Lean_Elab_mkMacroAttribute___closed__2; uint8_t l_Array_isEqvAux___main___at_Lean_Elab_Term_withMVarContext___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1; extern lean_object* l_Lean_levelOne; lean_object* l_ReaderT_lift___at_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Message_toString(lean_object*); lean_object* l_Lean_Elab_Term_mkAuxName___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_char___elambda__1___closed__2; +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isLocalTermId_x3f(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MetaHasEval___rarg___closed__5; -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___closed__8; +lean_object* l___private_Lean_Elab_Term_23__regTraceClasses___closed__1; lean_object* l_Lean_Elab_Term_trace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabRawCharLit___closed__2; lean_object* l_Lean_Elab_Term_mkFreshInstanceName___boxed(lean_object*); +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2; lean_object* l_Lean_Elab_Term_resolveName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__6; +lean_object* l___private_Lean_Elab_Term_2__fromMetaException(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabArrayLit(lean_object*); lean_object* l_Lean_Elab_Term_resolveName___closed__1; lean_object* l_Lean_Elab_Term_mkAuxName___closed__1; @@ -833,9 +842,7 @@ extern lean_object* l_Lean_MessageData_Inhabited___closed__1; lean_object* l_Lean_Elab_Term_registerSyntheticMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withReducible___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureHasTypeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryLiftAndCoe___closed__5; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_uint32_to_nat(uint32_t); lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg___closed__1; @@ -844,7 +851,6 @@ lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg___boxed(lean_object* extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__4; extern lean_object* l_EStateM_MonadState___closed__2; extern lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_4__hasCDot___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getOptions___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBadCDot___closed__3; lean_object* l_Lean_Elab_Term_elabArrayLit___closed__5; @@ -854,23 +860,16 @@ lean_object* lean_name_mk_numeral(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkForall___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_monadLog; lean_object* l_Lean_Elab_Term_getMCtx___rarg(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlM___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_MonadMacroAdapter___closed__4; lean_object* l_Lean_Elab_Term_monadLog___closed__4; lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Term_22__mkConsts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_liftMetaM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrayLit___closed__7; -extern lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__3; -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__7; lean_object* l_Lean_Elab_Term_mkTermElabAttribute___closed__1; -lean_object* l___private_Init_Lean_Elab_Term_16__mkAuxNameAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshInstanceName___rarg___closed__2; lean_object* l_Lean_Elab_Term_elabTermWithoutImplicitLambdas___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_decLevel_x3f(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Term_13__isExplicitApp___boxed(lean_object*); lean_object* l_Lean_Elab_Term_monadLog___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isLocalTermId_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandCDot_x3f(lean_object*, lean_object*, lean_object*); @@ -878,6 +877,7 @@ extern lean_object* l_Lean_NameGenerator_Inhabited___closed__3; lean_object* l_Lean_Elab_Term_mkFreshTypeMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBadCDot(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_5__expandCDot(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkAuxName___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabStr___closed__1; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -970,7 +970,7 @@ return x_5; else { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; +x_6 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; return x_6; } } @@ -3721,8 +3721,8 @@ lean_object* _init_l_Lean_Elab_Term_logDbgTrace___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; -x_2 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__3; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_2 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -3936,7 +3936,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_dbgTrace___rarg), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Term_1__mkMessageAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { +lean_object* l___private_Lean_Elab_Term_1__mkMessageAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; @@ -3968,24 +3968,24 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Elab_Term_1__mkMessageAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_1__mkMessageAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_4); lean_dec(x_4); -x_6 = l___private_Init_Lean_Elab_Term_1__mkMessageAux(x_1, x_2, x_3, x_5); +x_6 = l___private_Lean_Elab_Term_1__mkMessageAux(x_1, x_2, x_3, x_5); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Term_2__fromMetaException(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Term_2__fromMetaException(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_4 = l_Lean_Meta_Exception_toMessageData(x_3); x_5 = 2; -x_6 = l___private_Init_Lean_Elab_Term_1__mkMessageAux(x_1, x_2, x_4, x_5); +x_6 = l___private_Lean_Elab_Term_1__mkMessageAux(x_1, x_2, x_4, x_5); x_7 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_7, 0, x_6); x_8 = lean_alloc_ctor(0, 1, 0); @@ -3993,16 +3993,16 @@ lean_ctor_set(x_8, 0, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Term_2__fromMetaException___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Term_2__fromMetaException___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Term_2__fromMetaException(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -4020,7 +4020,7 @@ else lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; x_9 = lean_array_fget(x_4, x_5); lean_inc(x_2); -x_10 = l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__2(x_1, x_2, x_9, x_6); +x_10 = l_PersistentArray_foldlMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__2(x_1, x_2, x_9, x_6); lean_dec(x_9); x_11 = lean_unsigned_to_nat(1u); x_12 = lean_nat_add(x_5, x_11); @@ -4031,7 +4031,7 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -4050,7 +4050,7 @@ lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_objec x_9 = lean_array_fget(x_4, x_5); x_10 = 0; lean_inc(x_2); -x_11 = l___private_Init_Lean_Elab_Term_1__mkMessageAux(x_2, x_1, x_9, x_10); +x_11 = l___private_Lean_Elab_Term_1__mkMessageAux(x_2, x_1, x_9, x_10); x_12 = l_PersistentArray_push___rarg(x_6, x_11); x_13 = lean_unsigned_to_nat(1u); x_14 = lean_nat_add(x_5, x_13); @@ -4061,7 +4061,7 @@ goto _start; } } } -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_3) == 0) @@ -4069,7 +4069,7 @@ if (lean_obj_tag(x_3) == 0) lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_3, 0); x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__3(x_1, x_2, x_5, x_5, x_6, x_4); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__3(x_1, x_2, x_5, x_5, x_6, x_4); return x_7; } else @@ -4077,12 +4077,12 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = lean_ctor_get(x_3, 0); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__4(x_1, x_2, x_8, x_8, x_9, x_4); +x_10 = l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__4(x_1, x_2, x_8, x_8, x_9, x_4); return x_10; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___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* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___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) { _start: { lean_object* x_7; uint8_t x_8; @@ -4101,7 +4101,7 @@ lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_objec x_9 = lean_array_fget(x_4, x_5); x_10 = 0; lean_inc(x_2); -x_11 = l___private_Init_Lean_Elab_Term_1__mkMessageAux(x_2, x_1, x_9, x_10); +x_11 = l___private_Lean_Elab_Term_1__mkMessageAux(x_2, x_1, x_9, x_10); x_12 = l_PersistentArray_push___rarg(x_6, x_11); x_13 = lean_unsigned_to_nat(1u); x_14 = lean_nat_add(x_5, x_13); @@ -4112,20 +4112,20 @@ goto _start; } } } -lean_object* l_PersistentArray_foldlM___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlM___at___private_Lean_Elab_Term_3__fromMetaState___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_5 = lean_ctor_get(x_3, 0); lean_inc(x_2); -x_6 = l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__2(x_1, x_2, x_5, x_4); +x_6 = l_PersistentArray_foldlMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__2(x_1, x_2, x_5, x_4); x_7 = lean_ctor_get(x_3, 1); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__5(x_1, x_2, x_3, x_7, x_8, x_6); +x_9 = l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__5(x_1, x_2, x_3, x_7, x_8, x_6); return x_9; } } -lean_object* l___private_Init_Lean_Elab_Term_3__fromMetaState(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_3__fromMetaState(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; @@ -4144,7 +4144,7 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; x_10 = lean_ctor_get(x_3, 2); x_11 = lean_ctor_get(x_3, 0); lean_dec(x_11); -x_12 = l_PersistentArray_foldlM___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__1(x_1, x_2, x_8, x_10); +x_12 = l_PersistentArray_foldlM___at___private_Lean_Elab_Term_3__fromMetaState___spec__1(x_1, x_2, x_8, x_10); lean_dec(x_8); lean_ctor_set(x_4, 4, x_5); lean_ctor_set(x_3, 2, x_12); @@ -4165,7 +4165,7 @@ lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_dec(x_3); -x_18 = l_PersistentArray_foldlM___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__1(x_1, x_2, x_8, x_14); +x_18 = l_PersistentArray_foldlM___at___private_Lean_Elab_Term_3__fromMetaState___spec__1(x_1, x_2, x_8, x_14); lean_dec(x_8); lean_ctor_set(x_4, 4, x_5); x_19 = lean_alloc_ctor(0, 6, 0); @@ -4219,7 +4219,7 @@ if (lean_is_exclusive(x_3)) { lean_dec_ref(x_3); x_32 = lean_box(0); } -x_33 = l_PersistentArray_foldlM___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__1(x_1, x_2, x_26, x_28); +x_33 = l_PersistentArray_foldlM___at___private_Lean_Elab_Term_3__fromMetaState___spec__1(x_1, x_2, x_26, x_28); lean_dec(x_26); x_34 = lean_alloc_ctor(0, 6, 0); lean_ctor_set(x_34, 0, x_20); @@ -4243,64 +4243,64 @@ return x_35; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___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* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___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: { lean_object* x_7; -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_7; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___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) { _start: { lean_object* x_7; -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__4(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__4(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_7; } } -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___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_PersistentArray_foldlMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__2(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_foldlMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_1); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___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* l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___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) { _start: { lean_object* x_7; -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__5(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Elab_Term_3__fromMetaState___spec__5(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_7; } } -lean_object* l_PersistentArray_foldlM___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlM___at___private_Lean_Elab_Term_3__fromMetaState___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_PersistentArray_foldlM___at___private_Init_Lean_Elab_Term_3__fromMetaState___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_foldlM___at___private_Lean_Elab_Term_3__fromMetaState___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Term_3__fromMetaState___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_3__fromMetaState___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } @@ -4329,7 +4329,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -4341,7 +4341,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -4358,8 +4358,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -4373,8 +4373,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -4424,7 +4424,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -4450,8 +4450,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -4502,7 +4502,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -4514,7 +4514,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -4560,7 +4560,7 @@ if (lean_is_exclusive(x_27)) { lean_dec_ref(x_27); x_30 = lean_box(0); } -x_31 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_29, x_22); +x_31 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_29, x_22); if (lean_is_scalar(x_30)) { x_32 = lean_alloc_ctor(0, 2, 0); } else { @@ -4605,7 +4605,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -4617,7 +4617,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -4634,8 +4634,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -4649,8 +4649,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -4700,7 +4700,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -4726,8 +4726,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -4773,7 +4773,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -4785,7 +4785,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -4802,8 +4802,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -4817,8 +4817,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -4868,7 +4868,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -4894,8 +4894,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -4954,7 +4954,7 @@ if (x_16 == 0) { lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_15, 1); -x_18 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_17, x_8); +x_18 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_17, x_8); lean_ctor_set(x_15, 1, x_18); return x_15; } @@ -4966,7 +4966,7 @@ x_20 = lean_ctor_get(x_15, 1); lean_inc(x_20); lean_inc(x_19); lean_dec(x_15); -x_21 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_20, x_8); +x_21 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_20, x_8); x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_19); lean_ctor_set(x_22, 1, x_21); @@ -4983,8 +4983,8 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; x_24 = lean_ctor_get(x_15, 0); x_25 = lean_ctor_get(x_15, 1); lean_inc(x_4); -x_26 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); -x_27 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); +x_26 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); +x_27 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); lean_ctor_set(x_15, 1, x_27); lean_ctor_set(x_15, 0, x_26); return x_15; @@ -4998,8 +4998,8 @@ lean_inc(x_29); lean_inc(x_28); lean_dec(x_15); lean_inc(x_4); -x_30 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_28); -x_31 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_29, x_8); +x_30 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_28); +x_31 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_29, x_8); x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); @@ -5044,7 +5044,7 @@ if (lean_is_exclusive(x_40)) { lean_dec_ref(x_40); x_43 = lean_box(0); } -x_44 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_42, x_8); +x_44 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_42, x_8); if (lean_is_scalar(x_43)) { x_45 = lean_alloc_ctor(0, 2, 0); } else { @@ -5070,8 +5070,8 @@ if (lean_is_exclusive(x_40)) { x_48 = lean_box(0); } lean_inc(x_4); -x_49 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_46); -x_50 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_47, x_8); +x_49 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_46); +x_50 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_47, x_8); if (lean_is_scalar(x_48)) { x_51 = lean_alloc_ctor(1, 2, 0); } else { @@ -5146,7 +5146,7 @@ if (lean_is_exclusive(x_66)) { lean_dec_ref(x_66); x_69 = lean_box(0); } -x_70 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_68, x_8); +x_70 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_68, x_8); if (lean_is_scalar(x_69)) { x_71 = lean_alloc_ctor(0, 2, 0); } else { @@ -5172,8 +5172,8 @@ if (lean_is_exclusive(x_66)) { x_74 = lean_box(0); } lean_inc(x_4); -x_75 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_72); -x_76 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_73, x_8); +x_75 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_72); +x_76 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_73, x_8); if (lean_is_scalar(x_74)) { x_77 = lean_alloc_ctor(1, 2, 0); } else { @@ -5285,7 +5285,7 @@ if (lean_is_exclusive(x_102)) { lean_dec_ref(x_102); x_105 = lean_box(0); } -x_106 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_104, x_82); +x_106 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_104, x_82); if (lean_is_scalar(x_105)) { x_107 = lean_alloc_ctor(0, 2, 0); } else { @@ -5311,8 +5311,8 @@ if (lean_is_exclusive(x_102)) { x_110 = lean_box(0); } lean_inc(x_4); -x_111 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_108); -x_112 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_109, x_82); +x_111 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_108); +x_112 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_109, x_82); if (lean_is_scalar(x_110)) { x_113 = lean_alloc_ctor(1, 2, 0); } else { @@ -5372,7 +5372,7 @@ if (x_16 == 0) { lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_15, 1); -x_18 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_17, x_8); +x_18 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_17, x_8); lean_ctor_set(x_15, 1, x_18); return x_15; } @@ -5384,7 +5384,7 @@ x_20 = lean_ctor_get(x_15, 1); lean_inc(x_20); lean_inc(x_19); lean_dec(x_15); -x_21 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_20, x_8); +x_21 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_20, x_8); x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_19); lean_ctor_set(x_22, 1, x_21); @@ -5401,8 +5401,8 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; x_24 = lean_ctor_get(x_15, 0); x_25 = lean_ctor_get(x_15, 1); lean_inc(x_4); -x_26 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); -x_27 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); +x_26 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); +x_27 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); lean_ctor_set(x_15, 1, x_27); lean_ctor_set(x_15, 0, x_26); return x_15; @@ -5416,8 +5416,8 @@ lean_inc(x_29); lean_inc(x_28); lean_dec(x_15); lean_inc(x_4); -x_30 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_28); -x_31 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_29, x_8); +x_30 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_28); +x_31 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_29, x_8); x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); @@ -5461,7 +5461,7 @@ if (lean_is_exclusive(x_39)) { lean_dec_ref(x_39); x_42 = lean_box(0); } -x_43 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_41, x_8); +x_43 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_41, x_8); if (lean_is_scalar(x_42)) { x_44 = lean_alloc_ctor(0, 2, 0); } else { @@ -5487,8 +5487,8 @@ if (lean_is_exclusive(x_39)) { x_47 = lean_box(0); } lean_inc(x_4); -x_48 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_45); -x_49 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_46, x_8); +x_48 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_45); +x_49 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_46, x_8); if (lean_is_scalar(x_47)) { x_50 = lean_alloc_ctor(1, 2, 0); } else { @@ -5562,7 +5562,7 @@ if (lean_is_exclusive(x_64)) { lean_dec_ref(x_64); x_67 = lean_box(0); } -x_68 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_66, x_8); +x_68 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_66, x_8); if (lean_is_scalar(x_67)) { x_69 = lean_alloc_ctor(0, 2, 0); } else { @@ -5588,8 +5588,8 @@ if (lean_is_exclusive(x_64)) { x_72 = lean_box(0); } lean_inc(x_4); -x_73 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_70); -x_74 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_71, x_8); +x_73 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_70); +x_74 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_71, x_8); if (lean_is_scalar(x_72)) { x_75 = lean_alloc_ctor(1, 2, 0); } else { @@ -5700,7 +5700,7 @@ if (lean_is_exclusive(x_99)) { lean_dec_ref(x_99); x_102 = lean_box(0); } -x_103 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_101, x_80); +x_103 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_101, x_80); if (lean_is_scalar(x_102)) { x_104 = lean_alloc_ctor(0, 2, 0); } else { @@ -5726,8 +5726,8 @@ if (lean_is_exclusive(x_99)) { x_107 = lean_box(0); } lean_inc(x_4); -x_108 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_105); -x_109 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_106, x_80); +x_108 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_105); +x_109 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_106, x_80); if (lean_is_scalar(x_107)) { x_110 = lean_alloc_ctor(1, 2, 0); } else { @@ -5773,7 +5773,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -5785,7 +5785,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -5802,8 +5802,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -5817,8 +5817,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -5868,7 +5868,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -5894,8 +5894,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -5941,7 +5941,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -5953,7 +5953,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -5970,8 +5970,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -5985,8 +5985,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -6036,7 +6036,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -6062,8 +6062,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -6109,7 +6109,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -6121,7 +6121,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -6138,8 +6138,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -6153,8 +6153,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -6204,7 +6204,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -6230,8 +6230,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -6277,7 +6277,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -6289,7 +6289,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -6306,8 +6306,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -6321,8 +6321,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -6372,7 +6372,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -6398,8 +6398,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -6445,7 +6445,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -6457,7 +6457,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -6474,8 +6474,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -6489,8 +6489,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -6540,7 +6540,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -6566,8 +6566,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -6611,7 +6611,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -6623,7 +6623,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -6670,7 +6670,7 @@ if (lean_is_exclusive(x_27)) { lean_dec_ref(x_27); x_30 = lean_box(0); } -x_31 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_29, x_22); +x_31 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_29, x_22); if (lean_is_scalar(x_30)) { x_32 = lean_alloc_ctor(0, 2, 0); } else { @@ -6715,7 +6715,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -6727,7 +6727,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -6744,8 +6744,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -6759,8 +6759,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -6810,7 +6810,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -6836,8 +6836,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -6878,7 +6878,7 @@ if (x_9 == 0) { lean_object* x_10; lean_object* x_11; x_10 = lean_ctor_get(x_8, 1); -x_11 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_2, x_3, x_10, x_6); +x_11 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_2, x_3, x_10, x_6); lean_ctor_set(x_8, 1, x_11); return x_8; } @@ -6890,7 +6890,7 @@ x_13 = lean_ctor_get(x_8, 1); lean_inc(x_13); lean_inc(x_12); lean_dec(x_8); -x_14 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_2, x_3, x_13, x_6); +x_14 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_2, x_3, x_13, x_6); x_15 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_15, 0, x_12); lean_ctor_set(x_15, 1, x_14); @@ -6934,7 +6934,7 @@ if (lean_is_exclusive(x_24)) { lean_dec_ref(x_24); x_27 = lean_box(0); } -x_28 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_2, x_3, x_26, x_20); +x_28 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_2, x_3, x_26, x_20); if (lean_is_scalar(x_27)) { x_29 = lean_alloc_ctor(0, 2, 0); } else { @@ -6994,7 +6994,7 @@ if (x_22 == 0) { lean_object* x_23; lean_object* x_24; x_23 = lean_ctor_get(x_21, 1); -x_24 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_23, x_9); +x_24 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_23, x_9); lean_ctor_set(x_21, 1, x_24); return x_21; } @@ -7006,7 +7006,7 @@ x_26 = lean_ctor_get(x_21, 1); lean_inc(x_26); lean_inc(x_25); lean_dec(x_21); -x_27 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_26, x_9); +x_27 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_26, x_9); x_28 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_28, 0, x_25); lean_ctor_set(x_28, 1, x_27); @@ -7068,7 +7068,7 @@ if (lean_is_exclusive(x_47)) { lean_dec_ref(x_47); x_50 = lean_box(0); } -x_51 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_49, x_33); +x_51 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_49, x_33); if (lean_is_scalar(x_50)) { x_52 = lean_alloc_ctor(0, 2, 0); } else { @@ -7102,7 +7102,7 @@ if (x_60 == 0) { lean_object* x_61; lean_object* x_62; x_61 = lean_ctor_get(x_59, 1); -x_62 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_61, x_56); +x_62 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_61, x_56); lean_ctor_set(x_59, 1, x_62); return x_59; } @@ -7114,7 +7114,7 @@ x_64 = lean_ctor_get(x_59, 1); lean_inc(x_64); lean_inc(x_63); lean_dec(x_59); -x_65 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_64, x_56); +x_65 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_64, x_56); x_66 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_66, 0, x_63); lean_ctor_set(x_66, 1, x_65); @@ -7160,7 +7160,7 @@ if (lean_is_exclusive(x_76)) { lean_dec_ref(x_76); x_79 = lean_box(0); } -x_80 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_78, x_71); +x_80 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_5, x_6, x_78, x_71); if (lean_is_scalar(x_79)) { x_81 = lean_alloc_ctor(0, 2, 0); } else { @@ -7212,7 +7212,7 @@ if (x_16 == 0) { lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_15, 1); -x_18 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_17, x_8); +x_18 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_17, x_8); lean_ctor_set(x_15, 1, x_18); return x_15; } @@ -7224,7 +7224,7 @@ x_20 = lean_ctor_get(x_15, 1); lean_inc(x_20); lean_inc(x_19); lean_dec(x_15); -x_21 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_20, x_8); +x_21 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_20, x_8); x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_19); lean_ctor_set(x_22, 1, x_21); @@ -7277,7 +7277,7 @@ if (lean_is_exclusive(x_36)) { lean_dec_ref(x_36); x_39 = lean_box(0); } -x_40 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_38, x_27); +x_40 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_38, x_27); if (lean_is_scalar(x_39)) { x_41 = lean_alloc_ctor(0, 2, 0); } else { @@ -7324,7 +7324,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -7336,7 +7336,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -7353,8 +7353,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -7368,8 +7368,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -7419,7 +7419,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -7445,8 +7445,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -7492,7 +7492,7 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_11, 1); -x_14 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); +x_14 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); lean_ctor_set(x_11, 1, x_14); return x_11; } @@ -7504,7 +7504,7 @@ x_16 = lean_ctor_get(x_11, 1); lean_inc(x_16); lean_inc(x_15); lean_dec(x_11); -x_17 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); +x_17 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_15); lean_ctor_set(x_18, 1, x_17); @@ -7521,8 +7521,8 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_20 = lean_ctor_get(x_11, 0); x_21 = lean_ctor_get(x_11, 1); lean_inc(x_4); -x_22 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); -x_23 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); +x_22 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); +x_23 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); lean_ctor_set(x_11, 1, x_23); lean_ctor_set(x_11, 0, x_22); return x_11; @@ -7536,8 +7536,8 @@ lean_inc(x_25); lean_inc(x_24); lean_dec(x_11); lean_inc(x_4); -x_26 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); -x_27 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); +x_26 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); +x_27 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -7587,7 +7587,7 @@ if (lean_is_exclusive(x_38)) { lean_dec_ref(x_38); x_41 = lean_box(0); } -x_42 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); +x_42 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); if (lean_is_scalar(x_41)) { x_43 = lean_alloc_ctor(0, 2, 0); } else { @@ -7613,8 +7613,8 @@ if (lean_is_exclusive(x_38)) { x_46 = lean_box(0); } lean_inc(x_4); -x_47 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); -x_48 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); +x_47 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); +x_48 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); if (lean_is_scalar(x_46)) { x_49 = lean_alloc_ctor(1, 2, 0); } else { @@ -7660,7 +7660,7 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_11, 1); -x_14 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); +x_14 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); lean_ctor_set(x_11, 1, x_14); return x_11; } @@ -7672,7 +7672,7 @@ x_16 = lean_ctor_get(x_11, 1); lean_inc(x_16); lean_inc(x_15); lean_dec(x_11); -x_17 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); +x_17 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_15); lean_ctor_set(x_18, 1, x_17); @@ -7689,8 +7689,8 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_20 = lean_ctor_get(x_11, 0); x_21 = lean_ctor_get(x_11, 1); lean_inc(x_4); -x_22 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); -x_23 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); +x_22 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); +x_23 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); lean_ctor_set(x_11, 1, x_23); lean_ctor_set(x_11, 0, x_22); return x_11; @@ -7704,8 +7704,8 @@ lean_inc(x_25); lean_inc(x_24); lean_dec(x_11); lean_inc(x_4); -x_26 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); -x_27 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); +x_26 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); +x_27 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -7755,7 +7755,7 @@ if (lean_is_exclusive(x_38)) { lean_dec_ref(x_38); x_41 = lean_box(0); } -x_42 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); +x_42 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); if (lean_is_scalar(x_41)) { x_43 = lean_alloc_ctor(0, 2, 0); } else { @@ -7781,8 +7781,8 @@ if (lean_is_exclusive(x_38)) { x_46 = lean_box(0); } lean_inc(x_4); -x_47 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); -x_48 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); +x_47 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); +x_48 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); if (lean_is_scalar(x_46)) { x_49 = lean_alloc_ctor(1, 2, 0); } else { @@ -7828,7 +7828,7 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_11, 1); -x_14 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); +x_14 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); lean_ctor_set(x_11, 1, x_14); return x_11; } @@ -7840,7 +7840,7 @@ x_16 = lean_ctor_get(x_11, 1); lean_inc(x_16); lean_inc(x_15); lean_dec(x_11); -x_17 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); +x_17 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_15); lean_ctor_set(x_18, 1, x_17); @@ -7857,8 +7857,8 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_20 = lean_ctor_get(x_11, 0); x_21 = lean_ctor_get(x_11, 1); lean_inc(x_4); -x_22 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); -x_23 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); +x_22 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); +x_23 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); lean_ctor_set(x_11, 1, x_23); lean_ctor_set(x_11, 0, x_22); return x_11; @@ -7872,8 +7872,8 @@ lean_inc(x_25); lean_inc(x_24); lean_dec(x_11); lean_inc(x_4); -x_26 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); -x_27 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); +x_26 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); +x_27 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -7923,7 +7923,7 @@ if (lean_is_exclusive(x_38)) { lean_dec_ref(x_38); x_41 = lean_box(0); } -x_42 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); +x_42 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); if (lean_is_scalar(x_41)) { x_43 = lean_alloc_ctor(0, 2, 0); } else { @@ -7949,8 +7949,8 @@ if (lean_is_exclusive(x_38)) { x_46 = lean_box(0); } lean_inc(x_4); -x_47 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); -x_48 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); +x_47 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); +x_48 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); if (lean_is_scalar(x_46)) { x_49 = lean_alloc_ctor(1, 2, 0); } else { @@ -8015,7 +8015,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -8027,7 +8027,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -8044,8 +8044,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -8059,8 +8059,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -8110,7 +8110,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -8136,8 +8136,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -8183,7 +8183,7 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_11, 1); -x_14 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); +x_14 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); lean_ctor_set(x_11, 1, x_14); return x_11; } @@ -8195,7 +8195,7 @@ x_16 = lean_ctor_get(x_11, 1); lean_inc(x_16); lean_inc(x_15); lean_dec(x_11); -x_17 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); +x_17 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_15); lean_ctor_set(x_18, 1, x_17); @@ -8212,8 +8212,8 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_20 = lean_ctor_get(x_11, 0); x_21 = lean_ctor_get(x_11, 1); lean_inc(x_4); -x_22 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); -x_23 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); +x_22 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); +x_23 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); lean_ctor_set(x_11, 1, x_23); lean_ctor_set(x_11, 0, x_22); return x_11; @@ -8227,8 +8227,8 @@ lean_inc(x_25); lean_inc(x_24); lean_dec(x_11); lean_inc(x_4); -x_26 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); -x_27 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); +x_26 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); +x_27 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -8278,7 +8278,7 @@ if (lean_is_exclusive(x_38)) { lean_dec_ref(x_38); x_41 = lean_box(0); } -x_42 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); +x_42 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); if (lean_is_scalar(x_41)) { x_43 = lean_alloc_ctor(0, 2, 0); } else { @@ -8304,8 +8304,8 @@ if (lean_is_exclusive(x_38)) { x_46 = lean_box(0); } lean_inc(x_4); -x_47 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); -x_48 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); +x_47 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); +x_48 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); if (lean_is_scalar(x_46)) { x_49 = lean_alloc_ctor(1, 2, 0); } else { @@ -8352,7 +8352,7 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_11, 1); -x_14 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); +x_14 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_13, x_8); lean_ctor_set(x_11, 1, x_14); return x_11; } @@ -8364,7 +8364,7 @@ x_16 = lean_ctor_get(x_11, 1); lean_inc(x_16); lean_inc(x_15); lean_dec(x_11); -x_17 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); +x_17 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_16, x_8); x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_15); lean_ctor_set(x_18, 1, x_17); @@ -8381,8 +8381,8 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_20 = lean_ctor_get(x_11, 0); x_21 = lean_ctor_get(x_11, 1); lean_inc(x_4); -x_22 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); -x_23 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); +x_22 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_20); +x_23 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_21, x_8); lean_ctor_set(x_11, 1, x_23); lean_ctor_set(x_11, 0, x_22); return x_11; @@ -8396,8 +8396,8 @@ lean_inc(x_25); lean_inc(x_24); lean_dec(x_11); lean_inc(x_4); -x_26 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); -x_27 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); +x_26 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_24); +x_27 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_25, x_8); x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -8447,7 +8447,7 @@ if (lean_is_exclusive(x_38)) { lean_dec_ref(x_38); x_41 = lean_box(0); } -x_42 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); +x_42 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_40, x_33); if (lean_is_scalar(x_41)) { x_43 = lean_alloc_ctor(0, 2, 0); } else { @@ -8473,8 +8473,8 @@ if (lean_is_exclusive(x_38)) { x_46 = lean_box(0); } lean_inc(x_4); -x_47 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); -x_48 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); +x_47 = l___private_Lean_Elab_Term_2__fromMetaException(x_4, x_1, x_44); +x_48 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_4, x_5, x_45, x_33); if (lean_is_scalar(x_46)) { x_49 = lean_alloc_ctor(1, 2, 0); } else { @@ -8521,7 +8521,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_10, 1); -x_13 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); +x_13 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_12, x_7); lean_ctor_set(x_10, 1, x_13); return x_10; } @@ -8533,7 +8533,7 @@ x_15 = lean_ctor_get(x_10, 1); lean_inc(x_15); lean_inc(x_14); lean_dec(x_10); -x_16 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); +x_16 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_15, x_7); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); @@ -8550,8 +8550,8 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_10, 0); x_20 = lean_ctor_get(x_10, 1); lean_inc(x_3); -x_21 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); -x_22 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); +x_21 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_19); +x_22 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_20, x_7); lean_ctor_set(x_10, 1, x_22); lean_ctor_set(x_10, 0, x_21); return x_10; @@ -8565,8 +8565,8 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_10); lean_inc(x_3); -x_25 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); -x_26 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); +x_25 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_23); +x_26 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_24, x_7); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -8617,7 +8617,7 @@ if (lean_is_exclusive(x_37)) { lean_dec_ref(x_37); x_40 = lean_box(0); } -x_41 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); +x_41 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_39, x_32); if (lean_is_scalar(x_40)) { x_42 = lean_alloc_ctor(0, 2, 0); } else { @@ -8643,8 +8643,8 @@ if (lean_is_exclusive(x_37)) { x_45 = lean_box(0); } lean_inc(x_3); -x_46 = l___private_Init_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); -x_47 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); +x_46 = l___private_Lean_Elab_Term_2__fromMetaException(x_3, x_1, x_43); +x_47 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_3, x_4, x_44, x_32); if (lean_is_scalar(x_45)) { x_48 = lean_alloc_ctor(1, 2, 0); } else { @@ -10942,7 +10942,7 @@ lean_dec(x_1); return x_2; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_4__hasCDot___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_4__hasCDot___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -10958,7 +10958,7 @@ else { lean_object* x_7; uint8_t x_8; x_7 = lean_array_fget(x_2, x_4); -x_8 = l___private_Init_Lean_Elab_Term_4__hasCDot___main(x_7); +x_8 = l___private_Lean_Elab_Term_4__hasCDot___main(x_7); lean_dec(x_7); if (x_8 == 0) { @@ -10977,7 +10977,7 @@ return x_8; } } } -uint8_t l___private_Init_Lean_Elab_Term_4__hasCDot___main(lean_object* x_1) { +uint8_t l___private_Lean_Elab_Term_4__hasCDot___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -10997,7 +10997,7 @@ if (x_7 == 0) lean_object* x_8; lean_object* x_9; uint8_t x_10; x_8 = lean_array_get_size(x_3); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_4__hasCDot___main___spec__1(x_3, x_3, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_4__hasCDot___main___spec__1(x_3, x_3, x_8, x_9); lean_dec(x_8); return x_10; } @@ -11023,11 +11023,11 @@ return x_13; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_4__hasCDot___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_4__hasCDot___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_4__hasCDot___main___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_4__hasCDot___main___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -11035,35 +11035,35 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Term_4__hasCDot___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Term_4__hasCDot___main___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Term_4__hasCDot___main(x_1); +x_2 = l___private_Lean_Elab_Term_4__hasCDot___main(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Elab_Term_4__hasCDot(lean_object* x_1) { +uint8_t l___private_Lean_Elab_Term_4__hasCDot(lean_object* x_1) { _start: { uint8_t x_2; -x_2 = l___private_Init_Lean_Elab_Term_4__hasCDot___main(x_1); +x_2 = l___private_Lean_Elab_Term_4__hasCDot___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Term_4__hasCDot___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Term_4__hasCDot___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Term_4__hasCDot(x_1); +x_2 = l___private_Lean_Elab_Term_4__hasCDot(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Term_5__expandCDot___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Elab_Term_5__expandCDot___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -11092,7 +11092,7 @@ x_12 = lean_unsigned_to_nat(0u); x_13 = lean_array_fset(x_2, x_1, x_12); x_14 = x_11; lean_inc(x_4); -x_15 = l___private_Init_Lean_Elab_Term_5__expandCDot___main(x_14, x_3, x_4, x_5); +x_15 = l___private_Lean_Elab_Term_5__expandCDot___main(x_14, x_3, x_4, x_5); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -11145,7 +11145,7 @@ return x_28; } } } -lean_object* _init_l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Term_5__expandCDot___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -11154,13 +11154,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Term_5__expandCDot___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_IO_Prim_fopenFlags___closed__12; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__1; +x_3 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11168,7 +11168,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Term_5__expandCDot___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -11178,7 +11178,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_Term_5__expandCDot___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -11190,7 +11190,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_5__expandCDot___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_1) == 1) @@ -11220,7 +11220,7 @@ if (x_13 == 0) lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_14 = x_6; x_15 = lean_unsigned_to_nat(0u); -x_16 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Term_5__expandCDot___main___spec__1), 5, 2); +x_16 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Term_5__expandCDot___main___spec__1), 5, 2); lean_closure_set(x_16, 0, x_15); lean_closure_set(x_16, 1, x_14); x_17 = x_16; @@ -11327,11 +11327,11 @@ x_38 = lean_nat_add(x_4, x_37); x_39 = lean_ctor_get(x_3, 0); lean_inc(x_39); lean_dec(x_3); -x_40 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_40 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_41 = l_Lean_addMacroScope(x_39, x_40, x_4); x_42 = lean_box(0); x_43 = l_Lean_SourceInfo_inhabited___closed__1; -x_44 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +x_44 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; x_45 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_45, 0, x_43); lean_ctor_set(x_45, 1, x_44); @@ -11339,7 +11339,7 @@ lean_ctor_set(x_45, 2, x_41); lean_ctor_set(x_45, 3, x_42); x_46 = l_Array_empty___closed__1; x_47 = lean_array_push(x_46, x_45); -x_48 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_48 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_49 = lean_array_push(x_47, x_48); x_50 = l_Lean_mkTermIdFromIdent___closed__2; lean_ctor_set(x_1, 1, x_49); @@ -11366,7 +11366,7 @@ if (x_55 == 0) lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; x_56 = x_6; x_57 = lean_unsigned_to_nat(0u); -x_58 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Term_5__expandCDot___main___spec__1), 5, 2); +x_58 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Elab_Term_5__expandCDot___main___spec__1), 5, 2); lean_closure_set(x_58, 0, x_57); lean_closure_set(x_58, 1, x_56); x_59 = x_58; @@ -11453,11 +11453,11 @@ x_75 = lean_nat_add(x_4, x_74); x_76 = lean_ctor_get(x_3, 0); lean_inc(x_76); lean_dec(x_3); -x_77 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_77 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_78 = l_Lean_addMacroScope(x_76, x_77, x_4); x_79 = lean_box(0); x_80 = l_Lean_SourceInfo_inhabited___closed__1; -x_81 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2; +x_81 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__2; x_82 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_82, 0, x_80); lean_ctor_set(x_82, 1, x_81); @@ -11465,7 +11465,7 @@ lean_ctor_set(x_82, 2, x_78); lean_ctor_set(x_82, 3, x_79); x_83 = l_Array_empty___closed__1; x_84 = lean_array_push(x_83, x_82); -x_85 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_85 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_86 = lean_array_push(x_84, x_85); x_87 = l_Lean_mkTermIdFromIdent___closed__2; x_88 = lean_alloc_ctor(1, 2, 0); @@ -11512,11 +11512,11 @@ return x_95; } } } -lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_5__expandCDot(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Term_5__expandCDot___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Term_5__expandCDot___main(x_1, x_2, x_3, x_4); return x_5; } } @@ -11558,7 +11558,7 @@ lean_object* l_Lean_Elab_Term_expandCDot_x3f(lean_object* x_1, lean_object* x_2, _start: { uint8_t x_4; -x_4 = l___private_Init_Lean_Elab_Term_4__hasCDot___main(x_1); +x_4 = l___private_Lean_Elab_Term_4__hasCDot___main(x_1); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; @@ -11574,7 +11574,7 @@ else { lean_object* x_7; lean_object* x_8; x_7 = l_Array_empty___closed__1; -x_8 = l___private_Init_Lean_Elab_Term_5__expandCDot___main(x_1, x_7, x_2, x_3); +x_8 = l___private_Lean_Elab_Term_5__expandCDot___main(x_1, x_7, x_2, x_3); if (lean_obj_tag(x_8) == 0) { uint8_t x_9; @@ -13876,7 +13876,7 @@ return x_100; } } } -lean_object* l___private_Init_Lean_Elab_Term_6__isTypeApp_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_6__isTypeApp_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -14439,16 +14439,16 @@ return x_140; } } } -lean_object* l___private_Init_Lean_Elab_Term_6__isTypeApp_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_6__isTypeApp_x3f___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___private_Init_Lean_Elab_Term_6__isTypeApp_x3f(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Term_6__isTypeApp_x3f(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__1() { +lean_object* _init_l___private_Lean_Elab_Term_7__isMonad_x3f___closed__1() { _start: { lean_object* x_1; @@ -14456,17 +14456,17 @@ x_1 = lean_mk_string("Monad"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__2() { +lean_object* _init_l___private_Lean_Elab_Term_7__isMonad_x3f___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_Lean_Elab_Term_7__isMonad_x3f___closed__1; +x_2 = l___private_Lean_Elab_Term_7__isMonad_x3f___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Term_7__isMonad_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_7__isMonad_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -14541,7 +14541,7 @@ lean_dec(x_25); x_29 = l_Lean_mkOptionalNode___closed__2; lean_inc(x_27); x_30 = lean_array_push(x_29, x_27); -x_31 = l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__2; +x_31 = l___private_Lean_Elab_Term_7__isMonad_x3f___closed__2; lean_inc(x_3); x_32 = l_Lean_Elab_Term_mkAppM(x_1, x_31, x_30, x_3, x_26); lean_dec(x_30); @@ -14802,7 +14802,7 @@ lean_dec(x_86); x_90 = l_Lean_mkOptionalNode___closed__2; lean_inc(x_88); x_91 = lean_array_push(x_90, x_88); -x_92 = l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__2; +x_92 = l___private_Lean_Elab_Term_7__isMonad_x3f___closed__2; lean_inc(x_3); x_93 = l_Lean_Elab_Term_mkAppM(x_1, x_92, x_91, x_3, x_87); lean_dec(x_91); @@ -15070,7 +15070,7 @@ lean_dec(x_144); x_148 = l_Lean_mkOptionalNode___closed__2; lean_inc(x_146); x_149 = lean_array_push(x_148, x_146); -x_150 = l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__2; +x_150 = l___private_Lean_Elab_Term_7__isMonad_x3f___closed__2; lean_inc(x_3); x_151 = l_Lean_Elab_Term_mkAppM(x_1, x_150, x_149, x_3, x_145); lean_dec(x_149); @@ -15255,11 +15255,11 @@ return x_181; } } } -lean_object* l___private_Init_Lean_Elab_Term_7__isMonad_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_7__isMonad_x3f___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___private_Init_Lean_Elab_Term_7__isMonad_x3f(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Term_7__isMonad_x3f(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -15402,7 +15402,7 @@ lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Term_8__tryPureCoe_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Term_8__tryPureCoe_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -15451,7 +15451,7 @@ if (x_22 == 0) lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; x_23 = lean_ctor_get(x_21, 0); x_24 = lean_ctor_get(x_21, 1); -x_25 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_24, x_18); +x_25 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_24, x_18); lean_dec(x_1); x_26 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_26, 0, x_23); @@ -15467,7 +15467,7 @@ x_28 = lean_ctor_get(x_21, 1); lean_inc(x_28); lean_inc(x_27); lean_dec(x_21); -x_29 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_28, x_18); +x_29 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_28, x_18); lean_dec(x_1); x_30 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_30, 0, x_27); @@ -15487,7 +15487,7 @@ lean_object* x_33; lean_object* x_34; lean_object* x_35; x_33 = lean_ctor_get(x_21, 1); x_34 = lean_ctor_get(x_21, 0); lean_dec(x_34); -x_35 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_33, x_18); +x_35 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_33, x_18); lean_dec(x_1); lean_ctor_set_tag(x_21, 0); lean_ctor_set(x_21, 1, x_35); @@ -15500,7 +15500,7 @@ lean_object* x_36; lean_object* x_37; lean_object* x_38; x_36 = lean_ctor_get(x_21, 1); lean_inc(x_36); lean_dec(x_21); -x_37 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_36, x_18); +x_37 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_36, x_18); lean_dec(x_1); x_38 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_38, 0, x_12); @@ -15551,7 +15551,7 @@ if (lean_is_exclusive(x_48)) { lean_dec_ref(x_48); x_51 = lean_box(0); } -x_52 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_50, x_43); +x_52 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_50, x_43); lean_dec(x_1); x_53 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_53, 0, x_49); @@ -15577,7 +15577,7 @@ if (lean_is_exclusive(x_48)) { lean_dec_ref(x_48); x_56 = lean_box(0); } -x_57 = l___private_Init_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_55, x_43); +x_57 = l___private_Lean_Elab_Term_3__fromMetaState(x_1, x_6, x_14, x_55, x_43); lean_dec(x_1); if (lean_is_scalar(x_56)) { x_58 = lean_alloc_ctor(0, 2, 0); @@ -15729,7 +15729,7 @@ lean_inc(x_10); lean_dec(x_8); lean_inc(x_6); lean_inc(x_2); -x_11 = l___private_Init_Lean_Elab_Term_7__isMonad_x3f(x_1, x_2, x_6, x_10); +x_11 = l___private_Lean_Elab_Term_7__isMonad_x3f(x_1, x_2, x_6, x_10); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; @@ -15773,7 +15773,7 @@ lean_inc(x_9); lean_inc(x_21); lean_inc(x_17); lean_inc(x_1); -x_23 = l___private_Init_Lean_Elab_Term_8__tryPureCoe_x3f(x_1, x_17, x_21, x_9, x_4, x_6, x_22); +x_23 = l___private_Lean_Elab_Term_8__tryPureCoe_x3f(x_1, x_17, x_21, x_9, x_4, x_6, x_22); x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); if (lean_obj_tag(x_24) == 0) @@ -15784,7 +15784,7 @@ lean_inc(x_25); lean_dec(x_23); lean_inc(x_6); lean_inc(x_9); -x_26 = l___private_Init_Lean_Elab_Term_6__isTypeApp_x3f(x_1, x_9, x_6, x_25); +x_26 = l___private_Lean_Elab_Term_6__isTypeApp_x3f(x_1, x_9, x_6, x_25); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; @@ -15981,13 +15981,13 @@ x_87 = l_Lean_mkConst(x_86, x_85); x_88 = l_Lean_Parser_declareBuiltinParser___closed__8; lean_inc(x_33); x_89 = lean_array_push(x_88, x_33); -x_90 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; +x_90 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; x_91 = lean_array_push(x_89, x_90); lean_inc(x_21); x_92 = lean_array_push(x_91, x_21); x_93 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_92, x_92, x_69, x_87); lean_dec(x_92); -x_94 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3; +x_94 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__3; x_95 = 0; lean_inc(x_33); x_96 = l_Lean_mkForall(x_94, x_95, x_33, x_93); @@ -16656,7 +16656,7 @@ return x_15; } } } -lean_object* _init_l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1() { +lean_object* _init_l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -16666,7 +16666,7 @@ x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Term_9__exceptionToSorry(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_9__exceptionToSorry(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; @@ -16716,7 +16716,7 @@ lean_ctor_set(x_13, 0, x_10); lean_ctor_set(x_13, 1, x_12); x_14 = l_Lean_Expr_hasSorry___main___closed__1; x_15 = l_Lean_mkConst(x_14, x_13); -x_16 = l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1; +x_16 = l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1; x_17 = l_Lean_mkAppB(x_15, x_6, x_16); x_18 = lean_ctor_get(x_2, 4); lean_inc(x_18); @@ -16785,7 +16785,7 @@ lean_ctor_set(x_34, 0, x_31); lean_ctor_set(x_34, 1, x_33); x_35 = l_Lean_Expr_hasSorry___main___closed__1; x_36 = l_Lean_mkConst(x_35, x_34); -x_37 = l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1; +x_37 = l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1; x_38 = l_Lean_mkAppB(x_36, x_6, x_37); x_39 = lean_ctor_get(x_2, 4); lean_inc(x_39); @@ -16873,11 +16873,11 @@ return x_55; } } } -lean_object* l___private_Init_Lean_Elab_Term_9__exceptionToSorry___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_9__exceptionToSorry___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Term_9__exceptionToSorry(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Term_9__exceptionToSorry(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } @@ -16978,7 +16978,7 @@ lean_dec(x_1); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__1() { +lean_object* _init_l___private_Lean_Elab_Term_10__postponeElabTerm___closed__1() { _start: { lean_object* x_1; @@ -16986,17 +16986,17 @@ x_1 = lean_mk_string("postpone"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__2() { +lean_object* _init_l___private_Lean_Elab_Term_10__postponeElabTerm___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; -x_2 = l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_2 = l___private_Lean_Elab_Term_10__postponeElabTerm___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Term_10__postponeElabTerm(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_10__postponeElabTerm(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; @@ -17006,7 +17006,7 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec(x_20); -x_23 = l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__2; +x_23 = l___private_Lean_Elab_Term_10__postponeElabTerm___closed__2; x_24 = l_Lean_checkTraceOption(x_21, x_23); lean_dec(x_21); if (x_24 == 0) @@ -17020,7 +17020,7 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_inc(x_1); x_25 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_25, 0, x_1); -x_26 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_26 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_27 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -17100,7 +17100,7 @@ return x_18; } } } -lean_object* _init_l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1() { _start: { lean_object* x_1; @@ -17108,27 +17108,27 @@ x_1 = lean_mk_string("unexpected syntax"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1; +x_1 = l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2; +x_1 = l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { if (lean_obj_tag(x_5) == 0) @@ -17148,7 +17148,7 @@ x_12 = lean_unsigned_to_nat(2u); x_13 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_11); -x_14 = l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; +x_14 = l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3; x_15 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_13); @@ -17230,7 +17230,7 @@ lean_dec(x_19); x_28 = lean_ctor_get(x_21, 0); lean_inc(x_28); lean_dec(x_21); -x_29 = l___private_Init_Lean_Elab_Term_9__exceptionToSorry(x_2, x_28, x_3, x_6, x_27); +x_29 = l___private_Lean_Elab_Term_9__exceptionToSorry(x_2, x_28, x_3, x_6, x_27); lean_dec(x_2); return x_29; } @@ -17283,7 +17283,7 @@ else { lean_object* x_35; lean_dec(x_19); -x_35 = l___private_Init_Lean_Elab_Term_10__postponeElabTerm(x_2, x_3, x_6, x_1); +x_35 = l___private_Lean_Elab_Term_10__postponeElabTerm(x_2, x_3, x_6, x_1); return x_35; } } @@ -17291,31 +17291,31 @@ return x_35; } } } -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_4); lean_dec(x_4); -x_9 = l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main(x_1, x_2, x_3, x_8, x_5, x_6, x_7); +x_9 = l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main(x_1, x_2, x_3, x_8, x_5, x_6, x_7); return x_9; } } -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_4); lean_dec(x_4); -x_9 = l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux(x_1, x_2, x_3, x_8, x_5, x_6, x_7); +x_9 = l___private_Lean_Elab_Term_11__elabUsingElabFnsAux(x_1, x_2, x_3, x_8, x_5, x_6, x_7); return x_9; } } @@ -17644,7 +17644,7 @@ x_23 = lean_ctor_get(x_13, 0); lean_inc(x_23); lean_dec(x_13); lean_inc(x_5); -x_24 = l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main(x_5, x_1, x_2, x_3, x_23, x_4, x_5); +x_24 = l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main(x_5, x_1, x_2, x_3, x_23, x_4, x_5); return x_24; } } @@ -17911,7 +17911,7 @@ lean_dec(x_2); return x_4; } } -uint8_t l___private_Init_Lean_Elab_Term_12__isExplicit(lean_object* x_1) { +uint8_t l___private_Lean_Elab_Term_12__isExplicit(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; @@ -17939,16 +17939,16 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Elab_Term_12__isExplicit___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Term_12__isExplicit___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Term_12__isExplicit(x_1); +x_2 = l___private_Lean_Elab_Term_12__isExplicit(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Elab_Term_13__isExplicitApp(lean_object* x_1) { +uint8_t l___private_Lean_Elab_Term_13__isExplicitApp(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -17970,21 +17970,21 @@ lean_object* x_6; lean_object* x_7; uint8_t x_8; x_6 = lean_unsigned_to_nat(0u); x_7 = l_Lean_Syntax_getArg(x_1, x_6); lean_dec(x_1); -x_8 = l___private_Init_Lean_Elab_Term_12__isExplicit(x_7); +x_8 = l___private_Lean_Elab_Term_12__isExplicit(x_7); return x_8; } } } -lean_object* l___private_Init_Lean_Elab_Term_13__isExplicitApp___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Term_13__isExplicitApp___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Term_13__isExplicitApp(x_1); +x_2 = l___private_Lean_Elab_Term_13__isExplicitApp(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__1(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; @@ -18043,7 +18043,7 @@ return x_18; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2(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; @@ -18102,7 +18102,7 @@ return x_18; } } } -uint8_t l___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit(lean_object* x_1) { +uint8_t l___private_Lean_Elab_Term_14__isLambdaWithImplicit(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; @@ -18142,7 +18142,7 @@ lean_dec(x_11); x_13 = lean_array_get_size(x_12); x_14 = l_Lean_mkAppStx___closed__6; x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2(x_1, x_14, x_12, x_13, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2(x_1, x_14, x_12, x_13, x_15); lean_dec(x_13); lean_dec(x_12); lean_dec(x_1); @@ -18151,11 +18151,11 @@ return x_16; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___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* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); @@ -18163,11 +18163,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___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* l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Elab_Term_14__isLambdaWithImplicit___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); @@ -18175,11 +18175,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Term_14__isLambdaWithImplicit___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit(x_1); +x_2 = l___private_Lean_Elab_Term_14__isLambdaWithImplicit(x_1); x_3 = lean_box(x_2); return x_3; } @@ -18299,16 +18299,16 @@ _start: lean_object* x_2; uint8_t x_3; x_2 = l_Lean_Elab_Term_dropTermParens___main(x_1); lean_inc(x_2); -x_3 = l___private_Init_Lean_Elab_Term_12__isExplicit(x_2); +x_3 = l___private_Lean_Elab_Term_12__isExplicit(x_2); if (x_3 == 0) { uint8_t x_4; lean_inc(x_2); -x_4 = l___private_Init_Lean_Elab_Term_13__isExplicitApp(x_2); +x_4 = l___private_Lean_Elab_Term_13__isExplicitApp(x_2); if (x_4 == 0) { uint8_t x_5; -x_5 = l___private_Init_Lean_Elab_Term_14__isLambdaWithImplicit(x_2); +x_5 = l___private_Lean_Elab_Term_14__isLambdaWithImplicit(x_2); return x_5; } else @@ -18618,7 +18618,7 @@ lean_object* _init_l_Lean_Elab_Term_elabImplicitLambdaAux___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Elab_Term_elabImplicitLambdaAux___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -19288,7 +19288,7 @@ lean_inc(x_106); x_107 = lean_ctor_get(x_105, 1); lean_inc(x_107); lean_dec(x_105); -x_108 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; +x_108 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; x_109 = l_Lean_checkTraceOption(x_106, x_108); lean_dec(x_106); if (x_109 == 0) @@ -19686,7 +19686,7 @@ lean_inc(x_191); x_192 = lean_ctor_get(x_190, 1); lean_inc(x_192); lean_dec(x_190); -x_193 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; +x_193 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; x_194 = l_Lean_checkTraceOption(x_191, x_193); lean_dec(x_191); if (x_194 == 0) @@ -20185,7 +20185,7 @@ lean_inc(x_301); x_302 = lean_ctor_get(x_300, 1); lean_inc(x_302); lean_dec(x_300); -x_303 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; +x_303 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; x_304 = l_Lean_checkTraceOption(x_301, x_303); lean_dec(x_301); if (x_304 == 0) @@ -20725,7 +20725,7 @@ lean_inc(x_421); x_422 = lean_ctor_get(x_420, 1); lean_inc(x_422); lean_dec(x_420); -x_423 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; +x_423 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; x_424 = l_Lean_checkTraceOption(x_421, x_423); lean_dec(x_421); if (x_424 == 0) @@ -24029,7 +24029,7 @@ return x_29; } } } -lean_object* _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__1() { +lean_object* _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__1() { _start: { lean_object* x_1; @@ -24037,17 +24037,17 @@ x_1 = lean_mk_string("CoeSort"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__2() { +lean_object* _init_l___private_Lean_Elab_Term_15__tryCoeSort___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_Lean_Elab_Term_15__tryCoeSort___closed__1; +x_2 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__3() { +lean_object* _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -24057,21 +24057,21 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__4() { +lean_object* _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__3; +x_1 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__5() { +lean_object* _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__4; +x_1 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__4; x_2 = l_Lean_MessageData_ofList___closed__3; x_3 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -24079,7 +24079,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__6() { +lean_object* _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__6() { _start: { lean_object* x_1; @@ -24087,17 +24087,17 @@ x_1 = lean_mk_string("coeSort"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__7() { +lean_object* _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__6; +x_2 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort(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; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -24139,7 +24139,7 @@ lean_ctor_set(x_18, 1, x_17); x_19 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_19, 0, x_12); lean_ctor_set(x_19, 1, x_18); -x_20 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__2; +x_20 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__2; lean_inc(x_19); x_21 = l_Lean_mkConst(x_20, x_19); x_22 = l_Lean_mkAppStx___closed__9; @@ -24218,7 +24218,7 @@ lean_dec(x_2); x_63 = lean_ctor_get(x_60, 1); lean_inc(x_63); lean_dec(x_60); -x_64 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__4; +x_64 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__4; x_65 = l_Lean_Elab_Term_throwError___rarg(x_1, x_64, x_59, x_63); x_66 = lean_ctor_get(x_65, 0); lean_inc(x_66); @@ -24240,7 +24240,7 @@ if (x_68 == 0) lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; x_69 = lean_ctor_get(x_60, 0); lean_dec(x_69); -x_70 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__7; +x_70 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__7; x_71 = l_Lean_mkConst(x_70, x_19); x_72 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_73 = lean_array_push(x_72, x_2); @@ -24258,7 +24258,7 @@ lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean x_78 = lean_ctor_get(x_60, 1); lean_inc(x_78); lean_dec(x_60); -x_79 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__7; +x_79 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__7; x_80 = l_Lean_mkConst(x_79, x_19); x_81 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_82 = lean_array_push(x_81, x_2); @@ -24309,7 +24309,7 @@ lean_dec(x_35); x_37 = lean_ctor_get(x_36, 4); lean_inc(x_37); lean_dec(x_36); -x_38 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__5; +x_38 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__5; x_39 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); @@ -24319,7 +24319,7 @@ return x_40; else { lean_object* x_41; lean_object* x_42; -x_41 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__4; +x_41 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__4; x_42 = l_Lean_Elab_Term_throwError___rarg(x_1, x_41, x_4, x_34); return x_42; } @@ -24327,7 +24327,7 @@ return x_42; else { lean_object* x_43; lean_object* x_44; -x_43 = l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__4; +x_43 = l___private_Lean_Elab_Term_15__tryCoeSort___closed__4; x_44 = l_Lean_Elab_Term_throwError___rarg(x_1, x_43, x_4, x_34); return x_44; } @@ -24389,11 +24389,11 @@ return x_97; } } } -lean_object* l___private_Init_Lean_Elab_Term_15__tryCoeSort___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_15__tryCoeSort___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Term_15__tryCoeSort(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Term_15__tryCoeSort(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } @@ -24453,7 +24453,7 @@ 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 = l___private_Init_Lean_Elab_Term_15__tryCoeSort(x_1, x_10, x_2, x_3, x_19); +x_20 = l___private_Lean_Elab_Term_15__tryCoeSort(x_1, x_10, x_2, x_3, x_19); return x_20; } else @@ -24750,7 +24750,7 @@ lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Term_16__mkAuxNameAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Term_16__mkAuxNameAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -24778,11 +24778,11 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Term_16__mkAuxNameAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Term_16__mkAuxNameAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Term_16__mkAuxNameAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Term_16__mkAuxNameAux___main(x_1, x_2, x_3); return x_4; } } @@ -24847,7 +24847,7 @@ lean_dec(x_6); x_13 = l_Lean_Name_append___main(x_12, x_2); lean_dec(x_12); x_14 = lean_unsigned_to_nat(1u); -x_15 = l___private_Init_Lean_Elab_Term_16__mkAuxNameAux___main(x_11, x_13, x_14); +x_15 = l___private_Lean_Elab_Term_16__mkAuxNameAux___main(x_11, x_13, x_14); lean_ctor_set(x_5, 0, x_15); return x_5; } @@ -24865,7 +24865,7 @@ lean_dec(x_6); x_19 = l_Lean_Name_append___main(x_18, x_2); lean_dec(x_18); x_20 = lean_unsigned_to_nat(1u); -x_21 = l___private_Init_Lean_Elab_Term_16__mkAuxNameAux___main(x_16, x_19, x_20); +x_21 = l___private_Lean_Elab_Term_16__mkAuxNameAux___main(x_16, x_19, 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_17); @@ -25318,7 +25318,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__1() { +lean_object* _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__1() { _start: { lean_object* x_1; @@ -25326,22 +25326,22 @@ x_1 = lean_mk_string("Prod.mk"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__2() { +lean_object* _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__1; +x_1 = l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__3() { +lean_object* _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__1; +x_1 = l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__2; +x_3 = l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -25349,7 +25349,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4() { +lean_object* _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -25359,31 +25359,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__5() { +lean_object* _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4; +x_2 = l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__4; 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_object* _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__6() { +lean_object* _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__5; +x_2 = l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main(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; @@ -25411,11 +25411,11 @@ x_13 = lean_ctor_get(x_4, 1); lean_inc(x_13); x_14 = lean_ctor_get(x_4, 0); lean_inc(x_14); -x_15 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4; +x_15 = l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__4; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); x_17 = l_Lean_SourceInfo_inhabited___closed__1; -x_18 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__3; -x_19 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__6; +x_18 = l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__3; +x_19 = l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__6; x_20 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_20, 0, x_17); lean_ctor_set(x_20, 1, x_18); @@ -25423,7 +25423,7 @@ lean_ctor_set(x_20, 2, x_16); lean_ctor_set(x_20, 3, x_19); x_21 = l_Array_empty___closed__1; x_22 = lean_array_push(x_21, x_20); -x_23 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_23 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_24 = lean_array_push(x_22, x_23); x_25 = l_Lean_mkTermIdFromIdent___closed__2; x_26 = lean_alloc_ctor(1, 2, 0); @@ -25447,28 +25447,28 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Term_17__mkPairsAux___main(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Term_17__mkPairsAux___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Term_17__mkPairsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_17__mkPairsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Term_17__mkPairsAux(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Term_17__mkPairsAux(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } @@ -25482,7 +25482,7 @@ x_5 = lean_unsigned_to_nat(1u); x_6 = lean_nat_sub(x_4, x_5); lean_dec(x_4); x_7 = l_Array_back___at_Lean_Parser_checkStackTopFn___spec__1(x_1); -x_8 = l___private_Init_Lean_Elab_Term_17__mkPairsAux___main(x_1, x_6, x_7, x_2, x_3); +x_8 = l___private_Lean_Elab_Term_17__mkPairsAux___main(x_1, x_6, x_7, x_2, x_3); return x_8; } } @@ -25495,7 +25495,7 @@ lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Term_18__elabCDot(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_18__elabCDot(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_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; @@ -26046,7 +26046,7 @@ else { lean_object* x_53; lean_dec(x_1); -x_53 = l___private_Init_Lean_Elab_Term_18__elabCDot(x_41, x_2, x_3, x_4); +x_53 = l___private_Lean_Elab_Term_18__elabCDot(x_41, x_2, x_3, x_4); return x_53; } } @@ -26133,7 +26133,7 @@ x_112 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_112, 0, x_110); lean_inc(x_3); lean_inc(x_112); -x_113 = l___private_Init_Lean_Elab_Term_18__elabCDot(x_41, x_112, x_3, x_111); +x_113 = l___private_Lean_Elab_Term_18__elabCDot(x_41, x_112, x_3, x_111); if (lean_obj_tag(x_113) == 0) { lean_object* x_114; lean_object* x_115; lean_object* x_116; @@ -26676,7 +26676,7 @@ lean_ctor_set(x_22, 2, x_18); lean_ctor_set(x_22, 3, x_21); x_23 = l_Array_empty___closed__1; x_24 = lean_array_push(x_23, x_22); -x_25 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_25 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_26 = lean_array_push(x_24, x_25); x_27 = l_Lean_mkTermIdFromIdent___closed__2; x_28 = lean_alloc_ctor(1, 2, 0); @@ -26799,7 +26799,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Term_19__resolveLocalNameAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Term_19__resolveLocalNameAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -26869,15 +26869,15 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Elab_Term_19__resolveLocalNameAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Term_19__resolveLocalNameAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Term_19__resolveLocalNameAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Term_19__resolveLocalNameAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Term_20__resolveLocalName(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Term_20__resolveLocalName(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -26888,7 +26888,7 @@ if (x_5 == 0) lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = lean_ctor_get(x_4, 0); x_7 = lean_box(0); -x_8 = l___private_Init_Lean_Elab_Term_19__resolveLocalNameAux___main(x_6, x_1, x_7); +x_8 = l___private_Lean_Elab_Term_19__resolveLocalNameAux___main(x_6, x_1, x_7); lean_ctor_set(x_4, 0, x_8); return x_4; } @@ -26901,7 +26901,7 @@ lean_inc(x_10); lean_inc(x_9); lean_dec(x_4); x_11 = lean_box(0); -x_12 = l___private_Init_Lean_Elab_Term_19__resolveLocalNameAux___main(x_9, x_1, x_11); +x_12 = l___private_Lean_Elab_Term_19__resolveLocalNameAux___main(x_9, x_1, 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); @@ -26909,11 +26909,11 @@ return x_13; } } } -lean_object* l___private_Init_Lean_Elab_Term_20__resolveLocalName___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Term_20__resolveLocalName___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Term_20__resolveLocalName(x_1, x_2, x_3); +x_4 = l___private_Lean_Elab_Term_20__resolveLocalName(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -26947,7 +26947,7 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; x_10 = lean_ctor_get(x_9, 2); lean_inc(x_10); lean_dec(x_9); -x_11 = l___private_Init_Lean_Elab_Term_20__resolveLocalName(x_10, x_3, x_4); +x_11 = l___private_Lean_Elab_Term_20__resolveLocalName(x_10, x_3, x_4); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); if (lean_obj_tag(x_12) == 0) @@ -27134,7 +27134,7 @@ lean_dec(x_3); return x_6; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -27173,32 +27173,32 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_21__mkFreshLevelMVars(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 = lean_box(0); lean_inc(x_2); -x_6 = l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1(x_1, x_2, x_2, x_5, x_3, x_4); +x_6 = l_Nat_foldMAux___main___at___private_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1(x_1, x_2, x_2, x_5, x_3, x_4); lean_dec(x_2); return x_6; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Elab_Term_21__mkFreshLevelMVars___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_Nat_foldMAux___main___at___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Nat_foldMAux___main___at___private_Lean_Elab_Term_21__mkFreshLevelMVars___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Term_21__mkFreshLevelMVars___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___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Term_21__mkFreshLevelMVars(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -27319,7 +27319,7 @@ lean_object* x_22; lean_object* x_23; uint8_t x_24; x_22 = lean_nat_sub(x_19, x_20); lean_dec(x_20); lean_dec(x_19); -x_23 = l___private_Init_Lean_Elab_Term_21__mkFreshLevelMVars(x_1, x_22, x_4, x_8); +x_23 = l___private_Lean_Elab_Term_21__mkFreshLevelMVars(x_1, x_22, x_4, x_8); x_24 = !lean_is_exclusive(x_23); if (x_24 == 0) { @@ -27369,7 +27369,7 @@ lean_dec(x_1); return x_6; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Term_22__mkConsts___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Term_22__mkConsts___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: { if (lean_obj_tag(x_4) == 0) @@ -27587,7 +27587,7 @@ return x_48; } } } -lean_object* l___private_Init_Lean_Elab_Term_22__mkConsts(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_22__mkConsts(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; @@ -27596,24 +27596,24 @@ x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_dec(x_6); x_8 = lean_box(0); -x_9 = l_List_foldlM___main___at___private_Init_Lean_Elab_Term_22__mkConsts___spec__1(x_1, x_3, x_8, x_2, x_4, x_7); +x_9 = l_List_foldlM___main___at___private_Lean_Elab_Term_22__mkConsts___spec__1(x_1, x_3, x_8, x_2, x_4, x_7); return x_9; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Term_22__mkConsts___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_List_foldlM___main___at___private_Lean_Elab_Term_22__mkConsts___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_List_foldlM___main___at___private_Init_Lean_Elab_Term_22__mkConsts___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_List_foldlM___main___at___private_Lean_Elab_Term_22__mkConsts___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Term_22__mkConsts___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Term_22__mkConsts___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Term_22__mkConsts(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Elab_Term_22__mkConsts(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } @@ -27760,7 +27760,7 @@ _start: { lean_object* x_7; lean_object* x_8; lean_inc(x_2); -x_7 = l___private_Init_Lean_Elab_Term_20__resolveLocalName(x_2, x_5, x_6); +x_7 = l___private_Lean_Elab_Term_20__resolveLocalName(x_2, x_5, x_6); x_8 = lean_ctor_get(x_7, 0); lean_inc(x_8); if (lean_obj_tag(x_8) == 0) @@ -27774,7 +27774,7 @@ if (x_10 == 0) { lean_object* x_11; lean_dec(x_2); -x_11 = l___private_Init_Lean_Elab_Term_22__mkConsts(x_1, x_3, x_4, x_5, x_9); +x_11 = l___private_Lean_Elab_Term_22__mkConsts(x_1, x_3, x_4, x_5, x_9); return x_11; } else @@ -27793,7 +27793,7 @@ if (x_15 == 0) { lean_object* x_16; lean_dec(x_2); -x_16 = l___private_Init_Lean_Elab_Term_22__mkConsts(x_1, x_13, x_4, x_5, x_14); +x_16 = l___private_Lean_Elab_Term_22__mkConsts(x_1, x_13, x_4, x_5, x_14); return x_16; } else @@ -28843,7 +28843,7 @@ x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); lean_dec(x_36); x_38 = l_Lean_Elab_Term_MetaHasEval___rarg___closed__2; -x_39 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_38, x_35, x_6); +x_39 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_38, x_35, x_6); lean_dec(x_35); if (lean_obj_tag(x_39) == 0) { @@ -28915,7 +28915,7 @@ x_55 = l_Lean_Format_pretty(x_53, x_54); x_56 = lean_alloc_ctor(18, 1, 0); lean_ctor_set(x_56, 0, x_55); x_57 = l_Lean_Elab_Term_MetaHasEval___rarg___closed__2; -x_58 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_57, x_51, x_6); +x_58 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_57, x_51, x_6); lean_dec(x_51); if (lean_obj_tag(x_58) == 0) { @@ -28976,7 +28976,7 @@ x_68 = lean_ctor_get(x_67, 2); lean_inc(x_68); lean_dec(x_67); x_69 = l_Lean_Elab_Term_MetaHasEval___rarg___closed__2; -x_70 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_69, x_68, x_6); +x_70 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_69, x_68, x_6); lean_dec(x_68); if (lean_obj_tag(x_70) == 0) { @@ -29039,7 +29039,7 @@ x_82 = lean_ctor_get(x_81, 2); lean_inc(x_82); lean_dec(x_81); x_83 = l_Lean_Elab_Term_MetaHasEval___rarg___closed__2; -x_84 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_83, x_82, x_6); +x_84 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_83, x_82, x_6); lean_dec(x_82); if (lean_obj_tag(x_84) == 0) { @@ -29112,21 +29112,21 @@ x_8 = l_Lean_Elab_Term_MetaHasEval___rarg(x_1, x_2, x_3, x_4, x_7, x_6); return x_8; } } -lean_object* _init_l___private_Init_Lean_Elab_Term_23__regTraceClasses___closed__1() { +lean_object* _init_l___private_Lean_Elab_Term_23__regTraceClasses___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_2 = l_Lean_Elab_Term_tryCoe___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Term_23__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Term_23__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__2; +x_2 = l___private_Lean_Elab_Term_10__postponeElabTerm___closed__2; x_3 = l_Lean_registerTraceClass(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -29134,7 +29134,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); lean_dec(x_3); -x_5 = l___private_Init_Lean_Elab_Term_23__regTraceClasses___closed__1; +x_5 = l___private_Lean_Elab_Term_23__regTraceClasses___closed__1; x_6 = l_Lean_registerTraceClass(x_5, x_4); if (lean_obj_tag(x_6) == 0) { @@ -29240,57 +29240,57 @@ return x_27; } } } -lean_object* initialize_Init_Lean_Util_Sorry(lean_object*); -lean_object* initialize_Init_Lean_Structure(lean_object*); -lean_object* initialize_Init_Lean_Meta_ExprDefEq(lean_object*); -lean_object* initialize_Init_Lean_Meta_AppBuilder(lean_object*); -lean_object* initialize_Init_Lean_Meta_SynthInstance(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); -lean_object* initialize_Init_Lean_Hygiene(lean_object*); -lean_object* initialize_Init_Lean_Util_RecDepth(lean_object*); -lean_object* initialize_Init_Lean_Elab_Log(lean_object*); -lean_object* initialize_Init_Lean_Elab_Alias(lean_object*); -lean_object* initialize_Init_Lean_Elab_ResolveName(lean_object*); -lean_object* initialize_Init_Lean_Elab_Level(lean_object*); +lean_object* initialize_Lean_Util_Sorry(lean_object*); +lean_object* initialize_Lean_Structure(lean_object*); +lean_object* initialize_Lean_Meta_ExprDefEq(lean_object*); +lean_object* initialize_Lean_Meta_AppBuilder(lean_object*); +lean_object* initialize_Lean_Meta_SynthInstance(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Hygiene(lean_object*); +lean_object* initialize_Lean_Util_RecDepth(lean_object*); +lean_object* initialize_Lean_Elab_Log(lean_object*); +lean_object* initialize_Lean_Elab_Alias(lean_object*); +lean_object* initialize_Lean_Elab_ResolveName(lean_object*); +lean_object* initialize_Lean_Elab_Level(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Term(lean_object* w) { +lean_object* initialize_Lean_Elab_Term(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Util_Sorry(lean_io_mk_world()); +res = initialize_Lean_Util_Sorry(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Structure(lean_io_mk_world()); +res = initialize_Lean_Structure(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_ExprDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_ExprDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_AppBuilder(lean_io_mk_world()); +res = initialize_Lean_Meta_AppBuilder(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_SynthInstance(lean_io_mk_world()); +res = initialize_Lean_Meta_SynthInstance(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Hygiene(lean_io_mk_world()); +res = initialize_Lean_Hygiene(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_RecDepth(lean_io_mk_world()); +res = initialize_Lean_Util_RecDepth(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Log(lean_io_mk_world()); +res = initialize_Lean_Elab_Log(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Alias(lean_io_mk_world()); +res = initialize_Lean_Elab_Alias(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_ResolveName(lean_io_mk_world()); +res = initialize_Lean_Elab_ResolveName(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Level(lean_io_mk_world()); +res = initialize_Lean_Elab_Level(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_State_inhabited___closed__1 = _init_l_Lean_Elab_Term_State_inhabited___closed__1(); @@ -29426,14 +29426,14 @@ l_Lean_Elab_Term_mkFreshInstanceName___rarg___closed__1 = _init_l_Lean_Elab_Term lean_mark_persistent(l_Lean_Elab_Term_mkFreshInstanceName___rarg___closed__1); l_Lean_Elab_Term_mkFreshInstanceName___rarg___closed__2 = _init_l_Lean_Elab_Term_mkFreshInstanceName___rarg___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_mkFreshInstanceName___rarg___closed__2); -l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__1 = _init_l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__1); -l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2 = _init_l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__2); -l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3 = _init_l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__3); -l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4 = _init_l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4); +l___private_Lean_Elab_Term_5__expandCDot___main___closed__1 = _init_l___private_Lean_Elab_Term_5__expandCDot___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Term_5__expandCDot___main___closed__1); +l___private_Lean_Elab_Term_5__expandCDot___main___closed__2 = _init_l___private_Lean_Elab_Term_5__expandCDot___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Term_5__expandCDot___main___closed__2); +l___private_Lean_Elab_Term_5__expandCDot___main___closed__3 = _init_l___private_Lean_Elab_Term_5__expandCDot___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Term_5__expandCDot___main___closed__3); +l___private_Lean_Elab_Term_5__expandCDot___main___closed__4 = _init_l___private_Lean_Elab_Term_5__expandCDot___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Term_5__expandCDot___main___closed__4); l_Lean_Elab_Term_expandCDot_x3f___closed__1 = _init_l_Lean_Elab_Term_expandCDot_x3f___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_expandCDot_x3f___closed__1); l_Lean_Elab_Term_expandCDot_x3f___closed__2 = _init_l_Lean_Elab_Term_expandCDot_x3f___closed__2(); @@ -29480,10 +29480,10 @@ l_Lean_Elab_Term_tryCoe___closed__3 = _init_l_Lean_Elab_Term_tryCoe___closed__3( lean_mark_persistent(l_Lean_Elab_Term_tryCoe___closed__3); l_Lean_Elab_Term_tryCoe___closed__4 = _init_l_Lean_Elab_Term_tryCoe___closed__4(); lean_mark_persistent(l_Lean_Elab_Term_tryCoe___closed__4); -l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__1 = _init_l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__1); -l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__2 = _init_l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_7__isMonad_x3f___closed__2); +l___private_Lean_Elab_Term_7__isMonad_x3f___closed__1 = _init_l___private_Lean_Elab_Term_7__isMonad_x3f___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Term_7__isMonad_x3f___closed__1); +l___private_Lean_Elab_Term_7__isMonad_x3f___closed__2 = _init_l___private_Lean_Elab_Term_7__isMonad_x3f___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Term_7__isMonad_x3f___closed__2); l_Lean_Elab_Term_tryLiftAndCoe___closed__1 = _init_l_Lean_Elab_Term_tryLiftAndCoe___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_tryLiftAndCoe___closed__1); l_Lean_Elab_Term_tryLiftAndCoe___closed__2 = _init_l_Lean_Elab_Term_tryLiftAndCoe___closed__2(); @@ -29498,18 +29498,18 @@ l_Lean_Elab_Term_tryLiftAndCoe___closed__6 = _init_l_Lean_Elab_Term_tryLiftAndCo lean_mark_persistent(l_Lean_Elab_Term_tryLiftAndCoe___closed__6); l_Lean_Elab_Term_tryLiftAndCoe___closed__7 = _init_l_Lean_Elab_Term_tryLiftAndCoe___closed__7(); lean_mark_persistent(l_Lean_Elab_Term_tryLiftAndCoe___closed__7); -l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1 = _init_l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_9__exceptionToSorry___closed__1); -l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__1 = _init_l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__1); -l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__2 = _init_l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_10__postponeElabTerm___closed__2); -l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1 = _init_l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1); -l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2 = _init_l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2); -l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3 = _init_l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3); +l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1 = _init_l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Term_9__exceptionToSorry___closed__1); +l___private_Lean_Elab_Term_10__postponeElabTerm___closed__1 = _init_l___private_Lean_Elab_Term_10__postponeElabTerm___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Term_10__postponeElabTerm___closed__1); +l___private_Lean_Elab_Term_10__postponeElabTerm___closed__2 = _init_l___private_Lean_Elab_Term_10__postponeElabTerm___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Term_10__postponeElabTerm___closed__2); +l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1 = _init_l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__1); +l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2 = _init_l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__2); +l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3 = _init_l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Term_11__elabUsingElabFnsAux___main___closed__3); l_Lean_Elab_Term_elabUsingElabFns___closed__1 = _init_l_Lean_Elab_Term_elabUsingElabFns___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_elabUsingElabFns___closed__1); l_Lean_Elab_Term_elabUsingElabFns___closed__2 = _init_l_Lean_Elab_Term_elabUsingElabFns___closed__2(); @@ -29546,20 +29546,20 @@ l_Lean_Elab_Term_elabImplicitLambdaAux___closed__2 = _init_l_Lean_Elab_Term_elab lean_mark_persistent(l_Lean_Elab_Term_elabImplicitLambdaAux___closed__2); l_Lean_Elab_Term_elabTermAux___main___closed__1 = _init_l_Lean_Elab_Term_elabTermAux___main___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_elabTermAux___main___closed__1); -l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__1 = _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__1); -l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__2 = _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__2); -l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__3 = _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__3); -l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__4 = _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__4); -l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__5 = _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__5); -l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__6 = _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__6); -l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__7 = _init_l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_15__tryCoeSort___closed__7); +l___private_Lean_Elab_Term_15__tryCoeSort___closed__1 = _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Term_15__tryCoeSort___closed__1); +l___private_Lean_Elab_Term_15__tryCoeSort___closed__2 = _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Term_15__tryCoeSort___closed__2); +l___private_Lean_Elab_Term_15__tryCoeSort___closed__3 = _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Term_15__tryCoeSort___closed__3); +l___private_Lean_Elab_Term_15__tryCoeSort___closed__4 = _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Term_15__tryCoeSort___closed__4); +l___private_Lean_Elab_Term_15__tryCoeSort___closed__5 = _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Term_15__tryCoeSort___closed__5); +l___private_Lean_Elab_Term_15__tryCoeSort___closed__6 = _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Term_15__tryCoeSort___closed__6); +l___private_Lean_Elab_Term_15__tryCoeSort___closed__7 = _init_l___private_Lean_Elab_Term_15__tryCoeSort___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Term_15__tryCoeSort___closed__7); l_Lean_Elab_Term_mkAuxName___closed__1 = _init_l_Lean_Elab_Term_mkAuxName___closed__1(); 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(); @@ -29619,18 +29619,18 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabByTactic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__1 = _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__1); -l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__2 = _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__2); -l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__3 = _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__3); -l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4 = _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__4); -l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__5 = _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__5); -l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__6 = _init_l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_17__mkPairsAux___main___closed__6); +l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__1 = _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__1); +l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__2 = _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__2); +l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__3 = _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__3); +l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__4 = _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__4); +l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__5 = _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__5); +l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__6 = _init_l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Term_17__mkPairsAux___main___closed__6); l_Lean_Elab_Term_elabParen___closed__1 = _init_l_Lean_Elab_Term_elabParen___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_elabParen___closed__1); l_Lean_Elab_Term_elabParen___closed__2 = _init_l_Lean_Elab_Term_elabParen___closed__2(); @@ -29780,9 +29780,9 @@ l_Lean_Elab_Term_MetaHasEval___rarg___closed__5 = _init_l_Lean_Elab_Term_MetaHas lean_mark_persistent(l_Lean_Elab_Term_MetaHasEval___rarg___closed__5); l_Lean_Elab_Term_MetaHasEval___rarg___closed__6 = _init_l_Lean_Elab_Term_MetaHasEval___rarg___closed__6(); lean_mark_persistent(l_Lean_Elab_Term_MetaHasEval___rarg___closed__6); -l___private_Init_Lean_Elab_Term_23__regTraceClasses___closed__1 = _init_l___private_Init_Lean_Elab_Term_23__regTraceClasses___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Term_23__regTraceClasses___closed__1); -res = l___private_Init_Lean_Elab_Term_23__regTraceClasses(lean_io_mk_world()); +l___private_Lean_Elab_Term_23__regTraceClasses___closed__1 = _init_l___private_Lean_Elab_Term_23__regTraceClasses___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Term_23__regTraceClasses___closed__1); +res = l___private_Lean_Elab_Term_23__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Elab/Util.c b/stage0/stdlib/Lean/Elab/Util.c similarity index 92% rename from stage0/stdlib/Init/Lean/Elab/Util.c rename to stage0/stdlib/Lean/Elab/Util.c index 905879387d..f6a101a7b7 100644 --- a/stage0/stdlib/Init/Lean/Elab/Util.c +++ b/stage0/stdlib/Lean/Elab/Util.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Elab.Util -// Imports: Init.Lean.Util.Trace Init.Lean.Parser Init.Lean.KeyedDeclsAttribute +// Module: Lean.Elab.Util +// Imports: Lean.Util.Trace Lean.Parser Lean.KeyedDeclsAttribute #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -24,22 +24,21 @@ lean_object* l_Lean_MacroScopesView_format___boxed(lean_object*, lean_object*); lean_object* l_String_toFormat(lean_object*); extern lean_object* l_Lean_MessageData_ofList___closed__3; lean_object* lean_array_uget(lean_object*, size_t); -lean_object* l___private_Init_Lean_Elab_Util_2__evalConstant___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_macroAttribute___closed__1; uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__2; extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l_Lean_MacroScopesView_format(lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Elab_macroAttribute___closed__4; lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(lean_object*, lean_object*); lean_object* l_Lean_Elab_mkMacroAttribute___closed__5; lean_object* l_PersistentHashMap_empty___at_Lean_Elab_macroAttribute___spec__3; lean_object* lean_get_namespaces(lean_object*); lean_object* l_Lean_Syntax_reprint___main(lean_object*); lean_object* l_Lean_Elab_mkElabAttribute___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Elab_Util_2__evalConstant___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_List_find_x3f___main___rarg(lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Elab_getMacros___spec__6___boxed(lean_object*, lean_object*); @@ -57,7 +56,6 @@ extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__1; extern lean_object* l_Lean_mkAttributeImplOfConstant___closed__1; lean_object* l_Lean_Elab_macroAttribute___closed__5; lean_object* l_Lean_Elab_checkSyntaxNodeKind___closed__2; -lean_object* l___private_Init_Lean_Elab_Util_2__evalConstant(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_mkMacroAttribute___closed__9; lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -72,7 +70,6 @@ lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__2; lean_object* l_Lean_Elab_liftMacroM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkSyntaxNodeKindAtNamespaces___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; extern lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__1; lean_object* l_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__2___boxed(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); @@ -80,6 +77,7 @@ lean_object* l_List_foldl___main___at_Lean_Elab_addMacroStack___spec__1___closed lean_object* l_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__5___boxed(lean_object*, lean_object*); size_t l_Lean_Name_hash(lean_object*); extern lean_object* l_Char_HasRepr___closed__1; +lean_object* l___private_Lean_Elab_Util_2__evalConstant(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getMacros(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_prettyPrint(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); @@ -91,14 +89,15 @@ lean_object* l_Lean_Elab_mkElabAttribute___rarg___lambda__1(lean_object*, lean_o lean_object* l_Lean_Elab_addMacroStack___closed__2; lean_object* l_Lean_attrParamSyntaxToIdentifier(lean_object*); size_t lean_usize_modn(size_t, lean_object*); +lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__2; lean_object* l_Lean_Elab_addMacroStack(lean_object*, lean_object*); lean_object* l_Lean_Elab_mkElabAttribute___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM(lean_object*, lean_object*); lean_object* l_Lean_Elab_addMacroStack___closed__1; lean_object* l_mkHashMapImp___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; lean_object* l_Lean_Elab_syntaxNodeKindOfAttrParam___closed__3; lean_object* l_Lean_Elab_getBetterRef___lambda__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(lean_object*, lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__3; size_t l_USize_land(size_t, size_t); lean_object* l_Lean_Environment_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*); @@ -114,31 +113,33 @@ lean_object* l_Lean_Elab_mkElabAttribute(lean_object*); lean_object* l_Lean_Elab_adaptMacro(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; lean_object* l_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__5(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Util_3__expandMacroFns___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Util_4__regTraceClasses(lean_object*); lean_object* l_Lean_Elab_evalSyntaxConstant(lean_object*, lean_object*); lean_object* l_Lean_Elab_adaptMacro___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos(lean_object*); lean_object* l_Lean_Elab_getBetterRef___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; lean_object* l_Lean_Elab_mkMacroAttribute___closed__6; lean_object* l_PersistentHashMap_findAux___main___at_Lean_Elab_getMacros___spec__3(lean_object*, size_t, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__1; lean_object* l_Lean_Elab_mkMacroAttribute___closed__4; +lean_object* l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; lean_object* l_AssocList_find_x3f___main___at_Lean_Elab_getMacros___spec__6(lean_object*, lean_object*); lean_object* l_Lean_Elab_checkSyntaxNodeKind___boxed(lean_object*, lean_object*); lean_object* l_List_foldl___main___at_Lean_MacroScopesView_review___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_checkSyntaxNodeKind(lean_object*, lean_object*); lean_object* l_Lean_Elab_addMacroStack___closed__3; lean_object* l_Lean_Elab_checkSyntaxNodeKindAtNamespaces___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Util_3__expandMacroFns___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_Elab_macroAttribute___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_mkMacroAttribute___closed__8; +lean_object* l___private_Lean_Elab_Util_3__expandMacroFns(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_mkHashMap___at_Lean_Elab_macroAttribute___spec__2(lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l_Lean_Elab_mkMacroAttribute___closed__2; @@ -148,7 +149,6 @@ lean_object* l_Lean_Elab_mkMacroAttribute___closed__1; lean_object* l_Lean_SMap_empty___at_Lean_Elab_macroAttribute___spec__1___closed__2; extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__4; lean_object* l_Lean_Elab_syntaxNodeKindOfAttrParam(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Util_3__expandMacroFns(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Elab_getMacros___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_Elab_macroAttribute___spec__1; lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); @@ -783,7 +783,7 @@ lean_dec(x_2); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1() { +lean_object* _init_l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -793,11 +793,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; +x_3 = l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1; x_4 = l_Lean_Environment_evalConstCheck___rarg(x_1, x_3, x_2); return x_4; } @@ -820,7 +820,7 @@ lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Util_2__evalConstant(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Util_2__evalConstant(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -828,11 +828,11 @@ x_5 = l_Lean_mkAttributeImplOfConstant___closed__1; return x_5; } } -lean_object* l___private_Init_Lean_Elab_Util_2__evalConstant___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Util_2__evalConstant___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___private_Init_Lean_Elab_Util_2__evalConstant(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Util_2__evalConstant(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -1104,7 +1104,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Util_3__expandMacroFns___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Util_3__expandMacroFns___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -1149,11 +1149,11 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Elab_Util_3__expandMacroFns(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Elab_Util_3__expandMacroFns(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Util_3__expandMacroFns___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Elab_Util_3__expandMacroFns___main(x_1, x_2, x_3, x_4); return x_5; } } @@ -1408,7 +1408,7 @@ 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_14 = l___private_Init_Lean_Elab_Util_3__expandMacroFns___main(x_2, x_13, x_3, x_4); +x_14 = l___private_Lean_Elab_Util_3__expandMacroFns___main(x_2, x_13, x_3, x_4); return x_14; } } @@ -1743,7 +1743,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_adaptMacro___rarg), 4, 0); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1() { +lean_object* _init_l___private_Lean_Elab_Util_4__regTraceClasses___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1753,7 +1753,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__2() { +lean_object* _init_l___private_Lean_Elab_Util_4__regTraceClasses___closed__2() { _start: { lean_object* x_1; @@ -1761,21 +1761,21 @@ x_1 = lean_mk_string("step"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3() { +lean_object* _init_l___private_Lean_Elab_Util_4__regTraceClasses___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; -x_2 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__2; +x_1 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_2 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Util_4__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Util_4__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1; +x_2 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -1783,7 +1783,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); lean_dec(x_3); -x_5 = l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3; +x_5 = l___private_Lean_Elab_Util_4__regTraceClasses___closed__3; x_6 = l_Lean_registerTraceClass(x_5, x_4); return x_6; } @@ -1811,21 +1811,21 @@ return x_10; } } } -lean_object* initialize_Init_Lean_Util_Trace(lean_object*); -lean_object* initialize_Init_Lean_Parser(lean_object*); -lean_object* initialize_Init_Lean_KeyedDeclsAttribute(lean_object*); +lean_object* initialize_Lean_Util_Trace(lean_object*); +lean_object* initialize_Lean_Parser(lean_object*); +lean_object* initialize_Lean_KeyedDeclsAttribute(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Elab_Util(lean_object* w) { +lean_object* initialize_Lean_Elab_Util(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Util_Trace(lean_io_mk_world()); +res = initialize_Lean_Util_Trace(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Parser(lean_io_mk_world()); +res = initialize_Lean_Parser(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_KeyedDeclsAttribute(lean_io_mk_world()); +res = initialize_Lean_KeyedDeclsAttribute(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_List_foldl___main___at_Lean_Elab_addMacroStack___spec__1___closed__1 = _init_l_List_foldl___main___at_Lean_Elab_addMacroStack___spec__1___closed__1(); @@ -1850,8 +1850,8 @@ l_Lean_Elab_syntaxNodeKindOfAttrParam___closed__2 = _init_l_Lean_Elab_syntaxNode lean_mark_persistent(l_Lean_Elab_syntaxNodeKindOfAttrParam___closed__2); l_Lean_Elab_syntaxNodeKindOfAttrParam___closed__3 = _init_l_Lean_Elab_syntaxNodeKindOfAttrParam___closed__3(); lean_mark_persistent(l_Lean_Elab_syntaxNodeKindOfAttrParam___closed__3); -l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1 = _init_l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1); +l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1 = _init_l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Util_1__evalSyntaxConstantUnsafe___closed__1); l_Lean_Elab_mkElabAttribute___rarg___closed__1 = _init_l_Lean_Elab_mkElabAttribute___rarg___closed__1(); lean_mark_persistent(l_Lean_Elab_mkElabAttribute___rarg___closed__1); l_Lean_Elab_mkMacroAttribute___closed__1 = _init_l_Lean_Elab_mkMacroAttribute___closed__1(); @@ -1895,13 +1895,13 @@ if (lean_io_result_is_error(res)) return res; l_Lean_Elab_macroAttribute = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_macroAttribute); lean_dec_ref(res); -l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1 = _init_l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__1); -l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__2 = _init_l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__2); -l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3 = _init_l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Util_4__regTraceClasses___closed__3); -res = l___private_Init_Lean_Elab_Util_4__regTraceClasses(lean_io_mk_world()); +l___private_Lean_Elab_Util_4__regTraceClasses___closed__1 = _init_l___private_Lean_Elab_Util_4__regTraceClasses___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Util_4__regTraceClasses___closed__1); +l___private_Lean_Elab_Util_4__regTraceClasses___closed__2 = _init_l___private_Lean_Elab_Util_4__regTraceClasses___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Util_4__regTraceClasses___closed__2); +l___private_Lean_Elab_Util_4__regTraceClasses___closed__3 = _init_l___private_Lean_Elab_Util_4__regTraceClasses___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Util_4__regTraceClasses___closed__3); +res = l___private_Lean_Elab_Util_4__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Environment.c b/stage0/stdlib/Lean/Environment.c similarity index 96% rename from stage0/stdlib/Init/Lean/Environment.c rename to stage0/stdlib/Lean/Environment.c index 9b26f66655..747a83258f 100644 --- a/stage0/stdlib/Init/Lean/Environment.c +++ b/stage0/stdlib/Lean/Environment.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Environment -// Imports: Init.System.IO Init.Util Init.Data.ByteArray Init.Lean.Data.SMap Init.Lean.Declaration Init.Lean.LocalContext Init.Lean.Util.Path Init.Lean.Util.FindExpr +// Module: Lean.Environment +// Imports: Init.System.IO Init.Util Init.Data.ByteArray Lean.Data.SMap Lean.Declaration Lean.LocalContext Lean.Util.Path Lean.Util.FindExpr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,6 +15,7 @@ extern "C" { #endif lean_object* l_HashMapImp_find_x3f___at_Lean_Environment_getModuleIdxFor_x3f___spec__1(lean_object*, lean_object*); lean_object* l_List_reverse___rarg(lean_object*); +lean_object* l___private_Lean_Environment_3__getTrustLevel___boxed(lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_Environment_hasUnsafe___boxed(lean_object*, lean_object*); lean_object* lean_get_extension(lean_object*, lean_object*); @@ -29,15 +30,16 @@ lean_object* l_Array_forMAux___main___at_Lean_Environment_displayStats___spec__8 lean_object* l_Lean_Environment_displayStats___closed__2; lean_object* l_HashMap_numBuckets___at_Lean_Environment_displayStats___spec__6___boxed(lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_setState___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_SMap_numBuckets___at_Lean_Environment_displayStats___spec__5(lean_object*); lean_object* l_Array_forMAux___main___at_Lean_Environment_displayStats___spec__8___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Environment_find_x3f___spec__4___boxed(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_Lean_Environment_displayStats___closed__6; lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_display_stats(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_10__setImportedEntries(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_namespacesExt___elambda__3(lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_setState(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_displayStats___closed__1; @@ -45,8 +47,8 @@ lean_object* l_Nat_foldAux___main___at_Lean_mkModuleData___spec__1(lean_object*, uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Array_iterateMAux___main___at_Lean_importModules___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType(lean_object*); extern lean_object* l_List_repr___rarg___closed__1; +lean_object* lean_environment_mark_quot_init(lean_object*); lean_object* l_Lean_mkTagDeclarationExtension___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___lambda__3(lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Environment_find_x3f___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -54,6 +56,7 @@ lean_object* l_Lean_Environment_displayStats___closed__4; lean_object* l_Lean_SimplePersistentEnvExtension_setState(lean_object*, lean_object*); uint8_t l_Array_binSearchAux___main___at_Lean_TagDeclarationExtension_isTagged___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_serialize_modifications(lean_object*, lean_object*); +uint8_t l___private_Lean_Environment_12__isNamespaceName___main(lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); lean_object* l_Lean_Environment_imports(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_importModules___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -79,6 +82,7 @@ lean_object* l_Lean_importModulesAux(lean_object*, lean_object*, lean_object*); lean_object* lean_environment_set_main_module(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe(lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Environment_find_x3f___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_13__registerNamePrefixes(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_registerCPPExtension___spec__1(lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_setStateUnsafe___rarg___boxed(lean_object*, lean_object*, lean_object*); size_t l_USize_sub(size_t, size_t); @@ -88,21 +92,21 @@ lean_object* lean_io_mk_ref(lean_object*, lean_object*); lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at_Lean_Environment_hasUnsafe___spec__1(lean_object*, size_t, lean_object*, lean_object*); lean_object* lean_read_module_data(lean_object*, lean_object*); lean_object* l_Lean_TagDeclarationExtension_Inhabited___closed__1; -lean_object* lean_environment_mark_quot_init(lean_object*); lean_object* lean_io_ref_get(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_importModules___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_7__mkPersistentEnvExtensionsRef(lean_object*); -lean_object* l___private_Init_Lean_Environment_6__mkInitialExtensionStates(lean_object*); uint8_t l_Lean_ConstantInfo_isUnsafe(lean_object*); lean_object* l_Lean_mkTagDeclarationExtension___closed__2; lean_object* l_Lean_PersistentEnvExtension_setState___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_Inhabited___rarg___lambda__1(lean_object*); +lean_object* l___private_Lean_Environment_9__getEntriesFor___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_allImportedModuleNames___boxed(lean_object*); lean_object* l_Lean_EnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l_AssocList_replace___main___at_Lean_Environment_addAux___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_9__getEntriesFor___main___closed__1; lean_object* l_Lean_regModListExtension___closed__1; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Environment_find_x3f___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_expand___at_Lean_importModules___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_9__getEntriesFor(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_matchConst___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -111,6 +115,7 @@ lean_object* l_Lean_Environment_Inhabited___closed__2; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_SMap_switch___at_Lean_importModules___spec__11(lean_object*); lean_object* l_Lean_Environment_Inhabited___closed__1; +lean_object* l___private_Lean_Environment_9__getEntriesFor___main(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkModuleData___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_inhabited; lean_object* l_Lean_namespacesExt___elambda__4___rarg(lean_object*); @@ -133,19 +138,22 @@ lean_object* l_AssocList_contains___main___at_Lean_Environment_addAux___spec__7_ uint8_t l_HashMapImp_contains___at_Lean_Environment_contains___spec__2(lean_object*, lean_object*); lean_object* l_Lean_namespacesExt___closed__2; lean_object* l_Lean_namespacesExt___elambda__3___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__4(lean_object*); lean_object* l_Lean_PersistentEnvExtension_inhabited(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; lean_object* l_Lean_SimplePersistentEnvExtension_modifyState(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_6__mkInitialExtensionStates(lean_object*); lean_object* l_Lean_findOLean(lean_object*, lean_object*); lean_object* l_Lean_namespacesExt___elambda__4___boxed(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_contains___boxed(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtensionState_inhabited(lean_object*, lean_object*); lean_object* l_Lean_mkStateFromImportedEntries___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Environment_11__finalizePersistentExtensions___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_setState(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_13__registerNamePrefixes___main(lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Environment_find_x3f___spec__4(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__1; uint8_t l_Lean_Environment_hasUnsafe(lean_object*, lean_object*); @@ -155,6 +163,7 @@ lean_object* l_Lean_Environment_displayStats___closed__7; lean_object* l_Array_iterateMAux___main___at_Lean_regNamespacesExtension___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_displayStats___closed__5; lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_regNamespacesExtension___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_4__mkEnvExtensionsRef(lean_object*); lean_object* l_AssocList_foldlM___main___at_Lean_importModules___spec__5(lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_importModules___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -171,13 +180,13 @@ lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___lambda__1(lean_obj lean_object* l_Lean_SimplePersistentEnvExtension_modifyState___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_11__finalizePersistentExtensions(lean_object*, lean_object*); lean_object* lean_environment_add_modification(lean_object*, lean_object*); lean_object* l_Lean_serializeModifications___boxed(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtension___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_foldlMAux___main___at_Lean_mkModuleData___spec__3(lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_Inhabited___rarg___closed__1; lean_object* l_Lean_Environment_getModuleIdxFor_x3f___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_4__mkEnvExtensionsRef(lean_object*); lean_object* l_HashMapImp_moveEntries___main___at_Lean_importModules___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_Inhabited___rarg(lean_object*); lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); @@ -185,13 +194,12 @@ lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___lambda__2(lean_obj lean_object* l_Lean_CPPExtensionState_inhabited; lean_object* l_Lean_EnvExtension_setStateUnsafe___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_11__finalizePersistentExtensions___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Environment_11__finalizePersistentExtensions___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_IO_println___at_Lean_HasRepr_hasEval___spec__1(lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_setStateUnsafe(lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkTagDeclarationExtension___spec__4(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Environment_6__mkInitialExtensionStates___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_HashMap_numBuckets___at_Lean_Environment_displayStats___spec__6(lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_mkTagDeclarationExtension___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkEmptyEnvironment___closed__1; @@ -199,6 +207,7 @@ lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__3(lean lean_object* l_Lean_SimplePersistentEnvExtension_Inhabited(lean_object*, lean_object*); lean_object* l_Lean_ModuleData_inhabited___closed__1; lean_object* lean_set_extension(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_12__isNamespaceName___main___boxed(lean_object*); lean_object* l_Nat_foldAux___main___at_Lean_mkModuleData___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_modifyState___rarg___lambda__1(lean_object*, lean_object*); @@ -209,6 +218,7 @@ lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___lambda__2___boxed( lean_object* l_IO_fileExists___at_Lean_importModulesAux___main___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_addEntry(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_HasToString(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_registerSimplePersistentEnvExtension___spec__1(lean_object*, lean_object*); lean_object* l_Lean_namespacesExt___elambda__1(lean_object*); lean_object* l_Lean_ConstantInfo_name(lean_object*); @@ -237,9 +247,7 @@ lean_object* l_Lean_mkEmptyEnvironment___closed__2; lean_object* l_Array_iterateMAux___main___at_Lean_importModules___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg___boxed(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_13__registerNamePrefixes(lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__2; -lean_object* l___private_Init_Lean_Environment_10__setImportedEntries___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_containsAtAux___main___at_Lean_Environment_contains___spec__5___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_modifyState___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkTagDeclarationExtension___lambda__2(lean_object*); @@ -247,6 +255,7 @@ lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_registerSimplePersisten lean_object* l_Nat_foldAux___main___at_Lean_mkModuleData___spec__1___closed__1; extern lean_object* l_List_reprAux___main___rarg___closed__1; lean_object* l_Lean_SimplePersistentEnvExtension_modifyState___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_14__throwUnexpectedType(lean_object*); lean_object* l_Lean_matchConst(lean_object*); lean_object* lean_eval_const(lean_object*, lean_object*); lean_object* l_Lean_SMap_contains___at_Lean_Environment_contains___spec__1___boxed(lean_object*, lean_object*); @@ -254,20 +263,20 @@ lean_object* l_Lean_SimplePersistentEnvExtension_getEntries___rarg(lean_object*, uint8_t l_Array_anyRangeMAux___main___at_Lean_registerSimplePersistentEnvExtension___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); lean_object* l_Lean_performModifications___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_7__mkPersistentEnvExtensionsRef(lean_object*); lean_object* l_Lean_Environment_Inhabited___closed__3; lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_regNamespacesExtension___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_contains___main___at_Lean_importModules___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Environment_evalConstCheck___rarg___closed__1; +lean_object* l___private_Lean_Environment_2__isQuotInit___boxed(lean_object*); extern lean_object* l_Lean_Options_empty; extern lean_object* l_IO_Error_Inhabited___closed__1; lean_object* lean_environment_add(lean_object*, lean_object*); lean_object* lean_save_module_data(lean_object*, lean_object*, lean_object*); uint8_t l_AssocList_contains___main___at_Lean_importModules___spec__2(lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_getState___rarg___boxed(lean_object*, lean_object*); -uint8_t lean_environment_quot_init(lean_object*); size_t lean_usize_modn(size_t, lean_object*); -lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__1; lean_object* l_Lean_registerEnvExtensionUnsafe___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkTagDeclarationExtension___spec__6___closed__2; @@ -279,13 +288,10 @@ lean_object* l_Array_qsortAux___main___at_Lean_mkTagDeclarationExtension___spec_ lean_object* l_Lean_modListExtension___closed__1; uint8_t l_AssocList_contains___main___at_Lean_Environment_addAux___spec__7(lean_object*, lean_object*); lean_object* l_Lean_modListExtension___closed__2; -lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_modifyState(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ModuleIdx_inhabited; lean_object* l_Lean_PersistentEnvExtension_getState___rarg___boxed(lean_object*, lean_object*); -uint32_t lean_environment_trust_level(lean_object*); size_t l_USize_mul(size_t, size_t); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_redLength___main___rarg(lean_object*); lean_object* l_Lean_registerEnvExtension(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_importModules___boxed(lean_object*, lean_object*, lean_object*); @@ -297,7 +303,6 @@ lean_object* l_Lean_importModules___closed__1; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkTagDeclarationExtension___spec__6___closed__1; lean_object* l_Lean_Environment_addDecl___boxed(lean_object*, lean_object*); uint8_t lean_kernel_is_def_eq(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Environment_12__isNamespaceName___main(lean_object*); lean_object* l_RBNode_insert___at_Lean_NameSet_insert___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_NonScalar_Inhabited; lean_object* l_mkHashMap___at_Lean_Environment_Inhabited___spec__3(lean_object*); @@ -305,9 +310,9 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__1(lean uint8_t l_Lean_Format_isNil(lean_object*); lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__3; lean_object* l_Lean_ModuleData_inhabited; -lean_object* l___private_Init_Lean_Environment_12__isNamespaceName___main___boxed(lean_object*); extern lean_object* l_Lean_NameSet_empty; lean_object* l_Lean_ConstantInfo_type(lean_object*); +lean_object* l___private_Lean_Environment_14__throwUnexpectedType___rarg(lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f_x27___at_Lean_Environment_find_x3f___spec__1(lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Environment_displayStats___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_importModules___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -322,27 +327,29 @@ lean_object* l_Lean_mkStateFromImportedEntries___rarg(lean_object*, lean_object* lean_object* l_Lean_mkEmptyEnvironment___boxed(lean_object*, lean_object*); lean_object* lean_kernel_whnf(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentHashMap_contains___at_Lean_Environment_contains___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Array_forMAux___main___at_Lean_Environment_displayStats___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_mod(size_t, size_t); lean_object* l_Lean_namespacesExt___elambda__2___boxed(lean_object*); lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at_Lean_Environment_hasUnsafe___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; +uint32_t lean_environment_trust_level(lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_registerSimplePersistentEnvExtension___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_namespacesExt___elambda__2(lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_Environment_addAux___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_regNamespacesExtension(lean_object*); extern lean_object* l_Lean_Expr_FindImpl_initCache; lean_object* lean_io_file_exists(lean_object*, lean_object*); lean_object* lean_mk_empty_environment(uint32_t, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_Inhabited; +lean_object* l___private_Lean_Environment_12__isNamespaceName___boxed(lean_object*); lean_object* lean_import_modules(lean_object*, uint32_t, lean_object*); size_t lean_ptr_addr(lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; lean_object* l_Array_anyRangeMAux___main___at_Lean_registerPersistentEnvExtensionUnsafe___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_9__getEntriesFor(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_9__getEntriesFor___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__4___closed__2; uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -358,6 +365,7 @@ lean_object* l_Lean_EnvExtension_setState___boxed(lean_object*, lean_object*, le lean_object* l_Lean_Environment_addAndCompile(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_namespacesExt___closed__5; lean_object* l_Lean_regModListExtension(lean_object*); +uint8_t lean_environment_quot_init(lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___closed__1; lean_object* l_Lean_EnvExtension_getStateUnsafe___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_namespacesExt___closed__3; @@ -365,40 +373,37 @@ lean_object* l_Lean_Kernel_whnf___boxed(lean_object*, lean_object*, lean_object* lean_object* l_AssocList_replace___main___at_Lean_importModules___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__4___closed__1; extern lean_object* l_Lean_NameSet_Inhabited; +lean_object* l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; lean_object* l_Array_iterateMAux___main___at_Lean_mkModuleData___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_setState___closed__1; -lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; -lean_object* l___private_Init_Lean_Environment_13__registerNamePrefixes___main(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Environment_displayStats___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtensionState_inhabited; lean_object* l_Array_iterateMAux___main___at_Lean_importModules___spec__9___closed__1; -lean_object* l___private_Init_Lean_Environment_9__getEntriesFor___main(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_importModules___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_reset(lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__4___boxed(lean_object*); -lean_object* l___private_Init_Lean_Environment_11__finalizePersistentExtensions(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Array_iterateMAux___main___at_Lean_Environment_addAux___spec__5(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Environment_find_x3f___spec__5___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_2__isQuotInit___boxed(lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_Environment_Inhabited___spec__2___closed__1; lean_object* l_List_toString___at_Lean_Environment_displayStats___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Environment_9__getEntriesFor___main___closed__1; lean_object* l_Lean_SimplePersistentEnvExtension_setState___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Environment_6__mkInitialExtensionStates___spec__1(lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Environment_12__isNamespaceName(lean_object*); lean_object* l_Lean_regNamespacesExtension___closed__3; lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Environment_addAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_10__setImportedEntries___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_regNamespacesExtension___closed__5; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkTagDeclarationExtension___spec__6(lean_object*, lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_9__getEntriesFor___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f_x27___at_Lean_Environment_find_x3f___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_SMap_stageSizes___at_Lean_Environment_displayStats___spec__4___boxed(lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Environment_displayStats___spec__2(uint8_t, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkTagDeclarationExtension(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Environment_12__isNamespaceName(lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_regModListExtension___spec__1(lean_object*, lean_object*); lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); lean_object* l_PersistentHashMap_foldlM___at_Lean_mkModuleData___spec__2(lean_object*, lean_object*); @@ -407,7 +412,6 @@ lean_object* l_Lean_Environment_allImportedModuleNames(lean_object*); lean_object* l_Array_forMAux___main___at_Lean_Environment_displayStats___spec__8___closed__3; lean_object* l_Lean_Environment_addAux(lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_11__finalizePersistentExtensions___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_TagDeclarationExtension_isTagged(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_namespacesExt___closed__1; lean_object* lean_mk_array(lean_object*, lean_object*); @@ -425,10 +429,9 @@ lean_object* l_Array_iterateMAux___main___at_Lean_importModules___spec__7___boxe lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_regNamespacesExtension___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_modListExtension; -lean_object* l___private_Init_Lean_Environment_3__getTrustLevel___boxed(lean_object*); lean_object* l_Lean_TagDeclarationExtension_isTagged___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_10__setImportedEntries(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_isConstructor___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; uint8_t l_Lean_NameSet_contains(lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension(lean_object*, lean_object*); lean_object* l_Lean_Modification_inhabited; @@ -439,11 +442,12 @@ lean_object* l_Array_anyRangeMAux___main___at_Lean_registerSimplePersistentEnvEx lean_object* l_PersistentHashMap_findAux___main___at_Lean_Environment_find_x3f___spec__5(lean_object*, size_t, lean_object*); lean_object* lean_register_extension(lean_object*); lean_object* l_Lean_namespacesExt___closed__4; -lean_object* l___private_Init_Lean_Environment_9__getEntriesFor___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___lambda__3___boxed(lean_object*); lean_object* l_Lean_importModulesAux___main(lean_object*, lean_object*, lean_object*); lean_object* lean_compile_decl(lean_object*, lean_object*, lean_object*); lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; lean_object* l_Lean_modListExtension___elambda__1(lean_object*); extern lean_object* l_Nat_Inhabited; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); @@ -451,7 +455,6 @@ lean_object* l_AssocList_foldlM___main___at_Lean_Environment_addAux___spec__10(l lean_object* l_Array_anyRangeMAux___main___at_Lean_registerPersistentEnvExtensionUnsafe___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_12__isNamespaceName___boxed(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkModuleData___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_namespacesExt___closed__6; lean_object* l_Lean_SMap_insert___at_Lean_Environment_addAux___spec__1(lean_object*, lean_object*, lean_object*); @@ -459,7 +462,6 @@ lean_object* lean_usize_to_nat(size_t); lean_object* l_Lean_regNamespacesExtension___closed__4; lean_object* l_Lean_registerEnvExtension___rarg(lean_object*); lean_object* l_Lean_Environment_addAndCompile___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); lean_object* l_Lean_getNamespaceSet___boxed(lean_object*); extern lean_object* l_HashMap_Inhabited___closed__1; @@ -494,9 +496,7 @@ lean_object* l_Lean_mkTagDeclarationExtension___lambda__2___boxed(lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_setState___rarg___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_mkModuleData___boxed(lean_object*, lean_object*); lean_object* l_IO_fileExists___at_Lean_importModulesAux___main___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; lean_object* lean_add_decl(lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_Inhabited(lean_object*); lean_object* _init_l_Lean_EnvExtensionState_inhabited() { @@ -2346,7 +2346,7 @@ lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Environment_2__isQuotInit___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Environment_2__isQuotInit___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; @@ -2367,7 +2367,7 @@ lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Environment_3__getTrustLevel___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Environment_3__getTrustLevel___boxed(lean_object* x_1) { _start: { uint32_t x_2; lean_object* x_3; @@ -2832,7 +2832,7 @@ lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Environment_4__mkEnvExtensionsRef(lean_object* x_1) { +lean_object* l___private_Lean_Environment_4__mkEnvExtensionsRef(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -2946,7 +2946,7 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; x_13 = lean_ctor_get(x_4, 1); lean_inc(x_13); lean_dec(x_4); -x_14 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_14 = l___private_Lean_Environment_5__envExtensionsRef; x_15 = lean_io_ref_get(x_14, x_13); if (lean_obj_tag(x_15) == 0) { @@ -3168,7 +3168,7 @@ lean_dec(x_2); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Environment_6__mkInitialExtensionStates___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Environment_6__mkInitialExtensionStates___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3241,11 +3241,11 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Environment_6__mkInitialExtensionStates(lean_object* x_1) { +lean_object* l___private_Lean_Environment_6__mkInitialExtensionStates(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_2 = l___private_Lean_Environment_5__envExtensionsRef; x_3 = lean_io_ref_get(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -3257,7 +3257,7 @@ lean_inc(x_5); lean_dec(x_3); x_6 = x_4; x_7 = lean_unsigned_to_nat(0u); -x_8 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Environment_6__mkInitialExtensionStates___spec__1), 3, 2); +x_8 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Environment_6__mkInitialExtensionStates___spec__1), 3, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_6); x_9 = x_8; @@ -3324,7 +3324,7 @@ lean_object* x_6; lean_object* x_7; x_6 = lean_ctor_get(x_3, 1); lean_inc(x_6); lean_dec(x_3); -x_7 = l___private_Init_Lean_Environment_6__mkInitialExtensionStates(x_6); +x_7 = l___private_Lean_Environment_6__mkInitialExtensionStates(x_6); if (lean_obj_tag(x_7) == 0) { uint8_t x_8; @@ -4109,7 +4109,7 @@ lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Environment_7__mkPersistentEnvExtensionsRef(lean_object* x_1) { +lean_object* l___private_Lean_Environment_7__mkPersistentEnvExtensionsRef(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -4212,7 +4212,7 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; x_13 = lean_ctor_get(x_4, 1); lean_inc(x_13); lean_dec(x_4); -x_14 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_14 = l___private_Lean_Environment_5__envExtensionsRef; x_15 = lean_io_ref_get(x_14, x_13); if (lean_obj_tag(x_15) == 0) { @@ -4451,7 +4451,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg(lean_object* x_1 _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_4 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_5 = lean_io_ref_get(x_4, x_3); if (lean_obj_tag(x_5) == 0) { @@ -5104,7 +5104,7 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; x_13 = lean_ctor_get(x_4, 1); lean_inc(x_13); lean_dec(x_4); -x_14 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_14 = l___private_Lean_Environment_5__envExtensionsRef; x_15 = lean_io_ref_get(x_14, x_13); if (lean_obj_tag(x_15) == 0) { @@ -5309,7 +5309,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_registerSimpl _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_4 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_5 = lean_io_ref_get(x_4, x_3); if (lean_obj_tag(x_5) == 0) { @@ -6461,7 +6461,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -6649,7 +6649,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkTagDeclarat _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -7480,7 +7480,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_ctor_get(x_3, 1); lean_inc(x_14); lean_dec(x_3); -x_15 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_15 = l___private_Lean_Environment_5__envExtensionsRef; x_16 = lean_io_ref_get(x_15, x_14); if (lean_obj_tag(x_16) == 0) { @@ -7698,7 +7698,7 @@ lean_object* lean_set_extension(lean_object* x_1, lean_object* x_2, lean_object* _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_4 = l___private_Lean_Environment_5__envExtensionsRef; x_5 = lean_box(0); x_6 = lean_io_ref_get(x_4, x_5); if (lean_obj_tag(x_6) == 0) @@ -7739,7 +7739,7 @@ lean_object* lean_get_extension(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_3 = l___private_Lean_Environment_5__envExtensionsRef; x_4 = lean_box(0); x_5 = lean_io_ref_get(x_3, x_4); if (lean_obj_tag(x_5) == 0) @@ -7842,7 +7842,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -8385,7 +8385,7 @@ lean_object* l_Lean_mkModuleData(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -9199,7 +9199,7 @@ x_4 = l_Lean_importModulesAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Environment_9__getEntriesFor___main___closed__1() { +lean_object* _init_l___private_Lean_Environment_9__getEntriesFor___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9211,7 +9211,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Environment_9__getEntriesFor___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Environment_9__getEntriesFor___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -9229,7 +9229,7 @@ return x_7; else { lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_8 = l___private_Init_Lean_Environment_9__getEntriesFor___main___closed__1; +x_8 = l___private_Lean_Environment_9__getEntriesFor___main___closed__1; x_9 = lean_array_get(x_8, x_4, x_3); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); @@ -9257,35 +9257,35 @@ return x_15; } } } -lean_object* l___private_Init_Lean_Environment_9__getEntriesFor___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Environment_9__getEntriesFor___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Environment_9__getEntriesFor___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Environment_9__getEntriesFor___main(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Environment_9__getEntriesFor(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Environment_9__getEntriesFor(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Environment_9__getEntriesFor___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Environment_9__getEntriesFor___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Environment_9__getEntriesFor___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Environment_9__getEntriesFor___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Environment_9__getEntriesFor(x_1, x_2, x_3); +x_4 = l___private_Lean_Environment_9__getEntriesFor(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -9304,7 +9304,7 @@ x_8 = lean_array_fget(x_3, x_4); x_9 = lean_ctor_get(x_8, 1); lean_inc(x_9); x_10 = lean_unsigned_to_nat(0u); -x_11 = l___private_Init_Lean_Environment_9__getEntriesFor___main(x_2, x_9, x_10); +x_11 = l___private_Lean_Environment_9__getEntriesFor___main(x_2, x_9, x_10); lean_dec(x_9); x_12 = lean_ctor_get(x_8, 0); lean_inc(x_12); @@ -9448,7 +9448,7 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -9465,7 +9465,7 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; x_8 = lean_array_fget(x_3, x_4); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__1(x_2, x_8, x_2, x_9, x_5); +x_10 = l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__1(x_2, x_8, x_2, x_9, x_5); lean_dec(x_8); x_11 = lean_unsigned_to_nat(1u); x_12 = lean_nat_add(x_4, x_11); @@ -9476,11 +9476,11 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Environment_10__setImportedEntries(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Environment_10__setImportedEntries(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_4 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_5 = lean_io_ref_get(x_4, x_3); if (lean_obj_tag(x_5) == 0) { @@ -9491,7 +9491,7 @@ if (x_6 == 0) lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_5, 0); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__2(x_2, x_7, x_2, x_8, x_1); +x_9 = l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__2(x_2, x_7, x_2, x_8, x_1); lean_dec(x_7); lean_ctor_set(x_5, 0, x_9); return x_5; @@ -9505,7 +9505,7 @@ lean_inc(x_11); lean_inc(x_10); lean_dec(x_5); x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__2(x_2, x_10, x_2, x_12, x_1); +x_13 = l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__2(x_2, x_10, x_2, x_12, x_1); lean_dec(x_10); x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); @@ -9538,38 +9538,38 @@ return x_18; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___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* l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___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* l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Environment_10__setImportedEntries___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Environment_10__setImportedEntries___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Environment_10__setImportedEntries___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Environment_10__setImportedEntries___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Environment_10__setImportedEntries(x_1, x_2, x_3); +x_4 = l___private_Lean_Environment_10__setImportedEntries(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_11__finalizePersistentExtensions___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Environment_11__finalizePersistentExtensions___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -9711,11 +9711,11 @@ return x_37; } } } -lean_object* l___private_Init_Lean_Environment_11__finalizePersistentExtensions(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Environment_11__finalizePersistentExtensions(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -9726,7 +9726,7 @@ x_6 = lean_ctor_get(x_4, 1); lean_inc(x_6); lean_dec(x_4); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Environment_11__finalizePersistentExtensions___spec__1(x_5, x_5, x_7, x_1, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Environment_11__finalizePersistentExtensions___spec__1(x_5, x_5, x_7, x_1, x_6); lean_dec(x_5); return x_8; } @@ -9755,11 +9755,11 @@ return x_12; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Environment_11__finalizePersistentExtensions___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* l_Array_iterateMAux___main___at___private_Lean_Environment_11__finalizePersistentExtensions___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Environment_11__finalizePersistentExtensions___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Environment_11__finalizePersistentExtensions___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); lean_dec(x_1); return x_6; @@ -10486,7 +10486,7 @@ x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec(x_14); x_17 = l_Lean_SMap_switch___at_Lean_importModules___spec__11(x_15); -x_18 = l___private_Init_Lean_Environment_6__mkInitialExtensionStates(x_16); +x_18 = l___private_Lean_Environment_6__mkInitialExtensionStates(x_16); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; @@ -10516,7 +10516,7 @@ lean_ctor_set(x_28, 0, x_12); lean_ctor_set(x_28, 1, x_17); lean_ctor_set(x_28, 2, x_19); lean_ctor_set(x_28, 3, x_27); -x_29 = l___private_Init_Lean_Environment_10__setImportedEntries(x_28, x_9, x_20); +x_29 = l___private_Lean_Environment_10__setImportedEntries(x_28, x_9, x_20); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; @@ -10525,7 +10525,7 @@ lean_inc(x_30); x_31 = lean_ctor_get(x_29, 1); lean_inc(x_31); lean_dec(x_29); -x_32 = l___private_Init_Lean_Environment_11__finalizePersistentExtensions(x_30, x_31); +x_32 = l___private_Lean_Environment_11__finalizePersistentExtensions(x_30, x_31); if (lean_obj_tag(x_32) == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; @@ -10645,7 +10645,7 @@ lean_ctor_set(x_55, 0, x_12); lean_ctor_set(x_55, 1, x_17); lean_ctor_set(x_55, 2, x_19); lean_ctor_set(x_55, 3, x_54); -x_56 = l___private_Init_Lean_Environment_10__setImportedEntries(x_55, x_9, x_20); +x_56 = l___private_Lean_Environment_10__setImportedEntries(x_55, x_9, x_20); if (lean_obj_tag(x_56) == 0) { lean_object* x_57; lean_object* x_58; lean_object* x_59; @@ -10654,7 +10654,7 @@ lean_inc(x_57); x_58 = lean_ctor_get(x_56, 1); lean_inc(x_58); lean_dec(x_56); -x_59 = l___private_Init_Lean_Environment_11__finalizePersistentExtensions(x_57, x_58); +x_59 = l___private_Lean_Environment_11__finalizePersistentExtensions(x_57, x_58); if (lean_obj_tag(x_59) == 0) { lean_object* x_60; lean_object* x_61; lean_object* x_62; @@ -11293,7 +11293,7 @@ lean_dec(x_1); return x_2; } } -uint8_t l___private_Init_Lean_Environment_12__isNamespaceName___main(lean_object* x_1) { +uint8_t l___private_Lean_Environment_12__isNamespaceName___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -11320,35 +11320,35 @@ return x_5; } } } -lean_object* l___private_Init_Lean_Environment_12__isNamespaceName___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Environment_12__isNamespaceName___main___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Environment_12__isNamespaceName___main(x_1); +x_2 = l___private_Lean_Environment_12__isNamespaceName___main(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Environment_12__isNamespaceName(lean_object* x_1) { +uint8_t l___private_Lean_Environment_12__isNamespaceName(lean_object* x_1) { _start: { uint8_t x_2; -x_2 = l___private_Init_Lean_Environment_12__isNamespaceName___main(x_1); +x_2 = l___private_Lean_Environment_12__isNamespaceName___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Environment_12__isNamespaceName___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Environment_12__isNamespaceName___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Environment_12__isNamespaceName(x_1); +x_2 = l___private_Lean_Environment_12__isNamespaceName(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Environment_13__registerNamePrefixes___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Environment_13__registerNamePrefixes___main(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 1) @@ -11357,7 +11357,7 @@ lean_object* x_3; uint8_t x_4; x_3 = lean_ctor_get(x_2, 0); lean_inc(x_3); lean_dec(x_2); -x_4 = l___private_Init_Lean_Environment_12__isNamespaceName___main(x_3); +x_4 = l___private_Lean_Environment_12__isNamespaceName___main(x_3); if (x_4 == 0) { lean_dec(x_3); @@ -11380,11 +11380,11 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Environment_13__registerNamePrefixes(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Environment_13__registerNamePrefixes(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Environment_13__registerNamePrefixes___main(x_1, x_2); +x_3 = l___private_Lean_Environment_13__registerNamePrefixes___main(x_1, x_2); return x_3; } } @@ -11393,7 +11393,7 @@ _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; x_3 = l_Lean_ConstantInfo_name(x_2); -x_4 = l___private_Init_Lean_Environment_13__registerNamePrefixes___main(x_1, x_3); +x_4 = l___private_Lean_Environment_13__registerNamePrefixes___main(x_1, x_3); x_5 = l_Lean_Environment_addAux(x_4, x_2); return x_5; } @@ -11928,7 +11928,7 @@ lean_object* lean_display_stats(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -12456,7 +12456,7 @@ lean_dec(x_2); return x_4; } } -lean_object* _init_l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__1() { +lean_object* _init_l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__1() { _start: { lean_object* x_1; @@ -12464,7 +12464,7 @@ x_1 = lean_mk_string("unexpected type at '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__2() { +lean_object* _init_l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__2() { _start: { lean_object* x_1; @@ -12472,7 +12472,7 @@ x_1 = lean_mk_string("', `"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__3() { +lean_object* _init_l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__3() { _start: { lean_object* x_1; @@ -12480,32 +12480,32 @@ x_1 = lean_mk_string("` expected"); return x_1; } } -lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Environment_14__throwUnexpectedType___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_3 = l_Lean_Name_toString___closed__1; x_4 = l_Lean_Name_toStringWithSep___main(x_3, x_2); -x_5 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; +x_5 = l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; x_6 = lean_string_append(x_5, x_4); lean_dec(x_4); -x_7 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; +x_7 = l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; x_8 = lean_string_append(x_6, x_7); x_9 = l_Lean_Name_toStringWithSep___main(x_3, x_1); x_10 = lean_string_append(x_8, x_9); lean_dec(x_9); -x_11 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; +x_11 = l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; x_12 = lean_string_append(x_10, x_11); x_13 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_13, 0, x_12); return x_13; } } -lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType(lean_object* x_1) { +lean_object* l___private_Lean_Environment_14__throwUnexpectedType(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Environment_14__throwUnexpectedType___rarg), 2, 0); return x_2; } } @@ -12560,7 +12560,7 @@ if (x_15 == 0) { lean_object* x_16; lean_dec(x_1); -x_16 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg(x_2, x_3); +x_16 = l___private_Lean_Environment_14__throwUnexpectedType___rarg(x_2, x_3); return x_16; } else @@ -12578,7 +12578,7 @@ else lean_object* x_18; lean_dec(x_13); lean_dec(x_1); -x_18 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg(x_2, x_3); +x_18 = l___private_Lean_Environment_14__throwUnexpectedType___rarg(x_2, x_3); return x_18; } } @@ -13253,13 +13253,13 @@ return x_4; lean_object* initialize_Init_System_IO(lean_object*); lean_object* initialize_Init_Util(lean_object*); lean_object* initialize_Init_Data_ByteArray(lean_object*); -lean_object* initialize_Init_Lean_Data_SMap(lean_object*); -lean_object* initialize_Init_Lean_Declaration(lean_object*); -lean_object* initialize_Init_Lean_LocalContext(lean_object*); -lean_object* initialize_Init_Lean_Util_Path(lean_object*); -lean_object* initialize_Init_Lean_Util_FindExpr(lean_object*); +lean_object* initialize_Lean_Data_SMap(lean_object*); +lean_object* initialize_Lean_Declaration(lean_object*); +lean_object* initialize_Lean_LocalContext(lean_object*); +lean_object* initialize_Lean_Util_Path(lean_object*); +lean_object* initialize_Lean_Util_FindExpr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Environment(lean_object* w) { +lean_object* initialize_Lean_Environment(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -13272,19 +13272,19 @@ lean_dec_ref(res); res = initialize_Init_Data_ByteArray(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_SMap(lean_io_mk_world()); +res = initialize_Lean_Data_SMap(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Declaration(lean_io_mk_world()); +res = initialize_Lean_Declaration(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_LocalContext(lean_io_mk_world()); +res = initialize_Lean_LocalContext(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_Path(lean_io_mk_world()); +res = initialize_Lean_Util_Path(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_FindExpr(lean_io_mk_world()); +res = initialize_Lean_Util_FindExpr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_EnvExtensionState_inhabited = _init_l_Lean_EnvExtensionState_inhabited(); @@ -13311,10 +13311,10 @@ l_Lean_Environment_Inhabited = _init_l_Lean_Environment_Inhabited(); lean_mark_persistent(l_Lean_Environment_Inhabited); l_Lean_EnvExtension_setState___closed__1 = _init_l_Lean_EnvExtension_setState___closed__1(); lean_mark_persistent(l_Lean_EnvExtension_setState___closed__1); -res = l___private_Init_Lean_Environment_4__mkEnvExtensionsRef(lean_io_mk_world()); +res = l___private_Lean_Environment_4__mkEnvExtensionsRef(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; -l___private_Init_Lean_Environment_5__envExtensionsRef = lean_io_result_get_value(res); -lean_mark_persistent(l___private_Init_Lean_Environment_5__envExtensionsRef); +l___private_Lean_Environment_5__envExtensionsRef = lean_io_result_get_value(res); +lean_mark_persistent(l___private_Lean_Environment_5__envExtensionsRef); lean_dec_ref(res); l_Lean_EnvExtension_Inhabited___rarg___closed__1 = _init_l_Lean_EnvExtension_Inhabited___rarg___closed__1(); lean_mark_persistent(l_Lean_EnvExtension_Inhabited___rarg___closed__1); @@ -13336,10 +13336,10 @@ l_Lean_PersistentEnvExtension_inhabited___rarg___closed__3 = _init_l_Lean_Persis lean_mark_persistent(l_Lean_PersistentEnvExtension_inhabited___rarg___closed__3); l_Lean_PersistentEnvExtension_inhabited___rarg___closed__4 = _init_l_Lean_PersistentEnvExtension_inhabited___rarg___closed__4(); lean_mark_persistent(l_Lean_PersistentEnvExtension_inhabited___rarg___closed__4); -res = l___private_Init_Lean_Environment_7__mkPersistentEnvExtensionsRef(lean_io_mk_world()); +res = l___private_Lean_Environment_7__mkPersistentEnvExtensionsRef(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; -l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef = lean_io_result_get_value(res); -lean_mark_persistent(l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef); +l___private_Lean_Environment_8__persistentEnvExtensionsRef = lean_io_result_get_value(res); +lean_mark_persistent(l___private_Lean_Environment_8__persistentEnvExtensionsRef); lean_dec_ref(res); l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1 = _init_l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1(); lean_mark_persistent(l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1); @@ -13396,8 +13396,8 @@ l_Lean_importModulesAux___main___closed__2 = _init_l_Lean_importModulesAux___mai lean_mark_persistent(l_Lean_importModulesAux___main___closed__2); l_Lean_importModulesAux___main___closed__3 = _init_l_Lean_importModulesAux___main___closed__3(); lean_mark_persistent(l_Lean_importModulesAux___main___closed__3); -l___private_Init_Lean_Environment_9__getEntriesFor___main___closed__1 = _init_l___private_Init_Lean_Environment_9__getEntriesFor___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Environment_9__getEntriesFor___main___closed__1); +l___private_Lean_Environment_9__getEntriesFor___main___closed__1 = _init_l___private_Lean_Environment_9__getEntriesFor___main___closed__1(); +lean_mark_persistent(l___private_Lean_Environment_9__getEntriesFor___main___closed__1); l_Array_iterateMAux___main___at_Lean_importModules___spec__9___closed__1 = _init_l_Array_iterateMAux___main___at_Lean_importModules___spec__9___closed__1(); lean_mark_persistent(l_Array_iterateMAux___main___at_Lean_importModules___spec__9___closed__1); l_Lean_importModules___closed__1 = _init_l_Lean_importModules___closed__1(); @@ -13451,12 +13451,12 @@ l_Lean_Environment_displayStats___closed__7 = _init_l_Lean_Environment_displaySt lean_mark_persistent(l_Lean_Environment_displayStats___closed__7); l_Lean_Environment_displayStats___closed__8 = _init_l_Lean_Environment_displayStats___closed__8(); lean_mark_persistent(l_Lean_Environment_displayStats___closed__8); -l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__1 = _init_l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__1); -l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__2 = _init_l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__2); -l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__3 = _init_l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__3); +l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__1 = _init_l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__1); +l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__2 = _init_l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__2); +l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__3 = _init_l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__3); l_Lean_Environment_evalConstCheck___rarg___closed__1 = _init_l_Lean_Environment_evalConstCheck___rarg___closed__1(); lean_mark_persistent(l_Lean_Environment_evalConstCheck___rarg___closed__1); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/EqnCompiler.c b/stage0/stdlib/Lean/EqnCompiler.c similarity index 70% rename from stage0/stdlib/Init/Lean/EqnCompiler.c rename to stage0/stdlib/Lean/EqnCompiler.c index 42cec6f3df..cb2352d6c1 100644 --- a/stage0/stdlib/Init/Lean/EqnCompiler.c +++ b/stage0/stdlib/Lean/EqnCompiler.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.EqnCompiler -// Imports: Init.Lean.EqnCompiler.MatchPattern +// Module: Lean.EqnCompiler +// Imports: Lean.EqnCompiler.MatchPattern #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,13 +13,13 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* initialize_Init_Lean_EqnCompiler_MatchPattern(lean_object*); +lean_object* initialize_Lean_EqnCompiler_MatchPattern(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_EqnCompiler(lean_object* w) { +lean_object* initialize_Lean_EqnCompiler(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_EqnCompiler_MatchPattern(lean_io_mk_world()); +res = initialize_Lean_EqnCompiler_MatchPattern(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/EqnCompiler/MatchPattern.c b/stage0/stdlib/Lean/EqnCompiler/MatchPattern.c similarity index 95% rename from stage0/stdlib/Init/Lean/EqnCompiler/MatchPattern.c rename to stage0/stdlib/Lean/EqnCompiler/MatchPattern.c index 8cee5af2cf..69e26f53bc 100644 --- a/stage0/stdlib/Init/Lean/EqnCompiler/MatchPattern.c +++ b/stage0/stdlib/Lean/EqnCompiler/MatchPattern.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.EqnCompiler.MatchPattern -// Imports: Init.Lean.Attributes +// Module: Lean.EqnCompiler.MatchPattern +// Imports: Lean.Attributes #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -121,13 +121,13 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_EqnCompiler_MatchPattern(lean_object* w) { +lean_object* initialize_Lean_EqnCompiler_MatchPattern(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_EqnCompiler_mkMatchPatternAttr___lambda__1___closed__1 = _init_l_Lean_EqnCompiler_mkMatchPatternAttr___lambda__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Eval.c b/stage0/stdlib/Lean/Eval.c similarity index 95% rename from stage0/stdlib/Init/Lean/Eval.c rename to stage0/stdlib/Lean/Eval.c index f441487e66..c529c66f79 100644 --- a/stage0/stdlib/Init/Lean/Eval.c +++ b/stage0/stdlib/Lean/Eval.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Eval -// Imports: Init.Control.Reader Init.System.IO Init.Lean.Environment +// Module: Lean.Eval +// Imports: Init.Control.Reader Init.System.IO Lean.Environment #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -192,9 +192,9 @@ return x_4; } lean_object* initialize_Init_Control_Reader(lean_object*); lean_object* initialize_Init_System_IO(lean_object*); -lean_object* initialize_Init_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Eval(lean_object* w) { +lean_object* initialize_Lean_Eval(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -204,7 +204,7 @@ lean_dec_ref(res); res = initialize_Init_System_IO(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Expr.c b/stage0/stdlib/Lean/Expr.c similarity index 94% rename from stage0/stdlib/Init/Lean/Expr.c rename to stage0/stdlib/Lean/Expr.c index 7f45b6dc18..829cfe9e99 100644 --- a/stage0/stdlib/Init/Lean/Expr.c +++ b/stage0/stdlib/Lean/Expr.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Expr -// Imports: Init.Data.HashMap Init.Data.HashSet Init.Data.PersistentHashMap Init.Data.PersistentHashSet Init.Lean.Data.KVMap Init.Lean.Level +// Module: Lean.Expr +// Imports: Init.Data.HashMap Init.Data.HashSet Init.Data.PersistentHashMap Init.Data.PersistentHashSet Lean.Data.KVMap Lean.Level #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,13 +15,13 @@ extern "C" { #endif lean_object* l_Lean_Expr_isBinding___boxed(lean_object*); lean_object* l_Lean_Expr_letName_x21___closed__2; +lean_object* l___private_Lean_Expr_8__etaExpandedBody(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_updateSort___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_forall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Expr_instantiateLevelParamsArray___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkDecIsFalse___closed__2; lean_object* l_Lean_Expr_Data_hash___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_5__withAppRevAux___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_List_hash___at_Lean_mkConst___spec__1___boxed(lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_Lean_Expr_bindingDomain_x21___boxed(lean_object*); @@ -37,7 +37,9 @@ uint8_t l_Lean_Expr_isHeadBetaTargetFn(lean_object*); uint8_t l_UInt64_decEq(uint64_t, uint64_t); lean_object* l_Lean_Expr_HasBeq___closed__1; lean_object* l_Lean_Expr_abstract___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); lean_object* l_Lean_exprToExprStructEq(lean_object*); +lean_object* l___private_Lean_Expr_11__getParamSubst___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_updateConst___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkDecIsTrue___closed__3; lean_object* l_unreachable_x21___rarg(lean_object*); @@ -46,16 +48,16 @@ size_t l_UInt32_toUSize(uint32_t); lean_object* l_Lean_mkApp6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_eqv___boxed(lean_object*, lean_object*); uint8_t l_Lean_Expr_isMData(lean_object*); +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkDecIsFalse___closed__1; +lean_object* l___private_Lean_Expr_10__hasAnyFVarAux(lean_object*, lean_object*); lean_object* l_Lean_ExprStructEq_Hashable___closed__1; lean_object* l_Lean_mkLocalEx___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_mdata(lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); -lean_object* l___private_Init_Lean_Expr_6__mkAppRevRangeAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppArgs(lean_object*); -lean_object* l___private_Init_Lean_Expr_7__betaRevAux___main(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Expr_InstantiateLevelParams_instantiate___main___at_Lean_Expr_instantiateLevelParamsArray___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_isLit___boxed(lean_object*); @@ -69,7 +71,6 @@ lean_object* l_Lean_Literal_hasLess; lean_object* l_Lean_Expr_isOptParam___boxed(lean_object*); lean_object* l_Lean_Expr_updateMData_x21___closed__1; lean_object* l_List_map___main___at_Lean_Expr_instantiateLevelParams___spec__4(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__3; lean_object* l_Lean_mkForallEx___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_Data_hasBeq___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkLambda___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -86,6 +87,8 @@ lean_object* l_Lean_Expr_betaRev___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_verboseOption___closed__3; lean_object* l_Lean_Literal_type___closed__5; lean_object* l_Lean_Expr_mvarId_x21___boxed(lean_object*); +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_5__withAppRevAux(lean_object*); lean_object* l_Lean_ExprStructEq_Hashable; lean_object* l___private_Init_Util_1__mkPanicMessage(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_instantiateLevelParamsArray(lean_object*, lean_object*, lean_object*); @@ -95,6 +98,7 @@ extern lean_object* l_Lean_Level_mkData___closed__1; lean_object* l_Lean_Expr_mvarId_x21___closed__1; uint8_t l_Lean_Level_hasMVar(lean_object*); lean_object* l_Lean_Expr_constName_x21___boxed(lean_object*); +lean_object* l___private_Lean_Expr_8__etaExpandedBody___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppRev___rarg(lean_object*, lean_object*); uint64_t l_Lean_Expr_mkData___closed__3; uint64_t l_Lean_Expr_mkDataForBinder(size_t, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t); @@ -111,6 +115,7 @@ lean_object* l_Lean_Expr_updateLet___boxed(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Expr_appFn_x21(lean_object*); lean_object* l_Lean_Expr_hasLevelMVar___boxed(lean_object*); lean_object* l_Lean_Expr_isAutoParam___boxed(lean_object*); +lean_object* l___private_Lean_Expr_12__getParamSubstArray(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21___closed__2; lean_object* l_Lean_BinderInfo_toUInt64___boxed(lean_object*); @@ -121,6 +126,7 @@ lean_object* l_Lean_Literal_type___closed__3; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Literal_inhabited___closed__1; +lean_object* l___private_Lean_Expr_1__Expr_mkDataCore___closed__3; lean_object* lean_expr_lift_loose_bvars(lean_object*, lean_object*, lean_object*); uint8_t lean_expr_has_level_mvar(lean_object*); lean_object* l_Lean_Expr_updateForall_x21___closed__1; @@ -131,7 +137,6 @@ lean_object* l_Lean_Expr_getAppFn___main(lean_object*); extern lean_object* l_Lean_Name_inhabited; extern lean_object* l_Lean_Level_Inhabited; lean_object* l_Lean_Expr_getRevArgD(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_11__getParamSubst___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppArgs___closed__1; uint8_t l_Lean_Level_hasParam(lean_object*); lean_object* l_Lean_Expr_updateApp_x21(lean_object*, lean_object*, lean_object*); @@ -140,7 +145,6 @@ lean_object* l_Lean_Expr_updateForall_x21___boxed(lean_object*, lean_object*, le lean_object* l_Lean_Expr_appArg_x21(lean_object*); lean_object* l_Lean_Expr_fvarId_x21___closed__2; uint8_t lean_expr_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_10__hasAnyFVarAux(lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); lean_object* l_Lean_Expr_letName_x21___closed__1; lean_object* l_Lean_Expr_isAppOfArity___main___boxed(lean_object*, lean_object*, lean_object*); @@ -148,11 +152,9 @@ lean_object* l_Lean_BinderInfo_hashable___closed__1; lean_object* l_Lean_Expr_letName_x21___boxed(lean_object*); lean_object* l_Lean_Expr_updateForall_x21(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Expr_looseBVarRange___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_12__getParamSubstArray___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_9__etaExpandedAux(lean_object*, lean_object*); lean_object* l_Lean_Expr_mkDataForBinder___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_9__etaExpandedAux(lean_object*, lean_object*); lean_object* l_Lean_BinderInfo_hash___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_8__etaExpandedBody(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_mk_forall(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* lean_expr_instantiate(lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingName_x21___closed__2; @@ -161,13 +163,10 @@ lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Expr_hasExprMVarEx___boxed(lean_object*); lean_object* l_Lean_ExprStructEq_HasRepr(lean_object*); lean_object* l_Lean_Expr_hasExprMVar___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_6__mkAppRevRangeAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppRev___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); -lean_object* l___private_Init_Lean_Expr_12__getParamSubstArray___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingName_x21___boxed(lean_object*); lean_object* l_Lean_Expr_updateLambdaE_x21___closed__1; -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn___boxed(lean_object*); lean_object* l_List_foldr___main___at_Lean_mkConst___spec__3___boxed(lean_object*, lean_object*); uint8_t lean_expr_has_loose_bvar(lean_object*, lean_object*); @@ -179,6 +178,7 @@ lean_object* l_Lean_Expr_instantiateLevelParamsCore(lean_object*, lean_object*); lean_object* l_Lean_Expr_updateFn___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkDecIsTrue(lean_object*, lean_object*); lean_object* l_Lean_mkLet___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_1__Expr_mkDataCore___boxed__const__1; lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); lean_object* l_Lean_Expr_InstantiateLevelParams_instantiate___main___at_Lean_Expr_instantiateLevelParamsArray___spec__1(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_lower_loose_bvars(lean_object*, lean_object*, lean_object*); @@ -187,12 +187,13 @@ uint8_t l_Lean_Expr_Data_hasExprMVar(uint64_t); lean_object* l_Lean_Literal_type(lean_object*); lean_object* l_Lean_Literal_beq___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_isConstOf___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_1__Expr_mkDataCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_mk_mdata(lean_object*, lean_object*); uint64_t l_Lean_BinderInfo_toUInt64(uint8_t); size_t l_List_foldl___main___at_Lean_mkConst___spec__2(size_t, lean_object*); lean_object* l_Lean_Expr_updateLambda_x21(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_4__getAppRevArgsAux(lean_object*, lean_object*); lean_object* l_Lean_Expr_updateForall_x21___closed__2; lean_object* l_Lean_mkProj(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getOptParamDefault_x3f___closed__2; @@ -206,15 +207,14 @@ lean_object* l_Lean_ExprStructEq_beq___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_updateSort_x21(lean_object*, lean_object*); uint8_t lean_expr_has_expr_mvar(lean_object*); extern lean_object* l_List_Monad; +lean_object* l___private_Lean_Expr_3__getAppArgsAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Literal_type___closed__6; -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLevelParam(lean_object*); -lean_object* l___private_Init_Lean_Expr_12__getParamSubstArray___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_updateConst_x21(lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Expr_constLevels_x21(lean_object*); +lean_object* l___private_Lean_Expr_11__getParamSubst___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_hasLevelParam___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_11__getParamSubst___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_updateFn___main___boxed(lean_object*, lean_object*); uint8_t lean_expr_has_mvar(lean_object*); uint8_t l_Lean_KVMap_getBool(lean_object*, lean_object*, uint8_t); @@ -232,7 +232,7 @@ uint8_t l_Lean_Expr_hasExprMVar(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_abstractRange___boxed(lean_object*, lean_object*, lean_object*); uint32_t l_UInt64_toUInt32(uint64_t); -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_12__getParamSubstArray___main(lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Expr_data(lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); @@ -243,13 +243,11 @@ lean_object* l_Lean_Expr_updateProj_x21(lean_object*, lean_object*); lean_object* l_Lean_mkDecIsTrue___closed__1; lean_object* l_Lean_BinderInfo_beq___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_instantiateLevelParams(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_5__withAppRevAux___rarg(lean_object*, lean_object*, lean_object*); +uint64_t l___private_Lean_Expr_1__Expr_mkDataCore(size_t, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t); lean_object* l_Lean_Expr_getAutoParamTactic_x3f___boxed(lean_object*); lean_object* l_Lean_Expr_Data_hasLevelParam___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_5__withAppRevAux___main(lean_object*); lean_object* l_Lean_Expr_isFVar___boxed(lean_object*); size_t l_Lean_Name_hash(lean_object*); -lean_object* l___private_Init_Lean_Expr_10__hasAnyFVarAux___main(lean_object*, lean_object*); lean_object* l_Lean_Level_instantiateParams___main___at_Lean_Expr_instantiateLevelParams___spec__2___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_Data_hasFVar(uint64_t); lean_object* l_Lean_Expr_hasMVarEx___boxed(lean_object*); @@ -258,6 +256,7 @@ extern uint64_t l_UInt64_Inhabited; lean_object* l_Lean_Expr_fvarId_x21___boxed(lean_object*); lean_object* l_Lean_Literal_inhabited; lean_object* l_Lean_Expr_fvarId_x21___closed__1; +lean_object* l___private_Lean_Expr_6__mkAppRevRangeAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_mk_bvar(lean_object*); lean_object* l_Lean_mkDecIsTrue___closed__2; size_t l_Lean_Expr_hash(lean_object*); @@ -270,6 +269,7 @@ lean_object* l_Lean_Expr_bindingDomain_x21___closed__1; lean_object* l_Lean_KVMap_insertCore___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_InstantiateLevelParams_instantiate(lean_object*, lean_object*); lean_object* lean_expr_mk_const(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_1__Expr_mkDataCore___closed__2; lean_object* l_Lean_mkAppRange(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Literal_type___closed__4; lean_object* l_Lean_mkDecIsTrue___closed__4; @@ -281,7 +281,6 @@ uint8_t l_Lean_Expr_Data_hasLevelMVar(uint64_t); lean_object* lean_expr_dbg_to_string(lean_object*); lean_object* l_Lean_Expr_updateConst_x21___closed__1; uint64_t l_Lean_Expr_mkDataForLet(size_t, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t); -lean_object* l___private_Init_Lean_Expr_8__etaExpandedBody___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Literal_type___closed__2; lean_object* l_Lean_Expr_mkDataForLet___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_instantiate___boxed(lean_object*, lean_object*); @@ -292,7 +291,6 @@ uint8_t l_Lean_Expr_hasLevelMVar(lean_object*); uint8_t l_List_foldr___main___at_Lean_mkConst___spec__3(uint8_t, lean_object*); lean_object* lean_expr_mk_let(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_7__betaRevAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_instantiateRange___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_hasFVar___boxed(lean_object*); lean_object* l_Lean_mkLambda(lean_object*, uint8_t, lean_object*, lean_object*); @@ -306,7 +304,6 @@ lean_object* l_Lean_Level_instantiateParams___main___at_Lean_Expr_instantiateLev lean_object* l_Lean_Expr_isHeadBetaTargetFn___boxed(lean_object*); lean_object* l_Lean_Expr_consumeMData(lean_object*); uint64_t l_UInt64_land(uint64_t, uint64_t); -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_mk_app(lean_object*, lean_object*); lean_object* l_Lean_Expr_constName_x21___closed__2; lean_object* lean_expr_update_let(lean_object*, lean_object*, lean_object*, lean_object*); @@ -339,6 +336,7 @@ lean_object* l_Lean_Expr_updateProj_x21___closed__2; lean_object* l_Lean_mkLocal(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Literal_hasBeq; lean_object* l_Lean_Expr_getAppNumArgsAux___main___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_5__withAppRevAux___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_instantiateRevRange___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_updateLambda_x21___closed__1; lean_object* l_Lean_mkAppN___boxed(lean_object*, lean_object*); @@ -348,7 +346,6 @@ lean_object* l_Lean_Expr_mkDataForLet___boxed__const__1; lean_object* l_Lean_Expr_updateProj_x21___closed__1; uint8_t l_Lean_BinderInfo_inhabited; lean_object* lean_level_update_imax(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_HasRepr; lean_object* l_Lean_isAnnotation_x3f(lean_object*, lean_object*); lean_object* l_Lean_Expr_isProj___boxed(lean_object*); @@ -358,20 +355,18 @@ lean_object* l_Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); lean_object* l_Lean_Expr_getOptParamDefault_x3f___boxed(lean_object*); uint8_t l_Lean_BinderInfo_beq(uint8_t, uint8_t); lean_object* l_Lean_Expr_updateMData___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_7__betaRevAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_Hashable___closed__1; lean_object* l_Lean_Expr_appFn_x21___boxed(lean_object*); lean_object* l_Lean_Expr_hasLevelMVarEx___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_6__mkAppRevRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_12__getParamSubstArray___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_mk_mvar(lean_object*); -uint64_t l___private_Init_Lean_Expr_1__Expr_mkDataCore(size_t, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t); lean_object* l_Lean_Expr_bindingName_x21(lean_object*); lean_object* l_Lean_Expr_constLevels_x21___boxed(lean_object*); lean_object* l_Lean_Level_instantiateParams___main___at_Lean_Expr_instantiateLevelParamsArray___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_BinderInfo_hasBeq; -lean_object* l___private_Init_Lean_Expr_11__getParamSubst(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_constLevels_x21___closed__1; uint8_t lean_expr_eqv(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); lean_object* l_Lean_Expr_getOptParamDefault_x3f___closed__1; uint8_t l_Lean_Expr_isMVar(lean_object*); uint8_t lean_expr_equal(lean_object*, lean_object*); @@ -401,6 +396,7 @@ lean_object* l_Lean_Expr_mkDataForBinder___boxed__const__1; lean_object* l_Lean_Expr_getRevArg_x21___main___closed__1; extern uint8_t l_Bool_Inhabited; lean_object* l_Lean_Expr_bvarIdx_x21___closed__1; +lean_object* l___private_Lean_Expr_4__getAppRevArgsAux(lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isHeadBetaTargetFn___main(lean_object*); @@ -410,6 +406,7 @@ lean_object* l_Lean_Expr_isAppOfArity___boxed(lean_object*, lean_object*, lean_o lean_object* l_Lean_Expr_appArg_x21___boxed(lean_object*); uint64_t l_UInt64_shiftLeft(uint64_t, uint64_t); lean_object* l_Lean_Expr_binderInfo___boxed(lean_object*); +lean_object* l___private_Lean_Expr_5__withAppRevAux___main(lean_object*); lean_object* l_Lean_Literal_lt___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_updateFn___main(lean_object*, lean_object*); lean_object* l_Lean_mkApp7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -434,8 +431,7 @@ lean_object* l_Lean_Expr_quickLt___boxed(lean_object*, lean_object*); uint64_t l_UInt32_toUInt64(uint32_t); lean_object* l_Lean_BinderInfo_isAuxDecl___boxed(lean_object*); uint8_t l_Lean_Expr_isFVar(lean_object*); -lean_object* l___private_Init_Lean_Expr_12__getParamSubstArray(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); uint64_t l_Lean_Expr_Data_inhabited; lean_object* l_Lean_Expr_instantiate1___boxed(lean_object*, lean_object*); @@ -446,20 +442,22 @@ lean_object* l_Lean_Expr_updateLet_x21___closed__1; lean_object* l_Lean_Expr_constName_x3f(lean_object*); lean_object* lean_expr_update_lambda(lean_object*, uint8_t, lean_object*, lean_object*); uint64_t l_Lean_Expr_mkData___closed__4; +lean_object* l___private_Lean_Expr_11__getParamSubst___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_mk_sort(lean_object*); lean_object* l_Lean_Level_instantiateParams___main___at_Lean_Expr_instantiateLevelParamsArray___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Literal_hash___boxed(lean_object*); lean_object* lean_level_update_succ(lean_object*, lean_object*); lean_object* l_Lean_Expr_isBVar___boxed(lean_object*); +lean_object* l___private_Lean_Expr_6__mkAppRevRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); lean_object* l_Lean_Expr_instantiateLevelParams___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main(lean_object*); lean_object* lean_expr_mk_fvar(lean_object*); lean_object* l_Lean_Expr_consumeMData___main(lean_object*); -lean_object* l___private_Init_Lean_Expr_6__mkAppRevRangeAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLet(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Expr_Hashable; uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); +lean_object* l___private_Lean_Expr_9__etaExpandedAux___main(lean_object*, lean_object*); lean_object* l_Lean_Expr_updateProj___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_Inhabited; uint8_t l_Lean_Expr_isStringLit(lean_object*); @@ -467,6 +465,7 @@ size_t lean_expr_hash(lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); lean_object* l_Lean_Expr_Data_hasFVar___boxed(lean_object*); uint8_t l_Lean_Expr_isProj(lean_object*); +lean_object* l___private_Lean_Expr_7__betaRevAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_binderInfo(lean_object*); size_t lean_usize_mix_hash(size_t, size_t); uint8_t l_Lean_Expr_isOptParam(lean_object*); @@ -475,6 +474,7 @@ lean_object* l_Lean_Expr_getArg_x21(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_InstantiateLevelParams_instantiate___main___at_Lean_Expr_instantiateLevelParams___spec__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_Data_hasBeq(uint64_t, uint64_t); +lean_object* l___private_Lean_Expr_6__mkAppRevRangeAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint32_t lean_expr_loose_bvar_range(lean_object*); lean_object* l_Lean_Expr_mkAppRevRange___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_updateForallE_x21(lean_object*, lean_object*, lean_object*); @@ -483,6 +483,7 @@ lean_object* l_Lean_BinderInfo_hashable; lean_object* l_Lean_Expr_InstantiateLevelParams_instantiate___main(lean_object*, lean_object*); lean_object* l_Lean_Expr_mkData___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_BinderInfo_isExplicit___boxed(lean_object*); +lean_object* l___private_Lean_Expr_12__getParamSubstArray___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_isHeadBetaTargetFn___main___boxed(lean_object*); lean_object* l_Lean_Expr_HasToString___closed__1; uint64_t l_Lean_Expr_mkData___closed__1; @@ -490,30 +491,30 @@ lean_object* l_Lean_Expr_hashEx___boxed(lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_mkAppRev___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkDecIsFalse___closed__3; lean_object* l_Lean_Expr_isHeadBetaTarget___boxed(lean_object*); +lean_object* l___private_Lean_Expr_6__mkAppRevRangeAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_Data_nonDepLet___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_9__etaExpandedAux___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_7__betaRevAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkNatLit(lean_object*); lean_object* l_Lean_mkStrLit(lean_object*); lean_object* l_Lean_Expr_getArgD(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); +lean_object* l___private_Lean_Expr_11__getParamSubst(lean_object*, lean_object*, lean_object*); uint8_t l_List_foldr___main___at_Lean_mkConst___spec__4(uint8_t, lean_object*); lean_object* l_Lean_Expr_etaExpandedStrict_x3f(lean_object*); lean_object* l_Lean_Expr_updateLambdaE_x21(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_hasLooseBVar___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_1__Expr_mkDataCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Nat_Inhabited; uint64_t l_UInt64_shiftRight(uint64_t, uint64_t); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_hasLooseBVars___boxed(lean_object*); lean_object* lean_lit_type(lean_object*); lean_object* l_Lean_Expr_getArgD___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ExprStructEq_HasToString___boxed(lean_object*); lean_object* l_Lean_Expr_getRevArgD___main___boxed(lean_object*, lean_object*, lean_object*); size_t l_Lean_BinderInfo_hash(uint8_t); extern lean_object* l_List_get_x21___main___rarg___closed__2; -lean_object* l___private_Init_Lean_Expr_7__betaRevAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArgD___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -527,27 +528,26 @@ lean_object* l_Lean_Expr_consumeMData___boxed(lean_object*); lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); lean_object* l_Lean_Expr_equal___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_updateLet_x21(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__2; uint8_t l_Lean_Literal_lt(lean_object*, lean_object*); lean_object* l_Lean_Expr_updateForall___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Expr_isLambda___boxed(lean_object*); lean_object* l_Lean_Expr_constName_x21(lean_object*); -lean_object* l___private_Init_Lean_Expr_11__getParamSubst___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate_range(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_uint32_to_nat(uint32_t); lean_object* l_Lean_Expr_withAppAux(lean_object*); lean_object* l_Lean_Expr_lowerLooseBVars___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ExprStructEq_HasRepr___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_5__withAppRevAux(lean_object*); lean_object* l_Lean_Expr_updateForallE_x21___closed__1; +lean_object* l___private_Lean_Expr_10__hasAnyFVarAux___main(lean_object*, lean_object*); lean_object* l_Lean_MVData_hasEmptc; lean_object* lean_expr_update_const(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_2__mkAppRangeAux(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_7__betaRevAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_updateSort_x21___closed__1; lean_object* l_Lean_Expr_isConst___boxed(lean_object*); lean_object* l_List_foldr___main___at_Lean_mkConst___spec__4___boxed(lean_object*, lean_object*); size_t lean_string_hash(lean_object*); -lean_object* l___private_Init_Lean_Expr_1__Expr_mkDataCore___boxed__const__1; lean_object* l_Lean_Expr_isNatLit___boxed(lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_mkAppRev___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLocal___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -557,12 +557,12 @@ uint8_t l_Lean_Expr_isLet(lean_object*); uint8_t lean_string_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Expr_isLet___boxed(lean_object*); lean_object* l_Lean_ExprStructEq_hash___boxed(lean_object*); -lean_object* l___private_Init_Lean_Expr_7__betaRevAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_instantiateParams___main___at_Lean_Expr_instantiateLevelParams___spec__2(lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_isAnnotation_x3f___boxed(lean_object*, lean_object*); uint32_t l_Lean_Expr_Data_looseBVarRange(uint64_t); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_5__withAppRevAux___rarg(lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Expr_mkData(size_t, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t); lean_object* l_monadInhabited___rarg(lean_object*, lean_object*); lean_object* l_Lean_ExprStructEq_HasBeq; @@ -1276,15 +1276,15 @@ x_4 = lean_box_uint64(x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1() { +lean_object* _init_l___private_Lean_Expr_1__Expr_mkDataCore___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Expr"); +x_1 = lean_mk_string("Lean.Expr"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__2() { +lean_object* _init_l___private_Lean_Expr_1__Expr_mkDataCore___closed__2() { _start: { lean_object* x_1; @@ -1292,19 +1292,19 @@ x_1 = lean_mk_string("bound variable index is too big"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__3() { +lean_object* _init_l___private_Lean_Expr_1__Expr_mkDataCore___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___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(145u); x_3 = lean_unsigned_to_nat(42u); -x_4 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__2; +x_4 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__2; x_5 = l___private_Init_Util_1__mkPanicMessage(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* _init_l___private_Init_Lean_Expr_1__Expr_mkDataCore___boxed__const__1() { +lean_object* _init_l___private_Lean_Expr_1__Expr_mkDataCore___boxed__const__1() { _start: { uint64_t x_1; lean_object* x_2; @@ -1313,7 +1313,7 @@ x_2 = lean_box_uint64(x_1); return x_2; } } -uint64_t l___private_Init_Lean_Expr_1__Expr_mkDataCore(size_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t x_5, uint8_t x_6, uint8_t x_7, uint8_t x_8) { +uint64_t l___private_Lean_Expr_1__Expr_mkDataCore(size_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t x_5, uint8_t x_6, uint8_t x_7, uint8_t x_8) { _start: { lean_object* x_9; uint8_t x_10; @@ -1357,8 +1357,8 @@ return x_40; else { lean_object* x_41; lean_object* x_42; lean_object* x_43; uint64_t x_44; -x_41 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__3; -x_42 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___boxed__const__1; +x_41 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__3; +x_42 = l___private_Lean_Expr_1__Expr_mkDataCore___boxed__const__1; x_43 = lean_panic_fn(x_42, x_41); x_44 = lean_unbox_uint64(x_43); lean_dec(x_43); @@ -1366,7 +1366,7 @@ return x_44; } } } -lean_object* l___private_Init_Lean_Expr_1__Expr_mkDataCore___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Expr_1__Expr_mkDataCore___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { size_t x_9; uint8_t x_10; uint8_t x_11; uint8_t x_12; uint8_t x_13; uint8_t x_14; uint8_t x_15; uint64_t x_16; lean_object* x_17; @@ -1384,7 +1384,7 @@ x_14 = lean_unbox(x_7); lean_dec(x_7); x_15 = lean_unbox(x_8); lean_dec(x_8); -x_16 = l___private_Init_Lean_Expr_1__Expr_mkDataCore(x_9, x_2, x_10, x_11, x_12, x_13, x_14, x_15); +x_16 = l___private_Lean_Expr_1__Expr_mkDataCore(x_9, x_2, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_2); x_17 = lean_box_uint64(x_16); return x_17; @@ -1477,7 +1477,7 @@ return x_34; else { lean_object* x_35; lean_object* x_36; lean_object* x_37; uint64_t x_38; -x_35 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__3; +x_35 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__3; x_36 = l_Lean_Expr_mkData___boxed__const__1; x_37 = lean_panic_fn(x_36, x_35); x_38 = lean_unbox_uint64(x_37); @@ -1557,7 +1557,7 @@ return x_37; else { lean_object* x_38; lean_object* x_39; lean_object* x_40; uint64_t x_41; -x_38 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__3; +x_38 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__3; x_39 = l_Lean_Expr_mkDataForBinder___boxed__const__1; x_40 = lean_panic_fn(x_39, x_38); x_41 = lean_unbox_uint64(x_40); @@ -1639,7 +1639,7 @@ return x_37; else { lean_object* x_38; lean_object* x_39; lean_object* x_40; uint64_t x_41; -x_38 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__3; +x_38 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__3; x_39 = l_Lean_Expr_mkDataForLet___boxed__const__1; x_40 = lean_panic_fn(x_39, x_38); x_41 = lean_unbox_uint64(x_40); @@ -4529,7 +4529,7 @@ lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -4554,29 +4554,29 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___main___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___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_2__mkAppRangeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___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___private_Init_Lean_Expr_2__mkAppRangeAux(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_2__mkAppRangeAux(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; @@ -4586,7 +4586,7 @@ lean_object* l_Lean_mkAppRange(lean_object* x_1, lean_object* x_2, lean_object* _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_3, x_4, x_2, x_1); +x_5 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_3, x_4, x_2, x_1); return x_5; } } @@ -5294,7 +5294,7 @@ lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 5) @@ -5322,11 +5322,11 @@ return x_2; } } } -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_3__getAppArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_2, x_3); return x_4; } } @@ -5351,11 +5351,11 @@ x_5 = lean_mk_array(x_3, x_4); x_6 = lean_unsigned_to_nat(1u); x_7 = lean_nat_sub(x_3, x_6); lean_dec(x_3); -x_8 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_5, x_7); +x_8 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_5, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Expr_4__getAppRevArgsAux___main(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 5) @@ -5378,11 +5378,11 @@ return x_2; } } } -lean_object* l___private_Init_Lean_Expr_4__getAppRevArgsAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Expr_4__getAppRevArgsAux(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_2); +x_3 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_2); return x_3; } } @@ -5394,7 +5394,7 @@ x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_2); x_4 = lean_mk_empty_array_with_capacity(x_3); lean_dec(x_3); -x_5 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_4); +x_5 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_4); return x_5; } } @@ -5475,7 +5475,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Expr_withApp___rarg), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Expr_5__withAppRevAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_5__withAppRevAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 5) @@ -5499,27 +5499,27 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Expr_5__withAppRevAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Expr_5__withAppRevAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Expr_5__withAppRevAux___main___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Expr_5__withAppRevAux___main___rarg), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Expr_5__withAppRevAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_5__withAppRevAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Expr_5__withAppRevAux___main___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Expr_5__withAppRevAux___main___rarg(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Expr_5__withAppRevAux(lean_object* x_1) { +lean_object* l___private_Lean_Expr_5__withAppRevAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Expr_5__withAppRevAux___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Expr_5__withAppRevAux___rarg), 3, 0); return x_2; } } @@ -5531,7 +5531,7 @@ x_3 = lean_unsigned_to_nat(0u); x_4 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_3); x_5 = lean_mk_empty_array_with_capacity(x_4); lean_dec(x_4); -x_6 = l___private_Init_Lean_Expr_5__withAppRevAux___main___rarg(x_2, x_1, x_5); +x_6 = l___private_Lean_Expr_5__withAppRevAux___main___rarg(x_2, x_1, x_5); return x_6; } } @@ -5610,7 +5610,7 @@ lean_object* _init_l_Lean_Expr_getRevArg_x21___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(494u); x_3 = lean_unsigned_to_nat(20u); x_4 = l_List_get_x21___main___rarg___closed__2; @@ -5864,7 +5864,7 @@ lean_object* _init_l_Lean_Expr_appFn_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(514u); x_3 = lean_unsigned_to_nat(15u); x_4 = l_Lean_Expr_appFn_x21___closed__1; @@ -5905,7 +5905,7 @@ lean_object* _init_l_Lean_Expr_appArg_x21___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(518u); x_3 = lean_unsigned_to_nat(15u); x_4 = l_Lean_Expr_appFn_x21___closed__1; @@ -5954,7 +5954,7 @@ lean_object* _init_l_Lean_Expr_constName_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(522u); x_3 = lean_unsigned_to_nat(17u); x_4 = l_Lean_Expr_constName_x21___closed__1; @@ -6034,7 +6034,7 @@ lean_object* _init_l_Lean_Expr_constLevels_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(530u); x_3 = lean_unsigned_to_nat(18u); x_4 = l_Lean_Expr_constName_x21___closed__1; @@ -6083,7 +6083,7 @@ lean_object* _init_l_Lean_Expr_bvarIdx_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(534u); x_3 = lean_unsigned_to_nat(16u); x_4 = l_Lean_Expr_bvarIdx_x21___closed__1; @@ -6132,7 +6132,7 @@ lean_object* _init_l_Lean_Expr_fvarId_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(538u); x_3 = lean_unsigned_to_nat(14u); x_4 = l_Lean_Expr_fvarId_x21___closed__1; @@ -6181,7 +6181,7 @@ lean_object* _init_l_Lean_Expr_mvarId_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(542u); x_3 = lean_unsigned_to_nat(14u); x_4 = l_Lean_Expr_mvarId_x21___closed__1; @@ -6230,7 +6230,7 @@ lean_object* _init_l_Lean_Expr_bindingName_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(547u); x_3 = lean_unsigned_to_nat(21u); x_4 = l_Lean_Expr_bindingName_x21___closed__1; @@ -6280,7 +6280,7 @@ lean_object* _init_l_Lean_Expr_bindingDomain_x21___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(552u); x_3 = lean_unsigned_to_nat(21u); x_4 = l_Lean_Expr_bindingName_x21___closed__1; @@ -6330,7 +6330,7 @@ lean_object* _init_l_Lean_Expr_bindingBody_x21___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(557u); x_3 = lean_unsigned_to_nat(21u); x_4 = l_Lean_Expr_bindingName_x21___closed__1; @@ -6388,7 +6388,7 @@ lean_object* _init_l_Lean_Expr_letName_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(561u); x_3 = lean_unsigned_to_nat(20u); x_4 = l_Lean_Expr_letName_x21___closed__1; @@ -6929,7 +6929,7 @@ lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Expr_6__mkAppRevRangeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_6__mkAppRevRangeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -6954,29 +6954,29 @@ return x_3; } } } -lean_object* l___private_Init_Lean_Expr_6__mkAppRevRangeAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_6__mkAppRevRangeAux___main___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___private_Init_Lean_Expr_6__mkAppRevRangeAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_6__mkAppRevRangeAux___main(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Expr_6__mkAppRevRangeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_6__mkAppRevRangeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Expr_6__mkAppRevRangeAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_6__mkAppRevRangeAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Expr_6__mkAppRevRangeAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_6__mkAppRevRangeAux___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___private_Init_Lean_Expr_6__mkAppRevRangeAux(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_6__mkAppRevRangeAux(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; @@ -6986,7 +6986,7 @@ lean_object* l_Lean_Expr_mkAppRevRange(lean_object* x_1, lean_object* x_2, lean_ _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Expr_6__mkAppRevRangeAux___main(x_4, x_2, x_1, x_3); +x_5 = l___private_Lean_Expr_6__mkAppRevRangeAux___main(x_4, x_2, x_1, x_3); return x_5; } } @@ -7000,7 +7000,7 @@ lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Expr_7__betaRevAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_7__betaRevAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -7020,7 +7020,7 @@ x_15 = lean_nat_sub(x_2, x_13); lean_dec(x_13); x_16 = lean_expr_instantiate_range(x_11, x_15, x_2, x_1); x_17 = lean_unsigned_to_nat(0u); -x_18 = l___private_Init_Lean_Expr_6__mkAppRevRangeAux___main(x_1, x_17, x_16, x_15); +x_18 = l___private_Lean_Expr_6__mkAppRevRangeAux___main(x_1, x_17, x_16, x_15); return x_18; } else @@ -7053,35 +7053,35 @@ x_6 = lean_nat_sub(x_2, x_4); lean_dec(x_4); x_7 = lean_expr_instantiate_range(x_3, x_6, x_2, x_1); x_8 = lean_unsigned_to_nat(0u); -x_9 = l___private_Init_Lean_Expr_6__mkAppRevRangeAux___main(x_1, x_8, x_7, x_6); +x_9 = l___private_Lean_Expr_6__mkAppRevRangeAux___main(x_1, x_8, x_7, x_6); return x_9; } } } -lean_object* l___private_Init_Lean_Expr_7__betaRevAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_7__betaRevAux___main___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___private_Init_Lean_Expr_7__betaRevAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_7__betaRevAux___main(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Expr_7__betaRevAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_7__betaRevAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Expr_7__betaRevAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_7__betaRevAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Expr_7__betaRevAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_7__betaRevAux___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___private_Init_Lean_Expr_7__betaRevAux(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_7__betaRevAux(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -7098,7 +7098,7 @@ x_5 = lean_nat_dec_eq(x_3, x_4); if (x_5 == 0) { lean_object* x_6; -x_6 = l___private_Init_Lean_Expr_7__betaRevAux___main(x_2, x_3, x_1, x_4); +x_6 = l___private_Lean_Expr_7__betaRevAux___main(x_2, x_3, x_1, x_4); lean_dec(x_3); return x_6; } @@ -7192,7 +7192,7 @@ x_4 = lean_unsigned_to_nat(0u); x_5 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_4); x_6 = lean_mk_empty_array_with_capacity(x_5); lean_dec(x_5); -x_7 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_6); +x_7 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_6); x_8 = l_Lean_Expr_betaRev(x_2, x_7); lean_dec(x_7); lean_dec(x_2); @@ -7220,7 +7220,7 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Expr_8__etaExpandedBody___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_8__etaExpandedBody___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -7348,15 +7348,15 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Expr_8__etaExpandedBody(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_8__etaExpandedBody(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Expr_8__etaExpandedBody___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Expr_8__etaExpandedBody___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Expr_9__etaExpandedAux___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Expr_9__etaExpandedAux___main(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 6) @@ -7376,16 +7376,16 @@ else { lean_object* x_7; lean_object* x_8; x_7 = lean_unsigned_to_nat(0u); -x_8 = l___private_Init_Lean_Expr_8__etaExpandedBody___main(x_1, x_2, x_7); +x_8 = l___private_Lean_Expr_8__etaExpandedBody___main(x_1, x_2, x_7); return x_8; } } } -lean_object* l___private_Init_Lean_Expr_9__etaExpandedAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Expr_9__etaExpandedAux(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Expr_9__etaExpandedAux___main(x_1, x_2); +x_3 = l___private_Lean_Expr_9__etaExpandedAux___main(x_1, x_2); return x_3; } } @@ -7394,7 +7394,7 @@ _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Expr_9__etaExpandedAux___main(x_1, x_2); +x_3 = l___private_Lean_Expr_9__etaExpandedAux___main(x_1, x_2); return x_3; } } @@ -7408,7 +7408,7 @@ x_2 = lean_ctor_get(x_1, 2); lean_inc(x_2); lean_dec(x_1); x_3 = lean_unsigned_to_nat(1u); -x_4 = l___private_Init_Lean_Expr_9__etaExpandedAux___main(x_2, x_3); +x_4 = l___private_Lean_Expr_9__etaExpandedAux___main(x_2, x_3); return x_4; } else @@ -7560,7 +7560,7 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Expr_10__hasAnyFVarAux___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Expr_10__hasAnyFVarAux___main(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -7595,7 +7595,7 @@ x_9 = lean_ctor_get(x_2, 1); lean_inc(x_9); lean_dec(x_2); lean_inc(x_1); -x_10 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_8); +x_10 = l___private_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_8); x_11 = lean_unbox(x_10); lean_dec(x_10); if (x_11 == 0) @@ -7622,7 +7622,7 @@ x_16 = lean_ctor_get(x_2, 2); lean_inc(x_16); lean_dec(x_2); lean_inc(x_1); -x_17 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_15); +x_17 = l___private_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_15); x_18 = lean_unbox(x_17); lean_dec(x_17); if (x_18 == 0) @@ -7649,7 +7649,7 @@ x_23 = lean_ctor_get(x_2, 2); lean_inc(x_23); lean_dec(x_2); lean_inc(x_1); -x_24 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_22); +x_24 = l___private_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_22); x_25 = lean_unbox(x_24); lean_dec(x_24); if (x_25 == 0) @@ -7678,14 +7678,14 @@ x_31 = lean_ctor_get(x_2, 3); lean_inc(x_31); lean_dec(x_2); lean_inc(x_1); -x_32 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_29); +x_32 = l___private_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_29); x_33 = lean_unbox(x_32); lean_dec(x_32); if (x_33 == 0) { lean_object* x_34; uint8_t x_35; lean_inc(x_1); -x_34 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_30); +x_34 = l___private_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_30); x_35 = lean_unbox(x_34); lean_dec(x_34); if (x_35 == 0) @@ -7755,11 +7755,11 @@ return x_49; } } } -lean_object* l___private_Init_Lean_Expr_10__hasAnyFVarAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Expr_10__hasAnyFVarAux(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_2); +x_3 = l___private_Lean_Expr_10__hasAnyFVarAux___main(x_1, x_2); return x_3; } } @@ -7767,7 +7767,7 @@ lean_object* l_Lean_Expr_hasAnyFVar(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Expr_10__hasAnyFVarAux___main(x_2, x_1); +x_3 = l___private_Lean_Expr_10__hasAnyFVarAux___main(x_2, x_1); return x_3; } } @@ -7783,7 +7783,7 @@ lean_object* _init_l_Lean_Expr_updateApp_x21___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(800u); x_3 = lean_unsigned_to_nat(18u); x_4 = l_Lean_Expr_appFn_x21___closed__1; @@ -7825,7 +7825,7 @@ lean_object* _init_l_Lean_Expr_updateConst_x21___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(809u); x_3 = lean_unsigned_to_nat(18u); x_4 = l_Lean_Expr_constName_x21___closed__1; @@ -7874,7 +7874,7 @@ lean_object* _init_l_Lean_Expr_updateSort_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(818u); x_3 = lean_unsigned_to_nat(14u); x_4 = l_Lean_Expr_updateSort_x21___closed__1; @@ -7931,7 +7931,7 @@ lean_object* _init_l_Lean_Expr_updateMData_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(835u); x_3 = lean_unsigned_to_nat(17u); x_4 = l_Lean_Expr_updateMData_x21___closed__1; @@ -7972,7 +7972,7 @@ lean_object* _init_l_Lean_Expr_updateProj_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(840u); x_3 = lean_unsigned_to_nat(18u); x_4 = l_Lean_Expr_updateProj_x21___closed__1; @@ -8023,7 +8023,7 @@ lean_object* _init_l_Lean_Expr_updateForall_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(849u); x_3 = lean_unsigned_to_nat(21u); x_4 = l_Lean_Expr_updateForall_x21___closed__1; @@ -8067,7 +8067,7 @@ lean_object* _init_l_Lean_Expr_updateForallE_x21___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(854u); x_3 = lean_unsigned_to_nat(21u); x_4 = l_Lean_Expr_updateForall_x21___closed__1; @@ -8121,7 +8121,7 @@ lean_object* _init_l_Lean_Expr_updateLambda_x21___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(863u); x_3 = lean_unsigned_to_nat(17u); x_4 = l_Lean_Expr_updateLambda_x21___closed__1; @@ -8165,7 +8165,7 @@ lean_object* _init_l_Lean_Expr_updateLambdaE_x21___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(868u); x_3 = lean_unsigned_to_nat(17u); x_4 = l_Lean_Expr_updateLambda_x21___closed__1; @@ -8209,7 +8209,7 @@ lean_object* _init_l_Lean_Expr_updateLet_x21___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1; +x_1 = l___private_Lean_Expr_1__Expr_mkDataCore___closed__1; x_2 = lean_unsigned_to_nat(877u); x_3 = lean_unsigned_to_nat(20u); x_4 = l_Lean_Expr_letName_x21___closed__1; @@ -8656,7 +8656,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_Expr_11__getParamSubst___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_11__getParamSubst___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -8699,30 +8699,30 @@ return x_12; } } } -lean_object* l___private_Init_Lean_Expr_11__getParamSubst___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_11__getParamSubst___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Expr_11__getParamSubst___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Expr_11__getParamSubst___main(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Expr_11__getParamSubst(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_11__getParamSubst(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Expr_11__getParamSubst___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Expr_11__getParamSubst___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Expr_11__getParamSubst___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Expr_11__getParamSubst___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Expr_11__getParamSubst(x_1, x_2, x_3); +x_4 = l___private_Lean_Expr_11__getParamSubst(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -8803,7 +8803,7 @@ case 4: lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_3, 0); lean_inc(x_20); -x_21 = l___private_Init_Lean_Expr_11__getParamSubst___main(x_1, x_2, x_20); +x_21 = l___private_Lean_Expr_11__getParamSubst___main(x_1, x_2, x_20); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -8900,7 +8900,7 @@ case 4: lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_3, 0); lean_inc(x_20); -x_21 = l___private_Init_Lean_Expr_11__getParamSubst___main(x_1, x_2, x_20); +x_21 = l___private_Lean_Expr_11__getParamSubst___main(x_1, x_2, x_20); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -9334,7 +9334,7 @@ lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Expr_12__getParamSubstArray___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_12__getParamSubstArray___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -9391,30 +9391,30 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Expr_12__getParamSubstArray___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_12__getParamSubstArray___main___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___private_Init_Lean_Expr_12__getParamSubstArray___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_12__getParamSubstArray___main(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Expr_12__getParamSubstArray(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_12__getParamSubstArray(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Expr_12__getParamSubstArray___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_12__getParamSubstArray___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Expr_12__getParamSubstArray___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Expr_12__getParamSubstArray___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___private_Init_Lean_Expr_12__getParamSubstArray(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Expr_12__getParamSubstArray(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -9496,7 +9496,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; x_20 = lean_ctor_get(x_3, 0); lean_inc(x_20); x_21 = lean_unsigned_to_nat(0u); -x_22 = l___private_Init_Lean_Expr_12__getParamSubstArray___main(x_1, x_2, x_20, x_21); +x_22 = l___private_Lean_Expr_12__getParamSubstArray___main(x_1, x_2, x_20, x_21); lean_dec(x_20); if (lean_obj_tag(x_22) == 0) { @@ -9594,7 +9594,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; x_20 = lean_ctor_get(x_3, 0); lean_inc(x_20); x_21 = lean_unsigned_to_nat(0u); -x_22 = l___private_Init_Lean_Expr_12__getParamSubstArray___main(x_1, x_2, x_20, x_21); +x_22 = l___private_Lean_Expr_12__getParamSubstArray___main(x_1, x_2, x_20, x_21); lean_dec(x_20); if (lean_obj_tag(x_22) == 0) { @@ -10101,10 +10101,10 @@ lean_object* initialize_Init_Data_HashMap(lean_object*); lean_object* initialize_Init_Data_HashSet(lean_object*); lean_object* initialize_Init_Data_PersistentHashMap(lean_object*); lean_object* initialize_Init_Data_PersistentHashSet(lean_object*); -lean_object* initialize_Init_Lean_Data_KVMap(lean_object*); -lean_object* initialize_Init_Lean_Level(lean_object*); +lean_object* initialize_Lean_Data_KVMap(lean_object*); +lean_object* initialize_Lean_Level(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Expr(lean_object* w) { +lean_object* initialize_Lean_Expr(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -10120,10 +10120,10 @@ lean_dec_ref(res); res = initialize_Init_Data_PersistentHashSet(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_KVMap(lean_io_mk_world()); +res = initialize_Lean_Data_KVMap(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Level(lean_io_mk_world()); +res = initialize_Lean_Level(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Literal_inhabited___closed__1 = _init_l_Lean_Literal_inhabited___closed__1(); @@ -10154,14 +10154,14 @@ lean_mark_persistent(l_Lean_MData_empty); l_Lean_MVData_hasEmptc = _init_l_Lean_MVData_hasEmptc(); lean_mark_persistent(l_Lean_MVData_hasEmptc); l_Lean_Expr_Data_inhabited = _init_l_Lean_Expr_Data_inhabited(); -l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1 = _init_l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__1); -l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__2 = _init_l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__2); -l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__3 = _init_l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Expr_1__Expr_mkDataCore___closed__3); -l___private_Init_Lean_Expr_1__Expr_mkDataCore___boxed__const__1 = _init_l___private_Init_Lean_Expr_1__Expr_mkDataCore___boxed__const__1(); -lean_mark_persistent(l___private_Init_Lean_Expr_1__Expr_mkDataCore___boxed__const__1); +l___private_Lean_Expr_1__Expr_mkDataCore___closed__1 = _init_l___private_Lean_Expr_1__Expr_mkDataCore___closed__1(); +lean_mark_persistent(l___private_Lean_Expr_1__Expr_mkDataCore___closed__1); +l___private_Lean_Expr_1__Expr_mkDataCore___closed__2 = _init_l___private_Lean_Expr_1__Expr_mkDataCore___closed__2(); +lean_mark_persistent(l___private_Lean_Expr_1__Expr_mkDataCore___closed__2); +l___private_Lean_Expr_1__Expr_mkDataCore___closed__3 = _init_l___private_Lean_Expr_1__Expr_mkDataCore___closed__3(); +lean_mark_persistent(l___private_Lean_Expr_1__Expr_mkDataCore___closed__3); +l___private_Lean_Expr_1__Expr_mkDataCore___boxed__const__1 = _init_l___private_Lean_Expr_1__Expr_mkDataCore___boxed__const__1(); +lean_mark_persistent(l___private_Lean_Expr_1__Expr_mkDataCore___boxed__const__1); l_Lean_Expr_mkData___closed__1 = _init_l_Lean_Expr_mkData___closed__1(); l_Lean_Expr_mkData___closed__2 = _init_l_Lean_Expr_mkData___closed__2(); l_Lean_Expr_mkData___closed__3 = _init_l_Lean_Expr_mkData___closed__3(); diff --git a/stage0/stdlib/Init/Lean/HeadIndex.c b/stage0/stdlib/Lean/HeadIndex.c similarity index 90% rename from stage0/stdlib/Init/Lean/HeadIndex.c rename to stage0/stdlib/Lean/HeadIndex.c index 3591777c32..8b873f7db6 100644 --- a/stage0/stdlib/Init/Lean/HeadIndex.c +++ b/stage0/stdlib/Lean/HeadIndex.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.HeadIndex -// Imports: Init.Lean.Expr +// Module: Lean.HeadIndex +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,6 +17,7 @@ lean_object* l_Lean_Expr_toHeadIndex___boxed(lean_object*); lean_object* l_Lean_Expr_toHeadIndex___main___closed__2; lean_object* l_Lean_Expr_head___boxed(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* l___private_Lean_HeadIndex_1__headNumArgsAux___main(lean_object*, lean_object*); lean_object* l_Lean_Expr_toHeadIndex___main___boxed(lean_object*); lean_object* l_Lean_Expr_toHeadIndex___main___closed__1; lean_object* l_Lean_HeadIndex_HasBeq___closed__1; @@ -26,7 +27,6 @@ uint8_t l_Lean_HeadIndex_HeadIndex_beq(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Expr_head(lean_object*); lean_object* l_Lean_HeadIndex_Inhabited; -lean_object* l___private_Init_Lean_HeadIndex_1__headNumArgsAux___boxed(lean_object*, lean_object*); lean_object* l_Lean_HeadIndex_HeadIndex_hash___boxed(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Expr_toHeadIndex___main___closed__3; @@ -35,20 +35,20 @@ lean_object* l_Lean_Expr_toHeadIndex___main(lean_object*); lean_object* l_Lean_HeadIndex_HasBeq; size_t l_Lean_HeadIndex_HeadIndex_hash(lean_object*); size_t l_Lean_Name_hash(lean_object*); -lean_object* l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_headNumArgs(lean_object*); +lean_object* l___private_Lean_HeadIndex_1__headNumArgsAux(lean_object*, lean_object*); lean_object* l_Lean_Expr_toHeadIndex(lean_object*); size_t lean_usize_of_nat(lean_object*); -lean_object* l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main(lean_object*, lean_object*); lean_object* l_Lean_HeadIndex_Hashable; -lean_object* l___private_Init_Lean_HeadIndex_1__headNumArgsAux(lean_object*, lean_object*); lean_object* l_Lean_Expr_head___main___boxed(lean_object*); lean_object* l_Lean_HeadIndex_Hashable___closed__1; lean_object* l_Lean_Expr_headNumArgs___boxed(lean_object*); lean_object* l_Lean_HeadIndex_HeadIndex_beq___boxed(lean_object*, lean_object*); size_t l_Lean_Literal_hash(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +lean_object* l___private_Lean_HeadIndex_1__headNumArgsAux___boxed(lean_object*, lean_object*); size_t lean_usize_mix_hash(size_t, size_t); +lean_object* l___private_Lean_HeadIndex_1__headNumArgsAux___main___boxed(lean_object*, lean_object*); lean_object* _init_l_Lean_HeadIndex_Inhabited() { _start: { @@ -392,7 +392,7 @@ lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_HeadIndex_1__headNumArgsAux___main(lean_object* x_1, lean_object* x_2) { _start: { switch (lean_obj_tag(x_1)) { @@ -428,28 +428,28 @@ return x_2; } } } -lean_object* l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_HeadIndex_1__headNumArgsAux___main___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main(x_1, x_2); +x_3 = l___private_Lean_HeadIndex_1__headNumArgsAux___main(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_HeadIndex_1__headNumArgsAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_HeadIndex_1__headNumArgsAux(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main(x_1, x_2); +x_3 = l___private_Lean_HeadIndex_1__headNumArgsAux___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_HeadIndex_1__headNumArgsAux___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_HeadIndex_1__headNumArgsAux___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_HeadIndex_1__headNumArgsAux(x_1, x_2); +x_3 = l___private_Lean_HeadIndex_1__headNumArgsAux(x_1, x_2); lean_dec(x_1); return x_3; } @@ -459,7 +459,7 @@ _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main(x_1, x_2); +x_3 = l___private_Lean_HeadIndex_1__headNumArgsAux___main(x_1, x_2); return x_3; } } @@ -476,7 +476,7 @@ lean_object* _init_l_Lean_Expr_toHeadIndex___main___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.HeadIndex"); +x_1 = lean_mk_string("Lean.HeadIndex"); return x_1; } } @@ -628,13 +628,13 @@ lean_dec(x_1); return x_2; } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_HeadIndex(lean_object* w) { +lean_object* initialize_Lean_HeadIndex(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_HeadIndex_Inhabited = _init_l_Lean_HeadIndex_Inhabited(); diff --git a/stage0/stdlib/Init/Lean/Hygiene.c b/stage0/stdlib/Lean/Hygiene.c similarity index 96% rename from stage0/stdlib/Init/Lean/Hygiene.c rename to stage0/stdlib/Lean/Hygiene.c index 900ad9bba0..d409d060c0 100644 --- a/stage0/stdlib/Init/Lean/Hygiene.c +++ b/stage0/stdlib/Lean/Hygiene.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Hygiene -// Imports: Init.Control Init.LeanInit Init.Lean.Syntax +// Module: Lean.Hygiene +// Imports: Init.Control Init.LeanInit Lean.Syntax #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -187,9 +187,9 @@ return x_2; } lean_object* initialize_Init_Control(lean_object*); lean_object* initialize_Init_LeanInit(lean_object*); -lean_object* initialize_Init_Lean_Syntax(lean_object*); +lean_object* initialize_Lean_Syntax(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Hygiene(lean_object* w) { +lean_object* initialize_Lean_Hygiene(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -199,7 +199,7 @@ lean_dec_ref(res); res = initialize_Init_LeanInit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Syntax(lean_io_mk_world()); +res = initialize_Lean_Syntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Unhygienic_MonadQuotation___closed__1 = _init_l_Lean_Unhygienic_MonadQuotation___closed__1(); diff --git a/stage0/stdlib/Init/Lean/KeyedDeclsAttribute.c b/stage0/stdlib/Lean/KeyedDeclsAttribute.c similarity index 95% rename from stage0/stdlib/Init/Lean/KeyedDeclsAttribute.c rename to stage0/stdlib/Lean/KeyedDeclsAttribute.c index b92b918a12..955c771819 100644 --- a/stage0/stdlib/Init/Lean/KeyedDeclsAttribute.c +++ b/stage0/stdlib/Lean/KeyedDeclsAttribute.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.KeyedDeclsAttribute -// Imports: Init.Lean.Attributes Init.Lean.Compiler.InitAttr Init.Lean.ToExpr Init.Lean.Meta.Message +// Module: Lean.KeyedDeclsAttribute +// Imports: Lean.Attributes Lean.Compiler.InitAttr Lean.ToExpr Lean.Meta.Message #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -25,9 +25,9 @@ lean_object* l_AssocList_replace___main___at_Lean_KeyedDeclsAttribute_Table_inse uint8_t l_AssocList_contains___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__15___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__3; +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin(lean_object*); lean_object* l_AssocList_foldlM___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__18___rarg(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__6___rarg___boxed(lean_object*, lean_object*); lean_object* l_HashMapImp_expand___at_Lean_KeyedDeclsAttribute_Table_insert___spec__16(lean_object*); @@ -37,23 +37,23 @@ lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__9; lean_object* l_AssocList_contains___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__15(lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__11(lean_object*); lean_object* lean_array_uget(lean_object*, size_t); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__3(lean_object*); lean_object* l_mkHashMap___at_Lean_KeyedDeclsAttribute_init___spec__8(lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__1(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__24___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__4(lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__8; +lean_object* l___private_Lean_KeyedDeclsAttribute_2__addImported(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__13___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___closed__1; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_2__addImported___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__8___rarg(lean_object*, lean_object*); extern lean_object* l_PersistentHashMap_mkCollisionNode___rarg___closed__1; size_t l_USize_sub(size_t, size_t); @@ -63,7 +63,6 @@ lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_init___spec__1___closed__1; lean_object* lean_io_mk_ref(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_1__mkInitial___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_get(lean_object*, lean_object*); lean_object* l_HashMapImp_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__25___rarg(lean_object*, lean_object*, lean_object*); @@ -79,37 +78,36 @@ lean_object* l_Lean_KeyedDeclsAttribute_init(lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___spec__1___closed__2; lean_object* l_Lean_SMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__9___rarg(lean_object*, lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); -extern lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__5; lean_object* l_PersistentHashMap_insertAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__11___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_KeyedDeclsAttribute_2__addImported___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__11___rarg(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_IO_ofExcept___at_Lean_registerClassAttr___spec__1(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__13(lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_mkHashMap___at_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___spec__2(lean_object*); lean_object* l_HashMapImp_expand___at_Lean_KeyedDeclsAttribute_Table_insert___spec__16___rarg(lean_object*, lean_object*); lean_object* l_HashMapImp_moveEntries___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__17___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_1__mkInitial(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_ExtensionState_inhabited___closed__2; +lean_object* l___private_Lean_KeyedDeclsAttribute_1__mkInitial___rarg(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__10(lean_object*); extern lean_object* l_Lean_PersistentEnvExtension_inhabited___rarg___closed__1; uint8_t l_Array_anyRangeMAux___main___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__14___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_2__addImported(lean_object*); +lean_object* l___private_Lean_KeyedDeclsAttribute_1__mkInitial(lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__5___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___spec__1(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_ExtensionState_inhabited(lean_object*); -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_2__addImported___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_IO_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__10(lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__8___rarg___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__22___rarg(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Table_insert(lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__6___rarg___closed__2; -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_3__addExtensionEntry___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_EnvExtension_Inhabited___rarg___closed__1; lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_foldlM___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__29(lean_object*); @@ -127,11 +125,11 @@ lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__4; lean_object* l_AssocList_find_x3f___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__6(lean_object*); lean_object* l_mkHashMap___at_Lean_KeyedDeclsAttribute_init___spec__2___rarg(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_KeyedDeclsAttribute_3__addExtensionEntry(lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_ExtensionState_inhabited___spec__1(lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___closed__5; lean_object* l_mkHashMap___at_Lean_KeyedDeclsAttribute_init___spec__2(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__1; @@ -149,12 +147,12 @@ extern lean_object* l_PersistentHashMap_insertAux___main___rarg___closed__3; lean_object* l_mkHashMap___at_Lean_KeyedDeclsAttribute_init___spec__8___rarg(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_init___spec__1(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__1(lean_object*); lean_object* l_AssocList_contains___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__26___rarg___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Options_empty; lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_ExtensionState_inhabited___spec__1___closed__3; size_t lean_usize_modn(size_t, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_HashMapImp_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__25(lean_object*); @@ -181,15 +179,18 @@ lean_object* l_Lean_Environment_evalConstCheck___rarg(lean_object*, lean_object* extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___closed__5; lean_object* l_Lean_ParametricAttribute_setParam___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_PersistentHashMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__21___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__14(lean_object*); lean_object* l_Lean_SMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__9(lean_object*); +lean_object* l___private_Lean_KeyedDeclsAttribute_1__mkInitial___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__7; lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_ExtensionState_inhabited___spec__1___closed__1; -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_1__mkInitial___rarg(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__2___rarg(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__20(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_init___spec__7___closed__3; @@ -197,7 +198,6 @@ lean_object* l_IO_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__10___boxed lean_object* l_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__2___rarg___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__4___closed__2; extern lean_object* l_Lean_mkInitAttr___lambda__1___closed__1; -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_3__addExtensionEntry(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t l_USize_decLe(size_t, size_t); lean_object* l_Lean_mkApp(lean_object*, lean_object*); @@ -206,12 +206,13 @@ lean_object* l_Lean_Environment_addAndCompile(lean_object*, lean_object*, lean_o lean_object* l_PersistentHashMap_insertAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__22(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__24___rarg(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_init___spec__7___closed__2; +extern lean_object* l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; lean_object* l_Lean_Name_toExprAux___main(lean_object*); -extern lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; lean_object* l_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__5___rarg(lean_object*, lean_object*); lean_object* l_PersistentHashMap_empty___at_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___spec__3(lean_object*); lean_object* l_HashMapImp_moveEntries___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__28(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__11; +lean_object* l___private_Lean_KeyedDeclsAttribute_3__addExtensionEntry___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___closed__4; lean_object* lean_io_ref_reset(lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; @@ -225,7 +226,6 @@ lean_object* l_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___ lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___spec__1___closed__1; lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_AssocList_contains___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__26___rarg(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); @@ -235,26 +235,27 @@ lean_object* l_AssocList_replace___main___at_Lean_KeyedDeclsAttribute_Table_inse lean_object* lean_io_initializing(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__23___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_replace___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__30(lean_object*); lean_object* l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_init___spec__1___closed__2; +extern lean_object* l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__6___rarg(lean_object*, lean_object*); lean_object* l_mkHashMap___at_Lean_KeyedDeclsAttribute_ExtensionState_inhabited___spec__2(lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__12(lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__4(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__2(lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__6(lean_object*); lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___closed__6; +lean_object* l___private_Lean_KeyedDeclsAttribute_2__addImported___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_AssocList_foldlM___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__29___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_foldlM___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__18(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__1(lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__2; lean_object* l_HashMapImp_expand___at_Lean_KeyedDeclsAttribute_Table_insert___spec__27___rarg(lean_object*, lean_object*); @@ -266,12 +267,11 @@ extern lean_object* l_Lean_initAttr; lean_object* l_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__7(lean_object*); lean_object* l_mkHashMap___at_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___spec__2___rarg(lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__2(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2(lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__7___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__13; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_KeyedDeclsAttribute_Table_insert___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -2911,7 +2911,7 @@ x_2 = l_Lean_KeyedDeclsAttribute_KeyedDeclsAttribute_inhabited___closed__6; return x_2; } } -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_1__mkInitial___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_KeyedDeclsAttribute_1__mkInitial___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -2973,24 +2973,24 @@ return x_16; } } } -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_1__mkInitial(lean_object* x_1) { +lean_object* l___private_Lean_KeyedDeclsAttribute_1__mkInitial(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_KeyedDeclsAttribute_1__mkInitial___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_1__mkInitial___rarg___boxed), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_1__mkInitial___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_KeyedDeclsAttribute_1__mkInitial___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_KeyedDeclsAttribute_1__mkInitial___rarg(x_1, x_2); +x_3 = l___private_Lean_KeyedDeclsAttribute_1__mkInitial___rarg(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -3056,15 +3056,15 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__1(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg___boxed), 7, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg___boxed), 7, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -3092,7 +3092,7 @@ lean_dec(x_5); x_14 = lean_unsigned_to_nat(0u); lean_inc(x_2); lean_inc(x_1); -x_15 = l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg(x_1, x_2, x_11, x_11, x_14, x_6, x_7); +x_15 = l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg(x_1, x_2, x_11, x_11, x_14, x_6, x_7); lean_dec(x_11); if (lean_obj_tag(x_15) == 0) { @@ -3135,15 +3135,15 @@ return x_22; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__2(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg___boxed), 7, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg___boxed), 7, 0); return x_2; } } -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_2__addImported___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_KeyedDeclsAttribute_2__addImported___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; @@ -3157,7 +3157,7 @@ x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg(x_1, x_3, x_4, x_4, x_9, x_7, x_8); +x_10 = l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg(x_1, x_3, x_4, x_4, x_9, x_7, x_8); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -3240,45 +3240,45 @@ return x_27; } } } -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_2__addImported(lean_object* x_1) { +lean_object* l___private_Lean_KeyedDeclsAttribute_2__addImported(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_KeyedDeclsAttribute_2__addImported___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_2__addImported___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_3); return x_8; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_iterateMAux___main___at___private_Lean_KeyedDeclsAttribute_2__addImported___spec__2___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_3); return x_8; } } -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_2__addImported___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_KeyedDeclsAttribute_2__addImported___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_KeyedDeclsAttribute_2__addImported___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_KeyedDeclsAttribute_2__addImported___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_3__addExtensionEntry___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_KeyedDeclsAttribute_3__addExtensionEntry___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -3306,11 +3306,11 @@ lean_ctor_set(x_10, 1, x_9); return x_10; } } -lean_object* l___private_Init_Lean_KeyedDeclsAttribute_3__addExtensionEntry(lean_object* x_1) { +lean_object* l___private_Lean_KeyedDeclsAttribute_3__addExtensionEntry(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_KeyedDeclsAttribute_3__addExtensionEntry___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_3__addExtensionEntry___rarg), 2, 0); return x_2; } } @@ -3429,7 +3429,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; +x_2 = l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -3871,7 +3871,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -4067,7 +4067,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_KeyedDeclsAtt _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -4706,15 +4706,15 @@ lean_dec(x_5); lean_dec(x_4); x_45 = l_Lean_Name_toString___closed__1; x_46 = l_Lean_Name_toStringWithSep___main(x_45, x_7); -x_47 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; +x_47 = l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; x_48 = lean_string_append(x_47, x_46); lean_dec(x_46); -x_49 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; +x_49 = l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; x_50 = lean_string_append(x_48, x_49); x_51 = l_Lean_Name_toStringWithSep___main(x_45, x_3); x_52 = lean_string_append(x_50, x_51); lean_dec(x_51); -x_53 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; +x_53 = l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; x_54 = lean_string_append(x_52, x_53); x_55 = lean_alloc_ctor(18, 1, 0); lean_ctor_set(x_55, 0, x_54); @@ -4750,15 +4750,15 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean lean_dec(x_24); x_25 = l_Lean_Name_toString___closed__1; x_26 = l_Lean_Name_toStringWithSep___main(x_25, x_7); -x_27 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; +x_27 = l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__1; x_28 = lean_string_append(x_27, x_26); lean_dec(x_26); -x_29 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; +x_29 = l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__2; x_30 = lean_string_append(x_28, x_29); x_31 = l_Lean_Name_toStringWithSep___main(x_25, x_3); x_32 = lean_string_append(x_30, x_31); lean_dec(x_31); -x_33 = l___private_Init_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; +x_33 = l___private_Lean_Environment_14__throwUnexpectedType___rarg___closed__3; x_34 = lean_string_append(x_32, x_33); x_35 = lean_alloc_ctor(18, 1, 0); lean_ctor_set(x_35, 0, x_34); @@ -4918,7 +4918,7 @@ lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___closed__2() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_KeyedDeclsAttribute_3__addExtensionEntry___rarg), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_3__addExtensionEntry___rarg), 2, 0); return x_1; } } @@ -4971,11 +4971,11 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_1, 4); lean_inc(x_12); lean_inc(x_6); -x_13 = lean_alloc_closure((void*)(l___private_Init_Lean_KeyedDeclsAttribute_1__mkInitial___rarg___boxed), 2, 1); +x_13 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_1__mkInitial___rarg___boxed), 2, 1); lean_closure_set(x_13, 0, x_6); lean_inc(x_6); lean_inc(x_1); -x_14 = lean_alloc_closure((void*)(l___private_Init_Lean_KeyedDeclsAttribute_2__addImported___rarg___boxed), 5, 2); +x_14 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_2__addImported___rarg___boxed), 5, 2); lean_closure_set(x_14, 0, x_1); lean_closure_set(x_14, 1, x_6); x_15 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__2; @@ -5225,25 +5225,25 @@ x_10 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4(x_1, x_2, x_3, x_4, x_ return x_10; } } -lean_object* initialize_Init_Lean_Attributes(lean_object*); -lean_object* initialize_Init_Lean_Compiler_InitAttr(lean_object*); -lean_object* initialize_Init_Lean_ToExpr(lean_object*); -lean_object* initialize_Init_Lean_Meta_Message(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Compiler_InitAttr(lean_object*); +lean_object* initialize_Lean_ToExpr(lean_object*); +lean_object* initialize_Lean_Meta_Message(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_KeyedDeclsAttribute(lean_object* w) { +lean_object* initialize_Lean_KeyedDeclsAttribute(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_InitAttr(lean_io_mk_world()); +res = initialize_Lean_Compiler_InitAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_ToExpr(lean_io_mk_world()); +res = initialize_Lean_ToExpr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Message(lean_io_mk_world()); +res = initialize_Lean_Meta_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_ExtensionState_inhabited___spec__1___closed__1 = _init_l_Lean_SMap_empty___at_Lean_KeyedDeclsAttribute_ExtensionState_inhabited___spec__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Level.c b/stage0/stdlib/Lean/Level.c similarity index 90% rename from stage0/stdlib/Init/Lean/Level.c rename to stage0/stdlib/Lean/Level.c index 991e652cca..7ee9d34abf 100644 --- a/stage0/stdlib/Init/Lean/Level.c +++ b/stage0/stdlib/Lean/Level.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Level -// Imports: Init.Data.Option.Basic Init.Data.HashMap Init.Data.PersistentHashMap Init.Data.HashSet Init.Data.PersistentHashSet Init.Lean.Data.Name Init.Lean.Data.Format +// Module: Lean.Level +// Imports: Init.Data.Option.Basic Init.Data.HashMap Init.Data.PersistentHashMap Init.Data.HashSet Init.Data.PersistentHashSet Lean.Data.Name Lean.Data.Format #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,47 +18,40 @@ uint8_t l_Lean_Level_isNeverZero(lean_object*); lean_object* l_Lean_Level_normalize___main(lean_object*); lean_object* l_Lean_Level_isMax___boxed(lean_object*); lean_object* l_Lean_Level_mvarId_x21___closed__2; +lean_object* l___private_Lean_Level_5__mkMaxAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); uint8_t l_UInt64_decEq(uint64_t, uint64_t); lean_object* l_Lean_Level_data___boxed(lean_object*); lean_object* l_Lean_Level_mvarId_x21___closed__1; lean_object* l_Lean_Level_mvarId_x21___boxed(lean_object*); +lean_object* l___private_Lean_Level_5__mkMaxAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); size_t l_UInt32_toUSize(uint32_t); -lean_object* l___private_Init_Lean_Level_5__mkMaxAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux(lean_object*, lean_object*, uint8_t, lean_object*); uint8_t l_Lean_Name_lt___main(lean_object*, lean_object*); lean_object* l_Lean_Level_isMVar___boxed(lean_object*); lean_object* l_Lean_Level_updateIMax___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_5__mkMaxAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_mkData___closed__3; uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); uint64_t l_UInt64_add(uint64_t, uint64_t); uint64_t l_Bool_toUInt64(uint8_t); -lean_object* l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap___main___boxed(lean_object*); -lean_object* l___private_Init_Lean_Level_5__mkMaxAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_normLtAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_Hashable; lean_object* l_Lean_Level_getOffsetAux___boxed(lean_object*, lean_object*); lean_object* l_Lean_Level_updateMax_x21(lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Level_1__isAlreadyNormalizedCheap___main(lean_object*); lean_object* lean_level_mk_max(lean_object*, lean_object*); lean_object* l_Lean_Level_LevelToFormat_Result_format___main___closed__1; extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Level_mkData___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_6__skipExplicit___main(lean_object*, lean_object*); lean_object* l___private_Init_Util_1__mkPanicMessage(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Level_mkData___closed__1; lean_object* l_Lean_Level_ctorToNat___boxed(lean_object*); lean_object* lean_level_mk_succ(lean_object*); uint8_t l_Lean_Level_hasMVar(lean_object*); lean_object* l_Lean_Level_hasMVarEx___boxed(lean_object*); lean_object* l_Lean_Level_mkData___closed__2; -uint8_t l___private_Init_Lean_Level_8__isExplicitSubsumed(lean_object*, lean_object*); uint8_t l_Lean_Level_isEquiv(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_6__skipExplicit(lean_object*, lean_object*); lean_object* l_Lean_Level_HasBeq___closed__1; lean_object* l_Lean_Level_dec___main(lean_object*); uint8_t lean_level_has_param(lean_object*); @@ -75,25 +68,27 @@ lean_object* l_Lean_Level_mkData___closed__4; lean_object* l_Nat_max(lean_object*, lean_object*); extern lean_object* l_Lean_Name_inhabited; lean_object* l_Lean_Level_HasToString; -lean_object* l___private_Init_Lean_Level_7__isExplicitSubsumedAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_Inhabited; lean_object* l_Lean_Level_getOffsetAux(lean_object*, lean_object*); uint8_t l_Lean_Level_hasParam(lean_object*); lean_object* l_Lean_Level_depth(lean_object*); +lean_object* l___private_Lean_Level_2__mkIMaxAux(lean_object*, lean_object*); +lean_object* l___private_Lean_Level_9__formatLst(lean_object*, lean_object*); lean_object* l_Lean_Level_isSucc___boxed(lean_object*); lean_object* l_Lean_Level_updateIMax_x21___closed__1; lean_object* l_Lean_Level_mvarId_x21(lean_object*); -uint8_t l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap___main(lean_object*); +lean_object* l___private_Lean_Level_6__skipExplicit___main(lean_object*, lean_object*); lean_object* l_Lean_levelZero; lean_object* l_Lean_fmt___at_Lean_Level_LevelToFormat_toResult___main___spec__1(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Level_ofNat___main(lean_object*); lean_object* l_Lean_Level_updateMax_x21___closed__2; +lean_object* l___private_Lean_Level_3__getMaxArgsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_LevelToFormat_Result_format___main___closed__2; +lean_object* l___private_Lean_Level_7__isExplicitSubsumedAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_normalize___main___boxed(lean_object*); lean_object* l_Lean_Level_Data_hash___boxed(lean_object*); lean_object* l_Lean_Level_getLevelOffset___boxed(lean_object*); -uint8_t l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap(lean_object*); lean_object* l_Lean_Level_ofNat___main___boxed(lean_object*); uint8_t l_Lean_Level_normLtAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_Data_hasMVar___boxed(lean_object*); @@ -110,32 +105,34 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); uint8_t l_Lean_Level_isParam(lean_object*); lean_object* l_Lean_Level_updateSucc_x21(lean_object*, lean_object*); lean_object* l_Lean_Level_updateMax_x21___closed__1; -lean_object* l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap___boxed(lean_object*); lean_object* l_Lean_Level_isParam___boxed(lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); uint32_t lean_level_depth(lean_object*); lean_object* l_Lean_Level_isIMax___boxed(lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Level_3__getMaxArgsAux___main(lean_object*, lean_object*, uint8_t, lean_object*); uint64_t l_Lean_levelZero___closed__1; uint64_t l_Lean_Level_data(lean_object*); +lean_object* l___private_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(lean_object*); uint64_t l_Lean_Level_mkData(size_t, lean_object*, uint8_t, uint8_t); lean_object* lean_level_update_max(lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Level_7__isExplicitSubsumedAux(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Level_normalize___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); uint32_t l_UInt64_toUInt32(uint64_t); lean_object* l_Lean_mkLevelMax(lean_object*, lean_object*); lean_object* l_Lean_Level_LevelToFormat_Result_format___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___main(lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l___private_Lean_Level_8__isExplicitSubsumed___boxed(lean_object*, lean_object*); lean_object* l_Lean_Level_depth___boxed(lean_object*); lean_object* l_Lean_Level_toNat(lean_object*); +lean_object* l___private_Lean_Level_4__accMax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_LevelToFormat_Result_max(lean_object*, lean_object*); lean_object* l_Lean_Level_normLtAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(lean_object*, uint8_t, lean_object*); size_t l_Lean_Name_hash(lean_object*); lean_object* l_Nat_repr(lean_object*); lean_object* l_Lean_Level_addOffsetAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_2__mkIMaxAux(lean_object*, lean_object*); lean_object* l_Lean_Level_LevelToFormat_Result_format___main___closed__5; -lean_object* l___private_Init_Lean_Level_6__skipExplicit___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_Level_toNat___boxed(lean_object*); extern uint64_t l_UInt64_Inhabited; lean_object* l_Lean_Level_addOffset(lean_object*, lean_object*); @@ -147,27 +144,24 @@ lean_object* l_Lean_fmt___at_Lean_Level_LevelToFormat_Result_format___main___spe lean_object* l_Lean_Level_isZero___boxed(lean_object*); lean_object* l_Lean_Level_ctorToNat(lean_object*); lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_8__isExplicitSubsumed___boxed(lean_object*, lean_object*); lean_object* l_Lean_Level_getOffsetAux___main(lean_object*, lean_object*); lean_object* l_Lean_Level_ofNat___boxed(lean_object*); lean_object* l_Lean_Level_updateSucc___boxed(lean_object*, lean_object*, lean_object*); uint64_t lean_uint64_of_nat(lean_object*); lean_object* l_Lean_Level_LevelToFormat_parenIfFalse___boxed(lean_object*, lean_object*); lean_object* l_Lean_Level_LevelToFormat_parenIfFalse(lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_getLevelOffset___main___boxed(lean_object*); uint8_t l_Lean_Level_Data_hasParam(uint64_t); uint64_t l_UInt64_land(uint64_t, uint64_t); lean_object* l_Array_qsortAux___main___at_Lean_Level_normalize___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Level_9__formatLst___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Level_5__mkMaxAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_LevelToFormat_Result_imax(lean_object*, lean_object*); uint8_t l_Lean_Level_isIMax(lean_object*); lean_object* l_Lean_Level_LevelToFormat_Result_format___main___closed__6; lean_object* l_Lean_Level_instantiateParams___main(lean_object*, lean_object*); lean_object* l_Lean_Level_getOffset___boxed(lean_object*); -lean_object* l___private_Init_Lean_Level_4__accMax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLevelMVar(lean_object*); -uint8_t l___private_Init_Lean_Level_7__isExplicitSubsumedAux(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_6__skipExplicit___boxed(lean_object*, lean_object*); lean_object* l_Lean_Level_normalize___boxed(lean_object*); lean_object* l_Nat_toLevel(lean_object*); uint8_t l_Lean_Level_normLt(lean_object*, lean_object*); @@ -176,6 +170,7 @@ lean_object* l_Lean_Level_dec___main___boxed(lean_object*); extern lean_object* l_Lean_HasRepr___closed__1; lean_object* l_Lean_Level_LevelToFormat_Result_format___main(lean_object*, uint8_t); lean_object* lean_level_mk_param(lean_object*); +lean_object* l___private_Lean_Level_6__skipExplicit(lean_object*, lean_object*); extern lean_object* l_Lean_Format_paren___closed__1; lean_object* lean_level_update_imax(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_imax___boxed(lean_object*, lean_object*); @@ -185,15 +180,21 @@ lean_object* l_Lean_Level_isMaxIMax___boxed(lean_object*); lean_object* l_Lean_Level_Hashable___closed__1; uint32_t l_Lean_Level_Data_depth(uint64_t); lean_object* l_Lean_mkLevelSucc(lean_object*); +lean_object* l___private_Lean_Level_3__getMaxArgsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Level_8__isExplicitSubsumed(lean_object*, lean_object*); uint8_t l_Lean_Level_occurs___main(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); +lean_object* l___private_Lean_Level_1__isAlreadyNormalizedCheap___boxed(lean_object*); uint8_t l_Lean_Level_Data_hasMVar(uint64_t); +lean_object* l___private_Lean_Level_5__mkMaxAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_normLt___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Lean_Level_Data_depth___boxed(lean_object*); uint32_t l_USize_toUInt32(size_t); lean_object* l_Lean_Level_normalize(lean_object*); uint64_t l_UInt64_shiftLeft(uint64_t, uint64_t); +lean_object* l___private_Lean_Level_1__isAlreadyNormalizedCheap___main___boxed(lean_object*); extern lean_object* l_Lean_Format_paren___closed__2; lean_object* l_Lean_Level_mkData___boxed__const__1; lean_object* l_Lean_Level_updateSucc_x21___closed__2; @@ -204,24 +205,21 @@ lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_ lean_object* l_Lean_Level_LevelToFormat_toResult___main(lean_object*); uint64_t l_UInt32_toUInt64(uint32_t); lean_object* lean_level_mk_imax(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Level_5__mkMaxAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_imax(lean_object*, lean_object*); lean_object* l_Lean_Level_isNeverZero___main___boxed(lean_object*); -lean_object* l___private_Init_Lean_Level_7__isExplicitSubsumedAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_depthEx___boxed(lean_object*); lean_object* lean_level_update_succ(lean_object*, lean_object*); lean_object* l_Lean_Level_getLevelOffset(lean_object*); lean_object* l_Lean_Level_LevelToFormat_Result_format___main___closed__3; lean_object* l_Lean_Level_dec___boxed(lean_object*); uint8_t l_Lean_Level_isExplicit___main(lean_object*); -lean_object* l___private_Init_Lean_Level_9__formatLst(lean_object*, lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_Level_normalize___main___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_isEquiv___boxed(lean_object*, lean_object*); size_t lean_usize_mix_hash(size_t, size_t); lean_object* lean_level_mk_zero(lean_object*); -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Level_6__skipExplicit___boxed(lean_object*, lean_object*); uint8_t l_Lean_Level_isZero(lean_object*); -lean_object* l___private_Init_Lean_Level_9__formatLst___main(lean_object*, lean_object*); +uint8_t l___private_Lean_Level_1__isAlreadyNormalizedCheap(lean_object*); lean_object* l_Lean_Level_hasParam___boxed(lean_object*); uint8_t l_Lean_Level_occurs(lean_object*, lean_object*); lean_object* l_Lean_Level_hashEx___boxed(lean_object*); @@ -232,8 +230,8 @@ uint8_t l_Lean_Level_isMaxIMax(lean_object*); extern lean_object* l_Lean_Format_paren___closed__3; lean_object* l_Lean_Level_hash___boxed(lean_object*); lean_object* l_Lean_Level_instantiateParams(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Level_7__isExplicitSubsumedAux___main(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Level_isSucc(lean_object*); +uint8_t l___private_Lean_Level_7__isExplicitSubsumedAux___main(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Level_isExplicit(lean_object*); extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_Lean_Level_updateSucc_x21___closed__1; @@ -246,19 +244,21 @@ lean_object* l_Lean_Level_Lean_HasFormat___closed__1; uint8_t lean_level_eq(lean_object*, lean_object*); lean_object* l_Lean_Level_HasToString___closed__1; lean_object* l_Lean_Level_beq___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Level_3__getMaxArgsAux(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* lean_level_mk_mvar(lean_object*); lean_object* l_Lean_Level_format(lean_object*); -lean_object* l___private_Init_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(lean_object*); uint8_t l_Lean_Level_isNeverZero___main(lean_object*); lean_object* lean_uint32_to_nat(uint32_t); lean_object* l_Lean_Level_HasBeq; uint64_t l_Lean_Level_Data_inhabited; lean_object* l_Lean_Level_Data_hasParam___boxed(lean_object*); +lean_object* l___private_Lean_Level_7__isExplicitSubsumedAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_updateIMax_x21___closed__2; lean_object* l_Lean_Level_LevelToFormat_toResult___main___closed__1; lean_object* l_Lean_Level_getOffset(lean_object*); lean_object* l_Lean_Level_LevelToFormat_Result_format(lean_object*, uint8_t); lean_object* l_Nat_toLevel___boxed(lean_object*); +lean_object* l___private_Lean_Level_6__skipExplicit___main___boxed(lean_object*, lean_object*); uint8_t l_Lean_Level_isMax(lean_object*); lean_object* l_Lean_Level_Data_hasBeq___boxed(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -422,7 +422,7 @@ lean_object* _init_l_Lean_Level_mkData___closed__2() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Level"); +x_1 = lean_mk_string("Lean.Level"); return x_1; } } @@ -2326,7 +2326,7 @@ x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap___main(lean_object* x_1) { +uint8_t l___private_Lean_Level_1__isAlreadyNormalizedCheap___main(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { @@ -2358,35 +2358,35 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Level_1__isAlreadyNormalizedCheap___main___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap___main(x_1); +x_2 = l___private_Lean_Level_1__isAlreadyNormalizedCheap___main(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap(lean_object* x_1) { +uint8_t l___private_Lean_Level_1__isAlreadyNormalizedCheap(lean_object* x_1) { _start: { uint8_t x_2; -x_2 = l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap___main(x_1); +x_2 = l___private_Lean_Level_1__isAlreadyNormalizedCheap___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Level_1__isAlreadyNormalizedCheap___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap(x_1); +x_2 = l___private_Lean_Level_1__isAlreadyNormalizedCheap(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Level_2__mkIMaxAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Level_2__mkIMaxAux(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -2429,7 +2429,7 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___main(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { +lean_object* l___private_Lean_Level_3__getMaxArgsAux___main(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 2) @@ -2441,7 +2441,7 @@ x_6 = lean_ctor_get(x_2, 1); lean_inc(x_6); lean_dec(x_2); lean_inc(x_1); -x_7 = l___private_Init_Lean_Level_3__getMaxArgsAux___main(x_1, x_5, x_3, x_4); +x_7 = l___private_Lean_Level_3__getMaxArgsAux___main(x_1, x_5, x_3, x_4); x_2 = x_6; x_4 = x_7; goto _start; @@ -2468,35 +2468,35 @@ return x_12; } } } -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Level_3__getMaxArgsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_3); lean_dec(x_3); -x_6 = l___private_Init_Lean_Level_3__getMaxArgsAux___main(x_1, x_2, x_5, x_4); +x_6 = l___private_Lean_Level_3__getMaxArgsAux___main(x_1, x_2, x_5, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { +lean_object* l___private_Lean_Level_3__getMaxArgsAux(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Level_3__getMaxArgsAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Level_3__getMaxArgsAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Level_3__getMaxArgsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_3); lean_dec(x_3); -x_6 = l___private_Init_Lean_Level_3__getMaxArgsAux(x_1, x_2, x_5, x_4); +x_6 = l___private_Lean_Level_3__getMaxArgsAux(x_1, x_2, x_5, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Level_4__accMax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Level_4__accMax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -2517,7 +2517,7 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Level_5__mkMaxAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Level_5__mkMaxAux___main(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; @@ -2530,7 +2530,7 @@ lean_object* x_9; lean_object* x_10; lean_dec(x_3); x_9 = lean_nat_add(x_2, x_5); lean_dec(x_5); -x_10 = l___private_Init_Lean_Level_4__accMax(x_6, x_4, x_9); +x_10 = l___private_Lean_Level_4__accMax(x_6, x_4, x_9); return x_10; } else @@ -2550,7 +2550,7 @@ x_17 = lean_nat_add(x_3, x_16); lean_dec(x_3); x_18 = lean_nat_add(x_2, x_5); lean_dec(x_5); -x_19 = l___private_Init_Lean_Level_4__accMax(x_6, x_4, x_18); +x_19 = l___private_Lean_Level_4__accMax(x_6, x_4, x_18); x_3 = x_17; x_4 = x_12; x_5 = x_14; @@ -2573,35 +2573,35 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Level_5__mkMaxAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Level_5__mkMaxAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Level_5__mkMaxAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Level_5__mkMaxAux___main(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Level_5__mkMaxAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Level_5__mkMaxAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Level_5__mkMaxAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Level_5__mkMaxAux___main(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Level_5__mkMaxAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Level_5__mkMaxAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Level_5__mkMaxAux(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Level_5__mkMaxAux(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Level_6__skipExplicit___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Level_6__skipExplicit___main(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -2636,33 +2636,33 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Level_6__skipExplicit___main___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Level_6__skipExplicit___main___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Level_6__skipExplicit___main(x_1, x_2); +x_3 = l___private_Lean_Level_6__skipExplicit___main(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Level_6__skipExplicit(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Level_6__skipExplicit(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Level_6__skipExplicit___main(x_1, x_2); +x_3 = l___private_Lean_Level_6__skipExplicit___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Level_6__skipExplicit___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Level_6__skipExplicit___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Level_6__skipExplicit(x_1, x_2); +x_3 = l___private_Lean_Level_6__skipExplicit(x_1, x_2); lean_dec(x_1); return x_3; } } -uint8_t l___private_Init_Lean_Level_7__isExplicitSubsumedAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +uint8_t l___private_Lean_Level_7__isExplicitSubsumedAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2704,37 +2704,37 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Level_7__isExplicitSubsumedAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Level_7__isExplicitSubsumedAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Level_7__isExplicitSubsumedAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Level_7__isExplicitSubsumedAux___main(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); x_5 = lean_box(x_4); return x_5; } } -uint8_t l___private_Init_Lean_Level_7__isExplicitSubsumedAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +uint8_t l___private_Lean_Level_7__isExplicitSubsumedAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; -x_4 = l___private_Init_Lean_Level_7__isExplicitSubsumedAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Level_7__isExplicitSubsumedAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Level_7__isExplicitSubsumedAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Level_7__isExplicitSubsumedAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Level_7__isExplicitSubsumedAux(x_1, x_2, x_3); +x_4 = l___private_Lean_Level_7__isExplicitSubsumedAux(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); x_5 = lean_box(x_4); return x_5; } } -uint8_t l___private_Init_Lean_Level_8__isExplicitSubsumed(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Level_8__isExplicitSubsumed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -2750,7 +2750,7 @@ x_8 = lean_array_get(x_7, x_1, x_6); lean_dec(x_6); x_9 = l_Lean_Level_getOffsetAux___main(x_8, x_3); lean_dec(x_8); -x_10 = l___private_Init_Lean_Level_7__isExplicitSubsumedAux___main(x_1, x_9, x_2); +x_10 = l___private_Lean_Level_7__isExplicitSubsumedAux___main(x_1, x_9, x_2); lean_dec(x_9); return x_10; } @@ -2763,17 +2763,17 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Level_8__isExplicitSubsumed___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Level_8__isExplicitSubsumed___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Level_8__isExplicitSubsumed(x_1, x_2); +x_3 = l___private_Lean_Level_8__isExplicitSubsumed(x_1, x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +lean_object* l___private_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 2) @@ -2784,7 +2784,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); lean_dec(x_1); -x_6 = l___private_Init_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(x_4, x_2, x_3); +x_6 = l___private_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(x_4, x_2, x_3); x_1 = x_5; x_3 = x_6; goto _start; @@ -3002,7 +3002,7 @@ lean_object* l_Lean_Level_normalize___main(lean_object* x_1) { _start: { uint8_t x_2; -x_2 = l___private_Init_Lean_Level_1__isAlreadyNormalizedCheap___main(x_1); +x_2 = l___private_Lean_Level_1__isAlreadyNormalizedCheap___main(x_1); if (x_2 == 0) { lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -3020,17 +3020,17 @@ lean_inc(x_7); lean_dec(x_5); x_8 = 0; x_9 = l_Array_empty___closed__1; -x_10 = l___private_Init_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(x_6, x_8, x_9); -x_11 = l___private_Init_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(x_7, x_8, x_10); +x_10 = l___private_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(x_6, x_8, x_9); +x_11 = l___private_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(x_7, x_8, x_10); x_12 = lean_array_get_size(x_11); x_13 = lean_unsigned_to_nat(1u); x_14 = lean_nat_sub(x_12, x_13); lean_dec(x_12); x_15 = l_Array_qsortAux___main___at_Lean_Level_normalize___main___spec__2(x_11, x_3, x_14); lean_dec(x_14); -x_16 = l___private_Init_Lean_Level_6__skipExplicit___main(x_15, x_3); +x_16 = l___private_Lean_Level_6__skipExplicit___main(x_15, x_3); lean_inc(x_16); -x_17 = l___private_Init_Lean_Level_8__isExplicitSubsumed(x_15, x_16); +x_17 = l___private_Lean_Level_8__isExplicitSubsumed(x_15, x_16); if (x_17 == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; @@ -3044,7 +3044,7 @@ lean_dec(x_20); x_23 = lean_nat_add(x_18, x_13); lean_dec(x_18); x_24 = l_Lean_levelZero; -x_25 = l___private_Init_Lean_Level_5__mkMaxAux___main(x_15, x_4, x_23, x_21, x_22, x_24); +x_25 = l___private_Lean_Level_5__mkMaxAux___main(x_15, x_4, x_23, x_21, x_22, x_24); lean_dec(x_4); lean_dec(x_15); return x_25; @@ -3060,7 +3060,7 @@ lean_dec(x_27); x_30 = lean_nat_add(x_16, x_13); lean_dec(x_16); x_31 = l_Lean_levelZero; -x_32 = l___private_Init_Lean_Level_5__mkMaxAux___main(x_15, x_4, x_30, x_28, x_29, x_31); +x_32 = l___private_Lean_Level_5__mkMaxAux___main(x_15, x_4, x_30, x_28, x_29, x_31); lean_dec(x_4); lean_dec(x_15); return x_32; @@ -3082,7 +3082,7 @@ x_36 = l_Lean_Level_normalize___main(x_33); lean_dec(x_33); x_37 = l_Lean_Level_normalize___main(x_34); lean_dec(x_34); -x_38 = l___private_Init_Lean_Level_2__mkIMaxAux(x_36, x_37); +x_38 = l___private_Lean_Level_2__mkIMaxAux(x_36, x_37); x_39 = l_Lean_Level_addOffsetAux___main(x_4, x_38); return x_39; } @@ -3114,13 +3114,13 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(x_1, x_4, x_3); +x_5 = l___private_Lean_Level_3__getMaxArgsAux___main___at_Lean_Level_normalize___main___spec__1(x_1, x_4, x_3); return x_5; } } @@ -3582,7 +3582,7 @@ x_4 = l_Lean_Level_LevelToFormat_parenIfFalse(x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Level_9__formatLst___main(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Level_9__formatLst___main(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -3608,7 +3608,7 @@ x_9 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_9, 0, x_8); lean_ctor_set(x_9, 1, x_6); lean_ctor_set_uint8(x_9, sizeof(void*)*2, x_7); -x_10 = l___private_Init_Lean_Level_9__formatLst___main(x_1, x_5); +x_10 = l___private_Lean_Level_9__formatLst___main(x_1, x_5); x_11 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_10); @@ -3617,11 +3617,11 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Level_9__formatLst(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Level_9__formatLst(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Level_9__formatLst___main(x_1, x_2); +x_3 = l___private_Lean_Level_9__formatLst___main(x_1, x_2); return x_3; } } @@ -3635,7 +3635,7 @@ lean_ctor_set(x_3, 0, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(lean_object* x_1) { +lean_object* l___private_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3659,7 +3659,7 @@ x_8 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_6); lean_ctor_set_uint8(x_8, sizeof(void*)*2, x_5); -x_9 = l___private_Init_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(x_4); +x_9 = l___private_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(x_4); x_10 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_10, 0, x_8); lean_ctor_set(x_10, 1, x_9); @@ -3791,7 +3791,7 @@ lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_obje x_22 = lean_ctor_get(x_1, 0); lean_inc(x_22); lean_dec(x_1); -x_23 = l___private_Init_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(x_22); +x_23 = l___private_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(x_22); x_24 = 0; x_25 = l_Lean_Level_LevelToFormat_Result_format___main___closed__4; x_26 = lean_alloc_ctor(4, 2, 1); @@ -3808,7 +3808,7 @@ lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_32; lean_obje x_29 = lean_ctor_get(x_1, 0); lean_inc(x_29); lean_dec(x_1); -x_30 = l___private_Init_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(x_29); +x_30 = l___private_Lean_Level_9__formatLst___main___at_Lean_Level_LevelToFormat_Result_format___main___spec__2(x_29); x_31 = 0; x_32 = l_Lean_Level_LevelToFormat_Result_format___main___closed__6; x_33 = lean_alloc_ctor(4, 2, 1); @@ -4267,10 +4267,10 @@ lean_object* initialize_Init_Data_HashMap(lean_object*); lean_object* initialize_Init_Data_PersistentHashMap(lean_object*); lean_object* initialize_Init_Data_HashSet(lean_object*); lean_object* initialize_Init_Data_PersistentHashSet(lean_object*); -lean_object* initialize_Init_Lean_Data_Name(lean_object*); -lean_object* initialize_Init_Lean_Data_Format(lean_object*); +lean_object* initialize_Lean_Data_Name(lean_object*); +lean_object* initialize_Lean_Data_Format(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Level(lean_object* w) { +lean_object* initialize_Lean_Level(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -4289,10 +4289,10 @@ lean_dec_ref(res); res = initialize_Init_Data_PersistentHashSet(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Name(lean_io_mk_world()); +res = initialize_Lean_Data_Name(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Format(lean_io_mk_world()); +res = initialize_Lean_Data_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Level_Data_inhabited = _init_l_Lean_Level_Data_inhabited(); diff --git a/stage0/stdlib/Init/Lean/Linter.c b/stage0/stdlib/Lean/Linter.c similarity index 83% rename from stage0/stdlib/Init/Lean/Linter.c rename to stage0/stdlib/Lean/Linter.c index 308d52cdcd..e32c92ec09 100644 --- a/stage0/stdlib/Init/Lean/Linter.c +++ b/stage0/stdlib/Lean/Linter.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Linter -// Imports: Init.System.IO Init.Lean.Attributes Init.Lean.Syntax Init.Lean.Message +// Module: Lean.Linter +// Imports: Init.System.IO Lean.Attributes Lean.Syntax Lean.Message #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -74,24 +74,24 @@ return x_12; } } lean_object* initialize_Init_System_IO(lean_object*); -lean_object* initialize_Init_Lean_Attributes(lean_object*); -lean_object* initialize_Init_Lean_Syntax(lean_object*); -lean_object* initialize_Init_Lean_Message(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Syntax(lean_object*); +lean_object* initialize_Lean_Message(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Linter(lean_object* w) { +lean_object* initialize_Lean_Linter(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_System_IO(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Syntax(lean_io_mk_world()); +res = initialize_Lean_Syntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Message(lean_io_mk_world()); +res = initialize_Lean_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = l_Lean_mkLintersRef(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/LocalContext.c b/stage0/stdlib/Lean/LocalContext.c similarity index 98% rename from stage0/stdlib/Init/Lean/LocalContext.c rename to stage0/stdlib/Lean/LocalContext.c index 1fd06797c7..74fe423c22 100644 --- a/stage0/stdlib/Init/Lean/LocalContext.c +++ b/stage0/stdlib/Lean/LocalContext.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.LocalContext -// Imports: Init.Data.PersistentArray.Basic Init.Data.PersistentHashMap.Basic Init.Lean.Expr Init.Lean.Hygiene +// Module: Lean.LocalContext +// Imports: Init.Data.PersistentArray.Basic Init.Data.PersistentHashMap.Basic Lean.Expr Lean.Hygiene #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -41,12 +41,12 @@ lean_object* l_PersistentHashMap_findAux___main___at_Lean_LocalContext_find_x3f_ lean_object* l_PersistentArray_findSomeRevMAux___main___at_Lean_LocalContext_findDeclRev_x3f___spec__4___rarg___boxed(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_foldlFrom___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_isSubPrefixOfAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_LocalContext_1__popTailNoneAux___main(lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_LocalContext_allM___spec__1(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_foldlFrom___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_LocalContext_mkLocalDecl___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_LocalContext_anyM___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* l___private_Lean_LocalContext_2__getUnusedNameAux(lean_object*, lean_object*, lean_object*); extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l_Array_anyRangeMAux___main___at_Lean_LocalContext_anyM___spec__4(lean_object*); lean_object* l_Lean_LocalContext_foldlFromM___at_Lean_LocalContext_foldlFrom___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -100,7 +100,6 @@ size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Array_indexOfAux___main___at_Lean_LocalContext_erase___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Array_findSomeRevMAux___main___at_Lean_LocalContext_findFromUserName_x3f___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyMAux___main___at_Lean_LocalContext_any___spec__2(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_LocalContext_2__getUnusedNameAux(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalContext_contains(lean_object*, lean_object*); lean_object* l_PersistentArray_anyMAux___main___at_Lean_LocalContext_any___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_foldl___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -147,7 +146,6 @@ lean_object* l_Lean_LocalDecl_type___boxed(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_LocalContext_mkBinding(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_foldl___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_foldl___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_LocalContext_anyM___spec__5(lean_object*); lean_object* l_Lean_LocalContext_forM(lean_object*); @@ -163,7 +161,6 @@ lean_object* l_Array_findSomeRevMAux___main___at_Lean_LocalContext_findFromUserN uint8_t l_PersistentArray_anyM___at_Lean_LocalContext_all___spec__1(lean_object*, lean_object*); lean_object* l_PersistentArray_findSomeRevM_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_mkLocalDecl___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_getAux___main___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_foldlM___at_Lean_LocalContext_foldl___spec__1(lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_LocalContext_allM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_LocalContext_anyM___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -217,7 +214,6 @@ lean_object* l_Lean_LocalDecl_Inhabited; lean_object* l_PersistentHashMap_containsAux___main___at_Lean_LocalContext_contains___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_value___closed__1; lean_object* l_PersistentHashMap_isEmpty___at_Lean_LocalContext_isEmpty___spec__1___boxed(lean_object*); -lean_object* l_PersistentArray_getAux___main___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__2(lean_object*, size_t, size_t); lean_object* l_Lean_LocalContext_foldlM___at_Lean_LocalContext_foldl___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_findSomeRevMAux___main___at_Lean_LocalContext_findFromUserName_x3f___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_foldlFromM___at_Lean_LocalContext_foldlFrom___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*); @@ -243,6 +239,7 @@ lean_object* l_Lean_LocalContext_findFVar_x3f___boxed(lean_object*, lean_object* lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_LocalContext_find_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_foldlMAux___main___at_Lean_LocalContext_foldl___spec__3(lean_object*); lean_object* l_Array_findSomeMAux___main___at_Lean_LocalContext_findDecl_x3f___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_LocalContext_1__popTailNoneAux(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_foldlFrom___spec__5(lean_object*); lean_object* l_Lean_mkFVar(lean_object*); lean_object* l_Lean_LocalContext_findDeclRevM_x3f___at_Lean_LocalContext_findDeclRev_x3f___spec__1(lean_object*); @@ -262,6 +259,7 @@ uint8_t l_Array_anyRangeMAux___main___at_Lean_LocalContext_isSubPrefixOfAux___ma lean_object* l_PersistentArray_findSomeM_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_foldlM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_allM___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_getAux___main___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_LocalContext_all___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* l_Lean_LocalDecl_value_x3f(lean_object*); @@ -269,11 +267,13 @@ lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_objec lean_object* l_Lean_LocalContext_foldlFrom___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_foldlM___at_Lean_LocalContext_getFVarIds___spec__1___boxed(lean_object*, lean_object*); lean_object* l_PersistentArray_foldlFromMAux___main___at_Lean_LocalContext_foldlFrom___spec__3___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); +lean_object* l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1(lean_object*, lean_object*); lean_object* l_Array_findSomeMAux___main___at_Lean_LocalContext_findDecl_x3f___spec__5(lean_object*); lean_object* l_Lean_LocalContext_findDecl_x3f___rarg(lean_object*, lean_object*); lean_object* l_Lean_LocalContext_foldlM(lean_object*); lean_object* l_Lean_LocalContext_foldlFromM(lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_LocalContext_anyM___spec__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_LocalContext_findDeclRev_x3f(lean_object*); lean_object* l_Lean_LocalDecl_index(lean_object*); lean_object* l_Lean_LocalContext_forM___rarg___lambda__1(lean_object*, lean_object*, lean_object*); @@ -300,6 +300,7 @@ lean_object* l_PersistentHashMap_insertAux___main___at_Lean_LocalContext_mkLocal lean_object* l_PersistentArray_anyMAux___main___at_Lean_LocalContext_all___spec__2___boxed(lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_LocalContext_anyM___spec__5___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* l___private_Lean_LocalContext_2__getUnusedNameAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_LocalContext_all___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_findSomeRevMAux___main___at_Lean_LocalContext_findDeclRev_x3f___spec__3(lean_object*); lean_object* l_PersistentArray_findSomeRevMAux___main___at_Lean_LocalContext_findFromUserName_x3f___spec__3(lean_object*, lean_object*); @@ -310,7 +311,6 @@ lean_object* l_Array_anyRangeMAux___main___at_Lean_LocalContext_anyM___spec__3(l lean_object* l_Lean_LocalContext_addDecl(lean_object*, lean_object*); lean_object* l_Lean_LocalContext_getFVarIds(lean_object*); lean_object* l_Lean_LocalContext_any___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_LocalContext_1__popTailNoneAux(lean_object*); lean_object* l_Lean_LocalContext_mkLambda(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_getFVarIds___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_findSomeRevMAux___main___at_Lean_LocalContext_findDeclRev_x3f___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -322,8 +322,6 @@ uint8_t l_PersistentHashMap_containsAux___main___at_Lean_LocalContext_contains__ lean_object* l_Nat_foldRevAux___main___at_Lean_LocalContext_mkForall___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_findDeclRevM_x3f(lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_LocalContext_2__getUnusedNameAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_eraseAux___main___at_Lean_LocalContext_erase___spec__2(lean_object*, size_t, lean_object*); lean_object* l_Lean_LocalContext_foldl___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_foldlFromM___at_Lean_LocalContext_foldlFrom___spec__2(lean_object*); @@ -340,6 +338,7 @@ lean_object* l_Lean_LocalContext_foldlM___rarg(lean_object*, lean_object*, lean_ lean_object* l_Array_anyRangeMAux___main___at_Lean_LocalContext_all___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_getFVar_x21___boxed(lean_object*, lean_object*); lean_object* lean_expr_abstract(lean_object*, lean_object*); +lean_object* l___private_Lean_LocalContext_1__popTailNoneAux___main(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_foldlFrom___spec__7(lean_object*); lean_object* l_PersistentArray_findSomeRevM_x3f___at_Lean_LocalContext_findDeclRev_x3f___spec__2(lean_object*); lean_object* l_Lean_LocalContext_getFVars___boxed(lean_object*); @@ -379,6 +378,7 @@ lean_object* l_Array_iterateMAux___main___at_Lean_LocalContext_foldlFrom___spec_ uint8_t l_Lean_LocalContext_isSubPrefixOf(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalContext_isSubPrefixOfAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_getAux___main___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__2(lean_object*, size_t, size_t); lean_object* l_Array_anyRangeMAux___main___at_Lean_LocalContext_allM___spec__5___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_set___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_containsFVar___boxed(lean_object*, lean_object*); @@ -636,7 +636,7 @@ lean_object* _init_l_Lean_LocalDecl_value___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.LocalContext"); +x_1 = lean_mk_string("Lean.LocalContext"); return x_1; } } @@ -2240,7 +2240,7 @@ lean_dec(x_1); return x_2; } } -lean_object* l_PersistentArray_getAux___main___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__2(lean_object* x_1, size_t x_2, size_t x_3) { +lean_object* l_PersistentArray_getAux___main___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__2(lean_object* x_1, size_t x_2, size_t x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2281,7 +2281,7 @@ return x_19; } } } -lean_object* l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -2298,7 +2298,7 @@ lean_inc(x_6); x_7 = lean_usize_of_nat(x_2); x_8 = lean_ctor_get_usize(x_1, 4); lean_dec(x_1); -x_9 = l_PersistentArray_getAux___main___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__2(x_6, x_7, x_8); +x_9 = l_PersistentArray_getAux___main___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__2(x_6, x_7, x_8); return x_9; } else @@ -2316,7 +2316,7 @@ return x_12; } } } -lean_object* l___private_Init_Lean_LocalContext_1__popTailNoneAux___main(lean_object* x_1) { +lean_object* l___private_Lean_LocalContext_1__popTailNoneAux___main(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -2331,7 +2331,7 @@ x_5 = lean_unsigned_to_nat(1u); x_6 = lean_nat_sub(x_2, x_5); lean_dec(x_2); lean_inc(x_1); -x_7 = l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_1, x_6); +x_7 = l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_1, x_6); lean_dec(x_6); if (lean_obj_tag(x_7) == 0) { @@ -2353,7 +2353,7 @@ return x_1; } } } -lean_object* l_PersistentArray_getAux___main___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentArray_getAux___main___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__2___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; @@ -2361,24 +2361,24 @@ x_4 = lean_unbox_usize(x_2); lean_dec(x_2); x_5 = lean_unbox_usize(x_3); lean_dec(x_3); -x_6 = l_PersistentArray_getAux___main___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__2(x_1, x_4, x_5); +x_6 = l_PersistentArray_getAux___main___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__2(x_1, x_4, x_5); return x_6; } } -lean_object* l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_1, x_2); +x_3 = l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_LocalContext_1__popTailNoneAux(lean_object* x_1) { +lean_object* l___private_Lean_LocalContext_1__popTailNoneAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_LocalContext_1__popTailNoneAux___main(x_1); +x_2 = l___private_Lean_LocalContext_1__popTailNoneAux___main(x_1); return x_2; } } @@ -3086,7 +3086,7 @@ lean_dec(x_9); x_12 = lean_box(0); x_13 = l_PersistentArray_set___rarg(x_4, x_11, x_12); lean_dec(x_11); -x_14 = l___private_Init_Lean_LocalContext_1__popTailNoneAux___main(x_13); +x_14 = l___private_Lean_LocalContext_1__popTailNoneAux___main(x_13); lean_ctor_set(x_1, 1, x_14); lean_ctor_set(x_1, 0, x_10); return x_1; @@ -3105,7 +3105,7 @@ lean_dec(x_15); x_18 = lean_box(0); x_19 = l_PersistentArray_set___rarg(x_4, x_17, x_18); lean_dec(x_17); -x_20 = l___private_Init_Lean_LocalContext_1__popTailNoneAux___main(x_19); +x_20 = l___private_Lean_LocalContext_1__popTailNoneAux___main(x_19); x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_16); lean_ctor_set(x_21, 1, x_20); @@ -3163,7 +3163,7 @@ x_7 = lean_unsigned_to_nat(1u); x_8 = lean_nat_sub(x_4, x_7); lean_dec(x_4); lean_inc(x_3); -x_9 = l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_3, x_8); +x_9 = l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_3, x_8); lean_dec(x_8); if (lean_obj_tag(x_9) == 0) { @@ -3190,7 +3190,7 @@ lean_dec(x_13); x_15 = l_PersistentHashMap_erase___at_Lean_LocalContext_erase___spec__1(x_2, x_14); lean_dec(x_14); x_16 = l_PersistentArray_pop___rarg(x_3); -x_17 = l___private_Init_Lean_LocalContext_1__popTailNoneAux___main(x_16); +x_17 = l___private_Lean_LocalContext_1__popTailNoneAux___main(x_16); lean_ctor_set(x_1, 1, x_17); lean_ctor_set(x_1, 0, x_15); return x_1; @@ -3207,7 +3207,7 @@ lean_dec(x_18); x_20 = l_PersistentHashMap_erase___at_Lean_LocalContext_erase___spec__1(x_2, x_19); lean_dec(x_19); x_21 = l_PersistentArray_pop___rarg(x_3); -x_22 = l___private_Init_Lean_LocalContext_1__popTailNoneAux___main(x_21); +x_22 = l___private_Lean_LocalContext_1__popTailNoneAux___main(x_21); x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_20); lean_ctor_set(x_23, 1, x_22); @@ -3495,7 +3495,7 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_LocalContext_2__getUnusedNameAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_LocalContext_2__getUnusedNameAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3530,11 +3530,11 @@ goto _start; } } } -lean_object* l___private_Init_Lean_LocalContext_2__getUnusedNameAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_LocalContext_2__getUnusedNameAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_LocalContext_2__getUnusedNameAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_LocalContext_2__getUnusedNameAux___main(x_1, x_2, x_3); return x_4; } } @@ -3556,7 +3556,7 @@ else { lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_unsigned_to_nat(1u); -x_6 = l___private_Init_Lean_LocalContext_2__getUnusedNameAux___main(x_1, x_3, x_5); +x_6 = l___private_Lean_LocalContext_2__getUnusedNameAux___main(x_1, x_3, x_5); x_7 = lean_ctor_get(x_6, 0); lean_inc(x_7); lean_dec(x_6); @@ -3576,7 +3576,7 @@ lean_inc(x_3); x_4 = lean_unsigned_to_nat(1u); x_5 = lean_nat_sub(x_3, x_4); lean_dec(x_3); -x_6 = l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_2, x_5); +x_6 = l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_2, x_5); lean_dec(x_5); return x_6; } @@ -3700,7 +3700,7 @@ lean_object* x_3; lean_object* x_4; x_3 = lean_ctor_get(x_1, 1); lean_inc(x_3); lean_dec(x_1); -x_4 = l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_3, x_2); +x_4 = l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_3, x_2); lean_dec(x_2); return x_4; } @@ -5412,7 +5412,7 @@ else { lean_object* x_9; lean_inc(x_1); -x_9 = l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_1, x_4); +x_9 = l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_1, x_4); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; @@ -5454,7 +5454,7 @@ else { lean_object* x_20; lean_inc(x_2); -x_20 = l_PersistentArray_get_x21___at___private_Init_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_2, x_5); +x_20 = l_PersistentArray_get_x21___at___private_Lean_LocalContext_1__popTailNoneAux___main___spec__1(x_2, x_5); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; lean_object* x_22; @@ -7534,10 +7534,10 @@ return x_4; } lean_object* initialize_Init_Data_PersistentArray_Basic(lean_object*); lean_object* initialize_Init_Data_PersistentHashMap_Basic(lean_object*); -lean_object* initialize_Init_Lean_Expr(lean_object*); -lean_object* initialize_Init_Lean_Hygiene(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Hygiene(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_LocalContext(lean_object* w) { +lean_object* initialize_Lean_LocalContext(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -7547,10 +7547,10 @@ lean_dec_ref(res); res = initialize_Init_Data_PersistentHashMap_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Hygiene(lean_io_mk_world()); +res = initialize_Lean_Hygiene(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_LocalDecl_Inhabited___closed__1 = _init_l_Lean_LocalDecl_Inhabited___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Message.c b/stage0/stdlib/Lean/Message.c similarity index 98% rename from stage0/stdlib/Init/Lean/Message.c rename to stage0/stdlib/Lean/Message.c index b1d6d51cdb..a6ce663353 100644 --- a/stage0/stdlib/Init/Lean/Message.c +++ b/stage0/stdlib/Lean/Message.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Message -// Imports: Init.Data.ToString Init.Lean.Data.Position Init.Lean.Syntax Init.Lean.MetavarContext Init.Lean.Environment Init.Lean.Util.PPExt Init.Lean.Util.PPGoal +// Module: Lean.Message +// Imports: Init.Data.ToString Lean.Data.Position Lean.Syntax Lean.MetavarContext Lean.Environment Lean.Util.PPExt Lean.Util.PPGoal #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -66,7 +66,6 @@ extern lean_object* l_List_repr___rarg___closed__3; lean_object* l_Array_anyRangeMAux___main___at_Lean_MessageLog_hasErrors___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_joinSep(lean_object*, lean_object*); lean_object* l_Lean_KernelException_toMessageData___closed__20; -lean_object* l___private_Init_Lean_Message_1__mkCtx(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Level_LevelToFormat_toResult___main___spec__1(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_KernelException_toMessageData___closed__22; @@ -138,6 +137,7 @@ lean_object* l_Lean_KernelException_toMessageData___closed__40; lean_object* l_Lean_MessageData_arrayExpr_toMessageData(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KernelException_toMessageData___closed__9; lean_object* l_Lean_MessageData_joinSep___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Message_1__mkCtx(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_getNat(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageLog_toList___boxed(lean_object*); lean_object* l_Lean_KernelException_toMessageData___closed__36; @@ -2454,7 +2454,7 @@ lean_ctor_set(x_5, 1, x_3); return x_5; } } -lean_object* l___private_Init_Lean_Message_1__mkCtx(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Message_1__mkCtx(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; @@ -2965,7 +2965,7 @@ x_7 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); x_8 = l_Lean_LocalContext_Inhabited___closed__2; -x_9 = l___private_Init_Lean_Message_1__mkCtx(x_3, x_8, x_2, x_7); +x_9 = l___private_Lean_Message_1__mkCtx(x_3, x_8, x_2, x_7); return x_9; } case 1: @@ -2983,7 +2983,7 @@ x_14 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_12); x_15 = l_Lean_LocalContext_Inhabited___closed__2; -x_16 = l___private_Init_Lean_Message_1__mkCtx(x_10, x_15, x_2, x_14); +x_16 = l___private_Lean_Message_1__mkCtx(x_10, x_15, x_2, x_14); return x_16; } case 2: @@ -3095,7 +3095,7 @@ x_51 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); x_52 = l_Lean_LocalContext_Inhabited___closed__2; -x_53 = l___private_Init_Lean_Message_1__mkCtx(x_47, x_52, x_2, x_51); +x_53 = l___private_Lean_Message_1__mkCtx(x_47, x_52, x_2, x_51); return x_53; } case 4: @@ -3113,7 +3113,7 @@ x_58 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); x_59 = l_Lean_LocalContext_Inhabited___closed__2; -x_60 = l___private_Init_Lean_Message_1__mkCtx(x_54, x_59, x_2, x_58); +x_60 = l___private_Lean_Message_1__mkCtx(x_54, x_59, x_2, x_58); return x_60; } case 5: @@ -3133,7 +3133,7 @@ x_66 = l_Lean_KernelException_toMessageData___closed__27; x_67 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); -x_68 = l___private_Init_Lean_Message_1__mkCtx(x_61, x_62, x_2, x_67); +x_68 = l___private_Lean_Message_1__mkCtx(x_61, x_62, x_2, x_67); return x_68; } case 6: @@ -3153,7 +3153,7 @@ x_74 = l_Lean_KernelException_toMessageData___closed__30; x_75 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); -x_76 = l___private_Init_Lean_Message_1__mkCtx(x_69, x_70, x_2, x_75); +x_76 = l___private_Lean_Message_1__mkCtx(x_69, x_70, x_2, x_75); return x_76; } case 7: @@ -3172,7 +3172,7 @@ x_81 = l_Lean_KernelException_toMessageData___closed__33; x_82 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); -x_83 = l___private_Init_Lean_Message_1__mkCtx(x_77, x_78, x_2, x_82); +x_83 = l___private_Lean_Message_1__mkCtx(x_77, x_78, x_2, x_82); return x_83; } case 8: @@ -3192,7 +3192,7 @@ x_89 = l_Lean_KernelException_toMessageData___closed__36; x_90 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); -x_91 = l___private_Init_Lean_Message_1__mkCtx(x_84, x_85, x_2, x_90); +x_91 = l___private_Lean_Message_1__mkCtx(x_84, x_85, x_2, x_90); return x_91; } case 9: @@ -3236,7 +3236,7 @@ x_109 = l_Lean_indentExpr(x_108); x_110 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_110, 0, x_107); lean_ctor_set(x_110, 1, x_109); -x_111 = l___private_Init_Lean_Message_1__mkCtx(x_92, x_93, x_2, x_110); +x_111 = l___private_Lean_Message_1__mkCtx(x_92, x_93, x_2, x_110); return x_111; } case 10: @@ -3256,7 +3256,7 @@ x_117 = l_Lean_KernelException_toMessageData___closed__48; x_118 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_118, 0, x_117); lean_ctor_set(x_118, 1, x_116); -x_119 = l___private_Init_Lean_Message_1__mkCtx(x_112, x_113, x_2, x_118); +x_119 = l___private_Lean_Message_1__mkCtx(x_112, x_113, x_2, x_118); return x_119; } default: @@ -3280,36 +3280,36 @@ return x_124; } } lean_object* initialize_Init_Data_ToString(lean_object*); -lean_object* initialize_Init_Lean_Data_Position(lean_object*); -lean_object* initialize_Init_Lean_Syntax(lean_object*); -lean_object* initialize_Init_Lean_MetavarContext(lean_object*); -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Util_PPExt(lean_object*); -lean_object* initialize_Init_Lean_Util_PPGoal(lean_object*); +lean_object* initialize_Lean_Data_Position(lean_object*); +lean_object* initialize_Lean_Syntax(lean_object*); +lean_object* initialize_Lean_MetavarContext(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Util_PPExt(lean_object*); +lean_object* initialize_Lean_Util_PPGoal(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Message(lean_object* w) { +lean_object* initialize_Lean_Message(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Data_ToString(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Position(lean_io_mk_world()); +res = initialize_Lean_Data_Position(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Syntax(lean_io_mk_world()); +res = initialize_Lean_Syntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_MetavarContext(lean_io_mk_world()); +res = initialize_Lean_MetavarContext(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_PPExt(lean_io_mk_world()); +res = initialize_Lean_Util_PPExt(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_PPGoal(lean_io_mk_world()); +res = initialize_Lean_Util_PPGoal(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_MessageData_Inhabited___closed__1 = _init_l_Lean_MessageData_Inhabited___closed__1(); diff --git a/stage0/stdlib/Lean/Meta.c b/stage0/stdlib/Lean/Meta.c new file mode 100644 index 0000000000..4ffc1f7050 --- /dev/null +++ b/stage0/stdlib/Lean/Meta.c @@ -0,0 +1,93 @@ +// Lean compiler output +// Module: Lean.Meta +// Imports: Lean.Meta.Basic Lean.Meta.LevelDefEq Lean.Meta.WHNF Lean.Meta.InferType Lean.Meta.FunInfo Lean.Meta.ExprDefEq Lean.Meta.DiscrTree Lean.Meta.Reduce Lean.Meta.Instances Lean.Meta.AbstractMVars Lean.Meta.SynthInstance Lean.Meta.AppBuilder Lean.Meta.Tactic Lean.Meta.Message Lean.Meta.KAbstract Lean.Meta.RecursorInfo Lean.Meta.GeneralizeTelescope +#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* initialize_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_LevelDefEq(lean_object*); +lean_object* initialize_Lean_Meta_WHNF(lean_object*); +lean_object* initialize_Lean_Meta_InferType(lean_object*); +lean_object* initialize_Lean_Meta_FunInfo(lean_object*); +lean_object* initialize_Lean_Meta_ExprDefEq(lean_object*); +lean_object* initialize_Lean_Meta_DiscrTree(lean_object*); +lean_object* initialize_Lean_Meta_Reduce(lean_object*); +lean_object* initialize_Lean_Meta_Instances(lean_object*); +lean_object* initialize_Lean_Meta_AbstractMVars(lean_object*); +lean_object* initialize_Lean_Meta_SynthInstance(lean_object*); +lean_object* initialize_Lean_Meta_AppBuilder(lean_object*); +lean_object* initialize_Lean_Meta_Tactic(lean_object*); +lean_object* initialize_Lean_Meta_Message(lean_object*); +lean_object* initialize_Lean_Meta_KAbstract(lean_object*); +lean_object* initialize_Lean_Meta_RecursorInfo(lean_object*); +lean_object* initialize_Lean_Meta_GeneralizeTelescope(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Lean_Meta(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_mk_io_result(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_LevelDefEq(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_WHNF(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_InferType(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_FunInfo(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_ExprDefEq(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_DiscrTree(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Reduce(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Instances(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_AbstractMVars(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_SynthInstance(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_AppBuilder(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Message(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_KAbstract(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_RecursorInfo(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_GeneralizeTelescope(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_mk_io_result(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Lean/Meta/AbstractMVars.c b/stage0/stdlib/Lean/Meta/AbstractMVars.c similarity index 90% rename from stage0/stdlib/Init/Lean/Meta/AbstractMVars.c rename to stage0/stdlib/Lean/Meta/AbstractMVars.c index 456394b913..93ee89acff 100644 --- a/stage0/stdlib/Init/Lean/Meta/AbstractMVars.c +++ b/stage0/stdlib/Lean/Meta/AbstractMVars.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.AbstractMVars -// Imports: Init.Lean.Meta.Basic +// Module: Lean.Meta.AbstractMVars +// Imports: Lean.Meta.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -19,6 +19,7 @@ lean_object* lean_expr_update_forall(lean_object*, uint8_t, lean_object*, lean_o lean_object* l_HashMapImp_expand___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__3(lean_object*, lean_object*); lean_object* l_AssocList_contains___main___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Meta_openAbstractMVarsResult___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_HashMapImp_find_x3f___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); lean_object* lean_array_uget(lean_object*, size_t); lean_object* lean_expr_update_mdata(lean_object*, lean_object*); @@ -26,45 +27,47 @@ uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Expr_instantiateLevelParamsArray(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AbstractMVars_1__visitLevel(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Level_hasMVar(lean_object*); lean_object* l_List_mapM___main___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__9(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_AbstractMVars_mkFreshId___rarg(lean_object*); +lean_object* l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2; lean_object* l_ReaderT_Monad___rarg(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1; lean_object* lean_array_get_size(lean_object*); lean_object* l_AssocList_replace___main___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__6(lean_object*, lean_object*, lean_object*); -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1(lean_object*, lean_object*); extern lean_object* l_Id_monad; lean_object* lean_nat_add(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateLambdaE_x21___closed__1; -lean_object* l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_AbstractMVarsResult_inhabited___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_abstractMVars(lean_object*, lean_object*, lean_object*); +lean_object* l_AssocList_contains___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars(lean_object*, lean_object*, lean_object*); lean_object* l_mkHashMap___at_Lean_Meta_abstractMVars___spec__1(lean_object*); +lean_object* l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(lean_object*, lean_object*, lean_object*); lean_object* lean_level_update_max(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1; uint8_t l_Array_isEqvAux___main___at_Lean_Meta_AbstractMVarsResult_beq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Meta_openAbstractMVarsResult___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_AssocList_contains___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4___boxed(lean_object*, lean_object*); lean_object* l_HashMapImp_moveEntries___main___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_abstractMVars___closed__1; +lean_object* l_HashMapImp_find_x3f___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1(lean_object*, lean_object*); size_t l_Lean_Name_hash(lean_object*); +lean_object* l_AssocList_find_x3f___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2___boxed(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Meta_AbstractMVars_mkFreshId(lean_object*); lean_object* l_Lean_Meta_lambdaMetaTelescope(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_mkHashMap___at_Lean_Meta_abstractMVars___spec__2(lean_object*); -lean_object* l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars(lean_object*, lean_object*, lean_object*); +lean_object* l_AssocList_find_x3f___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__3; size_t lean_usize_modn(size_t, lean_object*); lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__5; -lean_object* l___private_Init_Lean_Meta_AbstractMVars_1__visitLevel(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_mkHashMapImp___rarg(lean_object*); lean_object* lean_expr_update_let(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); @@ -72,31 +75,34 @@ uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); lean_object* l_HashMapImp_insert___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_proj(lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__8(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AbstractMVars_2__visitExpr(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_HashMapImp_insert___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l_AssocList_foldlM___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__7(lean_object*, lean_object*); uint8_t l_AssocList_contains___main___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__2(lean_object*, lean_object*); lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Meta_AbstractMVars_mkFreshId___boxed(lean_object*); lean_object* lean_level_update_imax(lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__7(lean_object*, lean_object*); -lean_object* l_HashMapImp_moveEntries___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__6(lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); lean_object* lean_expr_update_sort(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); +lean_object* l_AssocList_replace___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Meta_AbstractMVars_abstractExprMVars___main___spec__8___boxed(lean_object*, lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); +uint8_t l_AssocList_contains___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AbstractMVars_2__visitExpr(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isAnonymous(lean_object*); lean_object* l_StateT_Monad___rarg(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +lean_object* l_HashMapImp_expand___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__5(lean_object*, lean_object*); lean_object* l_Lean_LocalContext_mkLambda(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_AbstractMVarsResult_beq___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_AbstractMVarsResult_hasBeq___closed__1; lean_object* lean_nat_mul(lean_object*, lean_object*); -lean_object* l_HashMapImp_expand___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__5(lean_object*, lean_object*); +lean_object* l_HashMapImp_moveEntries___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__6(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Meta_AbstractMVarsResult_beq(lean_object*, lean_object*); lean_object* lean_expr_update_lambda(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_level_update_succ(lean_object*, lean_object*); lean_object* l_Lean_Meta_openAbstractMVarsResult(lean_object*, lean_object*, lean_object*); -lean_object* l_AssocList_replace___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getLevelDepth(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited; lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*); @@ -107,18 +113,12 @@ lean_object* l_Lean_Meta_AbstractMVarsResult_inhabited; lean_object* l_Lean_Meta_abstractMVars___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshLevelMVar___rarg(lean_object*); lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__4; lean_object* l_Lean_Meta_abstractMVars___closed__2; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -lean_object* l_HashMapImp_insert___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLevelParam(lean_object*); lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_AbstractMVarsResult_hasBeq; -uint8_t l_AssocList_contains___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2; -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__7(lean_object*, lean_object*); -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateForallE_x21___closed__1; lean_object* lean_name_mk_numeral(lean_object*, lean_object*); lean_object* lean_expr_update_const(lean_object*, lean_object*); @@ -408,7 +408,7 @@ lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_AbstractMVars_1__visitLevel(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_AbstractMVars_1__visitLevel(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -431,7 +431,7 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Meta_AbstractMVars_2__visitExpr(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_AbstractMVars_2__visitExpr(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -454,7 +454,7 @@ return x_7; } } } -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_find_x3f___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -486,7 +486,7 @@ return x_9; } } } -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_find_x3f___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -496,12 +496,12 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_AssocList_find_x3f___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2(x_2, x_7); +x_8 = l_AssocList_find_x3f___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2(x_2, x_7); lean_dec(x_7); return x_8; } } -uint8_t l_AssocList_contains___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(lean_object* x_1, lean_object* x_2) { +uint8_t l_AssocList_contains___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -530,7 +530,7 @@ return x_8; } } } -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__7(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_foldlM___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -584,7 +584,7 @@ goto _start; } } } -lean_object* l_HashMapImp_moveEntries___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_HashMapImp_moveEntries___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -603,7 +603,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj 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_AssocList_foldlM___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__7(x_3, x_6); +x_9 = l_AssocList_foldlM___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__7(x_3, x_6); x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_1, x_10); lean_dec(x_1); @@ -614,7 +614,7 @@ goto _start; } } } -lean_object* l_HashMapImp_expand___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_expand___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__5(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; @@ -625,14 +625,14 @@ 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_HashMapImp_moveEntries___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__6(x_8, x_2, x_7); +x_9 = l_HashMapImp_moveEntries___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__6(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; } } -lean_object* l_AssocList_replace___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_AssocList_replace___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -655,7 +655,7 @@ x_8 = lean_name_eq(x_5, x_1); if (x_8 == 0) { lean_object* x_9; -x_9 = l_AssocList_replace___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(x_1, x_2, x_7); +x_9 = l_AssocList_replace___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(x_1, x_2, x_7); lean_ctor_set(x_3, 2, x_9); return x_3; } @@ -682,7 +682,7 @@ x_13 = lean_name_eq(x_10, x_1); if (x_13 == 0) { lean_object* x_14; lean_object* x_15; -x_14 = l_AssocList_replace___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(x_1, x_2, x_12); +x_14 = l_AssocList_replace___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(x_1, x_2, x_12); x_15 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_15, 0, x_10); lean_ctor_set(x_15, 1, x_11); @@ -704,7 +704,7 @@ return x_16; } } } -lean_object* l_HashMapImp_insert___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_HashMapImp_insert___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -718,7 +718,7 @@ x_7 = lean_array_get_size(x_6); x_8 = l_Lean_Name_hash(x_2); x_9 = lean_usize_modn(x_8, x_7); x_10 = lean_array_uget(x_6, x_9); -x_11 = l_AssocList_contains___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(x_2, x_10); +x_11 = l_AssocList_contains___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(x_2, x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -736,7 +736,7 @@ if (x_16 == 0) { lean_object* x_17; lean_free_object(x_1); -x_17 = l_HashMapImp_expand___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__5(x_13, x_15); +x_17 = l_HashMapImp_expand___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__5(x_13, x_15); return x_17; } else @@ -750,7 +750,7 @@ else { lean_object* x_18; lean_object* x_19; lean_dec(x_7); -x_18 = l_AssocList_replace___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(x_2, x_3, x_10); +x_18 = l_AssocList_replace___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(x_2, x_3, x_10); x_19 = lean_array_uset(x_6, x_9, x_18); lean_ctor_set(x_1, 1, x_19); return x_1; @@ -768,7 +768,7 @@ x_22 = lean_array_get_size(x_21); x_23 = l_Lean_Name_hash(x_2); x_24 = lean_usize_modn(x_23, x_22); x_25 = lean_array_uget(x_21, x_24); -x_26 = l_AssocList_contains___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(x_2, x_25); +x_26 = l_AssocList_contains___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(x_2, x_25); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; @@ -785,7 +785,7 @@ lean_dec(x_22); if (x_31 == 0) { lean_object* x_32; -x_32 = l_HashMapImp_expand___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__5(x_28, x_30); +x_32 = l_HashMapImp_expand___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__5(x_28, x_30); return x_32; } else @@ -801,7 +801,7 @@ else { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_22); -x_34 = l_AssocList_replace___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(x_2, x_3, x_25); +x_34 = l_AssocList_replace___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__8(x_2, x_3, x_25); x_35 = lean_array_uset(x_21, x_24, x_34); x_36 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_36, 0, x_20); @@ -811,7 +811,7 @@ return x_36; } } } -lean_object* _init_l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1() { _start: { lean_object* x_1; @@ -819,17 +819,17 @@ x_1 = lean_mk_string("_abstMVar"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___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_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1; +x_2 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_1)) { @@ -852,7 +852,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_4, x_2, x_3); +x_8 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_4, x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -903,7 +903,7 @@ return x_21; else { lean_object* x_22; uint8_t x_23; -x_22 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_17, x_2, x_3); +x_22 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_17, x_2, x_3); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -933,7 +933,7 @@ else { lean_object* x_30; uint8_t x_31; lean_inc(x_2); -x_30 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_16, x_2, x_3); +x_30 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_16, x_2, x_3); x_31 = !lean_is_exclusive(x_30); if (x_31 == 0) { @@ -953,7 +953,7 @@ else { lean_object* x_36; uint8_t x_37; lean_free_object(x_30); -x_36 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_17, x_2, x_33); +x_36 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_17, x_2, x_33); x_37 = !lean_is_exclusive(x_36); if (x_37 == 0) { @@ -1001,7 +1001,7 @@ return x_48; else { lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_49 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_17, x_2, x_45); +x_49 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_17, x_2, x_45); x_50 = lean_ctor_get(x_49, 0); lean_inc(x_50); x_51 = lean_ctor_get(x_49, 1); @@ -1052,7 +1052,7 @@ return x_60; else { lean_object* x_61; uint8_t x_62; -x_61 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_56, x_2, x_3); +x_61 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_56, x_2, x_3); x_62 = !lean_is_exclusive(x_61); if (x_62 == 0) { @@ -1082,7 +1082,7 @@ else { lean_object* x_69; uint8_t x_70; lean_inc(x_2); -x_69 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_55, x_2, x_3); +x_69 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_55, x_2, x_3); x_70 = !lean_is_exclusive(x_69); if (x_70 == 0) { @@ -1102,7 +1102,7 @@ else { lean_object* x_75; uint8_t x_76; lean_free_object(x_69); -x_75 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_56, x_2, x_72); +x_75 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_56, x_2, x_72); x_76 = !lean_is_exclusive(x_75); if (x_76 == 0) { @@ -1150,7 +1150,7 @@ return x_87; else { lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_88 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_56, x_2, x_84); +x_88 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_56, x_2, x_84); x_89 = lean_ctor_get(x_88, 0); lean_inc(x_89); x_90 = lean_ctor_get(x_88, 1); @@ -1216,7 +1216,7 @@ x_104 = lean_ctor_get(x_3, 5); lean_inc(x_104); x_105 = lean_ctor_get(x_3, 6); lean_inc(x_105); -x_106 = l_HashMapImp_find_x3f___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1(x_104, x_94); +x_106 = l_HashMapImp_find_x3f___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1(x_104, x_94); if (lean_obj_tag(x_106) == 0) { uint8_t x_107; @@ -1238,7 +1238,7 @@ x_113 = lean_ctor_get(x_3, 1); lean_dec(x_113); x_114 = lean_ctor_get(x_3, 0); lean_dec(x_114); -x_115 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2; +x_115 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2; lean_inc(x_101); x_116 = lean_name_mk_numeral(x_115, x_101); lean_inc(x_116); @@ -1248,7 +1248,7 @@ x_119 = lean_nat_add(x_101, x_118); lean_dec(x_101); x_120 = lean_array_push(x_102, x_116); lean_inc(x_117); -x_121 = l_HashMapImp_insert___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__3(x_104, x_94, x_117); +x_121 = l_HashMapImp_insert___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__3(x_104, x_94, x_117); lean_ctor_set(x_3, 5, x_121); lean_ctor_set(x_3, 3, x_120); lean_ctor_set(x_3, 2, x_119); @@ -1261,7 +1261,7 @@ else { lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_dec(x_3); -x_123 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2; +x_123 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2; lean_inc(x_101); x_124 = lean_name_mk_numeral(x_123, x_101); lean_inc(x_124); @@ -1271,7 +1271,7 @@ x_127 = lean_nat_add(x_101, x_126); lean_dec(x_101); x_128 = lean_array_push(x_102, x_124); lean_inc(x_125); -x_129 = l_HashMapImp_insert___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__3(x_104, x_94, x_125); +x_129 = l_HashMapImp_insert___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__3(x_104, x_94, x_125); x_130 = lean_alloc_ctor(0, 7, 0); lean_ctor_set(x_130, 0, x_99); lean_ctor_set(x_130, 1, x_100); @@ -1319,42 +1319,42 @@ return x_134; } } } -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_find_x3f___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_AssocList_find_x3f___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2(x_1, x_2); +x_3 = l_AssocList_find_x3f___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__2(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_find_x3f___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_HashMapImp_find_x3f___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1(x_1, x_2); +x_3 = l_HashMapImp_find_x3f___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_AssocList_contains___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_contains___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_AssocList_contains___main___at___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(x_1, x_2); +x_3 = l_AssocList_contains___main___at___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___spec__4(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_1, x_2, x_3); return x_4; } } @@ -1770,7 +1770,7 @@ else { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_inc(x_2); -x_16 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_7, x_2, x_3); +x_16 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_7, x_2, x_3); x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); @@ -1845,7 +1845,7 @@ else { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_inc(x_2); -x_34 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_25, x_2, x_3); +x_34 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_25, x_2, x_3); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); @@ -2259,7 +2259,7 @@ return x_95; else { lean_object* x_96; uint8_t x_97; -x_96 = l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_92, x_2, x_3); +x_96 = l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main(x_92, x_2, x_3); x_97 = !lean_is_exclusive(x_96); if (x_97 == 0) { @@ -3566,13 +3566,13 @@ lean_dec(x_3); return x_5; } } -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_AbstractMVars(lean_object* w) { +lean_object* initialize_Lean_Meta_AbstractMVars(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_AbstractMVarsResult_inhabited___closed__1 = _init_l_Lean_Meta_AbstractMVarsResult_inhabited___closed__1(); @@ -3583,10 +3583,10 @@ l_Lean_Meta_AbstractMVarsResult_hasBeq___closed__1 = _init_l_Lean_Meta_AbstractM lean_mark_persistent(l_Lean_Meta_AbstractMVarsResult_hasBeq___closed__1); l_Lean_Meta_AbstractMVarsResult_hasBeq = _init_l_Lean_Meta_AbstractMVarsResult_hasBeq(); lean_mark_persistent(l_Lean_Meta_AbstractMVarsResult_hasBeq); -l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1 = _init_l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1); -l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2 = _init_l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2); +l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1 = _init_l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__1); +l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2 = _init_l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_AbstractMVars_3__abstractLevelMVars___main___closed__2); l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__1 = _init_l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__1(); lean_mark_persistent(l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__1); l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2 = _init_l_Lean_Meta_AbstractMVars_abstractExprMVars___main___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Meta/AppBuilder.c b/stage0/stdlib/Lean/Meta/AppBuilder.c similarity index 93% rename from stage0/stdlib/Init/Lean/Meta/AppBuilder.c rename to stage0/stdlib/Lean/Meta/AppBuilder.c index 8a54e5b332..c9c8895f82 100644 --- a/stage0/stdlib/Init/Lean/Meta/AppBuilder.c +++ b/stage0/stdlib/Lean/Meta/AppBuilder.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.AppBuilder -// Imports: Init.Lean.Util.Recognizers Init.Lean.Meta.SynthInstance +// Module: Lean.Meta.AppBuilder +// Imports: Lean.Util.Recognizers Lean.Meta.SynthInstance #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,93 +13,89 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_eq_x3f___closed__2; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3; lean_object* l_Lean_Meta_mkHEqSymm___closed__2; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_Meta_mkCongr___closed__1; lean_object* l_Lean_Meta_mkExpectedTypeHint___closed__1; lean_object* l_Lean_mkApp6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkHEqSymm___closed__1; lean_object* l_Lean_Meta_mkEqSymm___closed__1; lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkPure___closed__2; lean_object* l_Lean_Meta_mkCongr___closed__2; -extern lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; extern lean_object* l_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l_Lean_Meta_mkPure___closed__4; extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_2__mkAppMFinal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkPure___closed__1; lean_object* l_Lean_Meta_mkCongr(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_4__mkFun___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkCongrFun(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(lean_object*); lean_object* l_Lean_Meta_mkEqRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_1__infer(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; lean_object* l_Lean_Meta_mkEqMP(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Meta_AppBuilder_4__mkFun___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkTermIdFromIdent___closed__1; lean_object* l_Lean_Meta_mkCongrArg___closed__2; lean_object* l_Lean_Meta_mkAppOptM(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqNDRec___closed__3; lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3; lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkPure___closed__3; -lean_object* l_List_mapM___main___at___private_Init_Lean_Meta_AppBuilder_4__mkFun___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_2__mkAppMFinal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__68; -lean_object* l_List_mapM___main___at___private_Init_Lean_Meta_AppBuilder_4__mkFun___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkAppM___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev_range(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkCongrArg___closed__1; lean_object* l_Lean_Meta_mkEqSymm___closed__2; -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___boxed(lean_object*, lean_object*, lean_object*, 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_Meta_mkEqMP___closed__1; lean_object* l_Lean_Meta_mkEqMP___closed__2; +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkNoConfusion___closed__3; lean_object* l_Lean_Meta_mkEqSymm(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_1__infer(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkCongrArg___closed__3; +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_heq_x3f___closed__2; lean_object* l_Lean_Meta_mkNoConfusion___closed__1; lean_object* l_Lean_Meta_mkAppOptM___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkNoConfusion___closed__4; lean_object* l_Lean_Meta_mkNoConfusion___closed__2; lean_object* lean_instantiate_type_lparams(lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3; lean_object* l_Lean_Meta_mkHEqRefl___closed__1; lean_object* l_Lean_Meta_mkEqTrans___closed__1; -lean_object* l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqRec___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1; lean_object* l_Lean_Meta_mkEqNDRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkRecFor___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqTrans___closed__2; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkCongrFun___closed__1; lean_object* l_Lean_mkLambda(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkCongrFun___closed__2; lean_object* l_Lean_Meta_mkEqMPR___closed__2; lean_object* l_Lean_Meta_mkEqSymm___closed__3; -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqNDRec___closed__4; uint8_t l_Lean_Expr_isForall(lean_object*); lean_object* l_Lean_Meta_mkEqRefl___closed__1; @@ -116,57 +112,61 @@ lean_object* l_Lean_ConstantInfo_lparams(lean_object*); lean_object* l_Lean_Meta_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_hasAssignableMVar(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqNDRec___closed__2; +lean_object* l___private_Lean_Meta_AppBuilder_4__mkFun(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprMVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkHEqSymm(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkAppM___closed__1; -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_incDepth(lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1; lean_object* l_Lean_Meta_mkEqMPR(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqTrans(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkHEqTrans(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkCongrArg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1; -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3; +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__9; lean_object* l_Lean_Meta_mkEqOfHEq___closed__3; lean_object* l_Lean_Meta_mkEqMPR___closed__1; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getConstInfo(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkNoConfusion(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Lean_Meta_AppBuilder_4__mkFun___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkExpectedTypeHint(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshLevelMVar___rarg(lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Meta_mkHEq(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkHEqTrans___closed__1; +extern lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_4__mkFun___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkHEqRefl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqOfHEq(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1; -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1; lean_object* l_Lean_Meta_mkCongrFun___closed__3; lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_AppBuilder_4__mkFun(lean_object*, lean_object*, lean_object*); lean_object* _init_l_Lean_Meta_mkExpectedTypeHint___closed__1() { _start: { @@ -747,7 +747,7 @@ return x_30; } } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_1__infer(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_AppBuilder_1__infer(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -826,7 +826,7 @@ if (x_5 == 0) lean_object* x_6; lean_inc(x_2); lean_inc(x_1); -x_6 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_2, x_3); +x_6 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_2, x_3); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -1144,7 +1144,7 @@ if (x_7 == 0) lean_object* x_8; lean_inc(x_3); lean_inc(x_1); -x_8 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_4); +x_8 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_4); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -1162,7 +1162,7 @@ if (lean_is_exclusive(x_8)) { } lean_inc(x_3); lean_inc(x_2); -x_12 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_2, x_3, x_10); +x_12 = l___private_Lean_Meta_AppBuilder_1__infer(x_2, x_3, x_10); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_59; lean_object* x_92; lean_object* x_93; uint8_t x_94; uint8_t x_95; @@ -1613,7 +1613,7 @@ if (x_5 == 0) lean_object* x_6; lean_inc(x_2); lean_inc(x_1); -x_6 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_2, x_3); +x_6 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_2, x_3); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -1931,7 +1931,7 @@ if (x_7 == 0) lean_object* x_8; lean_inc(x_3); lean_inc(x_1); -x_8 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_4); +x_8 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_4); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -1949,7 +1949,7 @@ if (lean_is_exclusive(x_8)) { } lean_inc(x_3); lean_inc(x_2); -x_12 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_2, x_3, x_10); +x_12 = l___private_Lean_Meta_AppBuilder_1__infer(x_2, x_3, x_10); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_63; lean_object* x_102; lean_object* x_103; uint8_t x_104; uint8_t x_105; @@ -2434,7 +2434,7 @@ _start: lean_object* x_4; lean_inc(x_2); lean_inc(x_1); -x_4 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_2, x_3); if (lean_obj_tag(x_4) == 0) { uint8_t x_5; @@ -2981,7 +2981,7 @@ _start: lean_object* x_5; lean_inc(x_3); lean_inc(x_2); -x_5 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_AppBuilder_1__infer(x_2, x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -2999,7 +2999,7 @@ if (lean_is_exclusive(x_5)) { } lean_inc(x_3); lean_inc(x_1); -x_9 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_7); +x_9 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_7); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_64; lean_object* x_81; lean_object* x_114; lean_object* x_115; uint8_t x_116; @@ -3506,7 +3506,7 @@ _start: lean_object* x_5; lean_inc(x_3); lean_inc(x_1); -x_5 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_4); +x_5 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_4); if (lean_obj_tag(x_5) == 0) { uint8_t x_6; @@ -4137,7 +4137,7 @@ _start: lean_object* x_5; lean_inc(x_3); lean_inc(x_1); -x_5 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_4); +x_5 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; @@ -4148,7 +4148,7 @@ lean_inc(x_7); lean_dec(x_5); lean_inc(x_3); lean_inc(x_2); -x_8 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_2, x_3, x_7); +x_8 = l___private_Lean_Meta_AppBuilder_1__infer(x_2, x_3, x_7); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_27; lean_object* x_28; lean_object* x_96; lean_object* x_97; uint8_t x_98; uint8_t x_99; @@ -4613,7 +4613,7 @@ return x_124; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_AppBuilder_2__mkAppMFinal___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_6; @@ -4751,7 +4751,7 @@ return x_33; } } } -lean_object* _init_l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1() { +lean_object* _init_l___private_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1() { _start: { lean_object* x_1; @@ -4759,14 +4759,14 @@ x_1 = lean_mk_string("result contains metavariables"); return x_1; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_AppBuilder_2__mkAppMFinal(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; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_3, x_3, x_7, x_2); lean_inc(x_5); -x_9 = l_Array_forMAux___main___at___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1(x_4, x_7, x_5, x_6); +x_9 = l_Array_forMAux___main___at___private_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1(x_4, x_7, x_5, x_6); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -4839,7 +4839,7 @@ lean_ctor_set(x_29, 2, x_26); lean_ctor_set(x_29, 3, x_28); x_30 = l_Lean_mkOptionalNode___closed__2; x_31 = lean_array_push(x_30, x_12); -x_32 = l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1; +x_32 = l___private_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1; x_33 = lean_alloc_ctor(16, 4, 0); lean_ctor_set(x_33, 0, x_1); lean_ctor_set(x_33, 1, x_32); @@ -4874,7 +4874,7 @@ lean_ctor_set(x_40, 2, x_37); lean_ctor_set(x_40, 3, x_39); x_41 = l_Lean_mkOptionalNode___closed__2; x_42 = lean_array_push(x_41, x_12); -x_43 = l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1; +x_43 = l___private_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1; x_44 = lean_alloc_ctor(16, 4, 0); lean_ctor_set(x_44, 0, x_1); lean_ctor_set(x_44, 1, x_43); @@ -4914,26 +4914,26 @@ return x_49; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_AppBuilder_2__mkAppMFinal___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_forMAux___main___at___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_forMAux___main___at___private_Lean_Meta_AppBuilder_2__mkAppMFinal___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_AppBuilder_2__mkAppMFinal___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_AppBuilder_2__mkAppMFinal(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); return x_7; } } -lean_object* _init_l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1() { _start: { lean_object* x_1; @@ -4941,17 +4941,17 @@ x_1 = lean_mk_string("mkAppM"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___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_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1; +x_2 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3() { +lean_object* _init_l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3() { _start: { lean_object* x_1; @@ -4959,7 +4959,7 @@ x_1 = lean_mk_string("too many explicit arguments provided"); return x_1; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, 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; @@ -5044,8 +5044,8 @@ lean_dec(x_68); lean_dec(x_65); lean_dec(x_5); lean_dec(x_3); -x_72 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; -x_73 = l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal(x_72, x_1, x_4, x_6, x_8, x_9); +x_72 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; +x_73 = l___private_Lean_Meta_AppBuilder_2__mkAppMFinal(x_72, x_1, x_4, x_6, x_8, x_9); lean_dec(x_6); lean_dec(x_4); return x_73; @@ -5296,8 +5296,8 @@ x_26 = l_Lean_mkOptionalNode___closed__2; x_27 = lean_array_push(x_26, x_1); x_28 = lean_unsigned_to_nat(0u); x_29 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_2, x_2, x_28, x_27); -x_30 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; -x_31 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3; +x_30 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; +x_31 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3; x_32 = lean_alloc_ctor(16, 4, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); @@ -5311,8 +5311,8 @@ else { lean_object* x_33; lean_object* x_34; lean_free_object(x_13); -x_33 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; -x_34 = l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal(x_33, x_1, x_4, x_6, x_8, x_16); +x_33 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; +x_34 = l___private_Lean_Meta_AppBuilder_2__mkAppMFinal(x_33, x_1, x_4, x_6, x_8, x_16); lean_dec(x_6); lean_dec(x_4); return x_34; @@ -5371,8 +5371,8 @@ x_47 = l_Lean_mkOptionalNode___closed__2; x_48 = lean_array_push(x_47, x_1); x_49 = lean_unsigned_to_nat(0u); x_50 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_2, x_2, x_49, x_48); -x_51 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; -x_52 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3; +x_51 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; +x_52 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3; x_53 = lean_alloc_ctor(16, 4, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_52); @@ -5386,8 +5386,8 @@ return x_54; else { lean_object* x_55; lean_object* x_56; -x_55 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; -x_56 = l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal(x_55, x_1, x_4, x_6, x_8, x_37); +x_55 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2; +x_56 = l___private_Lean_Meta_AppBuilder_2__mkAppMFinal(x_55, x_1, x_4, x_6, x_8, x_37); lean_dec(x_6); lean_dec(x_4); return x_56; @@ -5433,33 +5433,33 @@ return x_61; } } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_2); return x_10; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_AppBuilder_3__mkAppMAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_2); return x_10; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Meta_AppBuilder_4__mkFun___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Lean_Meta_AppBuilder_4__mkFun___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5487,7 +5487,7 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); -x_12 = l_List_mapM___main___at___private_Init_Lean_Meta_AppBuilder_4__mkFun___spec__1(x_7, x_2, x_11); +x_12 = l_List_mapM___main___at___private_Lean_Meta_AppBuilder_4__mkFun___spec__1(x_7, x_2, x_11); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -5526,7 +5526,7 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = l_List_mapM___main___at___private_Init_Lean_Meta_AppBuilder_4__mkFun___spec__1(x_18, x_2, x_21); +x_22 = l_List_mapM___main___at___private_Lean_Meta_AppBuilder_4__mkFun___spec__1(x_18, x_2, x_21); x_23 = lean_ctor_get(x_22, 0); lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); @@ -5554,7 +5554,7 @@ return x_27; } } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_4__mkFun(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_AppBuilder_4__mkFun(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -5569,7 +5569,7 @@ x_6 = lean_ctor_get(x_4, 1); lean_inc(x_6); lean_dec(x_4); x_7 = l_Lean_ConstantInfo_lparams(x_5); -x_8 = l_List_mapM___main___at___private_Init_Lean_Meta_AppBuilder_4__mkFun___spec__1(x_7, x_2, x_6); +x_8 = l_List_mapM___main___at___private_Lean_Meta_AppBuilder_4__mkFun___spec__1(x_7, x_2, x_6); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -5633,20 +5633,20 @@ return x_23; } } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Meta_AppBuilder_4__mkFun___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Lean_Meta_AppBuilder_4__mkFun___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_mapM___main___at___private_Init_Lean_Meta_AppBuilder_4__mkFun___spec__1(x_1, x_2, x_3); +x_4 = l_List_mapM___main___at___private_Lean_Meta_AppBuilder_4__mkFun___spec__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_4__mkFun___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_AppBuilder_4__mkFun___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -5655,7 +5655,7 @@ lean_object* _init_l_Lean_Meta_mkAppM___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_1 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; x_2 = l_Lean_Meta_Exception_toTraceMessageData___closed__68; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -5681,7 +5681,7 @@ else { lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; uint8_t x_371; x_367 = l_Lean_Meta_mkAppM___closed__1; -x_368 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_367, x_3, x_4); +x_368 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_367, x_3, x_4); x_369 = lean_ctor_get(x_368, 0); lean_inc(x_369); x_370 = lean_ctor_get(x_368, 1); @@ -5714,7 +5714,7 @@ lean_ctor_set_uint8(x_8, sizeof(void*)*1, x_12); lean_inc(x_10); x_13 = l_Lean_MetavarContext_incDepth(x_10); lean_ctor_set(x_6, 1, x_13); -x_14 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_6); +x_14 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_6); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -5730,7 +5730,7 @@ lean_inc(x_18); lean_dec(x_15); x_19 = lean_unsigned_to_nat(0u); x_20 = l_Array_empty___closed__1; -x_21 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_17, x_2, x_19, x_20, x_19, x_20, x_18, x_3, x_16); +x_21 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_17, x_2, x_19, x_20, x_19, x_20, x_18, x_3, x_16); if (lean_obj_tag(x_21) == 0) { lean_object* x_22; lean_object* x_23; uint8_t x_24; @@ -6170,7 +6170,7 @@ lean_inc(x_109); x_114 = l_Lean_MetavarContext_incDepth(x_109); lean_ctor_set(x_6, 4, x_113); lean_ctor_set(x_6, 1, x_114); -x_115 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_6); +x_115 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_6); if (lean_obj_tag(x_115) == 0) { lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; @@ -6186,7 +6186,7 @@ lean_inc(x_119); lean_dec(x_116); x_120 = lean_unsigned_to_nat(0u); x_121 = l_Array_empty___closed__1; -x_122 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_118, x_2, x_120, x_121, x_120, x_121, x_119, x_3, x_117); +x_122 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_118, x_2, x_120, x_121, x_120, x_121, x_119, x_3, x_117); if (lean_obj_tag(x_122) == 0) { lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; 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; @@ -6453,7 +6453,7 @@ lean_ctor_set(x_177, 2, x_168); lean_ctor_set(x_177, 3, x_169); lean_ctor_set(x_177, 4, x_175); lean_ctor_set(x_177, 5, x_170); -x_178 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_177); +x_178 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_177); if (lean_obj_tag(x_178) == 0) { 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; @@ -6469,7 +6469,7 @@ lean_inc(x_182); lean_dec(x_179); x_183 = lean_unsigned_to_nat(0u); x_184 = l_Array_empty___closed__1; -x_185 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_181, x_2, x_183, x_184, x_183, x_184, x_182, x_3, x_180); +x_185 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_181, x_2, x_183, x_184, x_183, x_184, x_182, x_3, x_180); if (lean_obj_tag(x_185) == 0) { 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; @@ -6696,7 +6696,7 @@ return x_227; else { lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; -x_228 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); +x_228 = l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); x_229 = lean_ctor_get(x_228, 1); lean_inc(x_229); x_230 = lean_ctor_get(x_228, 0); @@ -6710,7 +6710,7 @@ x_232 = lean_ctor_get(x_229, 1); lean_inc(x_232); x_233 = l_Lean_MetavarContext_incDepth(x_232); lean_ctor_set(x_229, 1, x_233); -x_234 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_229); +x_234 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_229); if (lean_obj_tag(x_234) == 0) { lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; @@ -6727,7 +6727,7 @@ lean_dec(x_235); x_239 = lean_unsigned_to_nat(0u); x_240 = l_Array_empty___closed__1; lean_inc(x_3); -x_241 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_237, x_2, x_239, x_240, x_239, x_240, x_238, x_3, x_236); +x_241 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_237, x_2, x_239, x_240, x_239, x_240, x_238, x_3, x_236); if (lean_obj_tag(x_241) == 0) { lean_object* x_242; lean_object* x_243; uint8_t x_244; @@ -6744,7 +6744,7 @@ x_245 = lean_ctor_get(x_242, 1); lean_dec(x_245); lean_ctor_set(x_242, 1, x_232); x_246 = l_Lean_Meta_mkAppM___closed__1; -x_247 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_246, x_3, x_242); +x_247 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_246, x_3, x_242); lean_dec(x_3); x_248 = !lean_is_exclusive(x_247); if (x_248 == 0) @@ -6789,7 +6789,7 @@ lean_ctor_set(x_257, 3, x_254); lean_ctor_set(x_257, 4, x_255); lean_ctor_set(x_257, 5, x_256); x_258 = l_Lean_Meta_mkAppM___closed__1; -x_259 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_258, x_3, x_257); +x_259 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_258, x_3, x_257); lean_dec(x_3); x_260 = lean_ctor_get(x_259, 1); lean_inc(x_260); @@ -6827,7 +6827,7 @@ x_266 = lean_ctor_get(x_263, 1); lean_dec(x_266); lean_ctor_set(x_263, 1, x_232); x_267 = l_Lean_Meta_mkAppM___closed__1; -x_268 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_267, x_3, x_263); +x_268 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_267, x_3, x_263); lean_dec(x_3); x_269 = !lean_is_exclusive(x_268); if (x_269 == 0) @@ -6873,7 +6873,7 @@ lean_ctor_set(x_278, 3, x_275); lean_ctor_set(x_278, 4, x_276); lean_ctor_set(x_278, 5, x_277); x_279 = l_Lean_Meta_mkAppM___closed__1; -x_280 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_279, x_3, x_278); +x_280 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_279, x_3, x_278); lean_dec(x_3); x_281 = lean_ctor_get(x_280, 1); lean_inc(x_281); @@ -6913,7 +6913,7 @@ x_287 = lean_ctor_get(x_284, 1); lean_dec(x_287); lean_ctor_set(x_284, 1, x_232); x_288 = l_Lean_Meta_mkAppM___closed__1; -x_289 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_288, x_3, x_284); +x_289 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_288, x_3, x_284); lean_dec(x_3); x_290 = !lean_is_exclusive(x_289); if (x_290 == 0) @@ -6959,7 +6959,7 @@ lean_ctor_set(x_299, 3, x_296); lean_ctor_set(x_299, 4, x_297); lean_ctor_set(x_299, 5, x_298); x_300 = l_Lean_Meta_mkAppM___closed__1; -x_301 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_300, x_3, x_299); +x_301 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_300, x_3, x_299); lean_dec(x_3); x_302 = lean_ctor_get(x_301, 1); lean_inc(x_302); @@ -7008,7 +7008,7 @@ lean_ctor_set(x_312, 2, x_307); lean_ctor_set(x_312, 3, x_308); lean_ctor_set(x_312, 4, x_309); lean_ctor_set(x_312, 5, x_310); -x_313 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_312); +x_313 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_312); if (lean_obj_tag(x_313) == 0) { lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; @@ -7025,7 +7025,7 @@ lean_dec(x_314); x_318 = lean_unsigned_to_nat(0u); x_319 = l_Array_empty___closed__1; lean_inc(x_3); -x_320 = l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_316, x_2, x_318, x_319, x_318, x_319, x_317, x_3, x_315); +x_320 = l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main(x_316, x_2, x_318, x_319, x_318, x_319, x_317, x_3, x_315); if (lean_obj_tag(x_320) == 0) { lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; @@ -7068,7 +7068,7 @@ lean_ctor_set(x_329, 3, x_325); lean_ctor_set(x_329, 4, x_326); lean_ctor_set(x_329, 5, x_327); x_330 = l_Lean_Meta_mkAppM___closed__1; -x_331 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_330, x_3, x_329); +x_331 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_330, x_3, x_329); lean_dec(x_3); x_332 = lean_ctor_get(x_331, 1); lean_inc(x_332); @@ -7131,7 +7131,7 @@ lean_ctor_set(x_343, 3, x_339); lean_ctor_set(x_343, 4, x_340); lean_ctor_set(x_343, 5, x_341); x_344 = l_Lean_Meta_mkAppM___closed__1; -x_345 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_344, x_3, x_343); +x_345 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_344, x_3, x_343); lean_dec(x_3); x_346 = lean_ctor_get(x_345, 1); lean_inc(x_346); @@ -7196,7 +7196,7 @@ lean_ctor_set(x_357, 3, x_353); lean_ctor_set(x_357, 4, x_354); lean_ctor_set(x_357, 5, x_355); x_358 = l_Lean_Meta_mkAppM___closed__1; -x_359 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_358, x_3, x_357); +x_359 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_358, x_3, x_357); lean_dec(x_3); x_360 = lean_ctor_get(x_359, 1); lean_inc(x_360); @@ -7232,7 +7232,7 @@ lean_dec(x_2); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___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_6; @@ -7270,7 +7270,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1() { _start: { lean_object* x_1; @@ -7278,17 +7278,17 @@ x_1 = lean_mk_string("mkAppOptM"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___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_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1; +x_2 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3() { +lean_object* _init_l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3() { _start: { lean_object* x_1; @@ -7296,7 +7296,7 @@ x_1 = lean_mk_string("too many arguments provided"); return x_1; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, 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; @@ -7326,8 +7326,8 @@ lean_dec(x_69); lean_dec(x_67); lean_dec(x_5); lean_dec(x_3); -x_75 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; -x_76 = l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal(x_75, x_1, x_4, x_6, x_8, x_9); +x_75 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; +x_76 = l___private_Lean_Meta_AppBuilder_2__mkAppMFinal(x_75, x_1, x_4, x_6, x_8, x_9); lean_dec(x_6); lean_dec(x_4); return x_76; @@ -7620,7 +7620,7 @@ lean_dec(x_6); lean_dec(x_4); x_20 = lean_unsigned_to_nat(0u); x_21 = l_Array_empty___closed__1; -x_22 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1(x_2, x_2, x_20, x_21); +x_22 = l_Array_iterateMAux___main___at___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1(x_2, x_2, x_20, x_21); x_23 = lean_ctor_get(x_16, 0); lean_inc(x_23); x_24 = lean_ctor_get(x_16, 1); @@ -7642,8 +7642,8 @@ x_29 = l_Lean_mkOptionalNode___closed__2; x_30 = lean_array_push(x_29, x_1); x_31 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_22, x_22, x_20, x_30); lean_dec(x_22); -x_32 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; -x_33 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3; +x_32 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; +x_33 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3; x_34 = lean_alloc_ctor(16, 4, 0); lean_ctor_set(x_34, 0, x_32); lean_ctor_set(x_34, 1, x_33); @@ -7657,8 +7657,8 @@ else { lean_object* x_35; lean_object* x_36; lean_free_object(x_13); -x_35 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; -x_36 = l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal(x_35, x_1, x_4, x_6, x_8, x_16); +x_35 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; +x_36 = l___private_Lean_Meta_AppBuilder_2__mkAppMFinal(x_35, x_1, x_4, x_6, x_8, x_16); lean_dec(x_6); lean_dec(x_4); return x_36; @@ -7698,7 +7698,7 @@ lean_dec(x_6); lean_dec(x_4); x_43 = lean_unsigned_to_nat(0u); x_44 = l_Array_empty___closed__1; -x_45 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1(x_2, x_2, x_43, x_44); +x_45 = l_Array_iterateMAux___main___at___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1(x_2, x_2, x_43, x_44); x_46 = lean_ctor_get(x_39, 0); lean_inc(x_46); x_47 = lean_ctor_get(x_39, 1); @@ -7720,8 +7720,8 @@ x_52 = l_Lean_mkOptionalNode___closed__2; x_53 = lean_array_push(x_52, x_1); x_54 = l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(x_45, x_45, x_43, x_53); lean_dec(x_45); -x_55 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; -x_56 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3; +x_55 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; +x_56 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3; x_57 = lean_alloc_ctor(16, 4, 0); lean_ctor_set(x_57, 0, x_55); lean_ctor_set(x_57, 1, x_56); @@ -7735,8 +7735,8 @@ return x_58; else { lean_object* x_59; lean_object* x_60; -x_59 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; -x_60 = l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal(x_59, x_1, x_4, x_6, x_8, x_39); +x_59 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2; +x_60 = l___private_Lean_Meta_AppBuilder_2__mkAppMFinal(x_59, x_1, x_4, x_6, x_8, x_39); lean_dec(x_6); lean_dec(x_4); return x_60; @@ -7782,38 +7782,38 @@ return x_65; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___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_iterateMAux___main___at___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_2); return x_10; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -lean_object* l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_2); return x_10; } @@ -7838,7 +7838,7 @@ else { lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; uint8_t x_371; x_367 = l_Lean_Meta_mkAppM___closed__1; -x_368 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_367, x_3, x_4); +x_368 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_367, x_3, x_4); x_369 = lean_ctor_get(x_368, 0); lean_inc(x_369); x_370 = lean_ctor_get(x_368, 1); @@ -7871,7 +7871,7 @@ lean_ctor_set_uint8(x_8, sizeof(void*)*1, x_12); lean_inc(x_10); x_13 = l_Lean_MetavarContext_incDepth(x_10); lean_ctor_set(x_6, 1, x_13); -x_14 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_6); +x_14 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_6); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -7887,7 +7887,7 @@ lean_inc(x_18); lean_dec(x_15); x_19 = lean_unsigned_to_nat(0u); x_20 = l_Array_empty___closed__1; -x_21 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_17, x_2, x_19, x_20, x_19, x_20, x_18, x_3, x_16); +x_21 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_17, x_2, x_19, x_20, x_19, x_20, x_18, x_3, x_16); if (lean_obj_tag(x_21) == 0) { lean_object* x_22; lean_object* x_23; uint8_t x_24; @@ -8327,7 +8327,7 @@ lean_inc(x_109); x_114 = l_Lean_MetavarContext_incDepth(x_109); lean_ctor_set(x_6, 4, x_113); lean_ctor_set(x_6, 1, x_114); -x_115 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_6); +x_115 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_6); if (lean_obj_tag(x_115) == 0) { lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; @@ -8343,7 +8343,7 @@ lean_inc(x_119); lean_dec(x_116); x_120 = lean_unsigned_to_nat(0u); x_121 = l_Array_empty___closed__1; -x_122 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_118, x_2, x_120, x_121, x_120, x_121, x_119, x_3, x_117); +x_122 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_118, x_2, x_120, x_121, x_120, x_121, x_119, x_3, x_117); if (lean_obj_tag(x_122) == 0) { lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; 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; @@ -8610,7 +8610,7 @@ lean_ctor_set(x_177, 2, x_168); lean_ctor_set(x_177, 3, x_169); lean_ctor_set(x_177, 4, x_175); lean_ctor_set(x_177, 5, x_170); -x_178 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_177); +x_178 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_177); if (lean_obj_tag(x_178) == 0) { 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; @@ -8626,7 +8626,7 @@ lean_inc(x_182); lean_dec(x_179); x_183 = lean_unsigned_to_nat(0u); x_184 = l_Array_empty___closed__1; -x_185 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_181, x_2, x_183, x_184, x_183, x_184, x_182, x_3, x_180); +x_185 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_181, x_2, x_183, x_184, x_183, x_184, x_182, x_3, x_180); if (lean_obj_tag(x_185) == 0) { 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; @@ -8853,7 +8853,7 @@ return x_227; else { lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; -x_228 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); +x_228 = l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); x_229 = lean_ctor_get(x_228, 1); lean_inc(x_229); x_230 = lean_ctor_get(x_228, 0); @@ -8867,7 +8867,7 @@ x_232 = lean_ctor_get(x_229, 1); lean_inc(x_232); x_233 = l_Lean_MetavarContext_incDepth(x_232); lean_ctor_set(x_229, 1, x_233); -x_234 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_229); +x_234 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_229); if (lean_obj_tag(x_234) == 0) { lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; @@ -8884,7 +8884,7 @@ lean_dec(x_235); x_239 = lean_unsigned_to_nat(0u); x_240 = l_Array_empty___closed__1; lean_inc(x_3); -x_241 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_237, x_2, x_239, x_240, x_239, x_240, x_238, x_3, x_236); +x_241 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_237, x_2, x_239, x_240, x_239, x_240, x_238, x_3, x_236); if (lean_obj_tag(x_241) == 0) { lean_object* x_242; lean_object* x_243; uint8_t x_244; @@ -8901,7 +8901,7 @@ x_245 = lean_ctor_get(x_242, 1); lean_dec(x_245); lean_ctor_set(x_242, 1, x_232); x_246 = l_Lean_Meta_mkAppM___closed__1; -x_247 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_246, x_3, x_242); +x_247 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_246, x_3, x_242); lean_dec(x_3); x_248 = !lean_is_exclusive(x_247); if (x_248 == 0) @@ -8946,7 +8946,7 @@ lean_ctor_set(x_257, 3, x_254); lean_ctor_set(x_257, 4, x_255); lean_ctor_set(x_257, 5, x_256); x_258 = l_Lean_Meta_mkAppM___closed__1; -x_259 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_258, x_3, x_257); +x_259 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_258, x_3, x_257); lean_dec(x_3); x_260 = lean_ctor_get(x_259, 1); lean_inc(x_260); @@ -8984,7 +8984,7 @@ x_266 = lean_ctor_get(x_263, 1); lean_dec(x_266); lean_ctor_set(x_263, 1, x_232); x_267 = l_Lean_Meta_mkAppM___closed__1; -x_268 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_267, x_3, x_263); +x_268 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_267, x_3, x_263); lean_dec(x_3); x_269 = !lean_is_exclusive(x_268); if (x_269 == 0) @@ -9030,7 +9030,7 @@ lean_ctor_set(x_278, 3, x_275); lean_ctor_set(x_278, 4, x_276); lean_ctor_set(x_278, 5, x_277); x_279 = l_Lean_Meta_mkAppM___closed__1; -x_280 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_279, x_3, x_278); +x_280 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_279, x_3, x_278); lean_dec(x_3); x_281 = lean_ctor_get(x_280, 1); lean_inc(x_281); @@ -9070,7 +9070,7 @@ x_287 = lean_ctor_get(x_284, 1); lean_dec(x_287); lean_ctor_set(x_284, 1, x_232); x_288 = l_Lean_Meta_mkAppM___closed__1; -x_289 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_288, x_3, x_284); +x_289 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_288, x_3, x_284); lean_dec(x_3); x_290 = !lean_is_exclusive(x_289); if (x_290 == 0) @@ -9116,7 +9116,7 @@ lean_ctor_set(x_299, 3, x_296); lean_ctor_set(x_299, 4, x_297); lean_ctor_set(x_299, 5, x_298); x_300 = l_Lean_Meta_mkAppM___closed__1; -x_301 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_300, x_3, x_299); +x_301 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_300, x_3, x_299); lean_dec(x_3); x_302 = lean_ctor_get(x_301, 1); lean_inc(x_302); @@ -9165,7 +9165,7 @@ lean_ctor_set(x_312, 2, x_307); lean_ctor_set(x_312, 3, x_308); lean_ctor_set(x_312, 4, x_309); lean_ctor_set(x_312, 5, x_310); -x_313 = l___private_Init_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_312); +x_313 = l___private_Lean_Meta_AppBuilder_4__mkFun(x_1, x_3, x_312); if (lean_obj_tag(x_313) == 0) { lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; @@ -9182,7 +9182,7 @@ lean_dec(x_314); x_318 = lean_unsigned_to_nat(0u); x_319 = l_Array_empty___closed__1; lean_inc(x_3); -x_320 = l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_316, x_2, x_318, x_319, x_318, x_319, x_317, x_3, x_315); +x_320 = l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main(x_316, x_2, x_318, x_319, x_318, x_319, x_317, x_3, x_315); if (lean_obj_tag(x_320) == 0) { lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; @@ -9225,7 +9225,7 @@ lean_ctor_set(x_329, 3, x_325); lean_ctor_set(x_329, 4, x_326); lean_ctor_set(x_329, 5, x_327); x_330 = l_Lean_Meta_mkAppM___closed__1; -x_331 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_330, x_3, x_329); +x_331 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_330, x_3, x_329); lean_dec(x_3); x_332 = lean_ctor_get(x_331, 1); lean_inc(x_332); @@ -9288,7 +9288,7 @@ lean_ctor_set(x_343, 3, x_339); lean_ctor_set(x_343, 4, x_340); lean_ctor_set(x_343, 5, x_341); x_344 = l_Lean_Meta_mkAppM___closed__1; -x_345 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_344, x_3, x_343); +x_345 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_344, x_3, x_343); lean_dec(x_3); x_346 = lean_ctor_get(x_345, 1); lean_inc(x_346); @@ -9353,7 +9353,7 @@ lean_ctor_set(x_357, 3, x_353); lean_ctor_set(x_357, 4, x_354); lean_ctor_set(x_357, 5, x_355); x_358 = l_Lean_Meta_mkAppM___closed__1; -x_359 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_358, x_3, x_357); +x_359 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_230, x_358, x_3, x_357); lean_dec(x_3); x_360 = lean_ctor_get(x_359, 1); lean_inc(x_360); @@ -9435,7 +9435,7 @@ if (x_7 == 0) lean_object* x_8; lean_inc(x_4); lean_inc(x_3); -x_8 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_3, x_4, x_5); +x_8 = l___private_Lean_Meta_AppBuilder_1__infer(x_3, x_4, x_5); if (lean_obj_tag(x_8) == 0) { uint8_t x_9; @@ -9510,7 +9510,7 @@ x_33 = lean_ctor_get(x_31, 0); x_34 = lean_ctor_get(x_31, 1); lean_inc(x_4); lean_inc(x_1); -x_35 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_34); +x_35 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_34); if (lean_obj_tag(x_35) == 0) { lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; @@ -9677,7 +9677,7 @@ lean_inc(x_75); lean_dec(x_31); lean_inc(x_4); lean_inc(x_1); -x_77 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_76); +x_77 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_76); if (lean_obj_tag(x_77) == 0) { lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; @@ -9945,7 +9945,7 @@ if (lean_is_exclusive(x_144)) { } lean_inc(x_4); lean_inc(x_1); -x_148 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_146); +x_148 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_146); if (lean_obj_tag(x_148) == 0) { lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; @@ -10204,7 +10204,7 @@ if (x_7 == 0) lean_object* x_8; lean_inc(x_4); lean_inc(x_3); -x_8 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_3, x_4, x_5); +x_8 = l___private_Lean_Meta_AppBuilder_1__infer(x_3, x_4, x_5); if (lean_obj_tag(x_8) == 0) { uint8_t x_9; @@ -10279,7 +10279,7 @@ x_33 = lean_ctor_get(x_31, 0); x_34 = lean_ctor_get(x_31, 1); lean_inc(x_4); lean_inc(x_1); -x_35 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_34); +x_35 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_34); if (lean_obj_tag(x_35) == 0) { lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; @@ -10468,7 +10468,7 @@ lean_inc(x_77); lean_dec(x_31); lean_inc(x_4); lean_inc(x_1); -x_79 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_78); +x_79 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_78); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; @@ -10757,7 +10757,7 @@ if (lean_is_exclusive(x_148)) { } lean_inc(x_4); lean_inc(x_1); -x_152 = l___private_Init_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_150); +x_152 = l___private_Lean_Meta_AppBuilder_1__infer(x_1, x_4, x_150); if (lean_obj_tag(x_152) == 0) { lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; @@ -11273,7 +11273,7 @@ x_69 = lean_mk_array(x_67, x_68); x_70 = lean_unsigned_to_nat(1u); x_71 = lean_nat_sub(x_67, x_70); lean_dec(x_67); -x_72 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_32, x_69, x_71); +x_72 = l___private_Lean_Expr_3__getAppArgsAux___main(x_32, x_69, x_71); x_73 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_74 = lean_array_push(x_73, x_1); x_75 = lean_array_push(x_74, x_29); @@ -11314,7 +11314,7 @@ x_91 = lean_mk_array(x_89, x_90); x_92 = lean_unsigned_to_nat(1u); x_93 = lean_nat_sub(x_89, x_92); lean_dec(x_89); -x_94 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_32, x_91, x_93); +x_94 = l___private_Lean_Expr_3__getAppArgsAux___main(x_32, x_91, x_93); x_95 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_96 = lean_array_push(x_95, x_1); x_97 = lean_array_push(x_96, x_29); @@ -11607,7 +11607,7 @@ x_174 = lean_mk_array(x_172, x_173); x_175 = lean_unsigned_to_nat(1u); x_176 = lean_nat_sub(x_172, x_175); lean_dec(x_172); -x_177 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_136, x_174, x_176); +x_177 = l___private_Lean_Expr_3__getAppArgsAux___main(x_136, x_174, x_176); x_178 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; x_179 = lean_array_push(x_178, x_1); x_180 = lean_array_push(x_179, x_133); @@ -11868,17 +11868,17 @@ lean_dec(x_12); return x_14; } } -lean_object* initialize_Init_Lean_Util_Recognizers(lean_object*); -lean_object* initialize_Init_Lean_Meta_SynthInstance(lean_object*); +lean_object* initialize_Lean_Util_Recognizers(lean_object*); +lean_object* initialize_Lean_Meta_SynthInstance(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_AppBuilder(lean_object* w) { +lean_object* initialize_Lean_Meta_AppBuilder(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Util_Recognizers(lean_io_mk_world()); +res = initialize_Lean_Util_Recognizers(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_SynthInstance(lean_io_mk_world()); +res = initialize_Lean_Meta_SynthInstance(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_mkExpectedTypeHint___closed__1 = _init_l_Lean_Meta_mkExpectedTypeHint___closed__1(); @@ -11927,22 +11927,22 @@ l_Lean_Meta_mkCongr___closed__1 = _init_l_Lean_Meta_mkCongr___closed__1(); lean_mark_persistent(l_Lean_Meta_mkCongr___closed__1); l_Lean_Meta_mkCongr___closed__2 = _init_l_Lean_Meta_mkCongr___closed__2(); lean_mark_persistent(l_Lean_Meta_mkCongr___closed__2); -l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1 = _init_l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1); -l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1 = _init_l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1); -l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2 = _init_l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2); -l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3 = _init_l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3); +l___private_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1 = _init_l___private_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_AppBuilder_2__mkAppMFinal___closed__1); +l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1 = _init_l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__1); +l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2 = _init_l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__2); +l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3 = _init_l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_AppBuilder_3__mkAppMAux___main___closed__3); l_Lean_Meta_mkAppM___closed__1 = _init_l_Lean_Meta_mkAppM___closed__1(); lean_mark_persistent(l_Lean_Meta_mkAppM___closed__1); -l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1 = _init_l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1); -l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2 = _init_l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2); -l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3 = _init_l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3); +l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1 = _init_l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__1); +l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2 = _init_l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__2); +l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3 = _init_l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_AppBuilder_5__mkAppOptMAux___main___closed__3); l_Lean_Meta_mkEqNDRec___closed__1 = _init_l_Lean_Meta_mkEqNDRec___closed__1(); lean_mark_persistent(l_Lean_Meta_mkEqNDRec___closed__1); l_Lean_Meta_mkEqNDRec___closed__2 = _init_l_Lean_Meta_mkEqNDRec___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Meta/Basic.c b/stage0/stdlib/Lean/Meta/Basic.c similarity index 97% rename from stage0/stdlib/Init/Lean/Meta/Basic.c rename to stage0/stdlib/Lean/Meta/Basic.c index 5828045795..a158e68e6b 100644 --- a/stage0/stdlib/Init/Lean/Meta/Basic.c +++ b/stage0/stdlib/Lean/Meta/Basic.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Basic -// Imports: Init.Control.Reader Init.Lean.Data.LOption Init.Lean.Environment Init.Lean.Class Init.Lean.ReducibilityAttrs Init.Lean.Util.Trace Init.Lean.Util.RecDepth Init.Lean.Util.Closure Init.Lean.Meta.Exception Init.Lean.Meta.DiscrTreeTypes Init.Lean.Eval +// Module: Lean.Meta.Basic +// Imports: Init.Control.Reader Lean.Data.LOption Lean.Environment Lean.Class Lean.ReducibilityAttrs Lean.Util.Trace Lean.Util.RecDepth Lean.Util.Closure Lean.Meta.Exception Lean.Meta.DiscrTreeTypes Lean.Eval #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,17 +18,19 @@ lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_isClassExpe lean_object* l_Lean_Meta_MetaM_inhabited(lean_object*, lean_object*); size_t l_Lean_Meta_InfoCacheKey_Hashable(lean_object*); lean_object* l_Lean_Meta_getLCtx___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_MetaExtState_inhabited___closed__4; +lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses(lean_object*); lean_object* l_Lean_Meta_withLocalDecl(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_isClassExpensive___main___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* l_Lean_Meta_mkFreshLevelMVar(lean_object*); lean_object* l_Lean_Meta_mkFreshId___boxed(lean_object*); lean_object* l_Lean_Meta_setEnv___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2(lean_object*); lean_object* l_Lean_Meta_withLetDecl(lean_object*); lean_object* l_Lean_Meta_MetaExtState_inhabited___closed__2; size_t l_Lean_Meta_TransparencyMode_hash(uint8_t); +lean_object* l___private_Lean_Meta_Basic_2__getTraceState___boxed(lean_object*); lean_object* l_Lean_Meta_mkSynthPendingRef___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_MetaExtState_inhabited___closed__1; lean_object* l_Lean_MetavarContext_findLevelDepth_x3f(lean_object*, lean_object*); @@ -49,35 +51,26 @@ lean_object* l_Lean_Meta_getEnv(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescope___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isReadOnlyExprMVar___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_addLevelMVarDecl(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); extern lean_object* l_EIO_Monad___closed__1; lean_object* l_Lean_Meta_savingCache(lean_object*); lean_object* l_Lean_Meta_addContext___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__1; lean_object* l_Lean_Meta_mkFreshExprMVarAt___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForall(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux(lean_object*); lean_object* l_Lean_Meta_withLocalContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_mk_let_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallMetaTelescope___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_maxRecDepthErrorMessage; -lean_object* l___private_Init_Lean_Meta_Basic_2__getTraceState___boxed(lean_object*); lean_object* l_Lean_Meta_resettingSynthInstanceCache___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_liftStateMCtx(lean_object*); lean_object* lean_metavar_ctx_get_expr_assignment(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2(lean_object*); lean_object* l_Lean_mkMVar(lean_object*); lean_object* l_Lean_Meta_isClassQuick___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_metavar_ctx_is_delayed_assigned(lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqAux(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescopeReducing___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_lambdaTelescope(lean_object*); lean_object* l_Lean_Meta_elimMVarDeps(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); @@ -97,7 +90,6 @@ lean_object* l_Lean_Meta_withLetDecl___rarg(lean_object*, lean_object*, lean_obj lean_object* l_Lean_Meta_instantiateLevelMVars(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_IO_runMeta___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallBoundedTelescope(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Meta_getEnv___boxed(lean_object*); @@ -107,25 +99,23 @@ lean_object* l_Lean_Meta_MetaExtState_inhabited___lambda__1___boxed(lean_object* lean_object* l_Lean_Meta_instantiateLevelMVars___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_isClassExpensive___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); lean_object* l_Lean_Meta_MetaExtState_inhabited___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_fullApproxDefEq___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallBoundedTelescope___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getConst(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_renameMVar(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_Inhabited___closed__1; lean_object* l_Lean_Meta_throwBug___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescope___spec__3___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkInferTypeRef___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_IO_runMeta___spec__5___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2(lean_object*); lean_object* l_Lean_Meta_isReadOnlyLevelMVar___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_9__withNewFVar___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isReducible(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkAuxDefinitionFor(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_InfoCacheKey_Hashable___boxed(lean_object*); lean_object* l_Lean_Meta_getConstNoEx(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withMVarContext(lean_object*); @@ -133,33 +123,36 @@ lean_object* l_Lean_Meta_MetaM_inhabited___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescope___spec__4(lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Meta_getParamNames___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_isClassExpensive___main___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDeclD(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallBoundedTelescope___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getConst___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkAuxDefinition(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withTransparency___rarg(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_forM___at_IO_runMeta___spec__3___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_3__liftMkBindingM(lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing(lean_object*); lean_object* l_Lean_Meta_MetaM_inhabited___rarg(lean_object*); lean_object* l_Lean_Meta_TransparencyMode_Hashable___closed__1; -lean_object* l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getEnv___rarg(lean_object*); lean_object* l_Lean_MetavarContext_hasAssignableMVar___main(lean_object*, lean_object*); lean_object* l_Lean_Meta_getConfig___boxed(lean_object*, lean_object*); uint8_t lean_metavar_ctx_is_expr_assigned(lean_object*, lean_object*); extern lean_object* l_Lean_LocalContext_Inhabited___closed__2; +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_shouldReduceAll(lean_object*, lean_object*); lean_object* l_Lean_Meta_isClass(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstance___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_run___rarg___closed__5; +lean_object* l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAuxDefinition(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_throwEx___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_dbgTrace___rarg___closed__1; lean_object* l_Lean_Meta_mkMetaExtension(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Meta_InfoCacheKey_Inhabited___closed__1; lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallBoundedTelescope___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -167,18 +160,20 @@ lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTeles lean_object* lean_expr_instantiate_rev_range(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_Option_hash___at_Lean_Meta_InfoCacheKey_Hashable___spec__1(lean_object*); lean_object* l_Lean_Meta_mkSynthPendingRef(lean_object*); lean_object* l_Lean_Meta_TransparencyMode_lt___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_withIncRecDepth___rarg___closed__1; lean_object* l_Lean_Meta_mkWHNFRef___lambda__1___closed__1; +lean_object* l___private_Lean_Meta_Basic_1__whenDebugging(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withMVarContext___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_9__withNewFVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescope___spec__2(lean_object*); lean_object* l_Lean_Meta_mkWHNFRef___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__4; +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_2__getTraceState(lean_object*); uint8_t l_Lean_Meta_InfoCacheKey_HasBeq(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_instantiateLevelMVars___main(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkWHNFRef___lambda__1___closed__2; @@ -187,13 +182,15 @@ lean_object* l_Lean_Meta_withMCtx___rarg(lean_object*, lean_object*, lean_object lean_object* l_Lean_Meta_isClassQuickConst___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getConstNoEx___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewMCtxDepth___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_headBeta(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkMetaExtension___closed__2; +lean_object* l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkMetaExtension___closed__1; lean_object* l_Lean_Meta_getOptions___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkInferTypeRef___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkInferTypeRef___lambda__1___closed__1; +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_TransparencyMode_Hashable; lean_object* l_Lean_Meta_renameMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_dbgTrace___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -204,12 +201,11 @@ lean_object* l_Lean_Meta_withLocalContext___rarg___boxed(lean_object*, lean_obje lean_object* l_Lean_Meta_mkSynthPendingRef___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallUsedOnly(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_2__getTraceState___rarg(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescopeReducing___spec__4(lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_elimMVarDeps(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Meta_ParamInfo_inhabited___closed__1; +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshLevelMVarId(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_renameMVar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprMVarAssigned___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescope___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -231,6 +227,7 @@ lean_object* l_ReaderT_pure___at_Lean_Meta_MetaExtState_inhabited___spec__1(lean lean_object* l_Lean_Meta_InfoCacheKey_HasBeq___boxed(lean_object*, lean_object*); extern lean_object* l_IO_println___rarg___closed__1; lean_object* l_Lean_Meta_setMVarKind(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentArray_empty___closed__3; uint8_t l_Array_isEqvAux___main___at_Lean_Meta_withLocalContext___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_lambdaMetaTelescope(lean_object*, lean_object*, lean_object*, lean_object*); @@ -240,21 +237,21 @@ lean_object* l_Lean_MetavarContext_assignExpr(lean_object*, lean_object*, lean_o lean_object* l_Lean_Meta_TransparencyMode_HasBeq___closed__1; lean_object* l_Lean_Meta_withNewLocalInstances(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Options_empty; extern lean_object* l_IO_Error_Inhabited___closed__1; lean_object* l_Lean_Meta_approxDefEq___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withAtLeastTransparency___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_MetaExtState_inhabited___lambda__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescopeReducing___spec__4___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*); uint8_t l_Lean_Meta_TransparencyMode_beq(uint8_t, uint8_t); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1(lean_object*); lean_object* l_Lean_Meta_run___rarg___closed__2; lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_isClassExpensive___main___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignLevelMVar(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentHashMap_empty___rarg___closed__2; lean_object* l_Lean_Meta_getLocalInstances(lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescopeReducing___spec__4___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -269,10 +266,10 @@ lean_object* l_Lean_Meta_getParamNames___lambda__1___boxed(lean_object*, lean_ob uint8_t l_Lean_Expr_isForall(lean_object*); uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main(lean_object*); lean_object* l_Lean_Meta_forallMetaTelescopeReducing___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescopeReducing___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux(lean_object*); lean_object* l_Lean_Meta_run___rarg___closed__4; uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); lean_object* l_Lean_Meta_liftStateMCtx___rarg(lean_object*, lean_object*, lean_object*); @@ -280,17 +277,21 @@ size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_Meta_mkMetaExtension___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescopeReducing___spec__4___rarg___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_type(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_isClassExpensive___main___spec__5(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLevelMVar(lean_object*); lean_object* l_Lean_Meta_withIncRecDepth___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarDecl___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1(lean_object*); +lean_object* l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main(lean_object*); lean_object* l_Lean_Meta_getMCtx___boxed(lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1(lean_object*); lean_object* l_Lean_Meta_isClassQuick(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_run(lean_object*); lean_object* l_IO_runMeta(lean_object*); +lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__3; lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallBoundedTelescope___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_Meta_forallMetaTelescopeReducing(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDelayedAssigned___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_approxDefEq(lean_object*); @@ -300,7 +301,6 @@ lean_object* l_Lean_Meta_mkFreshExprMVarAt(lean_object*, lean_object*, lean_obje lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Meta_mkIsExprDefEqAuxRef___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescope___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withIncRecDepth(lean_object*); lean_object* l_Lean_Meta_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); @@ -308,10 +308,9 @@ lean_object* l_Lean_Meta_mkIsExprDefEqAuxRef___lambda__1___boxed(lean_object*, l lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescopeReducing___spec__5(lean_object*); lean_object* l_Lean_Meta_withLocalDecl___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_IO_runMeta___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux(lean_object*); +lean_object* l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallBoundedTelescope___spec__4___rarg___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkIsExprDefEqAuxRef___closed__1; -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Message_toString___spec__1(lean_object*); lean_object* l_Lean_Meta_hasAssignableMVar(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_empty___at_Lean_Meta_run___spec__1___closed__1; @@ -324,17 +323,18 @@ lean_object* l_Lean_Meta_getExprMVarAssignment_x3f(lean_object*, lean_object*, l lean_object* l_Lean_Meta_metaExt; lean_object* l_Lean_Meta_getLocalDecl(lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_3__liftMkBindingM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_liftStateMCtx___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_tracer___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux(lean_object*); lean_object* l_Lean_Meta_resettingSynthInstanceCache(lean_object*); lean_object* l_Lean_Meta_mkFreshExprMVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); lean_object* l_Lean_Meta_tracer___closed__2; +lean_object* l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withAtLeastTransparency___rarg(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_forMAux___main___at_IO_runMeta___spec__4___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_mk_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_synthPendingRef; lean_object* l_Lean_Meta_getConstAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_metavar_ctx_assign_level(lean_object*, lean_object*, lean_object*); @@ -342,21 +342,21 @@ lean_object* l_Lean_Meta_throwEx___rarg___boxed(lean_object*, lean_object*, lean lean_object* l_Lean_Meta_elimMVarDeps___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withMVarContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_incDepth(lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_IO_runMeta___spec__6___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnfRef; lean_object* l_Lean_Meta_synthPending(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_MetaExtState_inhabited___closed__3; lean_object* l_Array_isEqvAux___main___at_Lean_Meta_withLocalContext___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqAuxRef; -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_TransparencyMode_HasBeq; +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_throwBug___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_dbgTrace___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_tracer___closed__1; lean_object* l_Lean_Meta_lambdaTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1(lean_object*); lean_object* l_Lean_Meta_getExprMVarAssignment_x3f___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_reset(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDeclD___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignLevelMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -366,25 +366,22 @@ lean_object* l_Lean_Meta_tracer___lambda__1___boxed(lean_object*, lean_object*, lean_object* l_Lean_Meta_mkFreshExprMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setEnv(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isReducible(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Lean_Meta_withNewLocalInstances___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withAtLeastTransparency(lean_object*); lean_object* lean_metavar_ctx_find_decl(lean_object*, lean_object*); lean_object* l_Lean_Meta_dbgTrace(lean_object*); lean_object* l_Lean_Meta_mkFreshId(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescope___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_TransparencyMode_beq___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_metaExt___elambda__1(lean_object*); lean_object* l_Lean_Meta_getTransparency___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_TraceState_Inhabited___closed__1; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVars___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_empty___at_Lean_Meta_run___spec__1; +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallBoundedTelescope___spec__4(lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Meta_mkMetaExtension___spec__1(lean_object*, lean_object*); uint8_t l_Lean_Meta_TransparencyMode_lt(uint8_t, uint8_t); @@ -392,25 +389,27 @@ lean_object* l_PersistentArray_forMAux___main___at_IO_runMeta___spec__4(lean_obj lean_object* l_Lean_Meta_assignExprMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkInferTypeRef(lean_object*); lean_object* l_Lean_Meta_isDelayedAssigned(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getConstInfo(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses(lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_mkBinding(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); lean_object* l_Lean_Meta_getTransparency(lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_9__withNewFVar(lean_object*); +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1(lean_object*); lean_object* l_Lean_Meta_Exception_toStr(lean_object*); size_t lean_usize_mix_hash(size_t, size_t); +lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__1; lean_object* l_ReaderT_pure___at_Lean_Meta_MetaExtState_inhabited___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_io_initializing(lean_object*); lean_object* l_Lean_Meta_getOptions(lean_object*, lean_object*); lean_object* l_Lean_Meta_forallMetaTelescope(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_isClassQuickConst(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_getStateUnsafe___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_MetaExtState_inhabited; lean_object* l_Lean_Meta_withConfig(lean_object*); +lean_object* l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewMCtxDepth(lean_object*); lean_object* l_Lean_Meta_shouldReduceReducibleOnly(lean_object*, lean_object*); lean_object* l_Lean_Meta_getMCtx___rarg(lean_object*); @@ -420,63 +419,64 @@ lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkWHNFRef___closed__1; lean_object* l_Lean_Meta_mkFreshLevelMVar___rarg(lean_object*); extern lean_object* l_Lean_MetavarContext_Inhabited___closed__1; -lean_object* l___private_Init_Lean_Meta_Basic_3__liftMkBindingM(lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescope___spec__3(lean_object*); lean_object* l_Lean_Meta_mkMetaExtension___closed__3; lean_object* l_Lean_Meta_isClassQuick___main___closed__1; lean_object* l_Lean_Meta_run___rarg___closed__1; uint8_t l_Lean_LocalInstance_beq(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Meta_mkMetaExtension___spec__1___closed__2; +lean_object* l___private_Lean_Meta_Basic_9__withNewFVar___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; lean_object* l_Lean_Meta_TransparencyMode_hash___boxed(lean_object*); lean_object* l_Lean_Meta_isReadOnlyOrSyntheticOpaqueExprMVar(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main(lean_object*); +lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallBoundedTelescope___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_IO_runMeta___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMCtx(lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_2__getTraceState(lean_object*); lean_object* l_Lean_Meta_MetaExtState_inhabited___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__4; +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getParamNames(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshLevelMVarId___boxed(lean_object*); extern lean_object* l_HashMap_Inhabited___closed__1; +lean_object* l___private_Lean_Meta_Basic_6__lambdaTelescopeAux(lean_object*); +lean_object* l___private_Lean_Meta_Basic_2__getTraceState___rarg(lean_object*); +lean_object* l___private_Lean_Meta_Basic_3__liftMkBindingM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkInferTypeRef___closed__1; lean_object* l_IO_runMeta___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Meta_isReadOnlyLevelMVar(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkWHNFRef___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstance(lean_object*); lean_object* l_Lean_Meta_mkWHNFRef(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_1__whenDebugging(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withReducible(lean_object*); extern lean_object* l_Lean_defaultMaxRecDepth; lean_object* l_Lean_Meta_getConfig(lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_forallTelescopeReducing___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLCtx(lean_object*, lean_object*); lean_object* l_Lean_Meta_withMCtx(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isReadOnlyOrSyntheticOpaqueExprMVar___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isClassExpensive(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getConstInfo___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2(lean_object*); lean_object* l_Lean_Meta_shouldReduceAll___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkIsExprDefEqAuxRef___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4(lean_object*, lean_object*); uint8_t lean_is_class(lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshLevelMVar___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__3; lean_object* l_Lean_Meta_forallBoundedTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_NameGenerator_Inhabited___closed__3; -lean_object* l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Meta_mkMetaExtension___spec__1___closed__1; lean_object* l_PersistentArray_forM___at_IO_runMeta___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalContext(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_IO_println___at_IO_runMeta___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_getConstAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_isClassExpensive___main___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1575,7 +1575,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -2942,7 +2942,7 @@ lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Meta_Basic_1__whenDebugging(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Basic_1__whenDebugging(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4321,7 +4321,7 @@ lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_Basic_2__getTraceState___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_2__getTraceState___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -4333,19 +4333,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Basic_2__getTraceState(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_2__getTraceState(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_2__getTraceState___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_2__getTraceState___rarg), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_2__getTraceState___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_2__getTraceState___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_Basic_2__getTraceState(x_1); +x_2 = l___private_Lean_Meta_Basic_2__getTraceState(x_1); lean_dec(x_1); return x_2; } @@ -4455,7 +4455,7 @@ lean_object* _init_l_Lean_Meta_tracer___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_2__getTraceState___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_2__getTraceState___boxed), 1, 0); return x_1; } } @@ -4891,7 +4891,7 @@ lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Meta_Basic_3__liftMkBindingM___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Basic_3__liftMkBindingM___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5165,11 +5165,11 @@ return x_77; } } } -lean_object* l___private_Init_Lean_Meta_Basic_3__liftMkBindingM(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_3__liftMkBindingM(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_3__liftMkBindingM___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_3__liftMkBindingM___rarg), 3, 0); return x_2; } } @@ -10982,7 +10982,7 @@ lean_dec(x_2); return x_7; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; @@ -11002,12 +11002,12 @@ else { lean_object* x_14; lean_dec(x_3); -x_14 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(x_4, x_5, x_6, x_1, x_7, x_2, x_8, x_9, x_10, x_11); +x_14 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(x_4, x_5, x_6, x_1, x_7, x_2, x_8, x_9, x_10, x_11); return x_14; } } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -11175,7 +11175,7 @@ lean_closure_set(x_18, 0, x_13); x_19 = lean_box(x_2); lean_inc(x_1); lean_inc(x_6); -x_20 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1___boxed), 11, 8); +x_20 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1___boxed), 11, 8); lean_closure_set(x_20, 0, x_4); lean_closure_set(x_20, 1, x_6); lean_closure_set(x_20, 2, x_13); @@ -11236,7 +11236,7 @@ lean_closure_set(x_31, 0, x_13); x_32 = lean_box(x_2); lean_inc(x_1); lean_inc(x_6); -x_33 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1___boxed), 11, 8); +x_33 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1___boxed), 11, 8); lean_closure_set(x_33, 0, x_4); lean_closure_set(x_33, 1, x_6); lean_closure_set(x_33, 2, x_13); @@ -11260,61 +11260,61 @@ return x_36; } } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___boxed), 10, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___boxed), 10, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_5); lean_dec(x_5); -x_13 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1(x_1, x_2, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___lambda__1(x_1, x_2, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_2); lean_dec(x_2); -x_12 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_11; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg___boxed), 10, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg___boxed), 10, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_2); lean_dec(x_2); -x_12 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___rarg(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___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; @@ -11349,7 +11349,7 @@ lean_inc(x_13); x_14 = 1; x_15 = l_Array_empty___closed__1; x_16 = lean_unsigned_to_nat(0u); -x_17 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(x_1, x_14, x_3, x_4, x_13, x_15, x_16, x_8, x_5, x_9); +x_17 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___rarg(x_1, x_14, x_3, x_4, x_13, x_15, x_16, x_8, x_5, x_9); return x_17; } } @@ -11382,11 +11382,11 @@ return x_21; } } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___rarg), 6, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___rarg), 6, 0); return x_2; } } @@ -13802,7 +13802,7 @@ return x_20; else { lean_object* x_21; -x_21 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_21 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_21; } } @@ -18406,7 +18406,7 @@ return x_525; } } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; @@ -18622,7 +18622,7 @@ return x_22; } } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -18693,7 +18693,7 @@ lean_inc(x_17); x_18 = 1; x_19 = l_Array_empty___closed__1; x_20 = lean_unsigned_to_nat(0u); -x_21 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(x_18, x_2, x_17, x_19, x_20, x_7, x_3, x_8); +x_21 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(x_18, x_2, x_17, x_19, x_20, x_7, x_3, x_8); return x_21; } } @@ -18765,7 +18765,7 @@ lean_inc(x_35); x_36 = 1; x_37 = l_Array_empty___closed__1; x_38 = lean_unsigned_to_nat(0u); -x_39 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(x_36, x_2, x_35, x_37, x_38, x_22, x_3, x_23); +x_39 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(x_36, x_2, x_35, x_37, x_38, x_22, x_3, x_23); return x_39; } } @@ -18813,7 +18813,7 @@ if (x_7 == 0) uint8_t x_8; lean_object* x_9; x_8 = 2; lean_ctor_set_uint8(x_6, sizeof(void*)*1 + 6, x_8); -x_9 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(x_1, x_4, x_2, x_3); +x_9 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(x_1, x_4, x_2, x_3); return x_9; } else @@ -18839,7 +18839,7 @@ lean_ctor_set_uint8(x_18, sizeof(void*)*1 + 4, x_15); lean_ctor_set_uint8(x_18, sizeof(void*)*1 + 5, x_16); lean_ctor_set_uint8(x_18, sizeof(void*)*1 + 6, x_17); lean_ctor_set(x_2, 0, x_18); -x_19 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(x_1, x_4, x_2, x_3); +x_19 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(x_1, x_4, x_2, x_3); return x_19; } } @@ -18892,7 +18892,7 @@ lean_ctor_set(x_35, 1, x_21); lean_ctor_set(x_35, 2, x_22); lean_ctor_set(x_35, 3, x_23); lean_ctor_set(x_35, 4, x_24); -x_36 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(x_1, x_4, x_35, x_3); +x_36 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_isClassExpensive___main___spec__1(x_1, x_4, x_35, x_3); return x_36; } } @@ -18941,13 +18941,13 @@ lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___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* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; lean_object* x_10; x_9 = lean_unbox(x_1); lean_dec(x_1); -x_10 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_isClassExpensive___main___spec__2(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } @@ -21256,7 +21256,7 @@ else { lean_object* x_13; lean_dec(x_3); -x_13 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(x_1, x_4, x_5, x_6, x_2, x_7, x_8, x_9, x_10); +x_13 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(x_1, x_4, x_5, x_6, x_2, x_7, x_8, x_9, x_10); return x_13; } } @@ -25851,7 +25851,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at_L return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; @@ -26077,11 +26077,11 @@ return x_23; } } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg___boxed), 9, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg___boxed), 9, 0); return x_2; } } @@ -26095,7 +26095,7 @@ x_6 = lean_box(0); x_7 = 0; x_8 = l_Array_empty___closed__1; x_9 = lean_unsigned_to_nat(0u); -x_10 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(x_2, x_7, x_6, x_5, x_8, x_9, x_1, x_3, x_4); +x_10 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(x_2, x_7, x_6, x_5, x_8, x_9, x_1, x_3, x_4); return x_10; } } @@ -26152,13 +26152,13 @@ lean_dec(x_3); return x_9; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_2); lean_dec(x_2); -x_11 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescope___spec__1___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } @@ -28459,7 +28459,7 @@ else { lean_object* x_13; lean_dec(x_3); -x_13 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(x_1, x_4, x_5, x_6, x_2, x_7, x_8, x_9, x_10); +x_13 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(x_1, x_4, x_5, x_6, x_2, x_7, x_8, x_9, x_10); return x_13; } } @@ -33054,7 +33054,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at_L return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; @@ -33280,15 +33280,15 @@ return x_23; } } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg___boxed), 9, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg___boxed), 9, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1___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; @@ -33322,7 +33322,7 @@ lean_inc(x_12); x_13 = 1; x_14 = l_Array_empty___closed__1; x_15 = lean_unsigned_to_nat(0u); -x_16 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(x_1, x_13, x_3, x_12, x_14, x_15, x_7, x_4, x_8); +x_16 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(x_1, x_13, x_3, x_12, x_14, x_15, x_7, x_4, x_8); return x_16; } } @@ -33354,11 +33354,11 @@ return x_20; } } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1___rarg), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1___rarg), 5, 0); return x_2; } } @@ -33367,7 +33367,7 @@ _start: { lean_object* x_5; lean_object* x_6; x_5 = lean_box(0); -x_6 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1___rarg(x_2, x_1, x_5, x_3, x_4); +x_6 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallTelescopeReducing___spec__1___rarg(x_2, x_1, x_5, x_3, x_4); return x_6; } } @@ -33424,13 +33424,13 @@ lean_dec(x_3); return x_9; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_2); lean_dec(x_2); -x_11 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallTelescopeReducing___spec__2___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } @@ -35731,7 +35731,7 @@ else { lean_object* x_13; lean_dec(x_3); -x_13 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(x_1, x_4, x_5, x_6, x_2, x_7, x_8, x_9, x_10); +x_13 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(x_1, x_4, x_5, x_6, x_2, x_7, x_8, x_9, x_10); return x_13; } } @@ -40326,7 +40326,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at_L return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; @@ -40552,15 +40552,15 @@ return x_23; } } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg___boxed), 9, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg___boxed), 9, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1___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; @@ -40594,7 +40594,7 @@ lean_inc(x_12); x_13 = 1; x_14 = l_Array_empty___closed__1; x_15 = lean_unsigned_to_nat(0u); -x_16 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(x_1, x_13, x_3, x_12, x_14, x_15, x_7, x_4, x_8); +x_16 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(x_1, x_13, x_3, x_12, x_14, x_15, x_7, x_4, x_8); return x_16; } } @@ -40626,11 +40626,11 @@ return x_20; } } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1___rarg), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1___rarg), 5, 0); return x_2; } } @@ -40638,7 +40638,7 @@ lean_object* l_Lean_Meta_forallBoundedTelescope___rarg(lean_object* x_1, lean_ob _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1___rarg(x_3, x_1, x_2, x_4, x_5); +x_6 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_forallBoundedTelescope___spec__1___rarg(x_3, x_1, x_2, x_4, x_5); return x_6; } } @@ -40695,13 +40695,13 @@ lean_dec(x_3); return x_9; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_2); lean_dec(x_2); -x_11 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_forallBoundedTelescope___spec__2___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } @@ -40971,7 +40971,7 @@ return x_25; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; @@ -41064,7 +41064,7 @@ lean_ctor_set(x_36, 0, x_26); lean_ctor_set(x_36, 1, x_14); x_37 = lean_array_push(x_35, x_36); lean_ctor_set(x_7, 2, x_37); -x_38 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_28, x_7, x_25); +x_38 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_28, x_7, x_25); if (lean_obj_tag(x_38) == 0) { lean_object* x_39; lean_object* x_40; uint8_t x_41; @@ -41424,7 +41424,7 @@ lean_ctor_set(x_120, 1, x_114); lean_ctor_set(x_120, 2, x_119); lean_ctor_set(x_120, 3, x_116); lean_ctor_set(x_120, 4, x_117); -x_121 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_28, x_120, x_25); +x_121 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_28, x_120, x_25); if (lean_obj_tag(x_121) == 0) { 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; @@ -41649,7 +41649,7 @@ lean_ctor_set(x_170, 1, x_163); lean_ctor_set(x_170, 2, x_169); lean_ctor_set(x_170, 3, x_165); lean_ctor_set(x_170, 4, x_166); -x_171 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_28, x_170, x_25); +x_171 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_28, x_170, x_25); if (lean_obj_tag(x_171) == 0) { lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; 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; @@ -41906,7 +41906,7 @@ lean_ctor_set(x_228, 1, x_221); lean_ctor_set(x_228, 2, x_227); lean_ctor_set(x_228, 3, x_223); lean_ctor_set(x_228, 4, x_224); -x_229 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_28, x_228, x_219); +x_229 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_28, x_228, x_219); if (lean_obj_tag(x_229) == 0) { lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; 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; @@ -42138,7 +42138,7 @@ lean_ctor_set(x_282, 0, x_272); lean_ctor_set(x_282, 1, x_14); x_283 = lean_array_push(x_281, x_282); lean_ctor_set(x_7, 2, x_283); -x_284 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_274, x_7, x_271); +x_284 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_274, x_7, x_271); if (lean_obj_tag(x_284) == 0) { lean_object* x_285; lean_object* x_286; uint8_t x_287; @@ -42498,7 +42498,7 @@ lean_ctor_set(x_366, 1, x_360); lean_ctor_set(x_366, 2, x_365); lean_ctor_set(x_366, 3, x_362); lean_ctor_set(x_366, 4, x_363); -x_367 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_274, x_366, x_271); +x_367 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_274, x_366, x_271); if (lean_obj_tag(x_367) == 0) { 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; @@ -42723,7 +42723,7 @@ lean_ctor_set(x_416, 1, x_409); lean_ctor_set(x_416, 2, x_415); lean_ctor_set(x_416, 3, x_411); lean_ctor_set(x_416, 4, x_412); -x_417 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_274, x_416, x_271); +x_417 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_274, x_416, x_271); if (lean_obj_tag(x_417) == 0) { lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; @@ -42980,7 +42980,7 @@ lean_ctor_set(x_474, 1, x_467); lean_ctor_set(x_474, 2, x_473); lean_ctor_set(x_474, 3, x_469); lean_ctor_set(x_474, 4, x_470); -x_475 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_274, x_474, x_465); +x_475 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_274, x_474, x_465); if (lean_obj_tag(x_475) == 0) { lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; @@ -43241,15 +43241,15 @@ return x_521; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1(lean_object* x_1) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg___boxed), 8, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg___boxed), 8, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___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* l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___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; @@ -43341,7 +43341,7 @@ lean_dec(x_10); lean_ctor_set(x_6, 1, x_2); lean_inc(x_4); lean_inc(x_3); -x_11 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_3, x_4, x_5, x_3, x_4, x_6, x_7); +x_11 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_3, x_4, x_5, x_3, x_4, x_6, x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -43367,7 +43367,7 @@ lean_ctor_set(x_16, 3, x_14); lean_ctor_set(x_16, 4, x_15); lean_inc(x_4); lean_inc(x_3); -x_17 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_3, x_4, x_5, x_3, x_4, x_16, x_7); +x_17 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_3, x_4, x_5, x_3, x_4, x_16, x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -43376,38 +43376,38 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___rarg), 7, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___rarg), 7, 0); return x_2; } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); return x_9; } } -lean_object* l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___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* l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___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; -x_8 = l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_6__lambdaTelescopeAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___rarg), 7, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___rarg), 7, 0); return x_2; } } @@ -43419,7 +43419,7 @@ x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); x_6 = l_Array_empty___closed__1; x_7 = lean_unsigned_to_nat(0u); -x_8 = l___private_Init_Lean_Meta_Basic_6__lambdaTelescopeAux___main___rarg(x_2, x_5, x_6, x_7, x_1, x_3, x_4); +x_8 = l___private_Lean_Meta_Basic_6__lambdaTelescopeAux___main___rarg(x_2, x_5, x_6, x_7, x_1, x_3, x_4); return x_8; } } @@ -43431,7 +43431,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_lambdaTelescope___rarg), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; @@ -43719,7 +43719,7 @@ return x_34; } } } -lean_object* l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -43727,20 +43727,20 @@ x_10 = lean_unbox(x_1); lean_dec(x_1); x_11 = lean_unbox(x_3); lean_dec(x_3); -x_12 = l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(x_10, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(x_10, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_2); return x_12; } } -lean_object* l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -lean_object* l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -43748,7 +43748,7 @@ x_10 = lean_unbox(x_1); lean_dec(x_1); x_11 = lean_unbox(x_3); lean_dec(x_3); -x_12 = l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux(x_10, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux(x_10, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_2); return x_12; } @@ -43761,7 +43761,7 @@ x_5 = lean_box(0); x_6 = 0; x_7 = l_Array_empty___closed__1; x_8 = lean_unsigned_to_nat(0u); -x_9 = l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(x_6, x_5, x_2, x_7, x_7, x_8, x_1, x_3, x_4); +x_9 = l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(x_6, x_5, x_2, x_7, x_7, x_8, x_1, x_3, x_4); return x_9; } } @@ -43782,7 +43782,7 @@ uint8_t x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_6 = 1; x_7 = l_Array_empty___closed__1; x_8 = lean_unsigned_to_nat(0u); -x_9 = l___private_Init_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(x_6, x_2, x_3, x_7, x_7, x_8, x_1, x_4, x_5); +x_9 = l___private_Lean_Meta_Basic_7__forallMetaTelescopeReducingAux___main(x_6, x_2, x_3, x_7, x_7, x_8, x_1, x_4, x_5); return x_9; } } @@ -43797,7 +43797,7 @@ lean_dec(x_2); return x_7; } } -lean_object* l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { if (lean_obj_tag(x_1) == 0) @@ -43922,30 +43922,30 @@ return x_52; } } } -lean_object* l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); @@ -43958,7 +43958,7 @@ _start: lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = l_Array_empty___closed__1; x_6 = lean_unsigned_to_nat(0u); -x_7 = l___private_Init_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(x_2, x_5, x_5, x_6, x_1, x_3, x_4); +x_7 = l___private_Lean_Meta_Basic_8__lambdaMetaTelescopeAux___main(x_2, x_5, x_5, x_6, x_1, x_3, x_4); return x_7; } } @@ -44598,7 +44598,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_fullApproxDefEq___rarg), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_9__withNewFVar___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Basic_9__withNewFVar___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; @@ -45695,11 +45695,11 @@ return x_250; } } } -lean_object* l___private_Init_Lean_Meta_Basic_9__withNewFVar(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_9__withNewFVar(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Basic_9__withNewFVar___rarg), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Basic_9__withNewFVar___rarg), 5, 0); return x_2; } } @@ -49984,7 +49984,7 @@ return x_13; } } } -lean_object* _init_l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__1() { +lean_object* _init_l___private_Lean_Meta_Basic_10__regTraceClasses___closed__1() { _start: { lean_object* x_1; @@ -49992,17 +49992,17 @@ x_1 = lean_mk_string("Meta"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2() { +lean_object* _init_l___private_Lean_Meta_Basic_10__regTraceClasses___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_Lean_Meta_Basic_10__regTraceClasses___closed__1; +x_2 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__3() { +lean_object* _init_l___private_Lean_Meta_Basic_10__regTraceClasses___closed__3() { _start: { lean_object* x_1; @@ -50010,21 +50010,21 @@ x_1 = lean_mk_string("debug"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__4() { +lean_object* _init_l___private_Lean_Meta_Basic_10__regTraceClasses___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; -x_2 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__3; +x_1 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_2 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_2 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; x_3 = l_Lean_registerTraceClass(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -50032,7 +50032,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); lean_dec(x_3); -x_5 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__4; +x_5 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__4; x_6 = l_Lean_registerTraceClass(x_5, x_4); return x_6; } @@ -50847,52 +50847,52 @@ return x_7; } } lean_object* initialize_Init_Control_Reader(lean_object*); -lean_object* initialize_Init_Lean_Data_LOption(lean_object*); -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Class(lean_object*); -lean_object* initialize_Init_Lean_ReducibilityAttrs(lean_object*); -lean_object* initialize_Init_Lean_Util_Trace(lean_object*); -lean_object* initialize_Init_Lean_Util_RecDepth(lean_object*); -lean_object* initialize_Init_Lean_Util_Closure(lean_object*); -lean_object* initialize_Init_Lean_Meta_Exception(lean_object*); -lean_object* initialize_Init_Lean_Meta_DiscrTreeTypes(lean_object*); -lean_object* initialize_Init_Lean_Eval(lean_object*); +lean_object* initialize_Lean_Data_LOption(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Class(lean_object*); +lean_object* initialize_Lean_ReducibilityAttrs(lean_object*); +lean_object* initialize_Lean_Util_Trace(lean_object*); +lean_object* initialize_Lean_Util_RecDepth(lean_object*); +lean_object* initialize_Lean_Util_Closure(lean_object*); +lean_object* initialize_Lean_Meta_Exception(lean_object*); +lean_object* initialize_Lean_Meta_DiscrTreeTypes(lean_object*); +lean_object* initialize_Lean_Eval(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Basic(lean_object* w) { +lean_object* initialize_Lean_Meta_Basic(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Control_Reader(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_LOption(lean_io_mk_world()); +res = initialize_Lean_Data_LOption(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Class(lean_io_mk_world()); +res = initialize_Lean_Class(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_ReducibilityAttrs(lean_io_mk_world()); +res = initialize_Lean_ReducibilityAttrs(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_Trace(lean_io_mk_world()); +res = initialize_Lean_Util_Trace(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_RecDepth(lean_io_mk_world()); +res = initialize_Lean_Util_RecDepth(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_Closure(lean_io_mk_world()); +res = initialize_Lean_Util_Closure(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Exception(lean_io_mk_world()); +res = initialize_Lean_Meta_Exception(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_DiscrTreeTypes(lean_io_mk_world()); +res = initialize_Lean_Meta_DiscrTreeTypes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Eval(lean_io_mk_world()); +res = initialize_Lean_Eval(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_TransparencyMode_Inhabited = _init_l_Lean_Meta_TransparencyMode_Inhabited(); @@ -51003,15 +51003,15 @@ l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1 = _init_l_Lean_Meta_r lean_mark_persistent(l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1); l_Lean_Meta_getParamNames___closed__1 = _init_l_Lean_Meta_getParamNames___closed__1(); lean_mark_persistent(l_Lean_Meta_getParamNames___closed__1); -l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__1 = _init_l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__1); -l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2 = _init_l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2); -l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__3 = _init_l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__3); -l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__4 = _init_l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__4); -res = l___private_Init_Lean_Meta_Basic_10__regTraceClasses(lean_io_mk_world()); +l___private_Lean_Meta_Basic_10__regTraceClasses___closed__1 = _init_l___private_Lean_Meta_Basic_10__regTraceClasses___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Basic_10__regTraceClasses___closed__1); +l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2 = _init_l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2); +l___private_Lean_Meta_Basic_10__regTraceClasses___closed__3 = _init_l___private_Lean_Meta_Basic_10__regTraceClasses___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Basic_10__regTraceClasses___closed__3); +l___private_Lean_Meta_Basic_10__regTraceClasses___closed__4 = _init_l___private_Lean_Meta_Basic_10__regTraceClasses___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_Basic_10__regTraceClasses___closed__4); +res = l___private_Lean_Meta_Basic_10__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_PersistentHashMap_empty___at_Lean_Meta_run___spec__1___closed__1 = _init_l_PersistentHashMap_empty___at_Lean_Meta_run___spec__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Check.c b/stage0/stdlib/Lean/Meta/Check.c similarity index 86% rename from stage0/stdlib/Init/Lean/Meta/Check.c rename to stage0/stdlib/Lean/Meta/Check.c index 17e254052c..ca0abaf13b 100644 --- a/stage0/stdlib/Init/Lean/Meta/Check.c +++ b/stage0/stdlib/Lean/Meta/Check.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Check -// Imports: Init.Lean.Meta.InferType +// Module: Lean.Meta.Check +// Imports: Lean.Meta.InferType #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,80 +13,80 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_3__checkForall___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_Meta_check___closed__1; -lean_object* l___private_Init_Lean_Meta_Check_4__checkConstant(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_1__ensureType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; -lean_object* l___private_Init_Lean_Meta_Check_6__checkAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_1__ensureType(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqAux(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_7__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forMAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isTypeCorrect___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeCorrect(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_check___closed__2; -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(lean_object*); lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_6__checkAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_4__checkConstant___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1; +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isTypeCorrect___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeCorrect___closed__1; lean_object* l_Lean_Meta_isTypeCorrect___closed__2; -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_6__checkAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_3__checkForall___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1(lean_object*); +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___boxed(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_3__checkForall(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentArray_empty___closed__3; -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1; lean_object* l_Lean_Meta_addContext(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_5__checkApp___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1(lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(lean_object*); lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_lparams(lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_3__checkForall___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_5__checkApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_5__checkApp___at___private_Lean_Meta_Check_6__checkAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_lambdaTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1; +lean_object* l___private_Lean_Meta_Check_4__checkConstant(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_4__checkConstant___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_7__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toTraceMessageData(lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_5__checkApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; +lean_object* l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Check_3__checkForall___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_check(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_toArray___rarg(lean_object*); +lean_object* l___private_Lean_Meta_Check_6__checkAux(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Check_1__ensureType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Check_1__ensureType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -141,7 +141,7 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -163,7 +163,7 @@ lean_inc(x_8); lean_dec(x_6); lean_inc(x_3); lean_inc(x_8); -x_9 = l___private_Init_Lean_Meta_Check_1__ensureType(x_8, x_3, x_7); +x_9 = l___private_Lean_Meta_Check_1__ensureType(x_8, x_3, x_7); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; @@ -212,7 +212,7 @@ lean_inc(x_18); lean_dec(x_6); lean_inc(x_3); lean_inc(x_17); -x_19 = l___private_Init_Lean_Meta_Check_1__ensureType(x_17, x_3, x_16); +x_19 = l___private_Lean_Meta_Check_1__ensureType(x_17, x_3, x_16); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; @@ -463,12 +463,12 @@ return x_71; } } } -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_inc(x_1); -x_6 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__1___boxed), 4, 1); +x_6 = lean_alloc_closure((void*)(l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__1___boxed), 4, 1); lean_closure_set(x_6, 0, x_1); x_7 = l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; x_8 = lean_unsigned_to_nat(0u); @@ -511,35 +511,35 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet(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 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__2___boxed), 5, 1); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__2___boxed), 5, 1); lean_closure_set(x_5, 0, x_1); x_6 = l_Lean_Meta_lambdaTelescope___rarg(x_2, x_5, x_3, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___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___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___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* l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_Check_2__checkLambdaLet___lambda__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_Check_2__checkLambdaLet___lambda__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_3__checkForall___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -557,7 +557,7 @@ x_8 = l_Lean_LocalDecl_type(x_6); lean_dec(x_6); lean_inc(x_3); lean_inc(x_8); -x_9 = l___private_Init_Lean_Meta_Check_1__ensureType(x_8, x_3, x_7); +x_9 = l___private_Lean_Meta_Check_1__ensureType(x_8, x_3, x_7); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; @@ -619,12 +619,12 @@ return x_19; } } } -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Check_3__checkForall___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_inc(x_1); -x_6 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Check_3__checkForall___lambda__1___boxed), 4, 1); +x_6 = lean_alloc_closure((void*)(l___private_Lean_Meta_Check_3__checkForall___lambda__1___boxed), 4, 1); lean_closure_set(x_6, 0, x_1); x_7 = l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; x_8 = lean_unsigned_to_nat(0u); @@ -639,7 +639,7 @@ lean_inc(x_11); lean_dec(x_10); lean_inc(x_4); lean_inc(x_3); -x_12 = l___private_Init_Lean_Meta_Check_1__ensureType(x_3, x_4, x_11); +x_12 = l___private_Lean_Meta_Check_1__ensureType(x_3, x_4, x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; @@ -702,35 +702,35 @@ return x_22; } } } -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_3__checkForall(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 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Check_3__checkForall___lambda__2___boxed), 5, 1); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Meta_Check_3__checkForall___lambda__2___boxed), 5, 1); lean_closure_set(x_5, 0, x_1); x_6 = l_Lean_Meta_forallTelescope___rarg(x_2, x_5, x_3, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_3__checkForall___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___private_Init_Lean_Meta_Check_3__checkForall___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Check_3__checkForall___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___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* l___private_Lean_Meta_Check_3__checkForall___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_Check_3__checkForall___lambda__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_Check_3__checkForall___lambda__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Meta_Check_4__checkConstant(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_4__checkConstant(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; @@ -816,16 +816,16 @@ return x_27; } } } -lean_object* l___private_Init_Lean_Meta_Check_4__checkConstant___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_4__checkConstant___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___private_Init_Lean_Meta_Check_4__checkConstant(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Check_4__checkConstant(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Check_5__checkApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Check_5__checkApp(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; @@ -1222,13 +1222,13 @@ return x_90; } } } -lean_object* l___private_Init_Lean_Meta_Check_5__checkApp___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_5__checkApp___at___private_Lean_Meta_Check_6__checkAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_inc(x_3); lean_inc(x_1); -x_5 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_3, x_4); +x_5 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_3, x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; @@ -1237,7 +1237,7 @@ lean_inc(x_6); lean_dec(x_5); lean_inc(x_3); lean_inc(x_2); -x_7 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_2, x_3, x_6); +x_7 = l___private_Lean_Meta_Check_6__checkAux___main(x_2, x_3, x_6); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; lean_object* x_9; @@ -1617,7 +1617,7 @@ return x_89; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -1661,7 +1661,7 @@ lean_inc(x_15); lean_dec(x_13); lean_inc(x_3); lean_inc(x_15); -x_16 = l___private_Init_Lean_Meta_Check_1__ensureType(x_15, x_3, x_14); +x_16 = l___private_Lean_Meta_Check_1__ensureType(x_15, x_3, x_14); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; @@ -1669,7 +1669,7 @@ x_17 = lean_ctor_get(x_16, 1); lean_inc(x_17); lean_dec(x_16); lean_inc(x_3); -x_18 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_15, x_3, x_17); +x_18 = l___private_Lean_Meta_Check_6__checkAux___main(x_15, x_3, x_17); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; @@ -1744,7 +1744,7 @@ lean_inc(x_31); lean_dec(x_13); lean_inc(x_3); lean_inc(x_30); -x_32 = l___private_Init_Lean_Meta_Check_1__ensureType(x_30, x_3, x_29); +x_32 = l___private_Lean_Meta_Check_1__ensureType(x_30, x_3, x_29); if (lean_obj_tag(x_32) == 0) { lean_object* x_33; lean_object* x_34; @@ -1753,7 +1753,7 @@ lean_inc(x_33); lean_dec(x_32); lean_inc(x_3); lean_inc(x_30); -x_34 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_30, x_3, x_33); +x_34 = l___private_Lean_Meta_Check_6__checkAux___main(x_30, x_3, x_33); if (lean_obj_tag(x_34) == 0) { lean_object* x_35; lean_object* x_36; @@ -1860,7 +1860,7 @@ x_63 = lean_ctor_get(x_39, 1); lean_inc(x_63); lean_dec(x_39); lean_inc(x_3); -x_64 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_31, x_3, x_63); +x_64 = l___private_Lean_Meta_Check_6__checkAux___main(x_31, x_3, x_63); if (lean_obj_tag(x_64) == 0) { lean_object* x_65; @@ -2037,20 +2037,20 @@ return x_90; } } } -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___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; x_5 = lean_unsigned_to_nat(0u); lean_inc(x_3); -x_6 = l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__3(x_1, x_5, x_3, x_4); +x_6 = l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__3(x_1, x_5, x_3, x_4); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_dec(x_6); -x_8 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_2, x_3, x_7); +x_8 = l___private_Lean_Meta_Check_6__checkAux___main(x_2, x_3, x_7); return x_8; } else @@ -2079,24 +2079,24 @@ return x_12; } } } -lean_object* _init_l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1() { +lean_object* _init_l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1___boxed), 4, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1___boxed), 4, 0); return x_1; } } -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1; +x_4 = l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1; x_5 = l_Lean_Meta_lambdaTelescope___rarg(x_1, x_4, x_2, x_3); return x_5; } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -2136,7 +2136,7 @@ x_15 = l_Lean_LocalDecl_type(x_13); lean_dec(x_13); lean_inc(x_3); lean_inc(x_15); -x_16 = l___private_Init_Lean_Meta_Check_1__ensureType(x_15, x_3, x_14); +x_16 = l___private_Lean_Meta_Check_1__ensureType(x_15, x_3, x_14); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; @@ -2144,7 +2144,7 @@ x_17 = lean_ctor_get(x_16, 1); lean_inc(x_17); lean_dec(x_16); lean_inc(x_3); -x_18 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_15, x_3, x_17); +x_18 = l___private_Lean_Meta_Check_6__checkAux___main(x_15, x_3, x_17); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; @@ -2233,13 +2233,13 @@ return x_32; } } } -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___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; x_5 = lean_unsigned_to_nat(0u); lean_inc(x_3); -x_6 = l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__5(x_1, x_5, x_3, x_4); +x_6 = l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__5(x_1, x_5, x_3, x_4); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; @@ -2248,14 +2248,14 @@ lean_inc(x_7); lean_dec(x_6); lean_inc(x_3); lean_inc(x_2); -x_8 = l___private_Init_Lean_Meta_Check_1__ensureType(x_2, x_3, x_7); +x_8 = l___private_Lean_Meta_Check_1__ensureType(x_2, x_3, x_7); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; x_9 = lean_ctor_get(x_8, 1); lean_inc(x_9); lean_dec(x_8); -x_10 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_2, x_3, x_9); +x_10 = l___private_Lean_Meta_Check_6__checkAux___main(x_2, x_3, x_9); return x_10; } else @@ -2309,24 +2309,24 @@ return x_18; } } } -lean_object* _init_l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1() { +lean_object* _init_l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1___boxed), 4, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1___boxed), 4, 0); return x_1; } } -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1; +x_4 = l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1; x_5 = l_Lean_Meta_forallTelescope___rarg(x_1, x_4, x_2, x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Check_6__checkAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Check_6__checkAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_1)) { @@ -2338,7 +2338,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); lean_dec(x_1); -x_6 = l___private_Init_Lean_Meta_Check_4__checkConstant(x_4, x_5, x_2, x_3); +x_6 = l___private_Lean_Meta_Check_4__checkConstant(x_4, x_5, x_2, x_3); lean_dec(x_2); return x_6; } @@ -2350,27 +2350,27 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_1, 1); lean_inc(x_8); lean_dec(x_1); -x_9 = l___private_Init_Lean_Meta_Check_5__checkApp___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__1(x_7, x_8, x_2, x_3); +x_9 = l___private_Lean_Meta_Check_5__checkApp___at___private_Lean_Meta_Check_6__checkAux___main___spec__1(x_7, x_8, x_2, x_3); return x_9; } case 6: { lean_object* x_10; lean_object* x_11; -x_10 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1___boxed), 4, 0); +x_10 = lean_alloc_closure((void*)(l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1___boxed), 4, 0); x_11 = l_Lean_Meta_lambdaTelescope___rarg(x_1, x_10, x_2, x_3); return x_11; } case 7: { lean_object* x_12; lean_object* x_13; -x_12 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1___boxed), 4, 0); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1___boxed), 4, 0); x_13 = l_Lean_Meta_forallTelescope___rarg(x_1, x_12, x_2, x_3); return x_13; } case 8: { lean_object* x_14; lean_object* x_15; -x_14 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1___boxed), 4, 0); +x_14 = lean_alloc_closure((void*)(l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1___boxed), 4, 0); x_15 = l_Lean_Meta_lambdaTelescope___rarg(x_1, x_14, x_2, x_3); return x_15; } @@ -2406,51 +2406,51 @@ return x_21; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__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_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__3(x_1, x_2, x_3, x_4); +x_5 = l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__3(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___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___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__5___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_forMAux___main___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__5(x_1, x_2, x_3, x_4); +x_5 = l_Array_forMAux___main___at___private_Lean_Meta_Check_6__checkAux___main___spec__5(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___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___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Check_6__checkAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Check_6__checkAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(lean_object* x_1) { _start: { uint8_t x_2; @@ -2537,15 +2537,15 @@ return x_25; } } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -2656,7 +2656,7 @@ return x_40; } } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -2682,7 +2682,7 @@ lean_object* _init_l_Lean_Meta_check___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_1 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; x_2 = l_Lean_Meta_check___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2708,7 +2708,7 @@ else { lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; uint8_t x_336; x_332 = l_Lean_Meta_check___closed__2; -x_333 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_332, x_2, x_3); +x_333 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_332, x_2, x_3); x_334 = lean_ctor_get(x_333, 0); lean_inc(x_334); x_335 = lean_ctor_get(x_333, 1); @@ -2748,7 +2748,7 @@ if (x_13 == 0) uint8_t x_14; lean_object* x_15; x_14 = 0; lean_ctor_set_uint8(x_12, sizeof(void*)*1 + 6, x_14); -x_15 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_5); +x_15 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_5); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; uint8_t x_18; @@ -3053,7 +3053,7 @@ lean_ctor_set_uint8(x_84, sizeof(void*)*1 + 4, x_81); lean_ctor_set_uint8(x_84, sizeof(void*)*1 + 5, x_82); lean_ctor_set_uint8(x_84, sizeof(void*)*1 + 6, x_83); lean_ctor_set(x_2, 0, x_84); -x_85 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_5); +x_85 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_5); if (lean_obj_tag(x_85) == 0) { lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_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; @@ -3255,7 +3255,7 @@ lean_ctor_set(x_131, 1, x_117); lean_ctor_set(x_131, 2, x_118); lean_ctor_set(x_131, 3, x_119); lean_ctor_set(x_131, 4, x_120); -x_132 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_131, x_5); +x_132 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_131, x_5); if (lean_obj_tag(x_132) == 0) { lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; @@ -3480,7 +3480,7 @@ lean_ctor_set(x_183, 1, x_168); lean_ctor_set(x_183, 2, x_169); lean_ctor_set(x_183, 3, x_170); lean_ctor_set(x_183, 4, x_171); -x_184 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_183, x_5); +x_184 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_183, x_5); if (lean_obj_tag(x_184) == 0) { lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; 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; @@ -3734,7 +3734,7 @@ lean_ctor_set(x_243, 1, x_228); lean_ctor_set(x_243, 2, x_229); lean_ctor_set(x_243, 3, x_230); lean_ctor_set(x_243, 4, x_231); -x_244 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_243, x_226); +x_244 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_243, x_226); if (lean_obj_tag(x_244) == 0) { lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; @@ -3890,7 +3890,7 @@ return x_274; else { 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; uint8_t x_283; -x_275 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_5); +x_275 = l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_5); x_276 = lean_ctor_get(x_2, 0); lean_inc(x_276); x_277 = lean_ctor_get(x_275, 0); @@ -3918,7 +3918,7 @@ lean_ctor_set(x_285, 1, x_279); lean_ctor_set(x_285, 2, x_280); lean_ctor_set(x_285, 3, x_281); lean_ctor_set(x_285, 4, x_282); -x_286 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_285, x_278); +x_286 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_285, x_278); if (lean_obj_tag(x_286) == 0) { lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; uint8_t x_291; @@ -3928,7 +3928,7 @@ x_288 = lean_ctor_get(x_286, 1); lean_inc(x_288); lean_dec(x_286); x_289 = l_Lean_Meta_check___closed__2; -x_290 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_277, x_289, x_2, x_288); +x_290 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_277, x_289, x_2, x_288); lean_dec(x_2); x_291 = !lean_is_exclusive(x_290); if (x_291 == 0) @@ -3960,7 +3960,7 @@ x_296 = lean_ctor_get(x_286, 1); lean_inc(x_296); lean_dec(x_286); x_297 = l_Lean_Meta_check___closed__2; -x_298 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_277, x_297, x_2, x_296); +x_298 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_277, x_297, x_2, x_296); lean_dec(x_2); x_299 = !lean_is_exclusive(x_298); if (x_299 == 0) @@ -4013,7 +4013,7 @@ lean_ctor_set(x_312, 1, x_279); lean_ctor_set(x_312, 2, x_280); lean_ctor_set(x_312, 3, x_281); lean_ctor_set(x_312, 4, x_282); -x_313 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_312, x_278); +x_313 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_312, x_278); if (lean_obj_tag(x_313) == 0) { lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; @@ -4023,7 +4023,7 @@ x_315 = lean_ctor_get(x_313, 1); lean_inc(x_315); lean_dec(x_313); x_316 = l_Lean_Meta_check___closed__2; -x_317 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_277, x_316, x_2, x_315); +x_317 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_277, x_316, x_2, x_315); lean_dec(x_2); x_318 = lean_ctor_get(x_317, 1); lean_inc(x_318); @@ -4053,7 +4053,7 @@ x_322 = lean_ctor_get(x_313, 1); lean_inc(x_322); lean_dec(x_313); x_323 = l_Lean_Meta_check___closed__2; -x_324 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_277, x_323, x_2, x_322); +x_324 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_277, x_323, x_2, x_322); lean_dec(x_2); x_325 = lean_ctor_get(x_324, 1); lean_inc(x_325); @@ -4080,29 +4080,29 @@ return x_327; } } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1(x_1); +x_2 = l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___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___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_1, x_2, x_3); +x_4 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -4291,7 +4291,7 @@ lean_object* _init_l_Lean_Meta_isTypeCorrect___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_1 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; x_2 = l_Lean_Meta_isTypeCorrect___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -4317,7 +4317,7 @@ else { lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; uint8_t x_203; x_199 = l_Lean_Meta_check___closed__2; -x_200 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_199, x_2, x_3); +x_200 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_199, x_2, x_3); x_201 = lean_ctor_get(x_200, 0); lean_inc(x_201); x_202 = lean_ctor_get(x_200, 1); @@ -4352,7 +4352,7 @@ else { lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; x_11 = l_Lean_Meta_isTypeCorrect___closed__2; -x_12 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_11, x_2, x_5); +x_12 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_11, x_2, x_5); x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); x_14 = lean_unbox(x_13); @@ -4441,7 +4441,7 @@ x_40 = lean_ctor_get_uint8(x_38, sizeof(void*)*1); x_41 = 0; lean_ctor_set_uint8(x_38, sizeof(void*)*1, x_41); lean_inc(x_2); -x_42 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_36); +x_42 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_36); if (lean_obj_tag(x_42) == 0) { uint8_t x_43; @@ -4690,7 +4690,7 @@ lean_ctor_set(x_102, 0, x_100); lean_ctor_set_uint8(x_102, sizeof(void*)*1, x_101); lean_ctor_set(x_36, 4, x_102); lean_inc(x_2); -x_103 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_36); +x_103 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_36); if (lean_obj_tag(x_103) == 0) { lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; lean_object* x_118; lean_object* x_119; @@ -4874,7 +4874,7 @@ lean_ctor_set(x_144, 3, x_137); lean_ctor_set(x_144, 4, x_143); lean_ctor_set(x_144, 5, x_138); lean_inc(x_2); -x_145 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_144); +x_145 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_144); if (lean_obj_tag(x_145) == 0) { lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; uint8_t x_159; lean_object* x_160; lean_object* x_161; @@ -5019,14 +5019,14 @@ goto block_34; else { lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; -x_175 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_36); +x_175 = l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_36); x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); x_177 = lean_ctor_get(x_175, 1); lean_inc(x_177); lean_dec(x_175); lean_inc(x_2); -x_178 = l___private_Init_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_177); +x_178 = l___private_Lean_Meta_Check_6__checkAux___main(x_1, x_2, x_177); if (lean_obj_tag(x_178) == 0) { lean_object* x_179; lean_object* x_180; lean_object* x_181; uint8_t x_182; @@ -5034,7 +5034,7 @@ x_179 = lean_ctor_get(x_178, 1); lean_inc(x_179); lean_dec(x_178); x_180 = l_Lean_Meta_check___closed__2; -x_181 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_176, x_180, x_2, x_179); +x_181 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_176, x_180, x_2, x_179); lean_dec(x_2); x_182 = !lean_is_exclusive(x_181); if (x_182 == 0) @@ -5070,7 +5070,7 @@ x_191 = lean_ctor_get(x_178, 1); lean_inc(x_191); lean_dec(x_178); x_192 = l_Lean_Meta_check___closed__2; -x_193 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_176, x_192, x_2, x_191); +x_193 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_176, x_192, x_2, x_191); x_194 = lean_ctor_get(x_193, 1); lean_inc(x_194); lean_dec(x_193); @@ -5091,7 +5091,7 @@ lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Check_7__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Check_7__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -5131,19 +5131,19 @@ return x_10; } } } -lean_object* initialize_Init_Lean_Meta_InferType(lean_object*); +lean_object* initialize_Lean_Meta_InferType(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Check(lean_object* w) { +lean_object* initialize_Lean_Meta_Check(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_InferType(lean_io_mk_world()); +res = initialize_Lean_Meta_InferType(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1 = _init_l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Check_2__checkLambdaLet___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1); -l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1 = _init_l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Check_3__checkForall___at___private_Init_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1); +l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1 = _init_l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Check_2__checkLambdaLet___at___private_Lean_Meta_Check_6__checkAux___main___spec__2___closed__1); +l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1 = _init_l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Check_3__checkForall___at___private_Lean_Meta_Check_6__checkAux___main___spec__4___closed__1); l_Lean_Meta_check___closed__1 = _init_l_Lean_Meta_check___closed__1(); lean_mark_persistent(l_Lean_Meta_check___closed__1); l_Lean_Meta_check___closed__2 = _init_l_Lean_Meta_check___closed__2(); @@ -5152,7 +5152,7 @@ l_Lean_Meta_isTypeCorrect___closed__1 = _init_l_Lean_Meta_isTypeCorrect___closed lean_mark_persistent(l_Lean_Meta_isTypeCorrect___closed__1); l_Lean_Meta_isTypeCorrect___closed__2 = _init_l_Lean_Meta_isTypeCorrect___closed__2(); lean_mark_persistent(l_Lean_Meta_isTypeCorrect___closed__2); -res = l___private_Init_Lean_Meta_Check_7__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_Meta_Check_7__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Meta/DiscrTree.c b/stage0/stdlib/Lean/Meta/DiscrTree.c similarity index 83% rename from stage0/stdlib/Init/Lean/Meta/DiscrTree.c rename to stage0/stdlib/Lean/Meta/DiscrTree.c index 9bb5b0c5be..ccf33fa9e4 100644 --- a/stage0/stdlib/Init/Lean/Meta/DiscrTree.c +++ b/stage0/stdlib/Lean/Meta/DiscrTree.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.DiscrTree -// Imports: Init.Lean.Meta.Basic Init.Lean.Meta.FunInfo Init.Lean.Meta.InferType +// Module: Lean.Meta.DiscrTree +// Imports: Lean.Meta.Basic Lean.Meta.FunInfo Lean.Meta.InferType #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,192 +13,201 @@ #ifdef __cplusplus extern "C" { #endif -uint8_t l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar(lean_object*); +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Position_Lean_HasFormat___spec__1(lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; -lean_object* l___private_Init_Lean_Meta_DiscrTree_13__getMatchKeyArgs(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_12__getKeyArgs(lean_object*, uint8_t, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); -lean_object* l___private_Init_Lean_Meta_DiscrTree_7__pushArgs(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_Trie_format___main___spec__1(lean_object*); lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_Trie_format___main___spec__4___rarg(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6(lean_object*); lean_object* l_Lean_Meta_DiscrTree_Trie_inhabited(lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; +lean_object* l___private_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___main(lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_DiscrTree_getMatch___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_format___closed__4; +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__2(lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Inhabited(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5; +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getMatch___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1; -lean_object* l___private_Init_Lean_Meta_DiscrTree_10__insertVal(lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_format___closed__1; -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_join(lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_hasFormat; -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2; -lean_object* l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_10__insertVal(lean_object*); lean_object* l_Lean_Meta_DiscrTree_insertCore___rarg___closed__4; +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__9___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg(lean_object*, size_t, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_ctorIdx(lean_object*); lean_object* l_Lean_mkMVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5; size_t l_USize_sub(size_t, size_t); +lean_object* l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1; extern lean_object* l_Array_empty___closed__1; extern lean_object* l_Lean_Format_flatten___main___closed__1; lean_object* l_Lean_Meta_DiscrTree_getMatch(lean_object*); lean_object* l___private_Init_Util_1__mkPanicMessage(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4(lean_object*); extern lean_object* l_Lean_Meta_DiscrTree_Key_inhabited; -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_format___closed__2; lean_object* l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_format___spec__4(lean_object*); lean_object* l_PersistentHashMap_foldlMAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__5(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__7(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux(lean_object*); +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__1(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_Key_format___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_3__ignoreArg(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_object* l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___boxed(lean_object*); +lean_object* l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; lean_object* l_Lean_Meta_DiscrTree_Key_ctorIdx___boxed(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4; lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_1__tmpMVarId; +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9; lean_object* l_Lean_Meta_DiscrTree_Trie_format(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_17__getUnifyAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_format(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_17__getUnifyAux(lean_object*); size_t l_USize_shiftRight(size_t, size_t); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_DiscrTree_hasFormat(lean_object*); -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Meta_DiscrTree_Key_beq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_16__getStarResult___rarg(lean_object*); -lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_List_format___rarg(lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Level_LevelToFormat_toResult___main___spec__1(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getUnify___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_format(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_10__insertVal___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getUnify___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7; -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__3; -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__2(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_10__insertVal___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_15__getMatchAux___main(lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3; lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__2___rarg(lean_object*, size_t, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_5__whnfEta___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_format___closed__3; lean_object* l_Lean_Meta_DiscrTree_Key_lt___boxed(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_7__pushArgs(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_insert(lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_Meta_DiscrTree_insertCore___spec__8(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_13__getMatchKeyArgs(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_format___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__1(lean_object*); -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_DiscrTree_getMatch___spec__3(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_DiscrTree_getMatch___spec__2___rarg(lean_object*, size_t, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_foldlMAux___main___at_Lean_Meta_DiscrTree_format___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_format___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_PersistentHashMap_foldlMAux___main___at_Lean_Meta_DiscrTree_format___spec__3___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_5__whnfEta(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__11___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_DiscrTree_getMatch___spec__2(lean_object*); -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_2__tmpStar; +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1; lean_object* l_Lean_Meta_DiscrTree_mkPathAux(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main(lean_object*); lean_object* l_Array_back___at_Lean_Meta_DiscrTree_mkPathAux___main___spec__1___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___boxed(lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_hasFormat___closed__1; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__3(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2(lean_object*); extern lean_object* l_Lean_arrayHasFormat___rarg___closed__1; lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_insertCore___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_mkPathAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_2__tmpStar; +lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3; +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___boxed(lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_arity(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; lean_object* l_PersistentHashMap_insert___at_Lean_Meta_DiscrTree_insertCore___spec__8___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_5__whnfEta(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__9(lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_Meta_DiscrTree_insertCore___spec__4(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux(lean_object*); lean_object* l_Lean_Meta_DiscrTree_Trie_format___main(lean_object*); extern lean_object* l_PersistentHashMap_insertAux___main___rarg___closed__3; -lean_object* l___private_Init_Lean_Meta_DiscrTree_2__tmpStar___closed__1; -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_16__getStarResult___rarg(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getUnify___spec__1___rarg(lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_5__whnfEta___main(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; +lean_object* l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg(lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__9___rarg(lean_object*, size_t, size_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_12__getKeyArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_15__getMatchAux(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_format___spec__5(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_16__getStarResult(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2; lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_Trie_format___main___spec__3___rarg___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_insertCore___rarg___closed__3; -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg(lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1; +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Literal_type___closed__2; -lean_object* l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Meta_DiscrTree_Trie_format___main___spec__2___rarg___closed__2; +lean_object* l___private_Lean_Meta_DiscrTree_14__getUnifyKeyArgs(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__11___rarg(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentHashMap_empty___rarg___closed__2; lean_object* l_PersistentHashMap_insert___at_Lean_Meta_DiscrTree_insertCore___spec__4___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProof(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_Trie_format___main___spec__4(lean_object*); size_t l_USize_mul(size_t, size_t); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2(lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_hasLess; -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_foldlMAux___main___at_Lean_Meta_DiscrTree_format___spec__3(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6; lean_object* l_Lean_Meta_DiscrTree_format___rarg(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Meta_DiscrTree_mkPathAux___main___spec__1(lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__10___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1(lean_object*); lean_object* l_Lean_Meta_DiscrTree_mkPath___closed__1; +lean_object* l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_insertCore___spec__1___rarg(lean_object*, lean_object*); size_t l_USize_land(size_t, size_t); lean_object* l_Lean_Meta_DiscrTree_getUnify(lean_object*); uint8_t l_Array_contains___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Trie_format___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_mkPath(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_3__ignoreArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_14__getUnifyKeyArgs(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_3__ignoreArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__3(lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2; lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__6(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1; -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3(lean_object*); lean_object* l_Lean_Meta_DiscrTree_insertCore___rarg___closed__2; lean_object* l_Lean_Meta_DiscrTree_getUnify___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Format_paren___closed__1; @@ -206,125 +215,116 @@ lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_insertCore___sp lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__5(lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_insertCore___spec__1(lean_object*); lean_object* l_Lean_Meta_DiscrTree_insertCore___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_8__initCapacity; lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__2___rarg(lean_object*, size_t, lean_object*); -lean_object* l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8; lean_object* l_Lean_Meta_DiscrTree_insertCore___rarg___closed__1; lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__5___rarg(lean_object*, size_t, size_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main(lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getMatch___spec__1___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_4__pushArgsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t l_USize_decLe(size_t, size_t); +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2(lean_object*); lean_object* l_String_quote(lean_object*); lean_object* l_PersistentHashMap_foldlM___at_Lean_Meta_DiscrTree_format___spec__2(lean_object*); lean_object* l_PersistentHashMap_foldlMAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3(lean_object*); lean_object* l_Lean_Meta_DiscrTree_Trie_format___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main(lean_object*); lean_object* l_Lean_Meta_DiscrTree_empty___closed__1; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_DiscrTree_getMatch___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__11(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getMatch___spec__1___rarg___boxed(lean_object*, lean_object*); -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7; extern lean_object* l_Lean_Format_paren___closed__2; -lean_object* l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; -lean_object* l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5(lean_object*); lean_object* l_List_map___main___at_Lean_Meta_DiscrTree_Trie_format___main___spec__2___rarg___closed__1; uint8_t l_Lean_Meta_DiscrTree_Key_lt(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_DiscrTree_hasFormat___rarg(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__7(lean_object*); lean_object* lean_format_group(lean_object*); +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__2(lean_object*); lean_object* l_Lean_Meta_DiscrTree_format___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_getFunInfoNArgs(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8; lean_object* l_Lean_Meta_DiscrTree_format___rarg___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_insertCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_16__getStarResult(lean_object*); +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__3(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_arity___boxed(lean_object*); lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_format___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); extern lean_object* l_Lean_Expr_Inhabited; -lean_object* l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux(lean_object*); lean_object* lean_array_pop(lean_object*); lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__6(lean_object*); +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_Trie_format___main___spec__3(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_getMatch___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Trie_hasFormat___rarg(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux(lean_object*); -lean_object* l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg(lean_object*); +uint8_t l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar(lean_object*); lean_object* l_PersistentHashMap_foldlM___at_Lean_Meta_DiscrTree_format___spec__2___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__10(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_foldlM___at_Lean_Meta_DiscrTree_getUnify___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Trie_hasFormat(lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId; +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__3(lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_DiscrTree_getMatch___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_format___spec__1(lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3(lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; extern lean_object* l_Lean_Format_paren___closed__3; lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4(lean_object*); lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_Trie_format___main___spec__3___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_15__getMatchAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_etaExpandedStrict_x3f(lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_4__pushArgsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isReadOnlyOrSyntheticOpaqueExprMVar(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_format___spec__1___rarg(lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Meta_DiscrTree_Trie_format___main___spec__2(lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Meta_DiscrTree_format___spec__1___rarg___boxed(lean_object*, lean_object*); -lean_object* l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_insertCore(lean_object*); lean_object* lean_usize_to_nat(size_t); -lean_object* l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___boxed(lean_object*); +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg(lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Meta_DiscrTree_Trie_format___main___spec__2___rarg(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_DiscrTree_format___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_foldlM___at_Lean_Meta_DiscrTree_getUnify___spec__4(lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_DiscrTree_insertCore___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__2(lean_object*); -lean_object* l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1; uint8_t l_Lean_Literal_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main(lean_object*); +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg(lean_object*, size_t, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_8__initCapacity; lean_object* l_PersistentHashMap_foldlM___at_Lean_Meta_DiscrTree_getUnify___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_insertAt___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2(lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_2__tmpStar___closed__1; lean_object* l_PersistentHashMap_foldlM___at_Lean_Meta_DiscrTree_format___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_insert___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_Lean_Meta_DiscrTree_Key_hash(lean_object*); -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4; -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9; +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6; lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__2; lean_object* l_Lean_Meta_DiscrTree_empty(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2; lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_foldlMAux___main___at_Lean_Meta_DiscrTree_getUnify___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_3__ignoreArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_Key_ctorIdx(lean_object* x_1) { _start: @@ -717,7 +717,7 @@ x_2 = l_Lean_Meta_DiscrTree_empty___closed__1; return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1() { _start: { lean_object* x_1; @@ -725,38 +725,38 @@ x_1 = lean_mk_string("_discr_tree_tmp"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_1__tmpMVarId___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_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1; +x_2 = l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_1__tmpMVarId() { _start: { lean_object* x_1; -x_1 = l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2; +x_1 = l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2; return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_2__tmpStar___closed__1() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_2__tmpStar___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId; +x_1 = l___private_Lean_Meta_DiscrTree_1__tmpMVarId; x_2 = l_Lean_mkMVar(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_2__tmpStar() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_2__tmpStar() { _start: { lean_object* x_1; -x_1 = l___private_Init_Lean_Meta_DiscrTree_2__tmpStar___closed__1; +x_1 = l___private_Lean_Meta_DiscrTree_2__tmpStar___closed__1; return x_1; } } @@ -768,7 +768,7 @@ x_2 = l_Lean_Meta_DiscrTree_empty___closed__1; return x_2; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_3__ignoreArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_DiscrTree_3__ignoreArg(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; @@ -905,17 +905,17 @@ return x_38; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_3__ignoreArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_DiscrTree_3__ignoreArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_DiscrTree_3__ignoreArg(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_DiscrTree_3__ignoreArg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_3) == 5) @@ -928,7 +928,7 @@ lean_inc(x_8); lean_dec(x_3); lean_inc(x_5); lean_inc(x_8); -x_9 = l___private_Init_Lean_Meta_DiscrTree_3__ignoreArg(x_8, x_2, x_1, x_5, x_6); +x_9 = l___private_Lean_Meta_DiscrTree_3__ignoreArg(x_8, x_2, x_1, x_5, x_6); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; uint8_t x_11; @@ -962,7 +962,7 @@ lean_dec(x_9); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_2, x_18); lean_dec(x_2); -x_20 = l___private_Init_Lean_Meta_DiscrTree_2__tmpStar; +x_20 = l___private_Lean_Meta_DiscrTree_2__tmpStar; x_21 = lean_array_push(x_4, x_20); x_2 = x_19; x_3 = x_7; @@ -1012,33 +1012,33 @@ return x_27; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_DiscrTree_4__pushArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_DiscrTree_4__pushArgsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_DiscrTree_4__pushArgsAux(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_5__whnfEta___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_DiscrTree_5__whnfEta___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -1130,15 +1130,15 @@ return x_20; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_5__whnfEta(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_DiscrTree_5__whnfEta(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_DiscrTree_5__whnfEta___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_DiscrTree_5__whnfEta___main(x_1, x_2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1() { _start: { lean_object* x_1; @@ -1146,17 +1146,17 @@ x_1 = lean_mk_string("zero"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Literal_type___closed__2; -x_2 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1; +x_2 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3() { _start: { lean_object* x_1; @@ -1164,17 +1164,17 @@ x_1 = lean_mk_string("succ"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Literal_type___closed__2; -x_2 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3; +x_2 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5() { _start: { lean_object* x_1; @@ -1182,17 +1182,17 @@ x_1 = lean_mk_string("add"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Literal_type___closed__2; -x_2 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5; +x_2 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7() { _start: { lean_object* x_1; @@ -1200,46 +1200,46 @@ x_1 = lean_mk_string("HasAdd"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7; +x_2 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8; -x_2 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5; +x_1 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8; +x_2 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -uint8_t l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar(lean_object* x_1) { +uint8_t l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2; +x_2 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2; x_3 = lean_name_eq(x_1, x_2); if (x_3 == 0) { lean_object* x_4; uint8_t x_5; -x_4 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4; +x_4 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4; x_5 = lean_name_eq(x_1, x_4); if (x_5 == 0) { lean_object* x_6; uint8_t x_7; -x_6 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6; +x_6 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6; x_7 = lean_name_eq(x_1, x_6); if (x_7 == 0) { lean_object* x_8; uint8_t x_9; -x_8 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9; +x_8 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9; x_9 = lean_name_eq(x_1, x_8); return x_9; } @@ -1265,22 +1265,22 @@ return x_12; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar(x_1); +x_2 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_7__pushArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_DiscrTree_7__pushArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_inc(x_3); -x_5 = l___private_Init_Lean_Meta_DiscrTree_5__whnfEta___main(x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_DiscrTree_5__whnfEta___main(x_2, x_3, x_4); if (lean_obj_tag(x_5) == 0) { uint8_t x_6; @@ -1321,7 +1321,7 @@ lean_dec(x_15); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_12, x_18); lean_dec(x_12); -x_20 = l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_17, x_19, x_7, x_1, x_3, x_16); +x_20 = l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_17, x_19, x_7, x_1, x_3, x_16); lean_dec(x_17); if (lean_obj_tag(x_20) == 0) { @@ -1413,7 +1413,7 @@ lean_dec(x_7); x_36 = lean_ctor_get(x_9, 0); lean_inc(x_36); lean_dec(x_9); -x_37 = l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId; +x_37 = l___private_Lean_Meta_DiscrTree_1__tmpMVarId; x_38 = lean_name_eq(x_36, x_37); if (x_38 == 0) { @@ -1535,7 +1535,7 @@ case 4: lean_object* x_64; uint8_t x_65; x_64 = lean_ctor_get(x_9, 0); lean_inc(x_64); -x_65 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar(x_64); +x_65 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar(x_64); if (x_65 == 0) { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; @@ -1563,7 +1563,7 @@ lean_dec(x_70); x_73 = lean_unsigned_to_nat(1u); x_74 = lean_nat_sub(x_67, x_73); lean_dec(x_67); -x_75 = l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_72, x_74, x_7, x_1, x_3, x_71); +x_75 = l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_72, x_74, x_7, x_1, x_3, x_71); lean_dec(x_72); if (lean_obj_tag(x_75) == 0) { @@ -1732,7 +1732,7 @@ lean_dec(x_106); x_109 = lean_unsigned_to_nat(1u); x_110 = lean_nat_sub(x_103, x_109); lean_dec(x_103); -x_111 = l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_108, x_110, x_98, x_1, x_3, x_107); +x_111 = l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_108, x_110, x_98, x_1, x_3, x_107); lean_dec(x_108); if (lean_obj_tag(x_111) == 0) { @@ -1824,7 +1824,7 @@ lean_dec(x_98); x_125 = lean_ctor_get(x_100, 0); lean_inc(x_125); lean_dec(x_100); -x_126 = l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId; +x_126 = l___private_Lean_Meta_DiscrTree_1__tmpMVarId; x_127 = lean_name_eq(x_125, x_126); if (x_127 == 0) { @@ -1937,7 +1937,7 @@ case 4: lean_object* x_148; uint8_t x_149; x_148 = lean_ctor_get(x_100, 0); lean_inc(x_148); -x_149 = l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar(x_148); +x_149 = l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar(x_148); if (x_149 == 0) { lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; @@ -1964,7 +1964,7 @@ lean_dec(x_154); x_157 = lean_unsigned_to_nat(1u); x_158 = lean_nat_sub(x_151, x_157); lean_dec(x_151); -x_159 = l___private_Init_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_156, x_158, x_98, x_1, x_3, x_155); +x_159 = l___private_Lean_Meta_DiscrTree_4__pushArgsAux___main(x_156, x_158, x_98, x_1, x_3, x_155); lean_dec(x_156); if (lean_obj_tag(x_159) == 0) { @@ -2153,7 +2153,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Array_back___at_Lean_Meta_DiscrTree_mkPathAux___main___spec__1(x_1); x_7 = lean_array_pop(x_1); lean_inc(x_3); -x_8 = l___private_Init_Lean_Meta_DiscrTree_7__pushArgs(x_7, x_6, x_3, x_4); +x_8 = l___private_Lean_Meta_DiscrTree_7__pushArgs(x_7, x_6, x_3, x_4); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -2227,7 +2227,7 @@ x_5 = l_Lean_Meta_DiscrTree_mkPathAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_8__initCapacity() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_8__initCapacity() { _start: { lean_object* x_1; @@ -2239,7 +2239,7 @@ lean_object* _init_l_Lean_Meta_DiscrTree_mkPath___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_DiscrTree_8__initCapacity; +x_1 = l___private_Lean_Meta_DiscrTree_8__initCapacity; x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } @@ -2345,7 +2345,7 @@ return x_37; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2369,7 +2369,7 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean x_10 = lean_array_fget(x_1, x_3); x_11 = lean_unsigned_to_nat(1u); x_12 = lean_nat_add(x_3, x_11); -x_13 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_12); +x_13 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_12); lean_dec(x_12); x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_10); @@ -2384,51 +2384,51 @@ return x_18; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg___boxed), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_9__createNodes___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_9__createNodes___rarg___boxed), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_DiscrTree_9__createNodes___rarg(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_10__insertVal___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_DiscrTree_10__insertVal___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -2447,15 +2447,15 @@ return x_2; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_10__insertVal(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_10__insertVal(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_10__insertVal___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_10__insertVal___rarg), 3, 0); return x_2; } } -lean_object* _init_l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1() { +lean_object* _init_l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1() { _start: { lean_object* x_1; @@ -2463,19 +2463,19 @@ x_1 = l_Lean_Meta_DiscrTree_Trie_inhabited(lean_box(0)); return x_1; } } -lean_object* _init_l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2() { +lean_object* _init_l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Meta_DiscrTree_Key_inhabited; -x_2 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1; +x_2 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___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; } } -lean_object* l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg(lean_object* x_1) { +lean_object* l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg(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; @@ -2483,21 +2483,21 @@ 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_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_5 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_6 = lean_array_get(x_5, x_1, x_4); lean_dec(x_4); return x_6; } } -lean_object* l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2(lean_object* x_1) { +lean_object* l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___boxed), 1, 0); +x_2 = lean_alloc_closure((void*)(l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___boxed), 1, 0); return x_2; } } -lean_object* _init_l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1() { +lean_object* _init_l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2509,7 +2509,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___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, lean_object* x_9) { +lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___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, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -2517,7 +2517,7 @@ x_10 = lean_nat_add(x_8, x_9); x_11 = lean_unsigned_to_nat(2u); x_12 = lean_nat_div(x_10, x_11); lean_dec(x_10); -x_13 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_13 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_14 = lean_array_get(x_13, x_6, x_12); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); @@ -2549,7 +2549,7 @@ else { lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; x_21 = lean_array_fget(x_6, x_12); -x_22 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; +x_22 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; x_23 = lean_array_fset(x_6, x_12, x_22); x_24 = !lean_is_exclusive(x_21); if (x_24 == 0) @@ -2560,7 +2560,7 @@ x_26 = lean_ctor_get(x_21, 0); lean_dec(x_26); x_27 = lean_unsigned_to_nat(1u); x_28 = lean_nat_add(x_4, x_27); -x_29 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_28, x_25); +x_29 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_28, x_25); lean_dec(x_28); lean_ctor_set(x_21, 1, x_29); lean_ctor_set(x_21, 0, x_5); @@ -2576,7 +2576,7 @@ lean_inc(x_31); lean_dec(x_21); x_32 = lean_unsigned_to_nat(1u); x_33 = lean_nat_add(x_4, x_32); -x_34 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_33, x_31); +x_34 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_33, x_31); lean_dec(x_33); x_35 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_35, 0, x_5); @@ -2612,7 +2612,7 @@ lean_dec(x_9); lean_dec(x_1); x_40 = lean_unsigned_to_nat(1u); x_41 = lean_nat_add(x_4, x_40); -x_42 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_41); +x_42 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_41); lean_dec(x_41); x_43 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_43, 0, x_5); @@ -2626,15 +2626,15 @@ return x_45; } } } -lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3(lean_object* x_1) { +lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___boxed), 9, 0); +x_2 = lean_alloc_closure((void*)(l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___boxed), 9, 0); return x_2; } } -lean_object* l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -2642,7 +2642,7 @@ x_8 = l_Array_isEmpty___rarg(x_6); if (x_8 == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_9 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_9 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_10 = lean_unsigned_to_nat(0u); x_11 = lean_array_get(x_9, x_6, x_10); x_12 = lean_ctor_get(x_7, 0); @@ -2672,7 +2672,7 @@ else { lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; x_18 = lean_array_fget(x_6, x_10); -x_19 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; +x_19 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; x_20 = lean_array_fset(x_6, x_10, x_19); x_21 = !lean_is_exclusive(x_18); if (x_21 == 0) @@ -2683,7 +2683,7 @@ x_23 = lean_ctor_get(x_18, 0); lean_dec(x_23); x_24 = lean_unsigned_to_nat(1u); x_25 = lean_nat_add(x_4, x_24); -x_26 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_25, x_22); +x_26 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_25, x_22); lean_dec(x_25); lean_ctor_set(x_18, 1, x_26); lean_ctor_set(x_18, 0, x_5); @@ -2698,7 +2698,7 @@ lean_inc(x_28); lean_dec(x_18); x_29 = lean_unsigned_to_nat(1u); x_30 = lean_nat_add(x_4, x_29); -x_31 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_30, x_28); +x_31 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_30, x_28); lean_dec(x_30); x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_5); @@ -2711,7 +2711,7 @@ return x_33; else { lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_34 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg(x_6); +x_34 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg(x_6); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); lean_dec(x_34); @@ -2741,7 +2741,7 @@ else { lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; x_42 = lean_array_fget(x_6, x_40); -x_43 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; +x_43 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; x_44 = lean_array_fset(x_6, x_40, x_43); x_45 = !lean_is_exclusive(x_42); if (x_45 == 0) @@ -2751,7 +2751,7 @@ x_46 = lean_ctor_get(x_42, 1); x_47 = lean_ctor_get(x_42, 0); lean_dec(x_47); x_48 = lean_nat_add(x_4, x_39); -x_49 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_48, x_46); +x_49 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_48, x_46); lean_dec(x_48); lean_ctor_set(x_42, 1, x_49); lean_ctor_set(x_42, 0, x_5); @@ -2766,7 +2766,7 @@ x_51 = lean_ctor_get(x_42, 1); lean_inc(x_51); lean_dec(x_42); x_52 = lean_nat_add(x_4, x_39); -x_53 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_52, x_51); +x_53 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_52, x_51); lean_dec(x_52); x_54 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_54, 0, x_5); @@ -2784,7 +2784,7 @@ x_56 = lean_array_get_size(x_6); x_57 = lean_unsigned_to_nat(1u); x_58 = lean_nat_sub(x_56, x_57); lean_dec(x_56); -x_59 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_58); +x_59 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_58); return x_59; } } @@ -2795,7 +2795,7 @@ lean_dec(x_35); lean_dec(x_1); x_60 = lean_unsigned_to_nat(1u); x_61 = lean_nat_add(x_4, x_60); -x_62 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_61); +x_62 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_61); lean_dec(x_61); x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_5); @@ -2812,7 +2812,7 @@ lean_dec(x_13); lean_dec(x_1); x_65 = lean_unsigned_to_nat(1u); x_66 = lean_nat_add(x_4, x_65); -x_67 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_66); +x_67 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_66); lean_dec(x_66); x_68 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_68, 0, x_5); @@ -2827,7 +2827,7 @@ lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean lean_dec(x_1); x_70 = lean_unsigned_to_nat(1u); x_71 = lean_nat_add(x_4, x_70); -x_72 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_71); +x_72 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_71); lean_dec(x_71); x_73 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_73, 0, x_5); @@ -2837,15 +2837,15 @@ return x_74; } } } -lean_object* l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1(lean_object* x_1) { +lean_object* l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg___boxed), 7, 0); +x_2 = lean_alloc_closure((void*)(l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg___boxed), 7, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(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; @@ -2861,7 +2861,7 @@ lean_dec(x_9); if (x_10 == 0) { lean_object* x_11; -x_11 = l___private_Init_Lean_Meta_DiscrTree_10__insertVal___rarg(x_1, x_7, x_3); +x_11 = l___private_Lean_Meta_DiscrTree_10__insertVal___rarg(x_1, x_7, x_3); lean_ctor_set(x_5, 0, x_11); return x_5; } @@ -2874,7 +2874,7 @@ lean_inc(x_12); x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_12, x_8, x_14); +x_15 = l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_12, x_8, x_14); lean_dec(x_14); lean_ctor_set(x_5, 1, x_15); return x_5; @@ -2894,7 +2894,7 @@ lean_dec(x_18); if (x_19 == 0) { lean_object* x_20; lean_object* x_21; -x_20 = l___private_Init_Lean_Meta_DiscrTree_10__insertVal___rarg(x_1, x_16, x_3); +x_20 = l___private_Lean_Meta_DiscrTree_10__insertVal___rarg(x_1, x_16, x_3); x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_17); @@ -2909,7 +2909,7 @@ lean_inc(x_22); x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_22, x_17, x_24); +x_25 = l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_22, x_17, x_24); lean_dec(x_24); x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_16); @@ -2919,76 +2919,76 @@ return x_26; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___boxed(lean_object* x_1) { +lean_object* l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg(x_1); +x_2 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_7); lean_dec(x_4); lean_dec(x_2); return x_10; } } -lean_object* l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Array_binInsertM___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_binInsertM___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_7); lean_dec(x_4); lean_dec(x_2); return x_8; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___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; -x_6 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_11__insertAux___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_11__insertAux___rarg___boxed), 5, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_DiscrTree_11__insertAux___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_2); return x_6; @@ -4184,7 +4184,7 @@ lean_object* _init_l_Lean_Meta_DiscrTree_insertCore___rarg___closed__2() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Meta.DiscrTree"); +x_1 = lean_mk_string("Lean.Meta.DiscrTree"); return x_1; } } @@ -4226,7 +4226,7 @@ if (lean_obj_tag(x_9) == 0) lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_dec(x_1); x_10 = lean_unsigned_to_nat(1u); -x_11 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_3, x_4, x_10); +x_11 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_3, x_4, x_10); x_12 = l_PersistentHashMap_insert___at_Lean_Meta_DiscrTree_insertCore___spec__4___rarg(x_2, x_8, x_11); return x_12; } @@ -4237,7 +4237,7 @@ x_13 = lean_ctor_get(x_9, 0); lean_inc(x_13); lean_dec(x_9); x_14 = lean_unsigned_to_nat(1u); -x_15 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_3, x_4, x_14, x_13); +x_15 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___rarg(x_1, x_3, x_4, x_14, x_13); x_16 = l_PersistentHashMap_insert___at_Lean_Meta_DiscrTree_insertCore___spec__8___rarg(x_2, x_8, x_15); return x_16; } @@ -5367,7 +5367,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_DiscrTree_DiscrTree_hasFormat___rar return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5379,7 +5379,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2() { +lean_object* _init_l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5391,12 +5391,12 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_DiscrTree_12__getKeyArgs(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_inc(x_3); -x_5 = l___private_Init_Lean_Meta_DiscrTree_5__whnfEta___main(x_1, x_3, x_4); +x_5 = l___private_Lean_Meta_DiscrTree_5__whnfEta___main(x_1, x_3, x_4); if (lean_obj_tag(x_5) == 0) { uint8_t x_6; @@ -5423,7 +5423,7 @@ lean_ctor_set(x_13, 0, x_10); lean_ctor_set(x_13, 1, x_12); x_14 = lean_mk_empty_array_with_capacity(x_12); lean_dec(x_12); -x_15 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_7, x_14); +x_15 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_7, x_14); x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_13); lean_ctor_set(x_16, 1, x_15); @@ -5465,7 +5465,7 @@ if (x_23 == 0) lean_object* x_24; lean_object* x_25; x_24 = lean_ctor_get(x_20, 0); lean_dec(x_24); -x_25 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; +x_25 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; lean_ctor_set(x_20, 0, x_25); return x_20; } @@ -5475,7 +5475,7 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; x_26 = lean_ctor_get(x_20, 1); lean_inc(x_26); lean_dec(x_20); -x_27 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; +x_27 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; x_28 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -5491,7 +5491,7 @@ if (x_29 == 0) lean_object* x_30; lean_object* x_31; x_30 = lean_ctor_get(x_20, 0); lean_dec(x_30); -x_31 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; +x_31 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; lean_ctor_set(x_20, 0, x_31); return x_20; } @@ -5501,7 +5501,7 @@ lean_object* x_32; lean_object* x_33; lean_object* x_34; x_32 = lean_ctor_get(x_20, 1); lean_inc(x_32); lean_dec(x_20); -x_33 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; +x_33 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; x_34 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -5537,7 +5537,7 @@ else lean_object* x_39; lean_dec(x_9); lean_dec(x_3); -x_39 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; +x_39 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; lean_ctor_set(x_5, 0, x_39); return x_5; } @@ -5547,7 +5547,7 @@ else lean_object* x_40; lean_dec(x_9); lean_dec(x_3); -x_40 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; +x_40 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; lean_ctor_set(x_5, 0, x_40); return x_5; } @@ -5567,7 +5567,7 @@ lean_ctor_set(x_44, 0, x_41); lean_ctor_set(x_44, 1, x_43); x_45 = lean_mk_empty_array_with_capacity(x_43); lean_dec(x_43); -x_46 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_7, x_45); +x_46 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_7, x_45); x_47 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_47, 0, x_44); lean_ctor_set(x_47, 1, x_46); @@ -5597,7 +5597,7 @@ lean_object* x_52; lean_dec(x_9); lean_dec(x_7); lean_dec(x_3); -x_52 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; +x_52 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; lean_ctor_set(x_5, 0, x_52); return x_5; } @@ -5628,7 +5628,7 @@ lean_ctor_set(x_59, 0, x_56); lean_ctor_set(x_59, 1, x_58); x_60 = lean_mk_empty_array_with_capacity(x_58); lean_dec(x_58); -x_61 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_53, x_60); +x_61 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_53, x_60); x_62 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_62, 0, x_59); lean_ctor_set(x_62, 1, x_61); @@ -5675,7 +5675,7 @@ if (lean_is_exclusive(x_67)) { lean_dec_ref(x_67); x_71 = lean_box(0); } -x_72 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; +x_72 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; if (lean_is_scalar(x_71)) { x_73 = lean_alloc_ctor(0, 2, 0); } else { @@ -5698,7 +5698,7 @@ if (lean_is_exclusive(x_67)) { lean_dec_ref(x_67); x_75 = lean_box(0); } -x_76 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; +x_76 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; if (lean_is_scalar(x_75)) { x_77 = lean_alloc_ctor(0, 2, 0); } else { @@ -5739,7 +5739,7 @@ else lean_object* x_82; lean_object* x_83; lean_dec(x_55); lean_dec(x_3); -x_82 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; +x_82 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2; x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_54); @@ -5751,7 +5751,7 @@ else lean_object* x_84; lean_object* x_85; lean_dec(x_55); lean_dec(x_3); -x_84 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; +x_84 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; x_85 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_54); @@ -5773,7 +5773,7 @@ lean_ctor_set(x_89, 0, x_86); lean_ctor_set(x_89, 1, x_88); x_90 = lean_mk_empty_array_with_capacity(x_88); lean_dec(x_88); -x_91 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_53, x_90); +x_91 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_53, x_90); x_92 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_92, 0, x_89); lean_ctor_set(x_92, 1, x_91); @@ -5807,7 +5807,7 @@ lean_object* x_99; lean_object* x_100; lean_dec(x_55); lean_dec(x_53); lean_dec(x_3); -x_99 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; +x_99 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1; x_100 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_54); @@ -5841,35 +5841,35 @@ return x_104; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_DiscrTree_12__getKeyArgs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_2); lean_dec(x_2); -x_6 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_1, x_5, x_3, x_4); +x_6 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_1, x_5, x_3, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_13__getMatchKeyArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_DiscrTree_13__getMatchKeyArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = 1; -x_5 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_1, x_4, x_2, x_3); +x_5 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_1, x_4, x_2, x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_14__getUnifyKeyArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_DiscrTree_14__getUnifyKeyArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = 0; -x_5 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_1, x_4, x_2, x_3); +x_5 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_1, x_4, x_2, x_3); return x_5; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -5889,7 +5889,7 @@ x_7 = lean_nat_add(x_3, x_4); x_8 = lean_unsigned_to_nat(2u); x_9 = lean_nat_div(x_7, x_8); lean_dec(x_7); -x_10 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_10 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_11 = lean_array_get(x_10, x_1, x_9); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); @@ -5950,15 +5950,15 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1(lean_object* x_1) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -5978,7 +5978,7 @@ x_7 = lean_nat_add(x_3, x_4); x_8 = lean_unsigned_to_nat(2u); x_9 = lean_nat_div(x_7, x_8); lean_dec(x_7); -x_10 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_10 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_11 = lean_array_get(x_10, x_1, x_9); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); @@ -6039,15 +6039,15 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2(lean_object* x_1) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -6067,7 +6067,7 @@ x_7 = lean_nat_add(x_3, x_4); x_8 = lean_unsigned_to_nat(2u); x_9 = lean_nat_div(x_7, x_8); lean_dec(x_7); -x_10 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_10 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_11 = lean_array_get(x_10, x_1, x_9); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); @@ -6128,15 +6128,15 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3(lean_object* x_1) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -6156,7 +6156,7 @@ x_7 = lean_nat_add(x_3, x_4); x_8 = lean_unsigned_to_nat(2u); x_9 = lean_nat_div(x_7, x_8); lean_dec(x_7); -x_10 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_10 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_11 = lean_array_get(x_10, x_1, x_9); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); @@ -6217,15 +6217,15 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4(lean_object* x_1) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg___boxed), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___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; uint8_t x_8; @@ -6245,12 +6245,12 @@ if (x_9 == 0) lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; x_10 = l_Array_back___at_Lean_Meta_DiscrTree_mkPathAux___main___spec__1(x_1); x_11 = lean_array_pop(x_1); -x_12 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_12 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_13 = lean_unsigned_to_nat(0u); x_14 = lean_array_get(x_12, x_7, x_13); x_15 = 1; lean_inc(x_4); -x_16 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_10, x_15, x_4, x_5); +x_16 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_10, x_15, x_4, x_5); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; @@ -6282,7 +6282,7 @@ x_26 = lean_array_get_size(x_7); x_27 = lean_unsigned_to_nat(1u); x_28 = lean_nat_sub(x_26, x_27); lean_dec(x_26); -x_29 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(x_7, x_17, x_13, x_28); +x_29 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(x_7, x_17, x_13, x_28); lean_dec(x_17); lean_dec(x_7); if (lean_obj_tag(x_29) == 0) @@ -6349,7 +6349,7 @@ lean_inc(x_42); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_43 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_42, x_3, x_4, x_20); +x_43 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_42, x_3, x_4, x_20); if (lean_obj_tag(x_43) == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; @@ -6412,7 +6412,7 @@ x_56 = lean_array_get_size(x_7); x_57 = lean_unsigned_to_nat(1u); x_58 = lean_nat_sub(x_56, x_57); lean_dec(x_56); -x_59 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(x_7, x_55, x_13, x_58); +x_59 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(x_7, x_55, x_13, x_58); lean_dec(x_55); lean_dec(x_7); if (lean_obj_tag(x_59) == 0) @@ -6479,7 +6479,7 @@ lean_inc(x_72); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_73 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_72, x_3, x_4, x_20); +x_73 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_72, x_3, x_4, x_20); if (lean_obj_tag(x_73) == 0) { lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; @@ -6559,7 +6559,7 @@ x_88 = lean_array_get_size(x_7); x_89 = lean_unsigned_to_nat(1u); x_90 = lean_nat_sub(x_88, x_89); lean_dec(x_88); -x_91 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(x_7, x_87, x_13, x_90); +x_91 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(x_7, x_87, x_13, x_90); lean_dec(x_87); lean_dec(x_7); if (lean_obj_tag(x_91) == 0) @@ -6627,7 +6627,7 @@ lean_inc(x_105); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_106 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_105, x_3, x_4, x_83); +x_106 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_105, x_3, x_4, x_83); if (lean_obj_tag(x_106) == 0) { lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; @@ -6702,7 +6702,7 @@ x_123 = lean_array_get_size(x_7); x_124 = lean_unsigned_to_nat(1u); x_125 = lean_nat_sub(x_123, x_124); lean_dec(x_123); -x_126 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(x_7, x_17, x_13, x_125); +x_126 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(x_7, x_17, x_13, x_125); lean_dec(x_17); lean_dec(x_7); if (lean_obj_tag(x_126) == 0) @@ -6769,7 +6769,7 @@ lean_inc(x_139); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_140 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_139, x_3, x_4, x_117); +x_140 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_139, x_3, x_4, x_117); if (lean_obj_tag(x_140) == 0) { lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; @@ -6832,7 +6832,7 @@ x_153 = lean_array_get_size(x_7); x_154 = lean_unsigned_to_nat(1u); x_155 = lean_nat_sub(x_153, x_154); lean_dec(x_153); -x_156 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(x_7, x_152, x_13, x_155); +x_156 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(x_7, x_152, x_13, x_155); lean_dec(x_152); lean_dec(x_7); if (lean_obj_tag(x_156) == 0) @@ -6899,7 +6899,7 @@ lean_inc(x_169); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_170 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_169, x_3, x_4, x_117); +x_170 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_169, x_3, x_4, x_117); if (lean_obj_tag(x_170) == 0) { lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; @@ -6979,7 +6979,7 @@ x_185 = lean_array_get_size(x_7); x_186 = lean_unsigned_to_nat(1u); x_187 = lean_nat_sub(x_185, x_186); lean_dec(x_185); -x_188 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(x_7, x_184, x_13, x_187); +x_188 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(x_7, x_184, x_13, x_187); lean_dec(x_184); lean_dec(x_7); if (lean_obj_tag(x_188) == 0) @@ -7047,7 +7047,7 @@ lean_inc(x_202); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_203 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_202, x_3, x_4, x_180); +x_203 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_202, x_3, x_4, x_180); if (lean_obj_tag(x_203) == 0) { lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; @@ -7122,7 +7122,7 @@ x_220 = lean_array_get_size(x_7); x_221 = lean_unsigned_to_nat(1u); x_222 = lean_nat_sub(x_220, x_221); lean_dec(x_220); -x_223 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(x_7, x_17, x_13, x_222); +x_223 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(x_7, x_17, x_13, x_222); lean_dec(x_17); lean_dec(x_7); if (lean_obj_tag(x_223) == 0) @@ -7189,7 +7189,7 @@ lean_inc(x_236); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_237 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_236, x_3, x_4, x_214); +x_237 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_236, x_3, x_4, x_214); if (lean_obj_tag(x_237) == 0) { lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; @@ -7252,7 +7252,7 @@ x_250 = lean_array_get_size(x_7); x_251 = lean_unsigned_to_nat(1u); x_252 = lean_nat_sub(x_250, x_251); lean_dec(x_250); -x_253 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(x_7, x_249, x_13, x_252); +x_253 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(x_7, x_249, x_13, x_252); lean_dec(x_249); lean_dec(x_7); if (lean_obj_tag(x_253) == 0) @@ -7319,7 +7319,7 @@ lean_inc(x_266); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_267 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_266, x_3, x_4, x_214); +x_267 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_266, x_3, x_4, x_214); if (lean_obj_tag(x_267) == 0) { lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; @@ -7399,7 +7399,7 @@ x_282 = lean_array_get_size(x_7); x_283 = lean_unsigned_to_nat(1u); x_284 = lean_nat_sub(x_282, x_283); lean_dec(x_282); -x_285 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(x_7, x_281, x_13, x_284); +x_285 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(x_7, x_281, x_13, x_284); lean_dec(x_281); lean_dec(x_7); if (lean_obj_tag(x_285) == 0) @@ -7467,7 +7467,7 @@ lean_inc(x_299); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_300 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_299, x_3, x_4, x_277); +x_300 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_299, x_3, x_4, x_277); if (lean_obj_tag(x_300) == 0) { lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; @@ -7615,7 +7615,7 @@ x_332 = lean_array_get_size(x_7); x_333 = lean_unsigned_to_nat(1u); x_334 = lean_nat_sub(x_332, x_333); lean_dec(x_332); -x_335 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(x_7, x_17, x_13, x_334); +x_335 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(x_7, x_17, x_13, x_334); lean_dec(x_17); lean_dec(x_7); if (lean_obj_tag(x_335) == 0) @@ -7682,7 +7682,7 @@ lean_inc(x_348); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_349 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_348, x_3, x_4, x_326); +x_349 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_348, x_3, x_4, x_326); if (lean_obj_tag(x_349) == 0) { lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; @@ -7745,7 +7745,7 @@ x_362 = lean_array_get_size(x_7); x_363 = lean_unsigned_to_nat(1u); x_364 = lean_nat_sub(x_362, x_363); lean_dec(x_362); -x_365 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(x_7, x_361, x_13, x_364); +x_365 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(x_7, x_361, x_13, x_364); lean_dec(x_361); lean_dec(x_7); if (lean_obj_tag(x_365) == 0) @@ -7812,7 +7812,7 @@ lean_inc(x_378); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_379 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_378, x_3, x_4, x_326); +x_379 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_378, x_3, x_4, x_326); if (lean_obj_tag(x_379) == 0) { lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; @@ -7892,7 +7892,7 @@ x_394 = lean_array_get_size(x_7); x_395 = lean_unsigned_to_nat(1u); x_396 = lean_nat_sub(x_394, x_395); lean_dec(x_394); -x_397 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(x_7, x_393, x_13, x_396); +x_397 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(x_7, x_393, x_13, x_396); lean_dec(x_393); lean_dec(x_7); if (lean_obj_tag(x_397) == 0) @@ -7960,7 +7960,7 @@ lean_inc(x_411); lean_dec(x_14); lean_inc(x_4); lean_inc(x_11); -x_412 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_411, x_3, x_4, x_389); +x_412 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_11, x_411, x_3, x_4, x_389); if (lean_obj_tag(x_412) == 0) { lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; @@ -8070,71 +8070,71 @@ return x_429; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_15__getMatchAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg), 5, 0); return x_2; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__1___rarg(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__2___rarg(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__3___rarg(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_15__getMatchAux___main___spec__4___rarg(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_DiscrTree_15__getMatchAux___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; -x_6 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_15__getMatchAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___rarg), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_15__getMatchAux___rarg), 5, 0); return x_2; } } -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -8176,15 +8176,15 @@ return x_15; } } } -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__3(lean_object* x_1) { +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -8255,22 +8255,22 @@ x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); lean_dec(x_1); x_22 = lean_unsigned_to_nat(0u); -x_23 = l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg(x_20, x_21, lean_box(0), x_22, x_3); lean_dec(x_21); lean_dec(x_20); return x_23; } } } -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__2(lean_object* x_1) { +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_PersistentHashMap_findAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg___boxed), 3, 0); return x_2; } } -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -8278,24 +8278,24 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Meta_DiscrTree_Key_hash(x_2); -x_5 = l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg(x_3, x_4, x_2); +x_5 = l_PersistentHashMap_findAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg(x_3, x_4, x_2); return x_5; } } -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__1(lean_object* x_1) { +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_PersistentHashMap_find_x3f___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg___boxed), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_16__getStarResult___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_16__getStarResult___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_box(3); -x_3 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg(x_1, x_2); +x_3 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg(x_1, x_2); if (lean_obj_tag(x_3) == 0) { lean_object* x_4; @@ -8319,41 +8319,41 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_16__getStarResult(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_16__getStarResult(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_16__getStarResult___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_16__getStarResult___rarg), 1, 0); return x_2; } } -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__3___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg(x_1, x_4, x_3); +x_5 = l_PersistentHashMap_findAux___main___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__2___rarg(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg(x_1, x_2); +x_3 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_DiscrTree_16__getStarResult___spec__1___rarg(x_1, x_2); lean_dec(x_2); return x_3; } @@ -8519,7 +8519,7 @@ _start: { lean_object* x_5; uint8_t x_6; lean_inc(x_1); -x_5 = l___private_Init_Lean_Meta_DiscrTree_16__getStarResult___rarg(x_1); +x_5 = l___private_Lean_Meta_DiscrTree_16__getStarResult___rarg(x_1); x_6 = !lean_is_exclusive(x_3); if (x_6 == 0) { @@ -8533,7 +8533,7 @@ x_9 = 2; lean_ctor_set_uint8(x_7, sizeof(void*)*1 + 6, x_9); x_10 = 1; lean_inc(x_3); -x_11 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_10, x_3, x_4); +x_11 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_10, x_3, x_4); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; @@ -8600,7 +8600,7 @@ lean_dec(x_14); x_20 = lean_ctor_get(x_18, 0); lean_inc(x_20); lean_dec(x_18); -x_21 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_16, x_20, x_5, x_3, x_13); +x_21 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_16, x_20, x_5, x_3, x_13); return x_21; } } @@ -8656,7 +8656,7 @@ lean_ctor_set_uint8(x_37, sizeof(void*)*1 + 6, x_36); lean_ctor_set(x_3, 0, x_37); x_38 = 1; lean_inc(x_3); -x_39 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_38, x_3, x_4); +x_39 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_38, x_3, x_4); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; @@ -8723,7 +8723,7 @@ lean_dec(x_42); x_48 = lean_ctor_get(x_46, 0); lean_inc(x_48); lean_dec(x_46); -x_49 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_44, x_48, x_5, x_3, x_41); +x_49 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_44, x_48, x_5, x_3, x_41); return x_49; } } @@ -8808,7 +8808,7 @@ lean_ctor_set(x_72, 3, x_60); lean_ctor_set(x_72, 4, x_61); x_73 = 1; lean_inc(x_72); -x_74 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_73, x_72, x_4); +x_74 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_73, x_72, x_4); if (lean_obj_tag(x_74) == 0) { lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; @@ -8875,7 +8875,7 @@ lean_dec(x_77); x_83 = lean_ctor_get(x_81, 0); lean_inc(x_83); lean_dec(x_81); -x_84 = l___private_Init_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_79, x_83, x_5, x_72, x_76); +x_84 = l___private_Lean_Meta_DiscrTree_15__getMatchAux___main___rarg(x_79, x_83, x_5, x_72, x_76); return x_84; } } @@ -8949,7 +8949,7 @@ lean_dec(x_2); return x_3; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -8969,7 +8969,7 @@ x_7 = lean_nat_add(x_3, x_4); x_8 = lean_unsigned_to_nat(2u); x_9 = lean_nat_div(x_7, x_8); lean_dec(x_7); -x_10 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_10 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_11 = lean_array_get(x_10, x_1, x_9); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); @@ -9030,15 +9030,15 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1(lean_object* x_1) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -9058,7 +9058,7 @@ x_7 = lean_nat_add(x_3, x_4); x_8 = lean_unsigned_to_nat(2u); x_9 = lean_nat_div(x_7, x_8); lean_dec(x_7); -x_10 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_10 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_11 = lean_array_get(x_10, x_1, x_9); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); @@ -9119,15 +9119,15 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2(lean_object* x_1) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -9147,7 +9147,7 @@ x_7 = lean_nat_add(x_3, x_4); x_8 = lean_unsigned_to_nat(2u); x_9 = lean_nat_div(x_7, x_8); lean_dec(x_7); -x_10 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_10 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_11 = lean_array_get(x_10, x_1, x_9); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); @@ -9208,15 +9208,15 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3(lean_object* x_1) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___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* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___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; uint8_t x_9; @@ -9250,7 +9250,7 @@ x_16 = l_Lean_Meta_DiscrTree_Key_arity(x_14); lean_dec(x_14); lean_inc(x_6); lean_inc(x_2); -x_17 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_16, x_2, x_15, x_5, x_6, x_7); +x_17 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_16, x_2, x_15, x_5, x_6, x_7); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; @@ -9292,15 +9292,15 @@ return x_24; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg___boxed), 7, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg___boxed), 7, 0); return x_2; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -9320,7 +9320,7 @@ x_7 = lean_nat_add(x_3, x_4); x_8 = lean_unsigned_to_nat(2u); x_9 = lean_nat_div(x_7, x_8); lean_dec(x_7); -x_10 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_10 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_11 = lean_array_get(x_10, x_1, x_9); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); @@ -9381,15 +9381,15 @@ goto _start; } } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5(lean_object* x_1) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___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) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___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; uint8_t x_10; @@ -9425,7 +9425,7 @@ x_18 = lean_nat_add(x_2, x_17); lean_dec(x_17); lean_inc(x_7); lean_inc(x_1); -x_19 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_18, x_1, x_16, x_6, x_7, x_8); +x_19 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_18, x_1, x_16, x_6, x_7, x_8); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; @@ -9467,15 +9467,15 @@ return x_26; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg___boxed), 8, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg___boxed), 8, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___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; uint8_t x_8; @@ -9494,7 +9494,7 @@ x_12 = l_Array_isEmpty___rarg(x_11); if (x_12 == 0) { lean_object* x_13; -x_13 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg(x_2, x_10, x_11, x_11, x_7, x_4, x_5, x_6); +x_13 = l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg(x_2, x_10, x_11, x_11, x_7, x_4, x_5, x_6); lean_dec(x_11); lean_dec(x_10); return x_13; @@ -9534,7 +9534,7 @@ x_19 = l_Array_back___at_Lean_Meta_DiscrTree_mkPathAux___main___spec__1(x_2); x_20 = lean_array_pop(x_2); x_21 = 0; lean_inc(x_5); -x_22 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_19, x_21, x_5, x_6); +x_22 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_19, x_21, x_5, x_6); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; @@ -9560,7 +9560,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean x_29 = lean_ctor_get(x_23, 1); x_30 = lean_ctor_get(x_23, 0); lean_dec(x_30); -x_31 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_31 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_32 = lean_array_get(x_31, x_16, x_7); x_33 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; lean_ctor_set(x_23, 1, x_33); @@ -9568,7 +9568,7 @@ x_34 = lean_array_get_size(x_16); x_35 = lean_unsigned_to_nat(1u); x_36 = lean_nat_sub(x_34, x_35); lean_dec(x_34); -x_37 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(x_16, x_23, x_7, x_36); +x_37 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(x_16, x_23, x_7, x_36); lean_dec(x_23); lean_dec(x_16); if (lean_obj_tag(x_37) == 0) @@ -9637,7 +9637,7 @@ lean_inc(x_50); lean_dec(x_32); lean_inc(x_5); lean_inc(x_20); -x_51 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_50, x_4, x_5, x_26); +x_51 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_50, x_4, x_5, x_26); if (lean_obj_tag(x_51) == 0) { lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; @@ -9693,7 +9693,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean x_61 = lean_ctor_get(x_23, 1); lean_inc(x_61); lean_dec(x_23); -x_62 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_62 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_63 = lean_array_get(x_62, x_16, x_7); x_64 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; x_65 = lean_alloc_ctor(0, 2, 0); @@ -9703,7 +9703,7 @@ x_66 = lean_array_get_size(x_16); x_67 = lean_unsigned_to_nat(1u); x_68 = lean_nat_sub(x_66, x_67); lean_dec(x_66); -x_69 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(x_16, x_65, x_7, x_68); +x_69 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(x_16, x_65, x_7, x_68); lean_dec(x_65); lean_dec(x_16); if (lean_obj_tag(x_69) == 0) @@ -9772,7 +9772,7 @@ lean_inc(x_82); lean_dec(x_63); lean_inc(x_5); lean_inc(x_20); -x_83 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_82, x_4, x_5, x_26); +x_83 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_82, x_4, x_5, x_26); if (lean_obj_tag(x_83) == 0) { lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; @@ -9841,7 +9841,7 @@ if (lean_is_exclusive(x_23)) { lean_dec_ref(x_23); x_95 = lean_box(0); } -x_96 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_96 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_97 = lean_array_get(x_96, x_16, x_7); x_98 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; if (lean_is_scalar(x_95)) { @@ -9855,7 +9855,7 @@ x_100 = lean_array_get_size(x_16); x_101 = lean_unsigned_to_nat(1u); x_102 = lean_nat_sub(x_100, x_101); lean_dec(x_100); -x_103 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(x_16, x_99, x_7, x_102); +x_103 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(x_16, x_99, x_7, x_102); lean_dec(x_99); lean_dec(x_16); if (lean_obj_tag(x_103) == 0) @@ -9925,7 +9925,7 @@ lean_inc(x_117); lean_dec(x_97); lean_inc(x_5); lean_inc(x_20); -x_118 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_117, x_4, x_5, x_93); +x_118 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_117, x_4, x_5, x_93); if (lean_obj_tag(x_118) == 0) { lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; @@ -9995,7 +9995,7 @@ lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; x_132 = lean_ctor_get(x_23, 1); x_133 = lean_ctor_get(x_23, 0); lean_dec(x_133); -x_134 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_134 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_135 = lean_array_get(x_134, x_16, x_7); x_136 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; lean_ctor_set(x_23, 1, x_136); @@ -10003,7 +10003,7 @@ x_137 = lean_array_get_size(x_16); x_138 = lean_unsigned_to_nat(1u); x_139 = lean_nat_sub(x_137, x_138); lean_dec(x_137); -x_140 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(x_16, x_23, x_7, x_139); +x_140 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(x_16, x_23, x_7, x_139); lean_dec(x_23); lean_dec(x_16); if (lean_obj_tag(x_140) == 0) @@ -10072,7 +10072,7 @@ lean_inc(x_153); lean_dec(x_135); lean_inc(x_5); lean_inc(x_20); -x_154 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_153, x_4, x_5, x_129); +x_154 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_153, x_4, x_5, x_129); if (lean_obj_tag(x_154) == 0) { lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; @@ -10128,7 +10128,7 @@ lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; x_164 = lean_ctor_get(x_23, 1); lean_inc(x_164); lean_dec(x_23); -x_165 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_165 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_166 = lean_array_get(x_165, x_16, x_7); x_167 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; x_168 = lean_alloc_ctor(0, 2, 0); @@ -10138,7 +10138,7 @@ x_169 = lean_array_get_size(x_16); x_170 = lean_unsigned_to_nat(1u); x_171 = lean_nat_sub(x_169, x_170); lean_dec(x_169); -x_172 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(x_16, x_168, x_7, x_171); +x_172 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(x_16, x_168, x_7, x_171); lean_dec(x_168); lean_dec(x_16); if (lean_obj_tag(x_172) == 0) @@ -10207,7 +10207,7 @@ lean_inc(x_185); lean_dec(x_166); lean_inc(x_5); lean_inc(x_20); -x_186 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_185, x_4, x_5, x_129); +x_186 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_185, x_4, x_5, x_129); if (lean_obj_tag(x_186) == 0) { lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; @@ -10276,7 +10276,7 @@ if (lean_is_exclusive(x_23)) { lean_dec_ref(x_23); x_198 = lean_box(0); } -x_199 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_199 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_200 = lean_array_get(x_199, x_16, x_7); x_201 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; if (lean_is_scalar(x_198)) { @@ -10290,7 +10290,7 @@ x_203 = lean_array_get_size(x_16); x_204 = lean_unsigned_to_nat(1u); x_205 = lean_nat_sub(x_203, x_204); lean_dec(x_203); -x_206 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(x_16, x_202, x_7, x_205); +x_206 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(x_16, x_202, x_7, x_205); lean_dec(x_202); lean_dec(x_16); if (lean_obj_tag(x_206) == 0) @@ -10360,7 +10360,7 @@ lean_inc(x_220); lean_dec(x_200); lean_inc(x_5); lean_inc(x_20); -x_221 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_220, x_4, x_5, x_196); +x_221 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_220, x_4, x_5, x_196); if (lean_obj_tag(x_221) == 0) { lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; @@ -10430,7 +10430,7 @@ lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; x_235 = lean_ctor_get(x_23, 1); x_236 = lean_ctor_get(x_23, 0); lean_dec(x_236); -x_237 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_237 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_238 = lean_array_get(x_237, x_16, x_7); x_239 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; lean_ctor_set(x_23, 1, x_239); @@ -10438,7 +10438,7 @@ x_240 = lean_array_get_size(x_16); x_241 = lean_unsigned_to_nat(1u); x_242 = lean_nat_sub(x_240, x_241); lean_dec(x_240); -x_243 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(x_16, x_23, x_7, x_242); +x_243 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(x_16, x_23, x_7, x_242); lean_dec(x_23); lean_dec(x_16); if (lean_obj_tag(x_243) == 0) @@ -10507,7 +10507,7 @@ lean_inc(x_256); lean_dec(x_238); lean_inc(x_5); lean_inc(x_20); -x_257 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_256, x_4, x_5, x_232); +x_257 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_256, x_4, x_5, x_232); if (lean_obj_tag(x_257) == 0) { lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; @@ -10563,7 +10563,7 @@ lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; x_267 = lean_ctor_get(x_23, 1); lean_inc(x_267); lean_dec(x_23); -x_268 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_268 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_269 = lean_array_get(x_268, x_16, x_7); x_270 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; x_271 = lean_alloc_ctor(0, 2, 0); @@ -10573,7 +10573,7 @@ x_272 = lean_array_get_size(x_16); x_273 = lean_unsigned_to_nat(1u); x_274 = lean_nat_sub(x_272, x_273); lean_dec(x_272); -x_275 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(x_16, x_271, x_7, x_274); +x_275 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(x_16, x_271, x_7, x_274); lean_dec(x_271); lean_dec(x_16); if (lean_obj_tag(x_275) == 0) @@ -10642,7 +10642,7 @@ lean_inc(x_288); lean_dec(x_269); lean_inc(x_5); lean_inc(x_20); -x_289 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_288, x_4, x_5, x_232); +x_289 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_288, x_4, x_5, x_232); if (lean_obj_tag(x_289) == 0) { lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; @@ -10711,7 +10711,7 @@ if (lean_is_exclusive(x_23)) { lean_dec_ref(x_23); x_301 = lean_box(0); } -x_302 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_302 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_303 = lean_array_get(x_302, x_16, x_7); x_304 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; if (lean_is_scalar(x_301)) { @@ -10725,7 +10725,7 @@ x_306 = lean_array_get_size(x_16); x_307 = lean_unsigned_to_nat(1u); x_308 = lean_nat_sub(x_306, x_307); lean_dec(x_306); -x_309 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(x_16, x_305, x_7, x_308); +x_309 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(x_16, x_305, x_7, x_308); lean_dec(x_305); lean_dec(x_16); if (lean_obj_tag(x_309) == 0) @@ -10795,7 +10795,7 @@ lean_inc(x_323); lean_dec(x_303); lean_inc(x_5); lean_inc(x_20); -x_324 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_323, x_4, x_5, x_299); +x_324 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_323, x_4, x_5, x_299); if (lean_obj_tag(x_324) == 0) { lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; @@ -10855,7 +10855,7 @@ lean_dec(x_23); x_334 = lean_ctor_get(x_22, 1); lean_inc(x_334); lean_dec(x_22); -x_335 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg(x_16, x_20, x_16, x_7, x_4, x_5, x_334); +x_335 = l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg(x_16, x_20, x_16, x_7, x_4, x_5, x_334); lean_dec(x_16); return x_335; } @@ -10876,7 +10876,7 @@ lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; x_340 = lean_ctor_get(x_23, 1); x_341 = lean_ctor_get(x_23, 0); lean_dec(x_341); -x_342 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_342 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_343 = lean_array_get(x_342, x_16, x_7); x_344 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; lean_ctor_set(x_23, 1, x_344); @@ -10884,7 +10884,7 @@ x_345 = lean_array_get_size(x_16); x_346 = lean_unsigned_to_nat(1u); x_347 = lean_nat_sub(x_345, x_346); lean_dec(x_345); -x_348 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(x_16, x_23, x_7, x_347); +x_348 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(x_16, x_23, x_7, x_347); lean_dec(x_23); lean_dec(x_16); if (lean_obj_tag(x_348) == 0) @@ -10953,7 +10953,7 @@ lean_inc(x_361); lean_dec(x_343); lean_inc(x_5); lean_inc(x_20); -x_362 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_361, x_4, x_5, x_337); +x_362 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_361, x_4, x_5, x_337); if (lean_obj_tag(x_362) == 0) { lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; @@ -11009,7 +11009,7 @@ lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; x_372 = lean_ctor_get(x_23, 1); lean_inc(x_372); lean_dec(x_23); -x_373 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_373 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_374 = lean_array_get(x_373, x_16, x_7); x_375 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; x_376 = lean_alloc_ctor(0, 2, 0); @@ -11019,7 +11019,7 @@ x_377 = lean_array_get_size(x_16); x_378 = lean_unsigned_to_nat(1u); x_379 = lean_nat_sub(x_377, x_378); lean_dec(x_377); -x_380 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(x_16, x_376, x_7, x_379); +x_380 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(x_16, x_376, x_7, x_379); lean_dec(x_376); lean_dec(x_16); if (lean_obj_tag(x_380) == 0) @@ -11088,7 +11088,7 @@ lean_inc(x_393); lean_dec(x_374); lean_inc(x_5); lean_inc(x_20); -x_394 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_393, x_4, x_5, x_337); +x_394 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_393, x_4, x_5, x_337); if (lean_obj_tag(x_394) == 0) { lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; @@ -11157,7 +11157,7 @@ if (lean_is_exclusive(x_23)) { lean_dec_ref(x_23); x_406 = lean_box(0); } -x_407 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_407 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_408 = lean_array_get(x_407, x_16, x_7); x_409 = l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1; if (lean_is_scalar(x_406)) { @@ -11171,7 +11171,7 @@ x_411 = lean_array_get_size(x_16); x_412 = lean_unsigned_to_nat(1u); x_413 = lean_nat_sub(x_411, x_412); lean_dec(x_411); -x_414 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(x_16, x_410, x_7, x_413); +x_414 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(x_16, x_410, x_7, x_413); lean_dec(x_410); lean_dec(x_16); if (lean_obj_tag(x_414) == 0) @@ -11241,7 +11241,7 @@ lean_inc(x_428); lean_dec(x_408); lean_inc(x_5); lean_inc(x_20); -x_429 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_428, x_4, x_5, x_404); +x_429 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_7, x_20, x_428, x_4, x_5, x_404); if (lean_obj_tag(x_429) == 0) { lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; @@ -11351,88 +11351,88 @@ return x_445; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg), 6, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg), 6, 0); return x_2; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__1___rarg(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__2___rarg(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__3___rarg(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__4___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); lean_dec(x_1); return x_8; } } -lean_object* l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_binSearchAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Array_binSearchAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__5___rarg(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Array_iterateMAux___main___at___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___spec__6___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_9; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_DiscrTree_17__getUnifyAux___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; -x_7 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux(lean_object* x_1) { +lean_object* l___private_Lean_Meta_DiscrTree_17__getUnifyAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___rarg), 6, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_DiscrTree_17__getUnifyAux___rarg), 6, 0); return x_2; } } @@ -11629,7 +11629,7 @@ x_15 = l_Lean_Meta_DiscrTree_Key_arity(x_13); lean_dec(x_13); x_16 = l_Array_empty___closed__1; lean_inc(x_5); -x_17 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_15, x_16, x_14, x_4, x_5, x_6); +x_17 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_15, x_16, x_14, x_4, x_5, x_6); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; @@ -11761,7 +11761,7 @@ x_15 = l_Lean_Meta_DiscrTree_Key_arity(x_11); lean_dec(x_11); x_16 = l_Array_empty___closed__1; lean_inc(x_6); -x_17 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_15, x_16, x_14, x_5, x_6, x_7); +x_17 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_15, x_16, x_14, x_5, x_6, x_7); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; @@ -11874,7 +11874,7 @@ x_8 = 2; lean_ctor_set_uint8(x_6, sizeof(void*)*1 + 6, x_8); x_9 = 0; lean_inc(x_3); -x_10 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_9, x_3, x_4); +x_10 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_9, x_3, x_4); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; @@ -11917,7 +11917,7 @@ block_23: lean_object* x_17; lean_object* x_18; lean_dec(x_16); lean_inc(x_1); -x_17 = l___private_Init_Lean_Meta_DiscrTree_16__getStarResult___rarg(x_1); +x_17 = l___private_Lean_Meta_DiscrTree_16__getStarResult___rarg(x_1); x_18 = l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getUnify___spec__1___rarg(x_1, x_14); lean_dec(x_14); if (lean_obj_tag(x_18) == 0) @@ -11942,7 +11942,7 @@ x_20 = lean_ctor_get(x_18, 0); lean_inc(x_20); lean_dec(x_18); x_21 = lean_unsigned_to_nat(0u); -x_22 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_21, x_15, x_20, x_17, x_3, x_12); +x_22 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_21, x_15, x_20, x_17, x_3, x_12); return x_22; } } @@ -11997,7 +11997,7 @@ lean_ctor_set_uint8(x_39, sizeof(void*)*1 + 6, x_38); lean_ctor_set(x_3, 0, x_39); x_40 = 0; lean_inc(x_3); -x_41 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_40, x_3, x_4); +x_41 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_40, x_3, x_4); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; @@ -12040,7 +12040,7 @@ block_54: lean_object* x_48; lean_object* x_49; lean_dec(x_47); lean_inc(x_1); -x_48 = l___private_Init_Lean_Meta_DiscrTree_16__getStarResult___rarg(x_1); +x_48 = l___private_Lean_Meta_DiscrTree_16__getStarResult___rarg(x_1); x_49 = l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getUnify___spec__1___rarg(x_1, x_45); lean_dec(x_45); if (lean_obj_tag(x_49) == 0) @@ -12065,7 +12065,7 @@ x_51 = lean_ctor_get(x_49, 0); lean_inc(x_51); lean_dec(x_49); x_52 = lean_unsigned_to_nat(0u); -x_53 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_52, x_46, x_51, x_48, x_3, x_43); +x_53 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_52, x_46, x_51, x_48, x_3, x_43); return x_53; } } @@ -12149,7 +12149,7 @@ lean_ctor_set(x_77, 3, x_65); lean_ctor_set(x_77, 4, x_66); x_78 = 0; lean_inc(x_77); -x_79 = l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_78, x_77, x_4); +x_79 = l___private_Lean_Meta_DiscrTree_12__getKeyArgs(x_2, x_78, x_77, x_4); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; @@ -12192,7 +12192,7 @@ block_92: lean_object* x_86; lean_object* x_87; lean_dec(x_85); lean_inc(x_1); -x_86 = l___private_Init_Lean_Meta_DiscrTree_16__getStarResult___rarg(x_1); +x_86 = l___private_Lean_Meta_DiscrTree_16__getStarResult___rarg(x_1); x_87 = l_PersistentHashMap_find_x3f___at_Lean_Meta_DiscrTree_getUnify___spec__1___rarg(x_1, x_83); lean_dec(x_83); if (lean_obj_tag(x_87) == 0) @@ -12217,7 +12217,7 @@ x_89 = lean_ctor_get(x_87, 0); lean_inc(x_89); lean_dec(x_87); x_90 = lean_unsigned_to_nat(0u); -x_91 = l___private_Init_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_90, x_84, x_89, x_86, x_77, x_81); +x_91 = l___private_Lean_Meta_DiscrTree_17__getUnifyAux___main___rarg(x_90, x_84, x_89, x_86, x_77, x_81); return x_91; } } @@ -12329,21 +12329,21 @@ lean_dec(x_1); return x_5; } } -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); -lean_object* initialize_Init_Lean_Meta_FunInfo(lean_object*); -lean_object* initialize_Init_Lean_Meta_InferType(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_FunInfo(lean_object*); +lean_object* initialize_Lean_Meta_InferType(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_DiscrTree(lean_object* w) { +lean_object* initialize_Lean_Meta_DiscrTree(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_FunInfo(lean_io_mk_world()); +res = initialize_Lean_Meta_FunInfo(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_InferType(lean_io_mk_world()); +res = initialize_Lean_Meta_InferType(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_DiscrTree_Key_hasLess = _init_l_Lean_Meta_DiscrTree_Key_hasLess(); @@ -12364,44 +12364,44 @@ l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1 = _init_l_Lean_Meta_DiscrTree_T lean_mark_persistent(l_Lean_Meta_DiscrTree_Trie_inhabited___closed__1); l_Lean_Meta_DiscrTree_empty___closed__1 = _init_l_Lean_Meta_DiscrTree_empty___closed__1(); lean_mark_persistent(l_Lean_Meta_DiscrTree_empty___closed__1); -l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1 = _init_l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1); -l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2 = _init_l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2); -l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId = _init_l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_1__tmpMVarId); -l___private_Init_Lean_Meta_DiscrTree_2__tmpStar___closed__1 = _init_l___private_Init_Lean_Meta_DiscrTree_2__tmpStar___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_2__tmpStar___closed__1); -l___private_Init_Lean_Meta_DiscrTree_2__tmpStar = _init_l___private_Init_Lean_Meta_DiscrTree_2__tmpStar(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_2__tmpStar); -l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1 = _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1); -l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2 = _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2); -l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3 = _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3); -l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4 = _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4); -l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5 = _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5); -l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6 = _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6); -l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7 = _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7); -l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8 = _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8); -l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9 = _init_l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9); -l___private_Init_Lean_Meta_DiscrTree_8__initCapacity = _init_l___private_Init_Lean_Meta_DiscrTree_8__initCapacity(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_8__initCapacity); +l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1 = _init_l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__1); +l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2 = _init_l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_1__tmpMVarId___closed__2); +l___private_Lean_Meta_DiscrTree_1__tmpMVarId = _init_l___private_Lean_Meta_DiscrTree_1__tmpMVarId(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_1__tmpMVarId); +l___private_Lean_Meta_DiscrTree_2__tmpStar___closed__1 = _init_l___private_Lean_Meta_DiscrTree_2__tmpStar___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_2__tmpStar___closed__1); +l___private_Lean_Meta_DiscrTree_2__tmpStar = _init_l___private_Lean_Meta_DiscrTree_2__tmpStar(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_2__tmpStar); +l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1 = _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__1); +l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2 = _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__2); +l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3 = _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__3); +l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4 = _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__4); +l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5 = _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__5); +l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6 = _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__6); +l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7 = _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__7); +l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8 = _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__8); +l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9 = _init_l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_6__shouldAddAsStar___closed__9); +l___private_Lean_Meta_DiscrTree_8__initCapacity = _init_l___private_Lean_Meta_DiscrTree_8__initCapacity(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_8__initCapacity); l_Lean_Meta_DiscrTree_mkPath___closed__1 = _init_l_Lean_Meta_DiscrTree_mkPath___closed__1(); lean_mark_persistent(l_Lean_Meta_DiscrTree_mkPath___closed__1); -l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1 = _init_l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1(); -lean_mark_persistent(l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1); -l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2 = _init_l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2(); -lean_mark_persistent(l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2); -l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1 = _init_l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1); +l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1 = _init_l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1(); +lean_mark_persistent(l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__1); +l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2 = _init_l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2(); +lean_mark_persistent(l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2); +l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1 = _init_l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1(); +lean_mark_persistent(l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1); l_Lean_Meta_DiscrTree_insertCore___rarg___closed__1 = _init_l_Lean_Meta_DiscrTree_insertCore___rarg___closed__1(); lean_mark_persistent(l_Lean_Meta_DiscrTree_insertCore___rarg___closed__1); l_Lean_Meta_DiscrTree_insertCore___rarg___closed__2 = _init_l_Lean_Meta_DiscrTree_insertCore___rarg___closed__2(); @@ -12422,10 +12422,10 @@ l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__3 = _init_l_Lean_Meta_ lean_mark_persistent(l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__3); l_Lean_Meta_DiscrTree_format___rarg___closed__1 = _init_l_Lean_Meta_DiscrTree_format___rarg___closed__1(); lean_mark_persistent(l_Lean_Meta_DiscrTree_format___rarg___closed__1); -l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1 = _init_l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1); -l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2 = _init_l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2); +l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1 = _init_l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__1); +l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2 = _init_l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_12__getKeyArgs___closed__2); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/Meta/DiscrTreeTypes.c b/stage0/stdlib/Lean/Meta/DiscrTreeTypes.c similarity index 96% rename from stage0/stdlib/Init/Lean/Meta/DiscrTreeTypes.c rename to stage0/stdlib/Lean/Meta/DiscrTreeTypes.c index 7fa12d9666..57749f7955 100644 --- a/stage0/stdlib/Init/Lean/Meta/DiscrTreeTypes.c +++ b/stage0/stdlib/Lean/Meta/DiscrTreeTypes.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.DiscrTreeTypes -// Imports: Init.Lean.Expr +// Module: Lean.Meta.DiscrTreeTypes +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -256,13 +256,13 @@ x_1 = l_Lean_Meta_DiscrTree_Key_hasBeq___closed__1; return x_1; } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_DiscrTreeTypes(lean_object* w) { +lean_object* initialize_Lean_Meta_DiscrTreeTypes(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_DiscrTree_Key_inhabited = _init_l_Lean_Meta_DiscrTree_Key_inhabited(); diff --git a/stage0/stdlib/Init/Lean/Meta/Exception.c b/stage0/stdlib/Lean/Meta/Exception.c similarity index 99% rename from stage0/stdlib/Init/Lean/Meta/Exception.c rename to stage0/stdlib/Lean/Meta/Exception.c index 966ca0bea4..f33f535d24 100644 --- a/stage0/stdlib/Init/Lean/Meta/Exception.c +++ b/stage0/stdlib/Lean/Meta/Exception.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Exception -// Imports: Init.Lean.Environment Init.Lean.MetavarContext Init.Lean.Message Init.Lean.Util.PPGoal +// Module: Lean.Meta.Exception +// Imports: Lean.Environment Lean.MetavarContext Lean.Message Lean.Util.PPGoal #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -2025,25 +2025,25 @@ return x_165; } } } -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_MetavarContext(lean_object*); -lean_object* initialize_Init_Lean_Message(lean_object*); -lean_object* initialize_Init_Lean_Util_PPGoal(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_MetavarContext(lean_object*); +lean_object* initialize_Lean_Message(lean_object*); +lean_object* initialize_Lean_Util_PPGoal(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Exception(lean_object* w) { +lean_object* initialize_Lean_Meta_Exception(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_MetavarContext(lean_io_mk_world()); +res = initialize_Lean_MetavarContext(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Message(lean_io_mk_world()); +res = initialize_Lean_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_PPGoal(lean_io_mk_world()); +res = initialize_Lean_Util_PPGoal(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_Exception_Inhabited___closed__1 = _init_l_Lean_Meta_Exception_Inhabited___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/ExprDefEq.c b/stage0/stdlib/Lean/Meta/ExprDefEq.c similarity index 92% rename from stage0/stdlib/Init/Lean/Meta/ExprDefEq.c rename to stage0/stdlib/Lean/Meta/ExprDefEq.c index bd278c347f..4881938e55 100644 --- a/stage0/stdlib/Init/Lean/Meta/ExprDefEq.c +++ b/stage0/stdlib/Lean/Meta/ExprDefEq.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.ExprDefEq -// Imports: Init.Lean.ProjFns Init.Lean.Meta.WHNF Init.Lean.Meta.InferType Init.Lean.Meta.FunInfo Init.Lean.Meta.LevelDefEq Init.Lean.Meta.Check Init.Lean.Meta.Offset +// Module: Lean.Meta.ExprDefEq +// Imports: Lean.ProjFns Lean.Meta.WHNF Lean.Meta.InferType Lean.Meta.FunInfo Lean.Meta.LevelDefEq Lean.Meta.Check Lean.Meta.Offset #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,390 +13,390 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignmentQuick_check___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___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* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__51; lean_object* l_Lean_Meta_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_forall(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___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_array_set(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_47__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_43__isDefEqWHNF(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_CheckAssignmentQuick_check___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Closure_visitExpr___spec__1(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_11__visit(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; lean_object* l_HashMapImp_insert___at_Lean_Closure_visitExpr___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2; +lean_object* l___private_Lean_Meta_ExprDefEq_46__consumeLet___boxed(lean_object*); lean_object* l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__2; lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_28__unfoldBothDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); lean_object* l_Lean_Meta_isClassExpensive___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_27__unfold(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_38__isAssignable___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDefEqStringLit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Meta_CheckAssignment_check___main___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setIsExprDefEqAuxRef(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2; -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9; lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_checkAssignment___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_mdata(lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isExprDefEq___closed__2; -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +uint8_t l___private_Lean_Meta_ExprDefEq_29__sameHeadSymbol(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4; +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateMData_x21___closed__2; lean_object* l_Lean_Meta_checkAssignmentAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_back___at___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_10__cache___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1; lean_object* l_Lean_Meta_CheckAssignment_checkFVar(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +extern lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_get_expr_assignment(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_CheckAssignment_check___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkMVar(lean_object*); lean_object* l_Lean_Meta_isClassQuick___main(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Meta_isExprDefEqAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDefEqBindingDomain___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_27__unfold(lean_object*); lean_object* l_Lean_Meta_isProofQuick___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7; lean_object* l_Lean_Meta_checkAssignmentAux(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_35__isAssigned(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_1__isDefEqEta(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_arrayExpr_toMessageData___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Substring_HasQuote___closed__2; +lean_object* l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_checkFVar___at_Lean_Meta_CheckAssignment_check___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_Lean_MonadCache; -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___boxed(lean_object*); uint8_t l_Lean_LocalContext_containsFVar(lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_liftMetaM___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_12__processPostponed(lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_findFVar_x3f(lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_13__visit(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeCorrect(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1; lean_object* l_Lean_Expr_getAppFn___main(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2; extern lean_object* l_Lean_Expr_getAppArgs___closed__1; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDefEqNative(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___at_Lean_Meta_unfoldDefinition_x3f___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isLevelDefEqAux___main___closed__5; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_contains___at_Lean_Meta_CheckAssignment_check___main___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_21__isDeltaCandidate___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isReducible(lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__1; uint8_t l_Lean_LocalContext_contains(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +lean_object* l___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isLevelDefEqAux___main___closed__3; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_7__isDefEqBinding___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqAuxImpl(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8; uint8_t l_Lean_Environment_isProjectionFn(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_7__isDefEqBinding(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateLambdaE_x21___closed__1; lean_object* l_Lean_Meta_commitWhen___at_Lean_Meta_isExprDefEqAuxImpl___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit(lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_21__isDeltaCandidate___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; +lean_object* l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); uint8_t lean_metavar_ctx_is_expr_assigned(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___main(lean_object*); -lean_object* l_Array_back___at___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(lean_object*); lean_object* l_Lean_Meta_isClass(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9; +lean_object* l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_assignToConstFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_check(lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_checkAssignment___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_17__simpAssignmentArg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2; +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9; lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; lean_object* lean_expr_instantiate_rev_range(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDefEqBindingDomain(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4; lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isTypeCorrect___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_22__isListLevelDefEq(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_4__trySynthPending(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_constLevels_x21(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2; extern lean_object* l_Lean_Meta_isTypeCorrect___closed__1; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4; +lean_object* l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8; uint8_t l_Lean_Literal_beq(lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqAuxImpl___closed__1; lean_object* l_Lean_Meta_isLevelDefEqAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqAuxImpl___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6; -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_CheckAssignmentQuick_check___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasExprMVar(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_iterateMAux___main___at_Lean_ppGoal___spec__6___closed__4; -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_formatEntry___closed__2; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_44__unstuckMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7; lean_object* l_Array_contains___at_Lean_Meta_CheckAssignment_check___main___spec__2___boxed(lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2; +lean_object* l___private_Lean_Meta_ExprDefEq_22__isListLevelDefEq(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_38__isAssignable(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_name(lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3; +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7; +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1; extern lean_object* l_Lean_MessageData_coeOfArrayExpr___closed__2; lean_object* l_Lean_Meta_isDefEqOffset(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_CheckAssignment_check___main___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3; +lean_object* l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4; +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint64_t, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +lean_object* l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +lean_object* l_Array_back___at___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(lean_object*); lean_object* l_Lean_Meta_CheckAssignment_checkMVar___at_Lean_Meta_CheckAssignment_check___main___spec__4(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3; +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentArray_empty___closed__3; +lean_object* l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_checkMVar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_mkAuxMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isEtaUnassignedMVar___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_43__isDefEqWHNF___at_Lean_Meta_isExprDefEqAuxImpl___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_assignExpr(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDefEqStringLit___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_26__tryHeuristic(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1; extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__4; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_7__isDefEqBinding(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_47__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_46__consumeLet___main___boxed(lean_object*); uint8_t l_Lean_Meta_TransparencyMode_beq(uint8_t, uint8_t); +lean_object* l___private_Lean_Meta_ExprDefEq_13__visit(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_commitWhen___at_Lean_Meta_isExprDefEqAuxImpl___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_37__isSynthetic(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_40__isLetFVar(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5; +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5; +lean_object* l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_11__visit(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3; +lean_object* l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isEtaUnassignedMVar(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLambda(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshId___rarg(lean_object*); lean_object* l_Lean_Meta_whenUndefDo(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_CheckAssignment_assignToConstFun___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* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_18__processConstApprox(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_27__unfold___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_checkAssignment(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDefEqBindingDomain___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_let(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isForall(lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(lean_object*); lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_43__isDefEqWHNF(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_hints(lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_CheckAssignment_check___main___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_4__trySynthPending(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2; uint8_t l_Lean_Expr_isLambda(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_9__findCached_x3f___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3; +lean_object* l___private_Lean_Meta_ExprDefEq_37__isSynthetic(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_proj(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_contains___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1; +lean_object* l_Array_back___at___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1___boxed(lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_10__cache(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstances___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateProj_x21___closed__2; +lean_object* l___private_Lean_Meta_ExprDefEq_46__consumeLet(lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_35__isAssigned___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDelayedAssigned___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDefEqBindingDomain___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_37__isSynthetic___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isListLevelDefEqAux___main(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_CheckAssignmentQuick_check___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* l_Lean_LocalDecl_value_x3f(lean_object*); lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_38__isAssignable(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3; lean_object* l_Lean_Meta_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_CheckAssignmentQuick_check___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3; lean_object* l_Lean_Meta_CheckAssignment_getMCtx(lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MetavarKind_isSyntheticOpaque(uint8_t); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___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_WHNF_whnfCore___main___at_Lean_Meta_whnfCore___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_ParamInfo_inhabited; +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6; +lean_object* l___private_Lean_Meta_ExprDefEq_5__isDefEqArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLocalDecl(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5; +lean_object* l___private_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isMVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_getStuckMVar_x3f___main___at_Lean_Meta_getStuckMVar_x3f___spec__1(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6; lean_object* l_Lean_mkApp(lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_37__isSynthetic___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_22__isListLevelDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_42__isDefEqProofIrrel(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4; +lean_object* l___private_Lean_Meta_ExprDefEq_29__sameHeadSymbol___boxed(lean_object*, lean_object*); lean_object* lean_metavar_ctx_mk_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); extern uint8_t l_Bool_Inhabited; lean_object* l_Lean_Meta_getConstAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignmentQuick_check(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2; -extern lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; +uint8_t l___private_Lean_Meta_ExprDefEq_39__etaEq(lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Bool_toLBool(uint8_t); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_synthPending(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_CheckAssignment_check___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isExprDefEqAuxRef; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; lean_object* l_Lean_Meta_CheckAssignmentQuick_check___main(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_liftMetaM(lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_check___main(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Meta_ExprDefEq_29__sameHeadSymbol(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3; +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9; +lean_object* l___private_Lean_Meta_ExprDefEq_43__isDefEqWHNF___at_Lean_Meta_isExprDefEqAuxImpl___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_28__unfoldBothDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5; lean_object* l_Lean_Meta_getFunInfoNArgs(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_find_decl(lean_object*, lean_object*); uint8_t l_Lean_Expr_isFVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_17__simpAssignmentArg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_whnfImpl___main___spec__1___closed__1; +lean_object* l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_42__isDefEqProofIrrel(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateLet_x21___closed__1; lean_object* lean_expr_update_lambda(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_38__isAssignable___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); uint8_t l_Lean_Meta_TransparencyMode_lt(uint8_t, uint8_t); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_prodToExpr___rarg___lambda__1___closed__3; lean_object* l_Lean_Meta_isDelayedAssigned(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2; +lean_object* l___private_Lean_Expr_9__etaExpandedAux___main(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited; uint8_t l_Lean_Expr_isStringLit(lean_object*); lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3(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_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_22__isListLevelDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_10__cache___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; lean_object* l_Lean_Meta_CheckAssignment_mkAuxMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_21__isDeltaCandidate(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_10__cache(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__3; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNative_x3f(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3; lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Meta_ExprDefEq_39__etaEq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_35__isAssigned(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_getMCtx___boxed(lean_object*); lean_object* l_Lean_Meta_setIsExprDefEqAuxRef___closed__1; -lean_object* l___private_Init_Lean_Expr_9__etaExpandedAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5; lean_object* l_Lean_Meta_isDefEqNat(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_35__isAssigned___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___main___boxed(lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4; lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isReadOnlyOrSyntheticOpaqueExprMVar(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet(lean_object*); lean_object* l_Lean_Meta_commitWhen___at_Lean_Meta_isExprDefEqAuxImpl___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find(lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint64_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_21__isDeltaCandidate(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_7__isDefEqBinding___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_46__consumeLet___main(lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_HashMap_Inhabited___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2; lean_object* l_Lean_Meta_CheckAssignmentQuick_check___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_HasBeq; +lean_object* l___private_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkBVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasFVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_29__sameHeadSymbol___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_39__etaEq___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4; -lean_object* l___private_Init_Lean_Meta_ExprDefEq_27__unfold___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_39__etaEq___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_40__isLetFVar(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_20__processAssignment(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1; +lean_object* l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateForallE_x21___closed__1; lean_object* lean_name_mk_numeral(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalContext_isSubPrefixOf(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_CheckAssignment_getMCtx___rarg(lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_CheckAssignment_check___main___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7; uint8_t l_Lean_ReducibilityHints_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2; +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1; uint8_t l_Lean_LocalDecl_isLet(lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* _init_l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1() { +lean_object* l___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* _init_l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -405,12 +405,12 @@ x_2 = l_Lean_mkBVar(x_1); return x_2; } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint64_t x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint64_t x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_8 = (uint8_t)((x_5 << 24) >> 61); -x_9 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; +x_9 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1; x_10 = l_Lean_mkApp(x_2, x_9); x_11 = l_Lean_mkLambda(x_3, x_8, x_4, x_10); x_12 = !lean_is_exclusive(x_7); @@ -468,7 +468,7 @@ lean_dec(x_26); x_34 = lean_ctor_get(x_25, 1); lean_inc(x_34); lean_dec(x_25); -x_35 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_34); +x_35 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_34); if (lean_obj_tag(x_35) == 0) { lean_object* x_36; uint8_t x_37; @@ -654,7 +654,7 @@ lean_dec(x_68); x_75 = lean_ctor_get(x_67, 1); lean_inc(x_75); lean_dec(x_67); -x_76 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_75); +x_76 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_75); if (lean_obj_tag(x_76) == 0) { lean_object* x_77; uint8_t x_78; @@ -769,7 +769,7 @@ return x_63; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_1__isDefEqEta(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -824,7 +824,7 @@ x_17 = lean_ctor_get(x_14, 1); lean_inc(x_17); x_18 = lean_ctor_get_uint64(x_14, sizeof(void*)*3); lean_dec(x_14); -x_19 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1(x_1, x_2, x_16, x_17, x_18, x_3, x_15); +x_19 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1(x_1, x_2, x_16, x_17, x_18, x_3, x_15); lean_dec(x_16); return x_19; } @@ -929,13 +929,13 @@ return x_38; } } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___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* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint64_t x_8; lean_object* x_9; x_8 = lean_unbox_uint64(x_5); lean_dec(x_5); -x_9 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1(x_1, x_2, x_3, x_4, x_8, x_6, x_7); +x_9 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1(x_1, x_2, x_3, x_4, x_8, x_6, x_7); lean_dec(x_3); return x_9; } @@ -1936,7 +1936,7 @@ _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l___private_Init_Lean_Expr_9__etaExpandedAux___main(x_1, x_4); +x_5 = l___private_Lean_Expr_9__etaExpandedAux___main(x_1, x_4); if (lean_obj_tag(x_5) == 0) { uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -2102,7 +2102,7 @@ lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -2523,37 +2523,37 @@ return x_38; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(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; @@ -2653,35 +2653,35 @@ return x_28; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(x_1, x_2, lean_box(0), x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(x_1, x_2, lean_box(0), x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_4__trySynthPending(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_4__trySynthPending(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -2759,7 +2759,7 @@ return x_20; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; uint8_t x_18; @@ -2798,7 +2798,7 @@ else lean_object* x_100; lean_inc(x_8); lean_inc(x_24); -x_100 = l___private_Init_Lean_Meta_ExprDefEq_4__trySynthPending(x_24, x_8, x_9); +x_100 = l___private_Lean_Meta_ExprDefEq_4__trySynthPending(x_24, x_8, x_9); if (lean_obj_tag(x_100) == 0) { lean_object* x_101; lean_object* x_102; @@ -2807,7 +2807,7 @@ lean_inc(x_101); lean_dec(x_100); lean_inc(x_8); lean_inc(x_25); -x_102 = l___private_Init_Lean_Meta_ExprDefEq_4__trySynthPending(x_25, x_8, x_101); +x_102 = l___private_Lean_Meta_ExprDefEq_4__trySynthPending(x_25, x_8, x_101); if (lean_obj_tag(x_102) == 0) { lean_object* x_103; @@ -3219,7 +3219,7 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_5__isDefEqArgs(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; uint8_t x_8; @@ -3259,7 +3259,7 @@ lean_dec(x_13); x_16 = lean_unsigned_to_nat(0u); x_17 = l_Array_empty___closed__1; lean_inc(x_4); -x_18 = l___private_Init_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(x_15, x_2, x_3, x_16, x_17, x_4, x_14); +x_18 = l___private_Lean_Meta_ExprDefEq_2__isDefEqArgsFirstPass___main(x_15, x_2, x_3, x_16, x_17, x_4, x_14); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; @@ -3306,7 +3306,7 @@ lean_inc(x_29); lean_dec(x_19); x_30 = lean_array_get_size(x_15); lean_inc(x_4); -x_31 = l___private_Init_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(x_2, x_3, lean_box(0), x_30, x_4, x_28); +x_31 = l___private_Lean_Meta_ExprDefEq_3__isDefEqArgsAux___main(x_2, x_3, lean_box(0), x_30, x_4, x_28); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; uint8_t x_33; @@ -3347,7 +3347,7 @@ x_38 = lean_ctor_get(x_31, 1); lean_inc(x_38); lean_dec(x_31); x_39 = lean_array_get_size(x_29); -x_40 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1(x_2, x_3, x_15, x_29, x_29, x_39, x_16, x_4, x_38); +x_40 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1(x_2, x_3, x_15, x_29, x_29, x_39, x_16, x_4, x_38); lean_dec(x_39); lean_dec(x_29); lean_dec(x_15); @@ -3517,11 +3517,11 @@ return x_74; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___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* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -3531,11 +3531,11 @@ lean_dec(x_1); return x_10; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_ExprDefEq_5__isDefEqArgs(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; @@ -4799,7 +4799,7 @@ lean_dec(x_1); return x_7; } } -lean_object* l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; @@ -4933,7 +4933,7 @@ lean_ctor_set(x_46, 0, x_36); lean_ctor_set(x_46, 1, x_14); x_47 = lean_array_push(x_45, x_46); lean_ctor_set(x_7, 2, x_47); -x_48 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_38, x_7, x_35); +x_48 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_38, x_7, x_35); if (lean_obj_tag(x_48) == 0) { lean_object* x_49; lean_object* x_50; uint8_t x_51; @@ -5293,7 +5293,7 @@ lean_ctor_set(x_130, 1, x_124); lean_ctor_set(x_130, 2, x_129); lean_ctor_set(x_130, 3, x_126); lean_ctor_set(x_130, 4, x_127); -x_131 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_38, x_130, x_35); +x_131 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_38, x_130, x_35); if (lean_obj_tag(x_131) == 0) { lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; @@ -5518,7 +5518,7 @@ lean_ctor_set(x_180, 1, x_173); lean_ctor_set(x_180, 2, x_179); lean_ctor_set(x_180, 3, x_175); lean_ctor_set(x_180, 4, x_176); -x_181 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_38, x_180, x_35); +x_181 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_38, x_180, x_35); if (lean_obj_tag(x_181) == 0) { lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; @@ -5775,7 +5775,7 @@ lean_ctor_set(x_238, 1, x_231); lean_ctor_set(x_238, 2, x_237); lean_ctor_set(x_238, 3, x_233); lean_ctor_set(x_238, 4, x_234); -x_239 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_38, x_238, x_229); +x_239 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_38, x_238, x_229); if (lean_obj_tag(x_239) == 0) { lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; 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; @@ -6029,7 +6029,7 @@ return x_285; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(lean_object* x_1, 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; @@ -6144,7 +6144,7 @@ x_10 = lean_ctor_get(x_6, 1); lean_dec(x_10); lean_ctor_set(x_6, 1, x_1); x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_2, x_3, x_4, x_2, x_5, x_11, x_6, x_7); +x_12 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_2, x_3, x_4, x_2, x_5, x_11, x_6, x_7); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); @@ -6169,7 +6169,7 @@ lean_ctor_set(x_17, 2, x_14); lean_ctor_set(x_17, 3, x_15); lean_ctor_set(x_17, 4, x_16); x_18 = lean_unsigned_to_nat(0u); -x_19 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_2, x_3, x_4, x_2, x_5, x_18, x_17, x_7); +x_19 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_2, x_3, x_4, x_2, x_5, x_18, x_17, x_7); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); @@ -6178,11 +6178,11 @@ return x_19; } } } -lean_object* l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___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* l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Meta_isDefEqBindingDomain___main___at___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -6191,53 +6191,53 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); return x_8; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); return x_8; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_7__isDefEqBinding(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_7__isDefEqBinding(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; x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); x_6 = l_Array_empty___closed__1; -x_7 = l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(x_5, x_6, x_1, x_2, x_6, x_3, x_4); +x_7 = l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(x_5, x_6, x_1, x_2, x_6, x_3, x_4); return x_7; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_7__isDefEqBinding___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_7__isDefEqBinding___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___private_Init_Lean_Meta_ExprDefEq_7__isDefEqBinding(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_ExprDefEq_7__isDefEqBinding(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1() { _start: { lean_object* x_1; @@ -6245,17 +6245,17 @@ x_1 = lean_mk_string("assign"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Meta_isExprDefEq___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1; +x_2 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3() { _start: { lean_object* x_1; @@ -6263,17 +6263,17 @@ x_1 = lean_mk_string("checkTypes"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3; +x_1 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5() { _start: { lean_object* x_1; @@ -6281,17 +6281,17 @@ x_1 = lean_mk_string("typeMismatch"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5; +x_1 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -6301,7 +6301,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -6311,7 +6311,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9() { _start: { lean_object* x_1; @@ -6319,17 +6319,17 @@ x_1 = lean_mk_string("final"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9; +x_1 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; lean_object* x_645; uint8_t x_646; @@ -6348,8 +6348,8 @@ goto block_644; else { lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; uint8_t x_652; -x_648 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4; -x_649 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_648, x_3, x_4); +x_648 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4; +x_649 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_648, x_3, x_4); x_650 = lean_ctor_get(x_649, 0); lean_inc(x_650); x_651 = lean_ctor_get(x_649, 1); @@ -6458,8 +6458,8 @@ goto block_35; else { lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; -x_78 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; -x_79 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_78, x_3, x_74); +x_78 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; +x_79 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_78, x_3, x_74); x_80 = lean_ctor_get(x_79, 0); lean_inc(x_80); x_81 = lean_unbox(x_80); @@ -6489,7 +6489,7 @@ lean_inc(x_84); lean_dec(x_79); x_85 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_85, 0, x_1); -x_86 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_86 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_87 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_87, 0, x_85); lean_ctor_set(x_87, 1, x_86); @@ -6498,7 +6498,7 @@ lean_ctor_set(x_88, 0, x_58); x_89 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_89, 0, x_87); lean_ctor_set(x_89, 1, x_88); -x_90 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_90 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_91 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_91, 0, x_89); lean_ctor_set(x_91, 1, x_90); @@ -6576,8 +6576,8 @@ goto block_56; else { lean_object* x_109; lean_object* x_110; lean_object* x_111; uint8_t x_112; -x_109 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; -x_110 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_109, x_3, x_100); +x_109 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; +x_110 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_109, x_3, x_100); x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); x_112 = lean_unbox(x_111); @@ -6625,7 +6625,7 @@ lean_inc(x_119); lean_dec(x_110); x_120 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_120, 0, x_1); -x_121 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_121 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_122 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_122, 0, x_120); lean_ctor_set(x_122, 1, x_121); @@ -6752,8 +6752,8 @@ goto block_35; else { lean_object* x_151; lean_object* x_152; lean_object* x_153; uint8_t x_154; -x_151 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; -x_152 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_151, x_3, x_147); +x_151 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; +x_152 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_151, x_3, x_147); x_153 = lean_ctor_get(x_152, 0); lean_inc(x_153); x_154 = lean_unbox(x_153); @@ -6783,7 +6783,7 @@ lean_inc(x_157); lean_dec(x_152); x_158 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_158, 0, x_1); -x_159 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_159 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_160 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_160, 0, x_158); lean_ctor_set(x_160, 1, x_159); @@ -6792,7 +6792,7 @@ lean_ctor_set(x_161, 0, x_58); x_162 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_162, 0, x_160); lean_ctor_set(x_162, 1, x_161); -x_163 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_163 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_164 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_164, 0, x_162); lean_ctor_set(x_164, 1, x_163); @@ -6870,8 +6870,8 @@ goto block_56; else { lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; -x_182 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; -x_183 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_182, x_3, x_173); +x_182 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; +x_183 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_182, x_3, x_173); x_184 = lean_ctor_get(x_183, 0); lean_inc(x_184); x_185 = lean_unbox(x_184); @@ -6919,7 +6919,7 @@ lean_inc(x_192); lean_dec(x_183); x_193 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_193, 0, x_1); -x_194 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_194 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_195 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_195, 0, x_193); lean_ctor_set(x_195, 1, x_194); @@ -7292,8 +7292,8 @@ goto block_230; else { lean_object* x_275; lean_object* x_276; lean_object* x_277; uint8_t x_278; -x_275 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; -x_276 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_275, x_3, x_271); +x_275 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; +x_276 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_275, x_3, x_271); x_277 = lean_ctor_get(x_276, 0); lean_inc(x_277); x_278 = lean_unbox(x_277); @@ -7323,7 +7323,7 @@ lean_inc(x_281); lean_dec(x_276); x_282 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_282, 0, x_1); -x_283 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_283 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_284 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_284, 0, x_282); lean_ctor_set(x_284, 1, x_283); @@ -7332,7 +7332,7 @@ lean_ctor_set(x_285, 0, x_247); x_286 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_286, 0, x_284); lean_ctor_set(x_286, 1, x_285); -x_287 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_287 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_288 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_288, 0, x_286); lean_ctor_set(x_288, 1, x_287); @@ -7410,8 +7410,8 @@ goto block_245; else { lean_object* x_306; lean_object* x_307; lean_object* x_308; uint8_t x_309; -x_306 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; -x_307 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_306, x_3, x_297); +x_306 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; +x_307 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_306, x_3, x_297); x_308 = lean_ctor_get(x_307, 0); lean_inc(x_308); x_309 = lean_unbox(x_308); @@ -7459,7 +7459,7 @@ lean_inc(x_316); lean_dec(x_307); x_317 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_317, 0, x_1); -x_318 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_318 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_319 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_319, 0, x_317); lean_ctor_set(x_319, 1, x_318); @@ -7819,8 +7819,8 @@ goto block_362; else { lean_object* x_407; lean_object* x_408; lean_object* x_409; uint8_t x_410; -x_407 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; -x_408 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_407, x_3, x_403); +x_407 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; +x_408 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_407, x_3, x_403); x_409 = lean_ctor_get(x_408, 0); lean_inc(x_409); x_410 = lean_unbox(x_409); @@ -7850,7 +7850,7 @@ lean_inc(x_413); lean_dec(x_408); x_414 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_414, 0, x_1); -x_415 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_415 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_416 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_416, 0, x_414); lean_ctor_set(x_416, 1, x_415); @@ -7859,7 +7859,7 @@ lean_ctor_set(x_417, 0, x_379); x_418 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_418, 0, x_416); lean_ctor_set(x_418, 1, x_417); -x_419 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_419 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_420 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_420, 0, x_418); lean_ctor_set(x_420, 1, x_419); @@ -7937,8 +7937,8 @@ goto block_377; else { lean_object* x_438; lean_object* x_439; lean_object* x_440; uint8_t x_441; -x_438 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; -x_439 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_438, x_3, x_429); +x_438 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; +x_439 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_438, x_3, x_429); x_440 = lean_ctor_get(x_439, 0); lean_inc(x_440); x_441 = lean_unbox(x_440); @@ -7986,7 +7986,7 @@ lean_inc(x_448); lean_dec(x_439); x_449 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_449, 0, x_1); -x_450 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_450 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_451 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_451, 0, x_449); lean_ctor_set(x_451, 1, x_450); @@ -8205,7 +8205,7 @@ return x_376; else { lean_object* x_467; lean_object* x_468; lean_object* x_469; uint8_t x_470; lean_object* x_471; lean_object* x_481; lean_object* x_482; lean_object* x_490; -x_467 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_6); +x_467 = l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_6); x_468 = lean_ctor_get(x_467, 0); lean_inc(x_468); x_469 = lean_ctor_get(x_467, 1); @@ -8290,8 +8290,8 @@ goto block_480; else { lean_object* x_511; lean_object* x_512; lean_object* x_513; uint8_t x_514; -x_511 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; -x_512 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_511, x_3, x_507); +x_511 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; +x_512 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_511, x_3, x_507); x_513 = lean_ctor_get(x_512, 0); lean_inc(x_513); x_514 = lean_unbox(x_513); @@ -8320,7 +8320,7 @@ lean_inc(x_517); lean_dec(x_512); x_518 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_518, 0, x_1); -x_519 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_519 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_520 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_520, 0, x_518); lean_ctor_set(x_520, 1, x_519); @@ -8329,7 +8329,7 @@ lean_ctor_set(x_521, 0, x_491); x_522 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_522, 0, x_520); lean_ctor_set(x_522, 1, x_521); -x_523 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_523 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_524 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_524, 0, x_522); lean_ctor_set(x_524, 1, x_523); @@ -8405,8 +8405,8 @@ goto block_489; else { lean_object* x_542; lean_object* x_543; lean_object* x_544; uint8_t x_545; -x_542 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; -x_543 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_542, x_3, x_533); +x_542 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; +x_543 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_542, x_3, x_533); x_544 = lean_ctor_get(x_543, 0); lean_inc(x_544); x_545 = lean_unbox(x_544); @@ -8453,7 +8453,7 @@ lean_inc(x_552); lean_dec(x_543); x_553 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_553, 0, x_1); -x_554 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_554 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_555 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_555, 0, x_553); lean_ctor_set(x_555, 1, x_554); @@ -8577,8 +8577,8 @@ goto block_480; else { lean_object* x_584; lean_object* x_585; lean_object* x_586; uint8_t x_587; -x_584 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; -x_585 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_584, x_3, x_580); +x_584 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6; +x_585 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_584, x_3, x_580); x_586 = lean_ctor_get(x_585, 0); lean_inc(x_586); x_587 = lean_unbox(x_586); @@ -8607,7 +8607,7 @@ lean_inc(x_590); lean_dec(x_585); x_591 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_591, 0, x_1); -x_592 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; +x_592 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7; x_593 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_593, 0, x_591); lean_ctor_set(x_593, 1, x_592); @@ -8616,7 +8616,7 @@ lean_ctor_set(x_594, 0, x_491); x_595 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_595, 0, x_593); lean_ctor_set(x_595, 1, x_594); -x_596 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_596 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_597 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_597, 0, x_595); lean_ctor_set(x_597, 1, x_596); @@ -8692,8 +8692,8 @@ goto block_489; else { lean_object* x_615; lean_object* x_616; lean_object* x_617; uint8_t x_618; -x_615 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; -x_616 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_615, x_3, x_606); +x_615 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10; +x_616 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_615, x_3, x_606); x_617 = lean_ctor_get(x_616, 0); lean_inc(x_617); x_618 = lean_unbox(x_617); @@ -8740,7 +8740,7 @@ lean_inc(x_625); lean_dec(x_616); x_626 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_626, 0, x_1); -x_627 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_627 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_628 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_628, 0, x_626); lean_ctor_set(x_628, 1, x_627); @@ -8835,8 +8835,8 @@ goto block_489; block_480: { lean_object* x_472; lean_object* x_473; uint8_t x_474; -x_472 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4; -x_473 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_468, x_472, x_3, x_471); +x_472 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4; +x_473 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_468, x_472, x_3, x_471); lean_dec(x_3); x_474 = !lean_is_exclusive(x_473); if (x_474 == 0) @@ -8864,8 +8864,8 @@ return x_479; block_489: { lean_object* x_483; lean_object* x_484; uint8_t x_485; -x_483 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4; -x_484 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_468, x_483, x_3, x_482); +x_483 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4; +x_484 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_468, x_483, x_3, x_482); lean_dec(x_3); x_485 = !lean_is_exclusive(x_484); if (x_485 == 0) @@ -8893,7 +8893,7 @@ return x_488; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(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; @@ -8907,17 +8907,17 @@ lean_ctor_set(x_6, 1, x_3); return x_6; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_9__findCached_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_10__cache(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_10__cache(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -8954,11 +8954,11 @@ return x_15; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_10__cache___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_10__cache___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___private_Init_Lean_Meta_ExprDefEq_10__cache(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_ExprDefEq_10__cache(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -8967,7 +8967,7 @@ lean_object* _init_l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_ExprDefEq_9__findCached_x3f___boxed), 3, 0); return x_1; } } @@ -8975,7 +8975,7 @@ lean_object* _init_l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__2() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_ExprDefEq_10__cache___boxed), 4, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_ExprDefEq_10__cache___boxed), 4, 0); return x_1; } } @@ -9149,7 +9149,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_CheckAssignment_liftMetaM___rarg), return x_2; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_11__visit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_11__visit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_28; @@ -9187,7 +9187,7 @@ block_27: { lean_object* x_6; lean_object* x_7; lean_dec(x_5); -x_6 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_3, x_4); +x_6 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_3, x_4); x_7 = lean_ctor_get(x_6, 0); lean_inc(x_7); if (lean_obj_tag(x_7) == 0) @@ -9208,7 +9208,7 @@ x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); lean_inc(x_10); -x_12 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_10, x_3, x_11); +x_12 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_10, x_3, x_11); lean_dec(x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) @@ -9423,7 +9423,7 @@ block_49: { lean_object* x_28; lean_object* x_29; lean_dec(x_27); -x_28 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_26, x_3, x_4); +x_28 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_26, x_3, x_4); x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); if (lean_obj_tag(x_29) == 0) @@ -9444,7 +9444,7 @@ x_33 = lean_ctor_get(x_31, 1); lean_inc(x_33); lean_dec(x_31); lean_inc(x_32); -x_34 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_26, x_32, x_3, x_33); +x_34 = l___private_Lean_Meta_ExprDefEq_10__cache(x_26, x_32, x_3, x_33); lean_dec(x_3); x_35 = !lean_is_exclusive(x_34); if (x_35 == 0) @@ -10278,7 +10278,7 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_17, x_8, x_18); +x_19 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_17, x_8, x_18); return x_19; } else @@ -12603,7 +12603,7 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); -x_20 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_5, x_18, x_10, x_19); +x_20 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_5, x_18, x_10, x_19); return x_20; } else @@ -12635,7 +12635,7 @@ return x_24; else { lean_object* x_25; -x_25 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(x_5, x_2, x_4, x_6, x_7, x_8, x_3, x_1, x_9, x_10, x_11); +x_25 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(x_5, x_2, x_4, x_6, x_7, x_8, x_3, x_1, x_9, x_10, x_11); return x_25; } } @@ -14989,7 +14989,7 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_17, x_8, x_18); +x_19 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_17, x_8, x_18); return x_19; } else @@ -17273,7 +17273,7 @@ return x_531; } } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; @@ -17491,7 +17491,7 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; @@ -17512,7 +17512,7 @@ if (x_12 == 0) lean_object* x_13; uint8_t x_14; lean_dec(x_10); lean_dec(x_5); -x_13 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; +x_13 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; x_14 = lean_nat_dec_eq(x_13, x_2); lean_dec(x_2); if (x_14 == 0) @@ -17541,7 +17541,7 @@ lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); -x_21 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_19, x_6, x_20); +x_21 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_19, x_6, x_20); return x_21; } else @@ -17579,7 +17579,7 @@ lean_inc(x_26); x_27 = 1; x_28 = l_Array_empty___closed__1; x_29 = lean_unsigned_to_nat(0u); -x_30 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(x_1, x_2, x_3, x_27, x_5, x_26, x_28, x_29, x_10, x_6, x_11); +x_30 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(x_1, x_2, x_3, x_27, x_5, x_26, x_28, x_29, x_10, x_6, x_11); return x_30; } } @@ -17597,7 +17597,7 @@ if (x_33 == 0) lean_object* x_34; uint8_t x_35; lean_dec(x_31); lean_dec(x_5); -x_34 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; +x_34 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; x_35 = lean_nat_dec_eq(x_34, x_2); lean_dec(x_2); if (x_35 == 0) @@ -17627,7 +17627,7 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_40, 1); lean_inc(x_42); lean_dec(x_40); -x_43 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_41, x_6, x_42); +x_43 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_41, x_6, x_42); return x_43; } else @@ -17666,7 +17666,7 @@ lean_inc(x_48); x_49 = 1; x_50 = l_Array_empty___closed__1; x_51 = lean_unsigned_to_nat(0u); -x_52 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(x_1, x_2, x_3, x_49, x_5, x_48, x_50, x_51, x_31, x_6, x_32); +x_52 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(x_1, x_2, x_3, x_49, x_5, x_48, x_50, x_51, x_31, x_6, x_32); return x_52; } } @@ -17718,7 +17718,7 @@ lean_dec(x_6); lean_inc(x_2); x_9 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_9, 0, x_2); -x_10 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__1(x_1, x_2, x_3, x_7, x_9, x_4, x_8); +x_10 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__1(x_1, x_2, x_3, x_7, x_9, x_4, x_8); return x_10; } else @@ -17794,13 +17794,13 @@ lean_dec(x_2); return x_10; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_4); lean_dec(x_4); -x_13 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at_Lean_Meta_CheckAssignment_assignToConstFun___spec__2(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_13; } } @@ -17974,7 +17974,7 @@ block_46: { lean_object* x_25; lean_object* x_26; lean_dec(x_24); -x_25 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_23, x_2, x_3); +x_25 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_23, x_2, x_3); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); if (lean_obj_tag(x_26) == 0) @@ -17995,7 +17995,7 @@ x_30 = lean_ctor_get(x_28, 1); lean_inc(x_30); lean_dec(x_28); lean_inc(x_29); -x_31 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_23, x_29, x_2, x_30); +x_31 = l___private_Lean_Meta_ExprDefEq_10__cache(x_23, x_29, x_2, x_30); lean_dec(x_2); x_32 = !lean_is_exclusive(x_31); if (x_32 == 0) @@ -18588,7 +18588,7 @@ block_38: { lean_object* x_14; lean_object* x_15; lean_dec(x_13); -x_14 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_12, x_3, x_4); +x_14 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_12, x_3, x_4); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); if (lean_obj_tag(x_15) == 0) @@ -18609,7 +18609,7 @@ x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); lean_inc(x_18); -x_20 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_12, x_18, x_3, x_19); +x_20 = l___private_Lean_Meta_ExprDefEq_10__cache(x_12, x_18, x_3, x_19); x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); @@ -18832,7 +18832,7 @@ block_145: { lean_object* x_131; lean_object* x_132; lean_dec(x_130); -x_131 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_131 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_132 = lean_ctor_get(x_131, 0); lean_inc(x_132); if (lean_obj_tag(x_132) == 0) @@ -18853,7 +18853,7 @@ x_136 = lean_ctor_get(x_134, 1); lean_inc(x_136); lean_dec(x_134); lean_inc(x_135); -x_137 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_135, x_5, x_136); +x_137 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_135, x_5, x_136); x_138 = lean_ctor_get(x_137, 1); lean_inc(x_138); lean_dec(x_137); @@ -19004,7 +19004,7 @@ block_41: { lean_object* x_27; lean_object* x_28; lean_dec(x_26); -x_27 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_27 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); if (lean_obj_tag(x_28) == 0) @@ -19025,7 +19025,7 @@ x_32 = lean_ctor_get(x_30, 1); lean_inc(x_32); lean_dec(x_30); lean_inc(x_31); -x_33 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_31, x_5, x_32); +x_33 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_31, x_5, x_32); x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); @@ -19533,7 +19533,7 @@ block_292: { lean_object* x_278; lean_object* x_279; lean_dec(x_277); -x_278 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_278 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_279 = lean_ctor_get(x_278, 0); lean_inc(x_279); if (lean_obj_tag(x_279) == 0) @@ -19554,7 +19554,7 @@ x_283 = lean_ctor_get(x_281, 1); lean_inc(x_283); lean_dec(x_281); lean_inc(x_282); -x_284 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_282, x_5, x_283); +x_284 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_282, x_5, x_283); x_285 = lean_ctor_get(x_284, 1); lean_inc(x_285); lean_dec(x_284); @@ -19705,7 +19705,7 @@ block_188: { lean_object* x_174; lean_object* x_175; lean_dec(x_173); -x_174 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_174 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_175 = lean_ctor_get(x_174, 0); lean_inc(x_175); if (lean_obj_tag(x_175) == 0) @@ -19726,7 +19726,7 @@ x_179 = lean_ctor_get(x_177, 1); lean_inc(x_179); lean_dec(x_177); lean_inc(x_178); -x_180 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_178, x_5, x_179); +x_180 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_178, x_5, x_179); x_181 = lean_ctor_get(x_180, 1); lean_inc(x_181); lean_dec(x_180); @@ -20234,7 +20234,7 @@ block_439: { lean_object* x_425; lean_object* x_426; lean_dec(x_424); -x_425 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_425 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_426 = lean_ctor_get(x_425, 0); lean_inc(x_426); if (lean_obj_tag(x_426) == 0) @@ -20255,7 +20255,7 @@ x_430 = lean_ctor_get(x_428, 1); lean_inc(x_430); lean_dec(x_428); lean_inc(x_429); -x_431 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_429, x_5, x_430); +x_431 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_429, x_5, x_430); x_432 = lean_ctor_get(x_431, 1); lean_inc(x_432); lean_dec(x_431); @@ -20406,7 +20406,7 @@ block_335: { lean_object* x_321; lean_object* x_322; lean_dec(x_320); -x_321 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_321 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_322 = lean_ctor_get(x_321, 0); lean_inc(x_322); if (lean_obj_tag(x_322) == 0) @@ -20427,7 +20427,7 @@ x_326 = lean_ctor_get(x_324, 1); lean_inc(x_326); lean_dec(x_324); lean_inc(x_325); -x_327 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_325, x_5, x_326); +x_327 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_325, x_5, x_326); x_328 = lean_ctor_get(x_327, 1); lean_inc(x_328); lean_dec(x_327); @@ -20935,7 +20935,7 @@ block_586: { lean_object* x_572; lean_object* x_573; lean_dec(x_571); -x_572 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_572 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_573 = lean_ctor_get(x_572, 0); lean_inc(x_573); if (lean_obj_tag(x_573) == 0) @@ -20956,7 +20956,7 @@ x_577 = lean_ctor_get(x_575, 1); lean_inc(x_577); lean_dec(x_575); lean_inc(x_576); -x_578 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_576, x_5, x_577); +x_578 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_576, x_5, x_577); x_579 = lean_ctor_get(x_578, 1); lean_inc(x_579); lean_dec(x_578); @@ -21107,7 +21107,7 @@ block_482: { lean_object* x_468; lean_object* x_469; lean_dec(x_467); -x_468 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_468 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_469 = lean_ctor_get(x_468, 0); lean_inc(x_469); if (lean_obj_tag(x_469) == 0) @@ -21128,7 +21128,7 @@ x_473 = lean_ctor_get(x_471, 1); lean_inc(x_473); lean_dec(x_471); lean_inc(x_472); -x_474 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_472, x_5, x_473); +x_474 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_472, x_5, x_473); x_475 = lean_ctor_get(x_474, 1); lean_inc(x_475); lean_dec(x_474); @@ -21636,7 +21636,7 @@ block_733: { lean_object* x_719; lean_object* x_720; lean_dec(x_718); -x_719 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_719 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_720 = lean_ctor_get(x_719, 0); lean_inc(x_720); if (lean_obj_tag(x_720) == 0) @@ -21657,7 +21657,7 @@ x_724 = lean_ctor_get(x_722, 1); lean_inc(x_724); lean_dec(x_722); lean_inc(x_723); -x_725 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_723, x_5, x_724); +x_725 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_723, x_5, x_724); x_726 = lean_ctor_get(x_725, 1); lean_inc(x_726); lean_dec(x_725); @@ -21808,7 +21808,7 @@ block_629: { lean_object* x_615; lean_object* x_616; lean_dec(x_614); -x_615 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_615 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_616 = lean_ctor_get(x_615, 0); lean_inc(x_616); if (lean_obj_tag(x_616) == 0) @@ -21829,7 +21829,7 @@ x_620 = lean_ctor_get(x_618, 1); lean_inc(x_620); lean_dec(x_618); lean_inc(x_619); -x_621 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_619, x_5, x_620); +x_621 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_619, x_5, x_620); x_622 = lean_ctor_get(x_621, 1); lean_inc(x_622); lean_dec(x_621); @@ -22354,7 +22354,7 @@ block_886: { lean_object* x_872; lean_object* x_873; lean_dec(x_871); -x_872 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_872 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_873 = lean_ctor_get(x_872, 0); lean_inc(x_873); if (lean_obj_tag(x_873) == 0) @@ -22375,7 +22375,7 @@ x_877 = lean_ctor_get(x_875, 1); lean_inc(x_877); lean_dec(x_875); lean_inc(x_876); -x_878 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_876, x_5, x_877); +x_878 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_876, x_5, x_877); x_879 = lean_ctor_get(x_878, 1); lean_inc(x_879); lean_dec(x_878); @@ -22526,7 +22526,7 @@ block_782: { lean_object* x_768; lean_object* x_769; lean_dec(x_767); -x_768 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_768 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_769 = lean_ctor_get(x_768, 0); lean_inc(x_769); if (lean_obj_tag(x_769) == 0) @@ -22547,7 +22547,7 @@ x_773 = lean_ctor_get(x_771, 1); lean_inc(x_773); lean_dec(x_771); lean_inc(x_772); -x_774 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_772, x_5, x_773); +x_774 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_772, x_5, x_773); x_775 = lean_ctor_get(x_774, 1); lean_inc(x_775); lean_dec(x_774); @@ -23055,7 +23055,7 @@ block_1033: { lean_object* x_1019; lean_object* x_1020; lean_dec(x_1018); -x_1019 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1019 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1020 = lean_ctor_get(x_1019, 0); lean_inc(x_1020); if (lean_obj_tag(x_1020) == 0) @@ -23076,7 +23076,7 @@ x_1024 = lean_ctor_get(x_1022, 1); lean_inc(x_1024); lean_dec(x_1022); lean_inc(x_1023); -x_1025 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1023, x_5, x_1024); +x_1025 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1023, x_5, x_1024); x_1026 = lean_ctor_get(x_1025, 1); lean_inc(x_1026); lean_dec(x_1025); @@ -23227,7 +23227,7 @@ block_929: { lean_object* x_915; lean_object* x_916; lean_dec(x_914); -x_915 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_915 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_916 = lean_ctor_get(x_915, 0); lean_inc(x_916); if (lean_obj_tag(x_916) == 0) @@ -23248,7 +23248,7 @@ x_920 = lean_ctor_get(x_918, 1); lean_inc(x_920); lean_dec(x_918); lean_inc(x_919); -x_921 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_919, x_5, x_920); +x_921 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_919, x_5, x_920); x_922 = lean_ctor_get(x_921, 1); lean_inc(x_922); lean_dec(x_921); @@ -23756,7 +23756,7 @@ block_1180: { lean_object* x_1166; lean_object* x_1167; lean_dec(x_1165); -x_1166 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1166 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1167 = lean_ctor_get(x_1166, 0); lean_inc(x_1167); if (lean_obj_tag(x_1167) == 0) @@ -23777,7 +23777,7 @@ x_1171 = lean_ctor_get(x_1169, 1); lean_inc(x_1171); lean_dec(x_1169); lean_inc(x_1170); -x_1172 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1170, x_5, x_1171); +x_1172 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1170, x_5, x_1171); x_1173 = lean_ctor_get(x_1172, 1); lean_inc(x_1173); lean_dec(x_1172); @@ -23928,7 +23928,7 @@ block_1076: { lean_object* x_1062; lean_object* x_1063; lean_dec(x_1061); -x_1062 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1062 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1063 = lean_ctor_get(x_1062, 0); lean_inc(x_1063); if (lean_obj_tag(x_1063) == 0) @@ -23949,7 +23949,7 @@ x_1067 = lean_ctor_get(x_1065, 1); lean_inc(x_1067); lean_dec(x_1065); lean_inc(x_1066); -x_1068 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1066, x_5, x_1067); +x_1068 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1066, x_5, x_1067); x_1069 = lean_ctor_get(x_1068, 1); lean_inc(x_1069); lean_dec(x_1068); @@ -24457,7 +24457,7 @@ block_1327: { lean_object* x_1313; lean_object* x_1314; lean_dec(x_1312); -x_1313 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1313 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1314 = lean_ctor_get(x_1313, 0); lean_inc(x_1314); if (lean_obj_tag(x_1314) == 0) @@ -24478,7 +24478,7 @@ x_1318 = lean_ctor_get(x_1316, 1); lean_inc(x_1318); lean_dec(x_1316); lean_inc(x_1317); -x_1319 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1317, x_5, x_1318); +x_1319 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1317, x_5, x_1318); x_1320 = lean_ctor_get(x_1319, 1); lean_inc(x_1320); lean_dec(x_1319); @@ -24629,7 +24629,7 @@ block_1223: { lean_object* x_1209; lean_object* x_1210; lean_dec(x_1208); -x_1209 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1209 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1210 = lean_ctor_get(x_1209, 0); lean_inc(x_1210); if (lean_obj_tag(x_1210) == 0) @@ -24650,7 +24650,7 @@ x_1214 = lean_ctor_get(x_1212, 1); lean_inc(x_1214); lean_dec(x_1212); lean_inc(x_1213); -x_1215 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1213, x_5, x_1214); +x_1215 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1213, x_5, x_1214); x_1216 = lean_ctor_get(x_1215, 1); lean_inc(x_1216); lean_dec(x_1215); @@ -25158,7 +25158,7 @@ block_1474: { lean_object* x_1460; lean_object* x_1461; lean_dec(x_1459); -x_1460 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1460 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1461 = lean_ctor_get(x_1460, 0); lean_inc(x_1461); if (lean_obj_tag(x_1461) == 0) @@ -25179,7 +25179,7 @@ x_1465 = lean_ctor_get(x_1463, 1); lean_inc(x_1465); lean_dec(x_1463); lean_inc(x_1464); -x_1466 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1464, x_5, x_1465); +x_1466 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1464, x_5, x_1465); x_1467 = lean_ctor_get(x_1466, 1); lean_inc(x_1467); lean_dec(x_1466); @@ -25330,7 +25330,7 @@ block_1370: { lean_object* x_1356; lean_object* x_1357; lean_dec(x_1355); -x_1356 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1356 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1357 = lean_ctor_get(x_1356, 0); lean_inc(x_1357); if (lean_obj_tag(x_1357) == 0) @@ -25351,7 +25351,7 @@ x_1361 = lean_ctor_get(x_1359, 1); lean_inc(x_1361); lean_dec(x_1359); lean_inc(x_1360); -x_1362 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1360, x_5, x_1361); +x_1362 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1360, x_5, x_1361); x_1363 = lean_ctor_get(x_1362, 1); lean_inc(x_1363); lean_dec(x_1362); @@ -25859,7 +25859,7 @@ block_1621: { lean_object* x_1607; lean_object* x_1608; lean_dec(x_1606); -x_1607 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1607 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1608 = lean_ctor_get(x_1607, 0); lean_inc(x_1608); if (lean_obj_tag(x_1608) == 0) @@ -25880,7 +25880,7 @@ x_1612 = lean_ctor_get(x_1610, 1); lean_inc(x_1612); lean_dec(x_1610); lean_inc(x_1611); -x_1613 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1611, x_5, x_1612); +x_1613 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1611, x_5, x_1612); x_1614 = lean_ctor_get(x_1613, 1); lean_inc(x_1614); lean_dec(x_1613); @@ -26031,7 +26031,7 @@ block_1517: { lean_object* x_1503; lean_object* x_1504; lean_dec(x_1502); -x_1503 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1503 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1504 = lean_ctor_get(x_1503, 0); lean_inc(x_1504); if (lean_obj_tag(x_1504) == 0) @@ -26052,7 +26052,7 @@ x_1508 = lean_ctor_get(x_1506, 1); lean_inc(x_1508); lean_dec(x_1506); lean_inc(x_1507); -x_1509 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1507, x_5, x_1508); +x_1509 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1507, x_5, x_1508); x_1510 = lean_ctor_get(x_1509, 1); lean_inc(x_1510); lean_dec(x_1509); @@ -26560,7 +26560,7 @@ block_1768: { lean_object* x_1754; lean_object* x_1755; lean_dec(x_1753); -x_1754 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1754 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1755 = lean_ctor_get(x_1754, 0); lean_inc(x_1755); if (lean_obj_tag(x_1755) == 0) @@ -26581,7 +26581,7 @@ x_1759 = lean_ctor_get(x_1757, 1); lean_inc(x_1759); lean_dec(x_1757); lean_inc(x_1758); -x_1760 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1758, x_5, x_1759); +x_1760 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1758, x_5, x_1759); x_1761 = lean_ctor_get(x_1760, 1); lean_inc(x_1761); lean_dec(x_1760); @@ -26732,7 +26732,7 @@ block_1664: { lean_object* x_1650; lean_object* x_1651; lean_dec(x_1649); -x_1650 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); +x_1650 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_2, x_5, x_6); x_1651 = lean_ctor_get(x_1650, 0); lean_inc(x_1651); if (lean_obj_tag(x_1651) == 0) @@ -26753,7 +26753,7 @@ x_1655 = lean_ctor_get(x_1653, 1); lean_inc(x_1655); lean_dec(x_1653); lean_inc(x_1654); -x_1656 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_2, x_1654, x_5, x_1655); +x_1656 = l___private_Lean_Meta_ExprDefEq_10__cache(x_2, x_1654, x_5, x_1655); x_1657 = lean_ctor_get(x_1656, 1); lean_inc(x_1657); lean_dec(x_1656); @@ -27188,7 +27188,7 @@ block_44: { lean_object* x_23; lean_object* x_24; lean_dec(x_22); -x_23 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_1, x_2, x_3); +x_23 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_1, x_2, x_3); x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); if (lean_obj_tag(x_24) == 0) @@ -27209,7 +27209,7 @@ x_28 = lean_ctor_get(x_26, 1); lean_inc(x_28); lean_dec(x_26); lean_inc(x_27); -x_29 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_1, x_27, x_2, x_28); +x_29 = l___private_Lean_Meta_ExprDefEq_10__cache(x_1, x_27, x_2, x_28); lean_dec(x_2); x_30 = !lean_is_exclusive(x_29); if (x_30 == 0) @@ -27327,7 +27327,7 @@ block_72: { lean_object* x_51; lean_object* x_52; lean_dec(x_50); -x_51 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_1, x_2, x_3); +x_51 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_1, x_2, x_3); x_52 = lean_ctor_get(x_51, 0); lean_inc(x_52); if (lean_obj_tag(x_52) == 0) @@ -27348,7 +27348,7 @@ x_56 = lean_ctor_get(x_54, 1); lean_inc(x_56); lean_dec(x_54); lean_inc(x_55); -x_57 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_1, x_55, x_2, x_56); +x_57 = l___private_Lean_Meta_ExprDefEq_10__cache(x_1, x_55, x_2, x_56); lean_dec(x_2); x_58 = !lean_is_exclusive(x_57); if (x_58 == 0) @@ -27540,7 +27540,7 @@ block_115: { lean_object* x_101; lean_object* x_102; lean_dec(x_100); -x_101 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_86, x_2, x_88); +x_101 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_86, x_2, x_88); x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); if (lean_obj_tag(x_102) == 0) @@ -27561,7 +27561,7 @@ x_106 = lean_ctor_get(x_104, 1); lean_inc(x_106); lean_dec(x_104); lean_inc(x_105); -x_107 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_86, x_105, x_2, x_106); +x_107 = l___private_Lean_Meta_ExprDefEq_10__cache(x_86, x_105, x_2, x_106); lean_dec(x_2); x_108 = lean_ctor_get(x_107, 1); lean_inc(x_108); @@ -27618,7 +27618,7 @@ block_136: { lean_object* x_122; lean_object* x_123; lean_dec(x_121); -x_122 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_85, x_2, x_3); +x_122 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_85, x_2, x_3); x_123 = lean_ctor_get(x_122, 0); lean_inc(x_123); if (lean_obj_tag(x_123) == 0) @@ -27639,7 +27639,7 @@ x_127 = lean_ctor_get(x_125, 1); lean_inc(x_127); lean_dec(x_125); lean_inc(x_126); -x_128 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_85, x_126, x_2, x_127); +x_128 = l___private_Lean_Meta_ExprDefEq_10__cache(x_85, x_126, x_2, x_127); x_129 = lean_ctor_get(x_128, 1); lean_inc(x_129); lean_dec(x_128); @@ -27785,7 +27785,7 @@ block_171: { lean_object* x_157; lean_object* x_158; lean_dec(x_156); -x_157 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_142, x_2, x_144); +x_157 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_142, x_2, x_144); x_158 = lean_ctor_get(x_157, 0); lean_inc(x_158); if (lean_obj_tag(x_158) == 0) @@ -27806,7 +27806,7 @@ x_162 = lean_ctor_get(x_160, 1); lean_inc(x_162); lean_dec(x_160); lean_inc(x_161); -x_163 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_142, x_161, x_2, x_162); +x_163 = l___private_Lean_Meta_ExprDefEq_10__cache(x_142, x_161, x_2, x_162); lean_dec(x_2); x_164 = lean_ctor_get(x_163, 1); lean_inc(x_164); @@ -27863,7 +27863,7 @@ block_192: { lean_object* x_178; lean_object* x_179; lean_dec(x_177); -x_178 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_141, x_2, x_3); +x_178 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_141, x_2, x_3); x_179 = lean_ctor_get(x_178, 0); lean_inc(x_179); if (lean_obj_tag(x_179) == 0) @@ -27884,7 +27884,7 @@ x_183 = lean_ctor_get(x_181, 1); lean_inc(x_183); lean_dec(x_181); lean_inc(x_182); -x_184 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_141, x_182, x_2, x_183); +x_184 = l___private_Lean_Meta_ExprDefEq_10__cache(x_141, x_182, x_2, x_183); x_185 = lean_ctor_get(x_184, 1); lean_inc(x_185); lean_dec(x_184); @@ -28060,7 +28060,7 @@ block_228: { lean_object* x_214; lean_object* x_215; lean_dec(x_213); -x_214 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_199, x_2, x_203); +x_214 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_199, x_2, x_203); x_215 = lean_ctor_get(x_214, 0); lean_inc(x_215); if (lean_obj_tag(x_215) == 0) @@ -28081,7 +28081,7 @@ x_219 = lean_ctor_get(x_217, 1); lean_inc(x_219); lean_dec(x_217); lean_inc(x_218); -x_220 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_199, x_218, x_2, x_219); +x_220 = l___private_Lean_Meta_ExprDefEq_10__cache(x_199, x_218, x_2, x_219); lean_dec(x_2); x_221 = lean_ctor_get(x_220, 1); lean_inc(x_221); @@ -28139,7 +28139,7 @@ block_249: { lean_object* x_235; lean_object* x_236; lean_dec(x_234); -x_235 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_198, x_2, x_201); +x_235 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_198, x_2, x_201); x_236 = lean_ctor_get(x_235, 0); lean_inc(x_236); if (lean_obj_tag(x_236) == 0) @@ -28160,7 +28160,7 @@ x_240 = lean_ctor_get(x_238, 1); lean_inc(x_240); lean_dec(x_238); lean_inc(x_239); -x_241 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_198, x_239, x_2, x_240); +x_241 = l___private_Lean_Meta_ExprDefEq_10__cache(x_198, x_239, x_2, x_240); x_242 = lean_ctor_get(x_241, 1); lean_inc(x_242); lean_dec(x_241); @@ -28216,7 +28216,7 @@ block_270: { lean_object* x_256; lean_object* x_257; lean_dec(x_255); -x_256 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_197, x_2, x_3); +x_256 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_197, x_2, x_3); x_257 = lean_ctor_get(x_256, 0); lean_inc(x_257); if (lean_obj_tag(x_257) == 0) @@ -28237,7 +28237,7 @@ x_261 = lean_ctor_get(x_259, 1); lean_inc(x_261); lean_dec(x_259); lean_inc(x_260); -x_262 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_197, x_260, x_2, x_261); +x_262 = l___private_Lean_Meta_ExprDefEq_10__cache(x_197, x_260, x_2, x_261); x_263 = lean_ctor_get(x_262, 1); lean_inc(x_263); lean_dec(x_262); @@ -28325,7 +28325,7 @@ block_291: { lean_object* x_277; lean_object* x_278; lean_dec(x_276); -x_277 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_275, x_2, x_3); +x_277 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_275, x_2, x_3); x_278 = lean_ctor_get(x_277, 0); lean_inc(x_278); if (lean_obj_tag(x_278) == 0) @@ -28346,7 +28346,7 @@ x_282 = lean_ctor_get(x_280, 1); lean_inc(x_282); lean_dec(x_280); lean_inc(x_281); -x_283 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_275, x_281, x_2, x_282); +x_283 = l___private_Lean_Meta_ExprDefEq_10__cache(x_275, x_281, x_2, x_282); lean_dec(x_2); x_284 = lean_ctor_get(x_283, 1); lean_inc(x_284); @@ -28434,7 +28434,7 @@ block_312: { lean_object* x_298; lean_object* x_299; lean_dec(x_297); -x_298 = l___private_Init_Lean_Meta_ExprDefEq_9__findCached_x3f(x_296, x_2, x_3); +x_298 = l___private_Lean_Meta_ExprDefEq_9__findCached_x3f(x_296, x_2, x_3); x_299 = lean_ctor_get(x_298, 0); lean_inc(x_299); if (lean_obj_tag(x_299) == 0) @@ -28455,7 +28455,7 @@ x_303 = lean_ctor_get(x_301, 1); lean_inc(x_303); lean_dec(x_301); lean_inc(x_302); -x_304 = l___private_Init_Lean_Meta_ExprDefEq_10__cache(x_296, x_302, x_2, x_303); +x_304 = l___private_Lean_Meta_ExprDefEq_10__cache(x_296, x_302, x_2, x_303); lean_dec(x_2); x_305 = lean_ctor_get(x_304, 1); lean_inc(x_305); @@ -28622,7 +28622,7 @@ x_4 = l_Lean_Meta_CheckAssignment_check___main(x_1, x_2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1() { _start: { lean_object* x_1; @@ -28630,17 +28630,17 @@ x_1 = lean_mk_string("occursCheck"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1; +x_1 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3() { _start: { lean_object* x_1; @@ -28648,17 +28648,17 @@ x_1 = lean_mk_string("outOfScopeFVar"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3; +x_1 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5() { _start: { lean_object* x_1; @@ -28666,27 +28666,27 @@ x_1 = lean_mk_string(" @ "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5; +x_1 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6; +x_1 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8() { _start: { lean_object* x_1; @@ -28694,17 +28694,17 @@ x_1 = lean_mk_string("readOnlyMVarWithBiggerLCtx"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8; +x_1 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { switch (lean_obj_tag(x_4)) { @@ -28729,8 +28729,8 @@ return x_10; else { lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_11 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2; -x_12 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_11, x_5, x_6); +x_11 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2; +x_12 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_11, x_5, x_6); x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); x_14 = lean_unbox(x_13); @@ -28780,7 +28780,7 @@ x_26 = l_Lean_MessageData_arrayExpr_toMessageData___main(x_2, x_24, x_25); x_27 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_27, 0, x_23); lean_ctor_set(x_27, 1, x_26); -x_28 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_28 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_29 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); @@ -28846,8 +28846,8 @@ goto block_67; else { lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; -x_71 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4; -x_72 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_71, x_5, x_6); +x_71 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4; +x_72 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_71, x_5, x_6); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_ctor_get(x_72, 1); @@ -28878,7 +28878,7 @@ lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean x_44 = l_Lean_mkFVar(x_39); x_45 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_45, 0, x_44); -x_46 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7; +x_46 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7; x_47 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_47, 0, x_45); lean_ctor_set(x_47, 1, x_46); @@ -28898,7 +28898,7 @@ x_55 = l_Lean_MessageData_arrayExpr_toMessageData___main(x_2, x_53, x_54); x_56 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_56, 0, x_52); lean_ctor_set(x_56, 1, x_55); -x_57 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_57 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_58 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_57); @@ -28907,7 +28907,7 @@ lean_ctor_set(x_59, 0, x_3); x_60 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); -x_61 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4; +x_61 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4; x_62 = l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isTypeCorrect___spec__1(x_61, x_60, x_5, x_42); x_63 = !lean_is_exclusive(x_62); if (x_63 == 0) @@ -28954,8 +28954,8 @@ goto block_104; else { lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; uint8_t x_112; -x_108 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9; -x_109 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_108, x_5, x_6); +x_108 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9; +x_109 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_108, x_5, x_6); x_110 = lean_ctor_get(x_109, 0); lean_inc(x_110); x_111 = lean_ctor_get(x_109, 1); @@ -28986,7 +28986,7 @@ lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean x_81 = l_Lean_mkMVar(x_76); x_82 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_82, 0, x_81); -x_83 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7; +x_83 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7; x_84 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_84, 0, x_82); lean_ctor_set(x_84, 1, x_83); @@ -29006,7 +29006,7 @@ x_92 = l_Lean_MessageData_arrayExpr_toMessageData___main(x_2, x_90, x_91); x_93 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_93, 0, x_89); lean_ctor_set(x_93, 1, x_92); -x_94 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_94 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_95 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_95, 0, x_93); lean_ctor_set(x_95, 1, x_94); @@ -29015,7 +29015,7 @@ lean_ctor_set(x_96, 0, x_3); x_97 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_97, 0, x_95); lean_ctor_set(x_97, 1, x_96); -x_98 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9; +x_98 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9; x_99 = l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isTypeCorrect___spec__1(x_98, x_97, x_5, x_79); x_100 = !lean_is_exclusive(x_99); if (x_100 == 0) @@ -29086,17 +29086,17 @@ return x_123; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_2); return x_7; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_13__visit(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_ExprDefEq_13__visit(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -30297,7 +30297,7 @@ lean_dec(x_13); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); lean_dec(x_25); -x_27 = l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure(x_1, x_3, x_5, x_24, x_6, x_26); +x_27 = l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure(x_1, x_3, x_5, x_24, x_6, x_26); lean_dec(x_6); lean_dec(x_3); return x_27; @@ -30547,7 +30547,7 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_back___at___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(lean_object* x_1) { +lean_object* l_Array_back___at___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -30561,7 +30561,7 @@ lean_dec(x_4); return x_6; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_3) == 5) @@ -30572,7 +30572,7 @@ lean_inc(x_6); x_7 = lean_ctor_get(x_3, 1); lean_inc(x_7); lean_dec(x_3); -x_8 = l_Array_back___at___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(x_2); +x_8 = l_Array_back___at___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(x_2); lean_inc(x_4); x_9 = l_Lean_Meta_isExprDefEqAux(x_8, x_7, x_4, x_5); if (lean_obj_tag(x_9) == 0) @@ -30619,7 +30619,7 @@ x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_17, x_18); lean_dec(x_17); x_20 = lean_unsigned_to_nat(0u); -x_21 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_19, x_2, x_20, x_1); +x_21 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_19, x_2, x_20, x_1); lean_dec(x_19); x_22 = l_Lean_Meta_isExprDefEqAux(x_21, x_6, x_4, x_16); return x_22; @@ -30666,25 +30666,25 @@ return x_29; } } } -lean_object* l_Array_back___at___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1___boxed(lean_object* x_1) { +lean_object* l_Array_back___at___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Array_back___at___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(x_1); +x_2 = l_Array_back___at___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1(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; @@ -30700,7 +30700,7 @@ lean_inc(x_8); lean_inc(x_7); lean_ctor_set(x_5, 5, x_18); lean_inc(x_4); -x_19 = l___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(x_1, x_2, x_3, x_4, x_5); +x_19 = l___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(x_1, x_2, x_3, x_4, x_5); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; uint8_t x_21; @@ -30743,7 +30743,7 @@ lean_dec(x_20); x_28 = lean_ctor_get(x_19, 1); lean_inc(x_28); lean_dec(x_19); -x_29 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_4, x_28); +x_29 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_4, x_28); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; uint8_t x_31; @@ -30888,7 +30888,7 @@ lean_ctor_set(x_60, 3, x_49); lean_ctor_set(x_60, 4, x_50); lean_ctor_set(x_60, 5, x_59); lean_inc(x_4); -x_61 = l___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(x_1, x_2, x_3, x_4, x_60); +x_61 = l___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux(x_1, x_2, x_3, x_4, x_60); if (lean_obj_tag(x_61) == 0) { lean_object* x_62; uint8_t x_63; @@ -30929,7 +30929,7 @@ lean_dec(x_62); x_69 = lean_ctor_get(x_61, 1); lean_inc(x_69); lean_dec(x_61); -x_70 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_4, x_69); +x_70 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_4, x_69); if (lean_obj_tag(x_70) == 0) { lean_object* x_71; uint8_t x_72; @@ -31044,7 +31044,7 @@ return x_57; } } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1() { _start: { lean_object* x_1; @@ -31052,17 +31052,17 @@ x_1 = lean_mk_string("foApprox"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Meta_isExprDefEq___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1; +x_2 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(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; @@ -31098,8 +31098,8 @@ goto block_37; else { lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_40 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2; -x_41 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_40, x_4, x_5); +x_40 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2; +x_41 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_40, x_4, x_5); x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); x_43 = lean_unbox(x_42); @@ -31132,7 +31132,7 @@ x_51 = l_Lean_MessageData_arrayExpr_toMessageData___main(x_2, x_49, x_50); x_52 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_52, 0, x_48); lean_ctor_set(x_52, 1, x_51); -x_53 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_53 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_54 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_53); @@ -31156,7 +31156,7 @@ lean_object* x_12; lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_12 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1(x_1, x_2, x_3, x_4, x_11); +x_12 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1(x_1, x_2, x_3, x_4, x_11); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; uint8_t x_14; @@ -31299,42 +31299,42 @@ return x_36; } } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___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* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_1)) { @@ -31453,15 +31453,15 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_17__simpAssignmentArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_17__simpAssignmentArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -31471,7 +31471,7 @@ lean_dec(x_4); if (x_5 == 0) { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(x_1, x_2, x_3); +x_6 = l___private_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(x_1, x_2, x_3); return x_6; } else @@ -31483,12 +31483,12 @@ lean_inc(x_8); x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); -x_10 = l___private_Init_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(x_8, x_2, x_9); +x_10 = l___private_Lean_Meta_ExprDefEq_16__simpAssignmentArgAux___main(x_8, x_2, x_9); return x_10; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; uint8_t x_11; @@ -31527,7 +31527,7 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_17, x_8, x_18); +x_19 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_17, x_8, x_18); return x_19; } else @@ -31631,7 +31631,7 @@ lean_ctor_set(x_46, 0, x_36); lean_ctor_set(x_46, 1, x_24); x_47 = lean_array_push(x_45, x_46); lean_ctor_set(x_8, 2, x_47); -x_48 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_8, x_35); +x_48 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_8, x_35); if (lean_obj_tag(x_48) == 0) { lean_object* x_49; lean_object* x_50; uint8_t x_51; @@ -31991,7 +31991,7 @@ lean_ctor_set(x_130, 1, x_124); lean_ctor_set(x_130, 2, x_129); lean_ctor_set(x_130, 3, x_126); lean_ctor_set(x_130, 4, x_127); -x_131 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_130, x_35); +x_131 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_130, x_35); if (lean_obj_tag(x_131) == 0) { lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; @@ -32216,7 +32216,7 @@ lean_ctor_set(x_180, 1, x_173); lean_ctor_set(x_180, 2, x_179); lean_ctor_set(x_180, 3, x_175); lean_ctor_set(x_180, 4, x_176); -x_181 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_180, x_35); +x_181 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_180, x_35); if (lean_obj_tag(x_181) == 0) { lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; @@ -32473,7 +32473,7 @@ lean_ctor_set(x_238, 1, x_231); lean_ctor_set(x_238, 2, x_237); lean_ctor_set(x_238, 3, x_233); lean_ctor_set(x_238, 4, x_234); -x_239 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_238, x_229); +x_239 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_238, x_229); if (lean_obj_tag(x_239) == 0) { lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; 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; @@ -32705,7 +32705,7 @@ lean_ctor_set(x_292, 0, x_282); lean_ctor_set(x_292, 1, x_24); x_293 = lean_array_push(x_291, x_292); lean_ctor_set(x_8, 2, x_293); -x_294 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_8, x_281); +x_294 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_8, x_281); if (lean_obj_tag(x_294) == 0) { lean_object* x_295; lean_object* x_296; uint8_t x_297; @@ -33065,7 +33065,7 @@ lean_ctor_set(x_376, 1, x_370); lean_ctor_set(x_376, 2, x_375); lean_ctor_set(x_376, 3, x_372); lean_ctor_set(x_376, 4, x_373); -x_377 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_376, x_281); +x_377 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_376, x_281); if (lean_obj_tag(x_377) == 0) { lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; @@ -33290,7 +33290,7 @@ lean_ctor_set(x_426, 1, x_419); lean_ctor_set(x_426, 2, x_425); lean_ctor_set(x_426, 3, x_421); lean_ctor_set(x_426, 4, x_422); -x_427 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_426, x_281); +x_427 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_426, x_281); if (lean_obj_tag(x_427) == 0) { lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; @@ -33547,7 +33547,7 @@ lean_ctor_set(x_484, 1, x_477); lean_ctor_set(x_484, 2, x_483); lean_ctor_set(x_484, 3, x_479); lean_ctor_set(x_484, 4, x_480); -x_485 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_484, x_475); +x_485 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_484, x_475); if (lean_obj_tag(x_485) == 0) { lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; @@ -33811,7 +33811,7 @@ return x_531; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, 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; @@ -33852,7 +33852,7 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); -x_20 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_5, x_18, x_10, x_19); +x_20 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_5, x_18, x_10, x_19); return x_20; } else @@ -33884,12 +33884,12 @@ return x_24; else { lean_object* x_25; -x_25 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(x_5, x_2, x_4, x_6, x_7, x_8, x_3, x_1, x_9, x_10, x_11); +x_25 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(x_5, x_2, x_4, x_6, x_7, x_8, x_3, x_1, x_9, x_10, x_11); return x_25; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; @@ -33904,7 +33904,7 @@ lean_inc(x_3); lean_inc(x_7); lean_inc(x_2); lean_inc(x_10); -x_18 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___lambda__1___boxed), 11, 8); +x_18 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___lambda__1___boxed), 11, 8); lean_closure_set(x_18, 0, x_10); lean_closure_set(x_18, 1, x_2); lean_closure_set(x_18, 2, x_7); @@ -34007,7 +34007,7 @@ lean_ctor_set(x_44, 0, x_34); lean_ctor_set(x_44, 1, x_22); x_45 = lean_array_push(x_43, x_44); lean_ctor_set(x_13, 2, x_45); -x_46 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_36, x_13, x_33); +x_46 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_36, x_13, x_33); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; lean_object* x_48; uint8_t x_49; @@ -34367,7 +34367,7 @@ lean_ctor_set(x_128, 1, x_122); lean_ctor_set(x_128, 2, x_127); lean_ctor_set(x_128, 3, x_124); lean_ctor_set(x_128, 4, x_125); -x_129 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_36, x_128, x_33); +x_129 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_36, x_128, x_33); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; 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; @@ -34592,7 +34592,7 @@ lean_ctor_set(x_178, 1, x_171); lean_ctor_set(x_178, 2, x_177); lean_ctor_set(x_178, 3, x_173); lean_ctor_set(x_178, 4, x_174); -x_179 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_36, x_178, x_33); +x_179 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_36, x_178, x_33); if (lean_obj_tag(x_179) == 0) { 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; @@ -34849,7 +34849,7 @@ lean_ctor_set(x_236, 1, x_229); lean_ctor_set(x_236, 2, x_235); lean_ctor_set(x_236, 3, x_231); lean_ctor_set(x_236, 4, x_232); -x_237 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_36, x_236, x_227); +x_237 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_36, x_236, x_227); if (lean_obj_tag(x_237) == 0) { 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; @@ -35081,7 +35081,7 @@ lean_ctor_set(x_290, 0, x_280); lean_ctor_set(x_290, 1, x_22); x_291 = lean_array_push(x_289, x_290); lean_ctor_set(x_13, 2, x_291); -x_292 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_282, x_13, x_279); +x_292 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_282, x_13, x_279); if (lean_obj_tag(x_292) == 0) { lean_object* x_293; lean_object* x_294; uint8_t x_295; @@ -35441,7 +35441,7 @@ lean_ctor_set(x_374, 1, x_368); lean_ctor_set(x_374, 2, x_373); lean_ctor_set(x_374, 3, x_370); lean_ctor_set(x_374, 4, x_371); -x_375 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_282, x_374, x_279); +x_375 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_282, x_374, x_279); if (lean_obj_tag(x_375) == 0) { lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; @@ -35666,7 +35666,7 @@ lean_ctor_set(x_424, 1, x_417); lean_ctor_set(x_424, 2, x_423); lean_ctor_set(x_424, 3, x_419); lean_ctor_set(x_424, 4, x_420); -x_425 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_282, x_424, x_279); +x_425 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_282, x_424, x_279); if (lean_obj_tag(x_425) == 0) { lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; @@ -35923,7 +35923,7 @@ lean_ctor_set(x_482, 1, x_475); lean_ctor_set(x_482, 2, x_481); lean_ctor_set(x_482, 3, x_477); lean_ctor_set(x_482, 4, x_478); -x_483 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_282, x_482, x_473); +x_483 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_282, x_482, x_473); if (lean_obj_tag(x_483) == 0) { lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; @@ -36199,7 +36199,7 @@ return x_529; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; uint8_t x_11; @@ -36238,7 +36238,7 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_17, x_8, x_18); +x_19 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_17, x_8, x_18); return x_19; } else @@ -36342,7 +36342,7 @@ lean_ctor_set(x_46, 0, x_36); lean_ctor_set(x_46, 1, x_24); x_47 = lean_array_push(x_45, x_46); lean_ctor_set(x_8, 2, x_47); -x_48 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_8, x_35); +x_48 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_8, x_35); if (lean_obj_tag(x_48) == 0) { lean_object* x_49; lean_object* x_50; uint8_t x_51; @@ -36702,7 +36702,7 @@ lean_ctor_set(x_130, 1, x_124); lean_ctor_set(x_130, 2, x_129); lean_ctor_set(x_130, 3, x_126); lean_ctor_set(x_130, 4, x_127); -x_131 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_130, x_35); +x_131 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_130, x_35); if (lean_obj_tag(x_131) == 0) { lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; @@ -36927,7 +36927,7 @@ lean_ctor_set(x_180, 1, x_173); lean_ctor_set(x_180, 2, x_179); lean_ctor_set(x_180, 3, x_175); lean_ctor_set(x_180, 4, x_176); -x_181 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_180, x_35); +x_181 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_180, x_35); if (lean_obj_tag(x_181) == 0) { lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; @@ -37184,7 +37184,7 @@ lean_ctor_set(x_238, 1, x_231); lean_ctor_set(x_238, 2, x_237); lean_ctor_set(x_238, 3, x_233); lean_ctor_set(x_238, 4, x_234); -x_239 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_238, x_229); +x_239 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_38, x_238, x_229); if (lean_obj_tag(x_239) == 0) { lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; 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; @@ -37416,7 +37416,7 @@ lean_ctor_set(x_292, 0, x_282); lean_ctor_set(x_292, 1, x_24); x_293 = lean_array_push(x_291, x_292); lean_ctor_set(x_8, 2, x_293); -x_294 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_8, x_281); +x_294 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_8, x_281); if (lean_obj_tag(x_294) == 0) { lean_object* x_295; lean_object* x_296; uint8_t x_297; @@ -37776,7 +37776,7 @@ lean_ctor_set(x_376, 1, x_370); lean_ctor_set(x_376, 2, x_375); lean_ctor_set(x_376, 3, x_372); lean_ctor_set(x_376, 4, x_373); -x_377 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_376, x_281); +x_377 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_376, x_281); if (lean_obj_tag(x_377) == 0) { lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; @@ -38001,7 +38001,7 @@ lean_ctor_set(x_426, 1, x_419); lean_ctor_set(x_426, 2, x_425); lean_ctor_set(x_426, 3, x_421); lean_ctor_set(x_426, 4, x_422); -x_427 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_426, x_281); +x_427 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_426, x_281); if (lean_obj_tag(x_427) == 0) { lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; @@ -38258,7 +38258,7 @@ lean_ctor_set(x_484, 1, x_477); lean_ctor_set(x_484, 2, x_483); lean_ctor_set(x_484, 3, x_479); lean_ctor_set(x_484, 4, x_480); -x_485 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_484, x_475); +x_485 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_284, x_484, x_475); if (lean_obj_tag(x_485) == 0) { lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; @@ -38522,7 +38522,7 @@ return x_531; } } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; @@ -38591,7 +38591,7 @@ x_48 = lean_ctor_get(x_10, 1); lean_dec(x_48); lean_ctor_set(x_10, 1, x_6); lean_inc(x_7); -x_49 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_7, x_45, x_7, x_8, x_10, x_11); +x_49 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_7, x_45, x_7, x_8, x_10, x_11); lean_dec(x_45); lean_dec(x_7); lean_dec(x_2); @@ -38616,7 +38616,7 @@ lean_ctor_set(x_54, 2, x_51); lean_ctor_set(x_54, 3, x_52); lean_ctor_set(x_54, 4, x_53); lean_inc(x_7); -x_55 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_7, x_45, x_7, x_8, x_54, x_11); +x_55 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_7, x_45, x_7, x_8, x_54, x_11); lean_dec(x_45); lean_dec(x_7); lean_dec(x_2); @@ -38675,7 +38675,7 @@ lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); lean_inc(x_7); -x_16 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_7, x_13, x_7, x_8, x_10, x_11); +x_16 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_7, x_13, x_7, x_8, x_10, x_11); lean_dec(x_13); lean_dec(x_7); lean_dec(x_2); @@ -38686,7 +38686,7 @@ else lean_object* x_17; lean_inc(x_8); lean_inc(x_7); -x_17 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_13, x_7, x_8, x_10, x_11); +x_17 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_13, x_7, x_8, x_10, x_11); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -38719,7 +38719,7 @@ lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); lean_inc(x_7); -x_23 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_7, x_13, x_7, x_8, x_22, x_11); +x_23 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_7, x_13, x_7, x_8, x_22, x_11); lean_dec(x_13); lean_dec(x_7); lean_dec(x_2); @@ -38730,7 +38730,7 @@ else lean_object* x_24; lean_inc(x_8); lean_inc(x_7); -x_24 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_13, x_7, x_8, x_22, x_11); +x_24 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_13, x_7, x_8, x_22, x_11); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -38740,7 +38740,7 @@ return x_24; } } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; @@ -38761,7 +38761,7 @@ if (x_12 == 0) lean_object* x_13; uint8_t x_14; lean_dec(x_10); lean_dec(x_5); -x_13 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; +x_13 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; x_14 = lean_nat_dec_eq(x_13, x_2); lean_dec(x_2); if (x_14 == 0) @@ -38790,7 +38790,7 @@ lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); -x_21 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_19, x_6, x_20); +x_21 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_19, x_6, x_20); return x_21; } else @@ -38828,7 +38828,7 @@ lean_inc(x_26); x_27 = 1; x_28 = l_Array_empty___closed__1; x_29 = lean_unsigned_to_nat(0u); -x_30 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(x_1, x_2, x_3, x_27, x_5, x_26, x_28, x_29, x_10, x_6, x_11); +x_30 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(x_1, x_2, x_3, x_27, x_5, x_26, x_28, x_29, x_10, x_6, x_11); return x_30; } } @@ -38846,7 +38846,7 @@ if (x_33 == 0) lean_object* x_34; uint8_t x_35; lean_dec(x_31); lean_dec(x_5); -x_34 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; +x_34 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; x_35 = lean_nat_dec_eq(x_34, x_2); lean_dec(x_2); if (x_35 == 0) @@ -38876,7 +38876,7 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_40, 1); lean_inc(x_42); lean_dec(x_40); -x_43 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_41, x_6, x_42); +x_43 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_41, x_6, x_42); return x_43; } else @@ -38915,7 +38915,7 @@ lean_inc(x_48); x_49 = 1; x_50 = l_Array_empty___closed__1; x_51 = lean_unsigned_to_nat(0u); -x_52 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(x_1, x_2, x_3, x_49, x_5, x_48, x_50, x_51, x_31, x_6, x_32); +x_52 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(x_1, x_2, x_3, x_49, x_5, x_48, x_50, x_51, x_31, x_6, x_32); return x_52; } } @@ -38949,7 +38949,7 @@ return x_56; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_18__processConstApprox(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; @@ -39041,7 +39041,7 @@ lean_inc(x_29); lean_dec(x_27); lean_inc(x_2); lean_ctor_set(x_14, 0, x_2); -x_30 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__1(x_1, x_2, x_25, x_29, x_14, x_4, x_28); +x_30 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__1(x_1, x_2, x_25, x_29, x_14, x_4, x_28); return x_30; } else @@ -39093,7 +39093,7 @@ lean_dec(x_37); lean_inc(x_2); x_40 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_40, 0, x_2); -x_41 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__1(x_1, x_2, x_35, x_39, x_40, x_4, x_38); +x_41 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__1(x_1, x_2, x_35, x_39, x_40, x_4, x_38); return x_41; } else @@ -39156,62 +39156,62 @@ return x_49; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___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* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___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) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_6); lean_dec(x_5); lean_dec(x_2); return x_10; } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_6); lean_dec(x_6); -x_13 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; lean_object* x_16; x_15 = lean_unbox(x_4); lean_dec(x_4); -x_16 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_16 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__4(x_1, x_2, x_3, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_11); lean_dec(x_9); lean_dec(x_8); return x_16; } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_6); lean_dec(x_5); lean_dec(x_2); return x_10; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_4); lean_dec(x_4); -x_13 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_ExprDefEq_18__processConstApprox___spec__2(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_13; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1(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; @@ -39250,7 +39250,7 @@ return x_10; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -39286,7 +39286,7 @@ return x_11; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; @@ -39323,7 +39323,7 @@ return x_12; } } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1() { _start: { lean_object* x_1; @@ -39331,27 +39331,27 @@ x_1 = lean_mk_string("beforeMkLambda"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1; +x_1 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_1 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; x_2 = l_Lean_Meta_isTypeCorrect___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(lean_object* x_1, 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; @@ -39396,7 +39396,7 @@ lean_dec(x_17); lean_inc(x_6); lean_inc(x_5); lean_inc(x_1); -x_20 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_4, x_5, x_6, x_19); +x_20 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_4, x_5, x_6, x_19); lean_dec(x_4); if (lean_obj_tag(x_20) == 0) { @@ -39411,7 +39411,7 @@ lean_dec(x_21); x_23 = lean_ctor_get(x_20, 1); lean_inc(x_23); lean_dec(x_20); -x_24 = l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_9, x_5, x_6, x_23); +x_24 = l___private_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_9, x_5, x_6, x_23); return x_24; } else @@ -39490,8 +39490,8 @@ goto block_97; else { lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; -x_100 = l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2; -x_101 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_100, x_6, x_33); +x_100 = l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2; +x_101 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_100, x_6, x_33); x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); x_103 = lean_unbox(x_102); @@ -39524,7 +39524,7 @@ x_111 = l_Lean_MessageData_arrayExpr_toMessageData___main(x_4, x_109, x_110); x_112 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_112, 0, x_108); lean_ctor_set(x_112, 1, x_111); -x_113 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_113 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_114 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_114, 0, x_112); lean_ctor_set(x_114, 1, x_113); @@ -39557,14 +39557,14 @@ x_38 = lean_ctor_get(x_36, 1); lean_inc(x_38); lean_dec(x_36); x_39 = lean_unsigned_to_nat(0u); -x_40 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1(x_2, x_4, x_4, x_9, x_39); +x_40 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1(x_2, x_4, x_4, x_9, x_39); if (x_40 == 0) { lean_object* x_41; lean_dec(x_9); lean_dec(x_5); lean_dec(x_4); -x_41 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_37, x_6, x_38); +x_41 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_37, x_6, x_38); return x_41; } else @@ -39598,8 +39598,8 @@ goto block_82; else { lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; uint8_t x_90; -x_86 = l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3; -x_87 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_86, x_6, x_45); +x_86 = l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3; +x_87 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_86, x_6, x_45); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_ctor_get(x_87, 1); @@ -39620,7 +39620,7 @@ lean_dec(x_37); lean_inc(x_6); lean_inc(x_5); lean_inc(x_1); -x_48 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_4, x_5, x_6, x_47); +x_48 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_4, x_5, x_6, x_47); lean_dec(x_4); if (lean_obj_tag(x_48) == 0) { @@ -39635,7 +39635,7 @@ lean_dec(x_49); x_51 = lean_ctor_get(x_48, 1); lean_inc(x_51); lean_dec(x_48); -x_52 = l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_9, x_5, x_6, x_51); +x_52 = l___private_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_9, x_5, x_6, x_51); return x_52; } else @@ -39699,7 +39699,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean lean_inc(x_1); x_61 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_61, 0, x_1); -x_62 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_62 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_63 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_63, 0, x_61); lean_ctor_set(x_63, 1, x_62); @@ -39708,7 +39708,7 @@ lean_ctor_set(x_64, 0, x_37); x_65 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_65, 0, x_63); lean_ctor_set(x_65, 1, x_64); -x_66 = l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3; +x_66 = l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3; x_67 = l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isTypeCorrect___spec__1(x_66, x_65, x_6, x_47); x_68 = lean_ctor_get(x_67, 1); lean_inc(x_68); @@ -39716,7 +39716,7 @@ lean_dec(x_67); lean_inc(x_6); lean_inc(x_5); lean_inc(x_1); -x_69 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_4, x_5, x_6, x_68); +x_69 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_4, x_5, x_6, x_68); lean_dec(x_4); if (lean_obj_tag(x_69) == 0) { @@ -39731,7 +39731,7 @@ lean_dec(x_70); x_72 = lean_ctor_get(x_69, 1); lean_inc(x_72); lean_dec(x_69); -x_73 = l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_9, x_5, x_6, x_72); +x_73 = l___private_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_9, x_5, x_6, x_72); return x_73; } else @@ -39800,7 +39800,7 @@ lean_dec(x_4); x_91 = lean_ctor_get(x_42, 1); lean_inc(x_91); lean_dec(x_42); -x_92 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_37, x_6, x_91); +x_92 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign(x_1, x_37, x_6, x_91); return x_92; } } @@ -39873,7 +39873,7 @@ lean_dec(x_2); lean_inc(x_6); lean_inc(x_5); lean_inc(x_1); -x_123 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_4, x_5, x_6, x_13); +x_123 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_4, x_5, x_6, x_13); lean_dec(x_4); if (lean_obj_tag(x_123) == 0) { @@ -39888,7 +39888,7 @@ lean_dec(x_124); x_126 = lean_ctor_get(x_123, 1); lean_inc(x_126); lean_dec(x_123); -x_127 = l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_9, x_5, x_6, x_126); +x_127 = l___private_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_9, x_5, x_6, x_126); return x_127; } else @@ -39953,7 +39953,7 @@ lean_object* x_136; lean_object* x_137; lean_dec(x_9); x_136 = lean_array_fget(x_4, x_3); lean_inc(x_6); -x_137 = l___private_Init_Lean_Meta_ExprDefEq_17__simpAssignmentArg(x_136, x_6, x_7); +x_137 = l___private_Lean_Meta_ExprDefEq_17__simpAssignmentArg(x_136, x_6, x_7); if (lean_obj_tag(x_137) == 0) { lean_object* x_138; lean_object* x_139; lean_object* x_140; @@ -39976,7 +39976,7 @@ if (x_143 == 0) { lean_object* x_144; uint8_t x_145; x_144 = lean_unsigned_to_nat(0u); -x_145 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2(x_3, x_4, lean_box(0), x_138, x_140, x_142, x_144); +x_145 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2(x_3, x_4, lean_box(0), x_138, x_140, x_142, x_144); lean_dec(x_138); lean_dec(x_4); if (x_145 == 0) @@ -40012,7 +40012,7 @@ lean_dec(x_2); lean_inc(x_6); lean_inc(x_5); lean_inc(x_1); -x_152 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); +x_152 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); lean_dec(x_140); if (lean_obj_tag(x_152) == 0) { @@ -40027,7 +40027,7 @@ lean_dec(x_153); x_155 = lean_ctor_get(x_152, 1); lean_inc(x_155); lean_dec(x_152); -x_156 = l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_142, x_5, x_6, x_155); +x_156 = l___private_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_142, x_5, x_6, x_155); return x_156; } else @@ -40109,7 +40109,7 @@ lean_dec(x_2); lean_inc(x_6); lean_inc(x_5); lean_inc(x_1); -x_168 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); +x_168 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); lean_dec(x_140); if (lean_obj_tag(x_168) == 0) { @@ -40124,7 +40124,7 @@ lean_dec(x_169); x_171 = lean_ctor_get(x_168, 1); lean_inc(x_171); lean_dec(x_168); -x_172 = l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_142, x_5, x_6, x_171); +x_172 = l___private_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_142, x_5, x_6, x_171); return x_172; } else @@ -40187,7 +40187,7 @@ else { lean_object* x_181; uint8_t x_182; x_181 = lean_unsigned_to_nat(0u); -x_182 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3(x_3, x_4, lean_box(0), x_138, lean_box(0), x_140, x_3, x_181); +x_182 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3(x_3, x_4, lean_box(0), x_138, lean_box(0), x_140, x_3, x_181); lean_dec(x_138); lean_dec(x_4); if (x_182 == 0) @@ -40223,7 +40223,7 @@ lean_dec(x_2); lean_inc(x_6); lean_inc(x_5); lean_inc(x_1); -x_189 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); +x_189 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); lean_dec(x_140); if (lean_obj_tag(x_189) == 0) { @@ -40238,7 +40238,7 @@ lean_dec(x_190); x_192 = lean_ctor_get(x_189, 1); lean_inc(x_192); lean_dec(x_189); -x_193 = l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_142, x_5, x_6, x_192); +x_193 = l___private_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_142, x_5, x_6, x_192); return x_193; } else @@ -40320,7 +40320,7 @@ lean_dec(x_2); lean_inc(x_6); lean_inc(x_5); lean_inc(x_1); -x_205 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); +x_205 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); lean_dec(x_140); if (lean_obj_tag(x_205) == 0) { @@ -40335,7 +40335,7 @@ lean_dec(x_206); x_208 = lean_ctor_get(x_205, 1); lean_inc(x_208); lean_dec(x_205); -x_209 = l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_142, x_5, x_6, x_208); +x_209 = l___private_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_142, x_5, x_6, x_208); return x_209; } else @@ -40406,7 +40406,7 @@ lean_dec(x_2); lean_inc(x_6); lean_inc(x_5); lean_inc(x_1); -x_218 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); +x_218 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main(x_1, x_140, x_5, x_6, x_139); if (lean_obj_tag(x_218) == 0) { lean_object* x_219; uint8_t x_220; @@ -40422,7 +40422,7 @@ lean_inc(x_221); lean_dec(x_218); x_222 = lean_array_get_size(x_140); lean_dec(x_140); -x_223 = l___private_Init_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_222, x_5, x_6, x_221); +x_223 = l___private_Lean_Meta_ExprDefEq_18__processConstApprox(x_1, x_222, x_5, x_6, x_221); return x_223; } else @@ -40513,11 +40513,11 @@ return x_235; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___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* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -40525,11 +40525,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___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* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___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: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__2(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); @@ -40539,11 +40539,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___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* l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___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) { _start: { uint8_t x_9; lean_object* x_10; -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___spec__3(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_4); @@ -40553,15 +40553,15 @@ x_10 = lean_box(x_9); return x_10; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_20__processAssignment(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_299; uint8_t x_300; @@ -40582,8 +40582,8 @@ goto block_298; else { lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; uint8_t x_306; -x_302 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_303 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_302, x_3, x_4); +x_302 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_303 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_302, x_3, x_4); x_304 = lean_ctor_get(x_303, 0); lean_inc(x_304); x_305 = lean_ctor_get(x_303, 1); @@ -40629,8 +40629,8 @@ x_20 = lean_mk_array(x_18, x_19); x_21 = lean_unsigned_to_nat(1u); x_22 = lean_nat_sub(x_18, x_21); lean_dec(x_18); -x_23 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_20, x_22); -x_24 = l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_5, x_15, x_17, x_23, x_2, x_3, x_16); +x_23 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_20, x_22); +x_24 = l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_5, x_15, x_17, x_23, x_2, x_3, x_16); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; lean_object* x_26; uint8_t x_27; @@ -41086,8 +41086,8 @@ x_125 = lean_mk_array(x_123, x_124); x_126 = lean_unsigned_to_nat(1u); x_127 = lean_nat_sub(x_123, x_126); lean_dec(x_123); -x_128 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_125, x_127); -x_129 = l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_5, x_120, x_122, x_128, x_2, x_3, x_121); +x_128 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_125, x_127); +x_129 = l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_5, x_120, x_122, x_128, x_2, x_3, x_121); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; 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; @@ -41378,8 +41378,8 @@ x_193 = lean_mk_array(x_191, x_192); x_194 = lean_unsigned_to_nat(1u); x_195 = lean_nat_sub(x_191, x_194); lean_dec(x_191); -x_196 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_193, x_195); -x_197 = l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_5, x_188, x_190, x_196, x_2, x_3, x_189); +x_196 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_193, x_195); +x_197 = l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_5, x_188, x_190, x_196, x_2, x_3, x_189); if (lean_obj_tag(x_197) == 0) { lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; 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; @@ -41615,7 +41615,7 @@ return x_242; else { lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_283; uint8_t x_284; -x_243 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_8); +x_243 = l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_8); x_244 = lean_ctor_get(x_243, 0); lean_inc(x_244); x_245 = lean_ctor_get(x_243, 1); @@ -41633,8 +41633,8 @@ goto block_282; else { lean_object* x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; -x_285 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_286 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_285, x_3, x_245); +x_285 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_286 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_285, x_3, x_245); x_287 = lean_ctor_get(x_286, 0); lean_inc(x_287); x_288 = lean_unbox(x_287); @@ -41657,7 +41657,7 @@ lean_dec(x_286); lean_inc(x_1); x_291 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_291, 0, x_1); -x_292 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; +x_292 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8; x_293 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_293, 0, x_291); lean_ctor_set(x_293, 1, x_292); @@ -41695,9 +41695,9 @@ x_253 = lean_mk_array(x_251, x_252); x_254 = lean_unsigned_to_nat(1u); x_255 = lean_nat_sub(x_251, x_254); lean_dec(x_251); -x_256 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_253, x_255); +x_256 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_253, x_255); lean_inc(x_3); -x_257 = l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_5, x_248, x_250, x_256, x_2, x_3, x_249); +x_257 = l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main(x_5, x_248, x_250, x_256, x_2, x_3, x_249); if (lean_obj_tag(x_257) == 0) { lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint8_t x_262; @@ -41706,8 +41706,8 @@ lean_inc(x_258); x_259 = lean_ctor_get(x_257, 1); lean_inc(x_259); lean_dec(x_257); -x_260 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_261 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_244, x_260, x_3, x_259); +x_260 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_261 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_244, x_260, x_3, x_259); lean_dec(x_3); x_262 = !lean_is_exclusive(x_261); if (x_262 == 0) @@ -41738,8 +41738,8 @@ lean_inc(x_266); x_267 = lean_ctor_get(x_257, 1); lean_inc(x_267); lean_dec(x_257); -x_268 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_269 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_244, x_268, x_3, x_267); +x_268 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_269 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_244, x_268, x_3, x_267); lean_dec(x_3); x_270 = !lean_is_exclusive(x_269); if (x_270 == 0) @@ -41775,8 +41775,8 @@ lean_inc(x_274); x_275 = lean_ctor_get(x_247, 1); lean_inc(x_275); lean_dec(x_247); -x_276 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; -x_277 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_244, x_276, x_3, x_275); +x_276 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_277 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_244, x_276, x_3, x_275); lean_dec(x_3); x_278 = !lean_is_exclusive(x_277); if (x_278 == 0) @@ -41805,7 +41805,7 @@ return x_281; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_21__isDeltaCandidate(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_21__isDeltaCandidate(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -41832,17 +41832,17 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_21__isDeltaCandidate___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_21__isDeltaCandidate___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_ExprDefEq_21__isDeltaCandidate(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_ExprDefEq_21__isDeltaCandidate(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_22__isListLevelDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_22__isListLevelDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -41904,16 +41904,16 @@ return x_20; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_22__isListLevelDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_22__isListLevelDefEq___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___private_Init_Lean_Meta_ExprDefEq_22__isListLevelDefEq(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_ExprDefEq_22__isListLevelDefEq(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1() { _start: { lean_object* x_1; @@ -41921,17 +41921,17 @@ x_1 = lean_mk_string("delta"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Meta_isExprDefEq___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1; +x_2 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3() { _start: { lean_object* x_1; @@ -41939,17 +41939,17 @@ x_1 = lean_mk_string("unfoldLeft"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3; +x_1 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft(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; @@ -42021,8 +42021,8 @@ return x_23; else { lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_24 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4; -x_25 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_24, x_4, x_5); +x_24 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4; +x_25 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_24, x_4, x_5); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_unbox(x_26); @@ -42163,7 +42163,7 @@ return x_64; } } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1() { _start: { lean_object* x_1; @@ -42171,17 +42171,17 @@ x_1 = lean_mk_string("unfoldRight"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1; +x_1 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(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; @@ -42253,8 +42253,8 @@ return x_23; else { lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_24 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2; -x_25 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_24, x_4, x_5); +x_24 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2; +x_25 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_24, x_4, x_5); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_unbox(x_26); @@ -42395,7 +42395,7 @@ return x_64; } } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1() { _start: { lean_object* x_1; @@ -42403,17 +42403,17 @@ x_1 = lean_mk_string("unfoldLeftRight"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1; +x_1 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +x_2 = l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight(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; @@ -42485,8 +42485,8 @@ return x_23; else { lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_24 = l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2; -x_25 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_24, x_4, x_5); +x_24 = l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2; +x_25 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_24, x_4, x_5); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_unbox(x_26); @@ -42627,7 +42627,7 @@ return x_64; } } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { _start: { if (x_3 == 0) @@ -42649,7 +42649,7 @@ return x_10; } } } -lean_object* _init_l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1() { +lean_object* _init_l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -42657,27 +42657,27 @@ x_1 = lean_mk_string("heuristic failed "); return x_1; } } -lean_object* _init_l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2() { +lean_object* _init_l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1; +x_1 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3() { +lean_object* _init_l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2; +x_1 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { _start: { if (x_4 == 0) @@ -42703,7 +42703,7 @@ else { lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_inc(x_1); -x_11 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_1, x_5, x_6); +x_11 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_1, x_5, x_6); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); x_13 = lean_unbox(x_12); @@ -42745,7 +42745,7 @@ lean_inc(x_20); lean_dec(x_11); x_21 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_21, 0, x_2); -x_22 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3; +x_22 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3; x_23 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); @@ -42798,7 +42798,7 @@ return x_36; } } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_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; uint8_t x_23; @@ -42811,26 +42811,26 @@ x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_sub(x_9, x_12); lean_dec(x_9); lean_inc(x_1); -x_14 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_11, x_13); +x_14 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_11, x_13); x_15 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_8); lean_inc(x_15); x_16 = lean_mk_array(x_15, x_10); x_17 = lean_nat_sub(x_15, x_12); lean_dec(x_15); lean_inc(x_2); -x_18 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_16, x_17); +x_18 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_16, x_17); lean_inc(x_3); -x_19 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___boxed), 5, 3); +x_19 = lean_alloc_closure((void*)(l___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___boxed), 5, 3); lean_closure_set(x_19, 0, x_3); lean_closure_set(x_19, 1, x_14); lean_closure_set(x_19, 2, x_18); -x_20 = lean_alloc_closure((void*)(l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1___boxed), 5, 2); +x_20 = lean_alloc_closure((void*)(l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1___boxed), 5, 2); lean_closure_set(x_20, 0, x_3); lean_closure_set(x_20, 1, x_4); x_21 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg), 4, 2); lean_closure_set(x_21, 0, x_19); lean_closure_set(x_21, 1, x_20); -x_22 = lean_alloc_closure((void*)(l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___boxed), 6, 3); +x_22 = lean_alloc_closure((void*)(l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___boxed), 6, 3); lean_closure_set(x_22, 0, x_5); lean_closure_set(x_22, 1, x_1); lean_closure_set(x_22, 2, x_2); @@ -42889,7 +42889,7 @@ lean_dec(x_37); x_45 = lean_ctor_get(x_36, 1); lean_inc(x_45); lean_dec(x_36); -x_46 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_45); +x_46 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_45); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; uint8_t x_48; @@ -43075,7 +43075,7 @@ lean_dec(x_79); x_86 = lean_ctor_get(x_78, 1); lean_inc(x_86); lean_dec(x_78); -x_87 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_86); +x_87 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_86); if (lean_obj_tag(x_87) == 0) { lean_object* x_88; uint8_t x_89; @@ -43190,7 +43190,7 @@ return x_74; } } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_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; uint8_t x_23; @@ -43203,26 +43203,26 @@ x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_sub(x_9, x_12); lean_dec(x_9); lean_inc(x_1); -x_14 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_11, x_13); +x_14 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_11, x_13); x_15 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_8); lean_inc(x_15); x_16 = lean_mk_array(x_15, x_10); x_17 = lean_nat_sub(x_15, x_12); lean_dec(x_15); lean_inc(x_2); -x_18 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_16, x_17); +x_18 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_16, x_17); lean_inc(x_3); -x_19 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs___boxed), 5, 3); +x_19 = lean_alloc_closure((void*)(l___private_Lean_Meta_ExprDefEq_5__isDefEqArgs___boxed), 5, 3); lean_closure_set(x_19, 0, x_3); lean_closure_set(x_19, 1, x_14); lean_closure_set(x_19, 2, x_18); -x_20 = lean_alloc_closure((void*)(l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1___boxed), 5, 2); +x_20 = lean_alloc_closure((void*)(l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1___boxed), 5, 2); lean_closure_set(x_20, 0, x_3); lean_closure_set(x_20, 1, x_4); x_21 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg), 4, 2); lean_closure_set(x_21, 0, x_19); lean_closure_set(x_21, 1, x_20); -x_22 = lean_alloc_closure((void*)(l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___boxed), 6, 3); +x_22 = lean_alloc_closure((void*)(l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___boxed), 6, 3); lean_closure_set(x_22, 0, x_5); lean_closure_set(x_22, 1, x_1); lean_closure_set(x_22, 2, x_2); @@ -43281,7 +43281,7 @@ lean_dec(x_37); x_45 = lean_ctor_get(x_36, 1); lean_inc(x_45); lean_dec(x_36); -x_46 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_45); +x_46 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_45); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; uint8_t x_48; @@ -43467,7 +43467,7 @@ lean_dec(x_79); x_86 = lean_ctor_get(x_78, 1); lean_inc(x_86); lean_dec(x_78); -x_87 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_86); +x_87 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_6, x_86); if (lean_obj_tag(x_87) == 0) { lean_object* x_88; uint8_t x_89; @@ -43582,7 +43582,7 @@ return x_74; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_26__tryHeuristic(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_176; uint8_t x_177; @@ -43603,8 +43603,8 @@ goto block_175; else { lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; uint8_t x_183; -x_179 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; -x_180 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_179, x_3, x_4); +x_179 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +x_180 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_179, x_3, x_4); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_ctor_get(x_180, 1); @@ -43633,8 +43633,8 @@ uint8_t x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; x_12 = lean_ctor_get_uint8(x_10, sizeof(void*)*1); x_13 = 0; lean_ctor_set_uint8(x_10, sizeof(void*)*1, x_13); -x_14 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; -x_15 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(x_1, x_2, x_5, x_6, x_14, x_3, x_8); +x_14 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +x_15 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(x_1, x_2, x_5, x_6, x_14, x_3, x_8); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; uint8_t x_18; @@ -43928,8 +43928,8 @@ x_79 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_79, 0, x_77); lean_ctor_set_uint8(x_79, sizeof(void*)*1, x_78); lean_ctor_set(x_8, 4, x_79); -x_80 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; -x_81 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(x_1, x_2, x_5, x_6, x_80, x_3, x_8); +x_80 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +x_81 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(x_1, x_2, x_5, x_6, x_80, x_3, x_8); if (lean_obj_tag(x_81) == 0) { lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; 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; @@ -44123,8 +44123,8 @@ lean_ctor_set(x_123, 2, x_115); lean_ctor_set(x_123, 3, x_116); lean_ctor_set(x_123, 4, x_122); lean_ctor_set(x_123, 5, x_117); -x_124 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; -x_125 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(x_1, x_2, x_5, x_6, x_124, x_3, x_123); +x_124 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +x_125 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1(x_1, x_2, x_5, x_6, x_124, x_3, x_123); if (lean_obj_tag(x_125) == 0) { lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; 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; @@ -44280,15 +44280,15 @@ return x_155; else { lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; -x_156 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_8); +x_156 = l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_check___spec__1___rarg(x_8); x_157 = lean_ctor_get(x_156, 0); lean_inc(x_157); x_158 = lean_ctor_get(x_156, 1); lean_inc(x_158); lean_dec(x_156); -x_159 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +x_159 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; lean_inc(x_3); -x_160 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__2(x_1, x_2, x_5, x_6, x_159, x_3, x_158); +x_160 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__2(x_1, x_2, x_5, x_6, x_159, x_3, x_158); if (lean_obj_tag(x_160) == 0) { lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; @@ -44297,7 +44297,7 @@ lean_inc(x_161); x_162 = lean_ctor_get(x_160, 1); lean_inc(x_162); lean_dec(x_160); -x_163 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_157, x_159, x_3, x_162); +x_163 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_157, x_159, x_3, x_162); lean_dec(x_3); x_164 = !lean_is_exclusive(x_163); if (x_164 == 0) @@ -44328,7 +44328,7 @@ lean_inc(x_168); x_169 = lean_ctor_get(x_160, 1); lean_inc(x_169); lean_dec(x_160); -x_170 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_157, x_159, x_3, x_169); +x_170 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_check___spec__2(x_157, x_159, x_3, x_169); lean_dec(x_3); x_171 = !lean_is_exclusive(x_170); if (x_171 == 0) @@ -44356,31 +44356,31 @@ return x_174; } } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___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* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_3); lean_dec(x_3); -x_7 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1(x_1, x_2, x_6, x_4, x_5); +x_7 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__1(x_1, x_2, x_6, x_4, x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___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_4); lean_dec(x_4); -x_8 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2(x_1, x_2, x_3, x_7, x_5, x_6); +x_8 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2(x_1, x_2, x_3, x_7, x_5, x_6); lean_dec(x_5); return x_8; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_27__unfold___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_27__unfold___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; @@ -44442,15 +44442,15 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_27__unfold(lean_object* x_1) { +lean_object* l___private_Lean_Meta_ExprDefEq_27__unfold(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_ExprDefEq_27__unfold___rarg), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_ExprDefEq_27__unfold___rarg), 5, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_28__unfoldBothDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_28__unfoldBothDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { switch (lean_obj_tag(x_2)) { @@ -44466,7 +44466,7 @@ lean_dec(x_2); x_7 = lean_ctor_get(x_3, 1); lean_inc(x_7); lean_dec(x_3); -x_8 = l___private_Init_Lean_Meta_ExprDefEq_22__isListLevelDefEq(x_6, x_7, x_4, x_5); +x_8 = l___private_Lean_Meta_ExprDefEq_22__isListLevelDefEq(x_6, x_7, x_4, x_5); lean_dec(x_4); return x_8; } @@ -44492,7 +44492,7 @@ lean_object* x_12; lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_12 = l___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic(x_2, x_3, x_4, x_5); +x_12 = l___private_Lean_Meta_ExprDefEq_26__tryHeuristic(x_2, x_3, x_4, x_5); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; uint8_t x_14; @@ -44567,7 +44567,7 @@ lean_dec(x_19); x_30 = lean_ctor_get(x_20, 0); lean_inc(x_30); lean_dec(x_20); -x_31 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(x_1, x_2, x_30, x_4, x_29); +x_31 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(x_1, x_2, x_30, x_4, x_29); return x_31; } } @@ -44621,7 +44621,7 @@ lean_object* x_40; lean_object* x_41; x_40 = lean_ctor_get(x_38, 1); lean_inc(x_40); lean_dec(x_38); -x_41 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_1, x_37, x_3, x_4, x_40); +x_41 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_1, x_37, x_3, x_4, x_40); return x_41; } else @@ -44634,7 +44634,7 @@ lean_dec(x_38); x_43 = lean_ctor_get(x_39, 0); lean_inc(x_43); lean_dec(x_39); -x_44 = l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight(x_1, x_37, x_43, x_4, x_42); +x_44 = l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight(x_1, x_37, x_43, x_4, x_42); return x_44; } } @@ -44785,7 +44785,7 @@ return x_70; } } } -uint8_t l___private_Init_Lean_Meta_ExprDefEq_29__sameHeadSymbol(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Meta_ExprDefEq_29__sameHeadSymbol(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -44819,18 +44819,18 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_29__sameHeadSymbol___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_ExprDefEq_29__sameHeadSymbol___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Meta_ExprDefEq_29__sameHeadSymbol(x_1, x_2); +x_3 = l___private_Lean_Meta_ExprDefEq_29__sameHeadSymbol(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(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; @@ -44895,7 +44895,7 @@ x_21 = lean_ctor_get(x_11, 0); lean_inc(x_21); lean_dec(x_11); x_22 = l_Lean_ConstantInfo_name(x_2); -x_23 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(x_22, x_3, x_21, x_5, x_20); +x_23 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(x_22, x_3, x_21, x_5, x_20); return x_23; } } @@ -44933,7 +44933,7 @@ lean_dec(x_7); x_29 = lean_ctor_get(x_8, 0); lean_inc(x_29); lean_dec(x_8); -x_30 = l___private_Init_Lean_Meta_ExprDefEq_29__sameHeadSymbol(x_29, x_4); +x_30 = l___private_Lean_Meta_ExprDefEq_29__sameHeadSymbol(x_29, x_4); if (x_30 == 0) { lean_object* x_31; lean_object* x_32; @@ -44953,7 +44953,7 @@ lean_dec(x_3); x_34 = lean_ctor_get(x_32, 1); lean_inc(x_34); lean_dec(x_32); -x_35 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_31, x_29, x_4, x_5, x_34); +x_35 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_31, x_29, x_4, x_5, x_34); return x_35; } else @@ -44966,12 +44966,12 @@ lean_dec(x_32); x_37 = lean_ctor_get(x_33, 0); lean_inc(x_37); lean_dec(x_33); -x_38 = l___private_Init_Lean_Meta_ExprDefEq_29__sameHeadSymbol(x_3, x_37); +x_38 = l___private_Lean_Meta_ExprDefEq_29__sameHeadSymbol(x_3, x_37); if (x_38 == 0) { lean_object* x_39; lean_dec(x_3); -x_39 = l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight(x_31, x_29, x_37, x_5, x_36); +x_39 = l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight(x_31, x_29, x_37, x_5, x_36); return x_39; } else @@ -44980,7 +44980,7 @@ lean_object* x_40; lean_object* x_41; lean_dec(x_31); lean_dec(x_29); x_40 = l_Lean_ConstantInfo_name(x_2); -x_41 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(x_40, x_3, x_37, x_5, x_36); +x_41 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(x_40, x_3, x_37, x_5, x_36); return x_41; } } @@ -45018,7 +45018,7 @@ else lean_object* x_46; lean_object* x_47; lean_dec(x_3); x_46 = l_Lean_ConstantInfo_name(x_1); -x_47 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_46, x_29, x_4, x_5, x_28); +x_47 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_46, x_29, x_4, x_5, x_28); return x_47; } } @@ -45050,17 +45050,17 @@ return x_51; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(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; @@ -45084,7 +45084,7 @@ lean_dec(x_10); if (x_12 == 0) { lean_object* x_13; -x_13 = l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_13 = l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_6); return x_13; } else @@ -45104,7 +45104,7 @@ lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec(x_14); -x_17 = l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_16); +x_17 = l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_16); return x_17; } else @@ -45118,7 +45118,7 @@ x_19 = lean_ctor_get(x_15, 0); lean_inc(x_19); lean_dec(x_15); x_20 = l_Lean_ConstantInfo_name(x_2); -x_21 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(x_20, x_3, x_19, x_5, x_18); +x_21 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(x_20, x_3, x_19, x_5, x_18); return x_21; } } @@ -45168,7 +45168,7 @@ lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_26, 1); lean_inc(x_28); lean_dec(x_26); -x_29 = l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_28); +x_29 = l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_28); return x_29; } else @@ -45182,7 +45182,7 @@ x_31 = lean_ctor_get(x_27, 0); lean_inc(x_31); lean_dec(x_27); x_32 = l_Lean_ConstantInfo_name(x_1); -x_33 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_32, x_31, x_4, x_5, x_30); +x_33 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_32, x_31, x_4, x_5, x_30); return x_33; } } @@ -45216,29 +45216,29 @@ return x_37; else { lean_object* x_38; -x_38 = l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_38 = l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_6); return x_38; } } else { lean_object* x_39; -x_39 = l___private_Init_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_39 = l___private_Lean_Meta_ExprDefEq_30__unfoldComparingHeadsDefEq(x_1, x_2, x_3, x_4, x_5, x_6); return x_39; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(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; uint8_t x_9; uint8_t x_10; @@ -45289,7 +45289,7 @@ lean_dec(x_11); x_46 = lean_ctor_get(x_44, 1); lean_inc(x_46); lean_dec(x_44); -x_47 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_46); +x_47 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_46); return x_47; } else @@ -45302,7 +45302,7 @@ lean_dec(x_44); x_49 = lean_ctor_get(x_45, 0); lean_inc(x_49); lean_dec(x_45); -x_50 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_11, x_49, x_4, x_5, x_48); +x_50 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_11, x_49, x_4, x_5, x_48); return x_50; } } @@ -45351,7 +45351,7 @@ if (x_15 == 0) { lean_object* x_17; lean_dec(x_14); -x_17 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_17 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); return x_17; } else @@ -45372,7 +45372,7 @@ lean_dec(x_14); x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); -x_21 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_20); +x_21 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_20); return x_21; } else @@ -45385,7 +45385,7 @@ lean_dec(x_18); x_23 = lean_ctor_get(x_19, 0); lean_inc(x_23); lean_dec(x_19); -x_24 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(x_14, x_3, x_23, x_5, x_22); +x_24 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(x_14, x_3, x_23, x_5, x_22); return x_24; } } @@ -45423,7 +45423,7 @@ if (x_10 == 0) { lean_object* x_29; lean_dec(x_14); -x_29 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_29 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); return x_29; } else @@ -45432,7 +45432,7 @@ if (x_15 == 0) { lean_object* x_30; lean_dec(x_14); -x_30 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_30 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); return x_30; } else @@ -45453,7 +45453,7 @@ lean_dec(x_14); x_33 = lean_ctor_get(x_31, 1); lean_inc(x_33); lean_dec(x_31); -x_34 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_33); +x_34 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_33); return x_34; } else @@ -45466,7 +45466,7 @@ lean_dec(x_31); x_36 = lean_ctor_get(x_32, 0); lean_inc(x_36); lean_dec(x_32); -x_37 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(x_14, x_3, x_36, x_5, x_35); +x_37 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(x_14, x_3, x_36, x_5, x_35); return x_37; } } @@ -45504,22 +45504,22 @@ return x_41; else { lean_object* x_56; -x_56 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_56 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_6); return x_56; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; uint8_t x_11; @@ -45539,7 +45539,7 @@ if (x_11 == 0) { lean_object* x_12; lean_dec(x_8); -x_12 = l___private_Init_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_12 = l___private_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(x_1, x_2, x_3, x_4, x_5, x_6); return x_12; } else @@ -45560,7 +45560,7 @@ lean_dec(x_8); x_15 = lean_ctor_get(x_13, 1); lean_inc(x_15); lean_dec(x_13); -x_16 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_15); +x_16 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_15); return x_16; } else @@ -45573,7 +45573,7 @@ lean_dec(x_13); x_18 = lean_ctor_get(x_14, 0); lean_inc(x_18); lean_dec(x_14); -x_19 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_8, x_18, x_4, x_5, x_17); +x_19 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_8, x_18, x_4, x_5, x_17); return x_19; } } @@ -45626,7 +45626,7 @@ lean_dec(x_10); x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); lean_dec(x_24); -x_27 = l___private_Init_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_26); +x_27 = l___private_Lean_Meta_ExprDefEq_31__unfoldDefEq(x_1, x_2, x_3, x_4, x_5, x_26); return x_27; } else @@ -45639,7 +45639,7 @@ lean_dec(x_24); x_29 = lean_ctor_get(x_25, 0); lean_inc(x_29); lean_dec(x_25); -x_30 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(x_10, x_3, x_29, x_5, x_28); +x_30 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(x_10, x_3, x_29, x_5, x_28); return x_30; } } @@ -45674,28 +45674,28 @@ else { lean_object* x_35; lean_dec(x_10); -x_35 = l___private_Init_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_35 = l___private_Lean_Meta_ExprDefEq_32__unfoldReducibeDefEq(x_1, x_2, x_3, x_4, x_5, x_6); return x_35; } } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(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_Expr_getAppFn___main(x_1); -x_6 = l___private_Init_Lean_Meta_ExprDefEq_21__isDeltaCandidate(x_5, x_3, x_4); +x_6 = l___private_Lean_Meta_ExprDefEq_21__isDeltaCandidate(x_5, x_3, x_4); lean_dec(x_5); if (lean_obj_tag(x_6) == 0) { @@ -45706,7 +45706,7 @@ x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); x_9 = l_Lean_Expr_getAppFn___main(x_2); -x_10 = l___private_Init_Lean_Meta_ExprDefEq_21__isDeltaCandidate(x_9, x_3, x_8); +x_10 = l___private_Lean_Meta_ExprDefEq_21__isDeltaCandidate(x_9, x_3, x_8); lean_dec(x_9); if (lean_obj_tag(x_10) == 0) { @@ -45804,7 +45804,7 @@ lean_inc(x_33); lean_dec(x_23); x_34 = l_Lean_ConstantInfo_name(x_21); lean_dec(x_21); -x_35 = l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight(x_34, x_1, x_33, x_3, x_32); +x_35 = l___private_Lean_Meta_ExprDefEq_24__isDefEqRight(x_34, x_1, x_33, x_3, x_32); return x_35; } } @@ -45898,7 +45898,7 @@ lean_inc(x_54); lean_dec(x_44); x_55 = l_Lean_ConstantInfo_name(x_42); lean_dec(x_42); -x_56 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_55, x_54, x_2, x_3, x_53); +x_56 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft(x_55, x_54, x_2, x_3, x_53); return x_56; } } @@ -45948,7 +45948,7 @@ if (x_66 == 0) { lean_object* x_67; lean_dec(x_64); -x_67 = l___private_Init_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq(x_62, x_63, x_1, x_2, x_3, x_61); +x_67 = l___private_Lean_Meta_ExprDefEq_33__unfoldNonProjFnDefEq(x_62, x_63, x_1, x_2, x_3, x_61); lean_dec(x_63); lean_dec(x_62); return x_67; @@ -45958,7 +45958,7 @@ else lean_object* x_68; lean_dec(x_63); lean_dec(x_62); -x_68 = l___private_Init_Lean_Meta_ExprDefEq_28__unfoldBothDefEq(x_64, x_1, x_2, x_3, x_61); +x_68 = l___private_Lean_Meta_ExprDefEq_28__unfoldBothDefEq(x_64, x_1, x_2, x_3, x_61); return x_68; } } @@ -46018,7 +46018,7 @@ return x_76; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_35__isAssigned(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_35__isAssigned(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 2) @@ -46049,16 +46049,16 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_35__isAssigned___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_35__isAssigned___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_ExprDefEq_35__isAssigned(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_ExprDefEq_35__isAssigned(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_1) == 2) @@ -46177,16 +46177,16 @@ return x_33; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead___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___private_Init_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_37__isSynthetic(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_37__isSynthetic(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 2) @@ -46298,16 +46298,16 @@ return x_31; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_37__isSynthetic___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_37__isSynthetic___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_ExprDefEq_37__isSynthetic(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_ExprDefEq_37__isSynthetic(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_38__isAssignable(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_38__isAssignable(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 2) @@ -46417,21 +46417,21 @@ return x_30; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_38__isAssignable___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_38__isAssignable___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_ExprDefEq_38__isAssignable(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_ExprDefEq_38__isAssignable(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -uint8_t l___private_Init_Lean_Meta_ExprDefEq_39__etaEq(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Meta_ExprDefEq_39__etaEq(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l___private_Init_Lean_Expr_9__etaExpandedAux___main(x_1, x_3); +x_4 = l___private_Lean_Expr_9__etaExpandedAux___main(x_1, x_3); if (lean_obj_tag(x_4) == 0) { uint8_t x_5; @@ -46450,17 +46450,17 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_39__etaEq___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_ExprDefEq_39__etaEq___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Meta_ExprDefEq_39__etaEq(x_1, x_2); +x_3 = l___private_Lean_Meta_ExprDefEq_39__etaEq(x_1, x_2); lean_dec(x_2); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_40__isLetFVar(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_ExprDefEq_40__isLetFVar(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -46520,7 +46520,7 @@ return x_17; } } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -46536,7 +46536,7 @@ lean_inc(x_7); lean_inc(x_6); lean_ctor_set(x_4, 5, x_17); lean_inc(x_3); -x_18 = l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(x_1, x_2, x_3, x_4); +x_18 = l___private_Lean_Meta_ExprDefEq_20__processAssignment(x_1, x_2, x_3, x_4); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; uint8_t x_20; @@ -46579,7 +46579,7 @@ lean_dec(x_19); x_27 = lean_ctor_get(x_18, 1); lean_inc(x_27); lean_dec(x_18); -x_28 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); +x_28 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; uint8_t x_30; @@ -46724,7 +46724,7 @@ lean_ctor_set(x_59, 3, x_48); lean_ctor_set(x_59, 4, x_49); lean_ctor_set(x_59, 5, x_58); lean_inc(x_3); -x_60 = l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(x_1, x_2, x_3, x_59); +x_60 = l___private_Lean_Meta_ExprDefEq_20__processAssignment(x_1, x_2, x_3, x_59); if (lean_obj_tag(x_60) == 0) { lean_object* x_61; uint8_t x_62; @@ -46765,7 +46765,7 @@ lean_dec(x_61); x_68 = lean_ctor_get(x_60, 1); lean_inc(x_68); lean_dec(x_60); -x_69 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); +x_69 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; uint8_t x_71; @@ -46880,7 +46880,7 @@ return x_56; } } } -lean_object* l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -46896,7 +46896,7 @@ lean_inc(x_7); lean_inc(x_6); lean_ctor_set(x_4, 5, x_17); lean_inc(x_3); -x_18 = l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(x_2, x_1, x_3, x_4); +x_18 = l___private_Lean_Meta_ExprDefEq_20__processAssignment(x_2, x_1, x_3, x_4); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; uint8_t x_20; @@ -46939,7 +46939,7 @@ lean_dec(x_19); x_27 = lean_ctor_get(x_18, 1); lean_inc(x_27); lean_dec(x_18); -x_28 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); +x_28 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; uint8_t x_30; @@ -47084,7 +47084,7 @@ lean_ctor_set(x_59, 3, x_48); lean_ctor_set(x_59, 4, x_49); lean_ctor_set(x_59, 5, x_58); lean_inc(x_3); -x_60 = l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(x_2, x_1, x_3, x_59); +x_60 = l___private_Lean_Meta_ExprDefEq_20__processAssignment(x_2, x_1, x_3, x_59); if (lean_obj_tag(x_60) == 0) { lean_object* x_61; uint8_t x_62; @@ -47125,7 +47125,7 @@ lean_dec(x_61); x_68 = lean_ctor_get(x_60, 1); lean_inc(x_68); lean_dec(x_60); -x_69 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); +x_69 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; uint8_t x_71; @@ -47240,7 +47240,7 @@ return x_56; } } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -47250,7 +47250,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2() { _start: { lean_object* x_1; @@ -47258,27 +47258,27 @@ x_1 = lean_mk_string(" [nonassignable]"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2; +x_1 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3; +x_1 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5() { _start: { lean_object* x_1; @@ -47286,27 +47286,27 @@ x_1 = lean_mk_string(" [assignable]"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5; +x_1 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7() { +lean_object* _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6; +x_1 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_355; @@ -47325,7 +47325,7 @@ lean_inc(x_380); lean_dec(x_2); lean_inc(x_3); lean_inc(x_379); -x_381 = l___private_Init_Lean_Meta_ExprDefEq_40__isLetFVar(x_379, x_3, x_4); +x_381 = l___private_Lean_Meta_ExprDefEq_40__isLetFVar(x_379, x_3, x_4); if (lean_obj_tag(x_381) == 0) { lean_object* x_382; uint8_t x_383; @@ -47340,7 +47340,7 @@ x_384 = lean_ctor_get(x_381, 1); lean_inc(x_384); lean_dec(x_381); lean_inc(x_380); -x_385 = l___private_Init_Lean_Meta_ExprDefEq_40__isLetFVar(x_380, x_3, x_384); +x_385 = l___private_Lean_Meta_ExprDefEq_40__isLetFVar(x_380, x_3, x_384); if (lean_obj_tag(x_385) == 0) { lean_object* x_386; uint8_t x_387; @@ -47737,12 +47737,12 @@ if (x_6 == 0) { uint8_t x_7; lean_inc(x_1); -x_7 = l___private_Init_Lean_Meta_ExprDefEq_39__etaEq(x_1, x_2); +x_7 = l___private_Lean_Meta_ExprDefEq_39__etaEq(x_1, x_2); if (x_7 == 0) { uint8_t x_8; lean_inc(x_2); -x_8 = l___private_Init_Lean_Meta_ExprDefEq_39__etaEq(x_2, x_1); +x_8 = l___private_Lean_Meta_ExprDefEq_39__etaEq(x_2, x_1); if (x_8 == 0) { lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; @@ -47788,7 +47788,7 @@ block_338: lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_dec(x_12); lean_inc(x_9); -x_13 = l___private_Init_Lean_Meta_ExprDefEq_35__isAssigned(x_9, x_3, x_4); +x_13 = l___private_Lean_Meta_ExprDefEq_35__isAssigned(x_9, x_3, x_4); x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); x_15 = lean_unbox(x_14); @@ -47800,7 +47800,7 @@ x_16 = lean_ctor_get(x_13, 1); lean_inc(x_16); lean_dec(x_13); lean_inc(x_10); -x_17 = l___private_Init_Lean_Meta_ExprDefEq_35__isAssigned(x_10, x_3, x_16); +x_17 = l___private_Lean_Meta_ExprDefEq_35__isAssigned(x_10, x_3, x_16); x_18 = lean_ctor_get(x_17, 0); lean_inc(x_18); x_19 = lean_unbox(x_18); @@ -47813,7 +47813,7 @@ lean_inc(x_20); lean_dec(x_17); lean_inc(x_1); lean_inc(x_9); -x_21 = l___private_Init_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(x_9, x_1, x_3, x_20); +x_21 = l___private_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(x_9, x_1, x_3, x_20); x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); x_23 = lean_unbox(x_22); @@ -47826,7 +47826,7 @@ lean_inc(x_24); lean_dec(x_21); lean_inc(x_2); lean_inc(x_10); -x_25 = l___private_Init_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(x_10, x_2, x_3, x_24); +x_25 = l___private_Lean_Meta_ExprDefEq_36__isDelayedAssignedHead(x_10, x_2, x_3, x_24); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); @@ -47838,7 +47838,7 @@ if (x_300 == 0) { lean_object* x_301; lean_inc(x_9); -x_301 = l___private_Init_Lean_Meta_ExprDefEq_37__isSynthetic(x_9, x_3, x_27); +x_301 = l___private_Lean_Meta_ExprDefEq_37__isSynthetic(x_9, x_3, x_27); if (lean_obj_tag(x_301) == 0) { lean_object* x_302; uint8_t x_303; @@ -47866,7 +47866,7 @@ lean_inc(x_306); lean_dec(x_301); lean_inc(x_3); lean_inc(x_9); -x_307 = l___private_Init_Lean_Meta_ExprDefEq_4__trySynthPending(x_9, x_3, x_306); +x_307 = l___private_Lean_Meta_ExprDefEq_4__trySynthPending(x_9, x_3, x_306); if (lean_obj_tag(x_307) == 0) { lean_object* x_308; lean_object* x_309; uint8_t x_310; @@ -47960,7 +47960,7 @@ if (x_28 == 0) { lean_object* x_277; lean_inc(x_10); -x_277 = l___private_Init_Lean_Meta_ExprDefEq_37__isSynthetic(x_10, x_3, x_29); +x_277 = l___private_Lean_Meta_ExprDefEq_37__isSynthetic(x_10, x_3, x_29); if (lean_obj_tag(x_277) == 0) { lean_object* x_278; uint8_t x_279; @@ -47988,7 +47988,7 @@ lean_inc(x_282); lean_dec(x_277); lean_inc(x_3); lean_inc(x_10); -x_283 = l___private_Init_Lean_Meta_ExprDefEq_4__trySynthPending(x_10, x_3, x_282); +x_283 = l___private_Lean_Meta_ExprDefEq_4__trySynthPending(x_10, x_3, x_282); if (lean_obj_tag(x_283) == 0) { lean_object* x_284; lean_object* x_285; uint8_t x_286; @@ -48081,7 +48081,7 @@ if (x_30 == 0) { lean_object* x_32; lean_inc(x_9); -x_32 = l___private_Init_Lean_Meta_ExprDefEq_38__isAssignable(x_9, x_3, x_31); +x_32 = l___private_Lean_Meta_ExprDefEq_38__isAssignable(x_9, x_3, x_31); if (lean_obj_tag(x_32) == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -48098,7 +48098,7 @@ if (lean_is_exclusive(x_32)) { x_35 = lean_box(0); } lean_inc(x_10); -x_36 = l___private_Init_Lean_Meta_ExprDefEq_38__isAssignable(x_10, x_3, x_34); +x_36 = l___private_Lean_Meta_ExprDefEq_38__isAssignable(x_10, x_3, x_34); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; uint8_t x_42; uint8_t x_261; @@ -48156,7 +48156,7 @@ else { lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; uint8_t x_259; x_255 = l_Lean_Meta_isExprDefEq___closed__2; -x_256 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_255, x_3, x_38); +x_256 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_255, x_3, x_38); x_257 = lean_ctor_get(x_256, 0); lean_inc(x_257); x_258 = lean_ctor_get(x_256, 1); @@ -48232,7 +48232,7 @@ lean_object* x_101; lean_dec(x_39); lean_dec(x_35); lean_dec(x_10); -x_101 = l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(x_2, x_1, x_3, x_43); +x_101 = l___private_Lean_Meta_ExprDefEq_20__processAssignment(x_2, x_1, x_3, x_43); if (lean_obj_tag(x_101) == 0) { uint8_t x_102; @@ -48332,7 +48332,7 @@ lean_object* x_160; lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_160 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__2(x_1, x_2, x_3, x_122); +x_160 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__2(x_1, x_2, x_3, x_122); if (lean_obj_tag(x_160) == 0) { lean_object* x_161; uint8_t x_162; @@ -48346,7 +48346,7 @@ lean_object* x_163; lean_object* x_164; x_163 = lean_ctor_get(x_160, 1); lean_inc(x_163); lean_dec(x_160); -x_164 = l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(x_1, x_2, x_3, x_163); +x_164 = l___private_Lean_Meta_ExprDefEq_20__processAssignment(x_1, x_2, x_3, x_163); if (lean_obj_tag(x_164) == 0) { uint8_t x_165; @@ -48476,7 +48476,7 @@ lean_dec(x_123); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_124 = l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__1(x_1, x_2, x_3, x_122); +x_124 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___spec__1(x_1, x_2, x_3, x_122); if (lean_obj_tag(x_124) == 0) { lean_object* x_125; uint8_t x_126; @@ -48490,7 +48490,7 @@ lean_object* x_127; lean_object* x_128; x_127 = lean_ctor_get(x_124, 1); lean_inc(x_127); lean_dec(x_124); -x_128 = l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(x_2, x_1, x_3, x_127); +x_128 = l___private_Lean_Meta_ExprDefEq_20__processAssignment(x_2, x_1, x_3, x_127); if (lean_obj_tag(x_128) == 0) { uint8_t x_129; @@ -48669,7 +48669,7 @@ lean_dec(x_35); lean_dec(x_33); lean_dec(x_10); lean_dec(x_9); -x_201 = l___private_Init_Lean_Meta_ExprDefEq_20__processAssignment(x_1, x_2, x_3, x_43); +x_201 = l___private_Lean_Meta_ExprDefEq_20__processAssignment(x_1, x_2, x_3, x_43); if (lean_obj_tag(x_201) == 0) { uint8_t x_202; @@ -48769,8 +48769,8 @@ goto block_83; else { lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; -x_87 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1; -x_88 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_87, x_3, x_43); +x_87 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1; +x_88 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_87, x_3, x_43); x_89 = lean_ctor_get(x_88, 0); lean_inc(x_89); x_90 = lean_ctor_get(x_88, 1); @@ -48833,7 +48833,7 @@ lean_ctor_set(x_62, 0, x_2); x_63 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_63, 0, x_61); lean_ctor_set(x_63, 1, x_62); -x_64 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1; +x_64 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1; x_65 = l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isTypeCorrect___spec__1(x_64, x_63, x_3, x_51); x_66 = !lean_is_exclusive(x_65); if (x_66 == 0) @@ -48920,7 +48920,7 @@ x_222 = lean_unbox(x_33); if (x_222 == 0) { lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; uint8_t x_228; -x_223 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4; +x_223 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4; x_224 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_224, 0, x_220); lean_ctor_set(x_224, 1, x_223); @@ -48949,7 +48949,7 @@ goto block_217; else { lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; -x_233 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7; +x_233 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7; x_234 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_234, 0, x_227); lean_ctor_set(x_234, 1, x_233); @@ -48965,7 +48965,7 @@ goto block_217; else { lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; uint8_t x_243; -x_238 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7; +x_238 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7; x_239 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_239, 0, x_220); lean_ctor_set(x_239, 1, x_238); @@ -48980,7 +48980,7 @@ x_243 = lean_unbox(x_37); if (x_243 == 0) { lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_244 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4; +x_244 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4; x_245 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_245, 0, x_242); lean_ctor_set(x_245, 1, x_244); @@ -49198,7 +49198,7 @@ lean_object* x_357; lean_object* x_358; lean_object* x_359; x_357 = lean_ctor_get(x_3, 1); lean_inc(x_357); x_358 = l_Array_empty___closed__1; -x_359 = l___private_Init_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(x_357, x_358, x_1, x_2, x_358, x_3, x_4); +x_359 = l___private_Lean_Meta_ExprDefEq_6__isDefEqBindingAux___main(x_357, x_358, x_1, x_2, x_358, x_3, x_4); lean_dec(x_2); if (lean_obj_tag(x_359) == 0) { @@ -49272,15 +49272,15 @@ return x_377; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_42__isDefEqProofIrrel(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_42__isDefEqProofIrrel(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -49806,7 +49806,7 @@ return x_29; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_43__isDefEqWHNF(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_43__isDefEqWHNF(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; @@ -49841,7 +49841,7 @@ lean_dec(x_2); lean_inc(x_4); lean_inc(x_10); lean_inc(x_7); -x_13 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_7, x_10, x_4, x_11); +x_13 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_7, x_10, x_4, x_11); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; uint8_t x_15; @@ -49963,7 +49963,7 @@ lean_object* x_39; lean_inc(x_4); lean_inc(x_10); lean_inc(x_7); -x_39 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_7, x_10, x_4, x_11); +x_39 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_7, x_10, x_4, x_11); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; uint8_t x_41; @@ -50138,7 +50138,7 @@ return x_72; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_44__unstuckMVar(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; @@ -50263,7 +50263,7 @@ return x_29; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -50425,7 +50425,7 @@ return x_40; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; @@ -50444,7 +50444,7 @@ lean_dec(x_3); x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__1(x_1, x_2, x_4, x_8); +x_9 = l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__1(x_1, x_2, x_4, x_8); return x_9; } else @@ -50472,7 +50472,7 @@ lean_dec(x_3); x_15 = lean_ctor_get(x_12, 1); lean_inc(x_15); lean_dec(x_12); -x_16 = l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__1(x_1, x_2, x_4, x_15); +x_16 = l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__1(x_1, x_2, x_4, x_15); return x_16; } else @@ -50548,16 +50548,16 @@ return x_29; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_inc(x_1); -x_5 = l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_1, x_2, x_1, x_3, x_4); +x_5 = l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_1, x_2, x_1, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_ExprDefEq_46__consumeLet___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 8) @@ -50583,28 +50583,28 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_ExprDefEq_46__consumeLet___main___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___main(x_1); +x_2 = l___private_Lean_Meta_ExprDefEq_46__consumeLet___main(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet(lean_object* x_1) { +lean_object* l___private_Lean_Meta_ExprDefEq_46__consumeLet(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___main(x_1); +x_2 = l___private_Lean_Meta_ExprDefEq_46__consumeLet___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_ExprDefEq_46__consumeLet___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet(x_1); +x_2 = l___private_Lean_Meta_ExprDefEq_46__consumeLet(x_1); lean_dec(x_1); return x_2; } @@ -50636,14 +50636,14 @@ x_12 = lean_mk_array(x_10, x_11); x_13 = lean_unsigned_to_nat(1u); x_14 = lean_nat_sub(x_10, x_13); lean_dec(x_10); -x_15 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_12, x_14); +x_15 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_12, x_14); x_16 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_9); lean_inc(x_16); x_17 = lean_mk_array(x_16, x_11); x_18 = lean_nat_sub(x_16, x_13); lean_dec(x_16); -x_19 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_17, x_18); -x_20 = l___private_Init_Lean_Meta_ExprDefEq_5__isDefEqArgs(x_3, x_15, x_19, x_5, x_6); +x_19 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_17, x_18); +x_20 = l___private_Lean_Meta_ExprDefEq_5__isDefEqArgs(x_3, x_15, x_19, x_5, x_6); lean_dec(x_19); lean_dec(x_15); return x_20; @@ -50718,7 +50718,7 @@ lean_dec(x_23); x_31 = lean_ctor_get(x_22, 1); lean_inc(x_31); lean_dec(x_22); -x_32 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_4, x_31); +x_32 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_4, x_31); if (lean_obj_tag(x_32) == 0) { lean_object* x_33; uint8_t x_34; @@ -50904,7 +50904,7 @@ lean_dec(x_65); x_72 = lean_ctor_get(x_64, 1); lean_inc(x_72); lean_dec(x_64); -x_73 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_4, x_72); +x_73 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_4, x_72); if (lean_obj_tag(x_73) == 0) { lean_object* x_74; uint8_t x_75; @@ -51019,7 +51019,7 @@ return x_60; } } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_43__isDefEqWHNF___at_Lean_Meta_isExprDefEqAuxImpl___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_ExprDefEq_43__isDefEqWHNF___at_Lean_Meta_isExprDefEqAuxImpl___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -51062,7 +51062,7 @@ lean_dec(x_2); lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_13 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_6, x_9, x_3, x_10); +x_13 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_6, x_9, x_3, x_10); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; uint8_t x_15; @@ -51149,7 +51149,7 @@ if (lean_is_exclusive(x_13)) { lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_478 = l___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta(x_6, x_9, x_3, x_32); +x_478 = l___private_Lean_Meta_ExprDefEq_1__isDefEqEta(x_6, x_9, x_3, x_32); if (lean_obj_tag(x_478) == 0) { lean_object* x_479; uint8_t x_480; @@ -51166,7 +51166,7 @@ lean_dec(x_478); lean_inc(x_3); lean_inc(x_6); lean_inc(x_9); -x_482 = l___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta(x_9, x_6, x_3, x_481); +x_482 = l___private_Lean_Meta_ExprDefEq_1__isDefEqEta(x_9, x_6, x_3, x_481); if (lean_obj_tag(x_482) == 0) { lean_object* x_483; lean_object* x_484; uint8_t x_485; @@ -51515,7 +51515,7 @@ lean_object* x_223; lean_object* x_224; x_223 = lean_ctor_get(x_204, 1); lean_inc(x_223); lean_dec(x_204); -x_224 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_223); +x_224 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_223); if (lean_obj_tag(x_224) == 0) { lean_object* x_225; uint8_t x_226; @@ -51971,7 +51971,7 @@ x_324 = lean_ctor_get(x_305, 1); lean_inc(x_324); lean_dec(x_305); lean_inc(x_3); -x_325 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_324); +x_325 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_324); if (lean_obj_tag(x_325) == 0) { lean_object* x_326; uint8_t x_327; @@ -52434,7 +52434,7 @@ lean_dec(x_404); lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_424 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_423); +x_424 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_423); if (lean_obj_tag(x_424) == 0) { lean_object* x_425; uint8_t x_426; @@ -52531,7 +52531,7 @@ x_447 = lean_ctor_get(x_444, 1); lean_inc(x_447); lean_dec(x_444); lean_inc(x_6); -x_448 = l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_447); +x_448 = l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_447); return x_448; } else @@ -52983,7 +52983,7 @@ lean_dec(x_77); lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_97 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_96); +x_97 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_96); if (lean_obj_tag(x_97) == 0) { lean_object* x_98; uint8_t x_99; @@ -53141,7 +53141,7 @@ x_136 = lean_ctor_get(x_117, 1); lean_inc(x_136); lean_dec(x_117); lean_inc(x_6); -x_137 = l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_136); +x_137 = l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_136); return x_137; } } @@ -53326,7 +53326,7 @@ lean_dec(x_11); lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_501 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_6, x_9, x_3, x_10); +x_501 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_6, x_9, x_3, x_10); if (lean_obj_tag(x_501) == 0) { lean_object* x_502; uint8_t x_503; @@ -53413,7 +53413,7 @@ if (lean_is_exclusive(x_501)) { lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_966 = l___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta(x_6, x_9, x_3, x_520); +x_966 = l___private_Lean_Meta_ExprDefEq_1__isDefEqEta(x_6, x_9, x_3, x_520); if (lean_obj_tag(x_966) == 0) { lean_object* x_967; uint8_t x_968; @@ -53430,7 +53430,7 @@ lean_dec(x_966); lean_inc(x_3); lean_inc(x_6); lean_inc(x_9); -x_970 = l___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta(x_9, x_6, x_3, x_969); +x_970 = l___private_Lean_Meta_ExprDefEq_1__isDefEqEta(x_9, x_6, x_3, x_969); if (lean_obj_tag(x_970) == 0) { lean_object* x_971; lean_object* x_972; uint8_t x_973; @@ -53779,7 +53779,7 @@ lean_object* x_711; lean_object* x_712; x_711 = lean_ctor_get(x_692, 1); lean_inc(x_711); lean_dec(x_692); -x_712 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_711); +x_712 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_711); if (lean_obj_tag(x_712) == 0) { lean_object* x_713; uint8_t x_714; @@ -54235,7 +54235,7 @@ x_812 = lean_ctor_get(x_793, 1); lean_inc(x_812); lean_dec(x_793); lean_inc(x_3); -x_813 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_812); +x_813 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_812); if (lean_obj_tag(x_813) == 0) { lean_object* x_814; uint8_t x_815; @@ -54698,7 +54698,7 @@ lean_dec(x_892); lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_912 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_911); +x_912 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_911); if (lean_obj_tag(x_912) == 0) { lean_object* x_913; uint8_t x_914; @@ -54795,7 +54795,7 @@ x_935 = lean_ctor_get(x_932, 1); lean_inc(x_935); lean_dec(x_932); lean_inc(x_6); -x_936 = l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_935); +x_936 = l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_935); return x_936; } else @@ -55247,7 +55247,7 @@ lean_dec(x_565); lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_585 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_584); +x_585 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_584); if (lean_obj_tag(x_585) == 0) { lean_object* x_586; uint8_t x_587; @@ -55405,7 +55405,7 @@ x_624 = lean_ctor_get(x_605, 1); lean_inc(x_624); lean_dec(x_605); lean_inc(x_6); -x_625 = l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_624); +x_625 = l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_624); return x_625; } } @@ -55584,7 +55584,7 @@ uint8_t x_988; lean_object* x_989; lean_object* x_1432; lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_1432 = l___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta(x_6, x_9, x_3, x_10); +x_1432 = l___private_Lean_Meta_ExprDefEq_1__isDefEqEta(x_6, x_9, x_3, x_10); if (lean_obj_tag(x_1432) == 0) { lean_object* x_1433; uint8_t x_1434; @@ -55601,7 +55601,7 @@ lean_dec(x_1432); lean_inc(x_3); lean_inc(x_6); lean_inc(x_9); -x_1436 = l___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta(x_9, x_6, x_3, x_1435); +x_1436 = l___private_Lean_Meta_ExprDefEq_1__isDefEqEta(x_9, x_6, x_3, x_1435); if (lean_obj_tag(x_1436) == 0) { lean_object* x_1437; lean_object* x_1438; uint8_t x_1439; @@ -55950,7 +55950,7 @@ lean_object* x_1177; lean_object* x_1178; x_1177 = lean_ctor_get(x_1158, 1); lean_inc(x_1177); lean_dec(x_1158); -x_1178 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_1177); +x_1178 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_1177); if (lean_obj_tag(x_1178) == 0) { lean_object* x_1179; uint8_t x_1180; @@ -56406,7 +56406,7 @@ x_1278 = lean_ctor_get(x_1259, 1); lean_inc(x_1278); lean_dec(x_1259); lean_inc(x_3); -x_1279 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_1278); +x_1279 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_1278); if (lean_obj_tag(x_1279) == 0) { lean_object* x_1280; uint8_t x_1281; @@ -56869,7 +56869,7 @@ lean_dec(x_1358); lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_1378 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_1377); +x_1378 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_1377); if (lean_obj_tag(x_1378) == 0) { lean_object* x_1379; uint8_t x_1380; @@ -56966,7 +56966,7 @@ x_1401 = lean_ctor_get(x_1398, 1); lean_inc(x_1401); lean_dec(x_1398); lean_inc(x_6); -x_1402 = l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_1401); +x_1402 = l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_1401); return x_1402; } else @@ -57418,7 +57418,7 @@ lean_dec(x_1031); lean_inc(x_3); lean_inc(x_9); lean_inc(x_6); -x_1051 = l___private_Init_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_1050); +x_1051 = l___private_Lean_Meta_ExprDefEq_34__isDefEqDelta(x_6, x_9, x_3, x_1050); if (lean_obj_tag(x_1051) == 0) { lean_object* x_1052; uint8_t x_1053; @@ -57576,7 +57576,7 @@ x_1090 = lean_ctor_get(x_1071, 1); lean_inc(x_1090); lean_dec(x_1071); lean_inc(x_6); -x_1091 = l___private_Init_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Init_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_1090); +x_1091 = l___private_Lean_Meta_ExprDefEq_44__unstuckMVar___at___private_Lean_Meta_ExprDefEq_45__isDefEqOnFailure___spec__2(x_6, x_9, x_6, x_3, x_1090); return x_1091; } } @@ -57791,8 +57791,8 @@ lean_object* l_Lean_Meta_isExprDefEqAuxImpl(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_58; uint8_t x_59; -x_5 = l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___main(x_1); -x_6 = l___private_Init_Lean_Meta_ExprDefEq_46__consumeLet___main(x_2); +x_5 = l___private_Lean_Meta_ExprDefEq_46__consumeLet___main(x_1); +x_6 = l___private_Lean_Meta_ExprDefEq_46__consumeLet___main(x_2); x_58 = lean_ctor_get(x_4, 4); lean_inc(x_58); x_59 = lean_ctor_get_uint8(x_58, sizeof(void*)*1); @@ -57806,7 +57806,7 @@ else { lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; x_60 = l_Lean_Meta_isExprDefEqAuxImpl___closed__1; -x_61 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_60, x_3, x_4); +x_61 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_60, x_3, x_4); x_62 = lean_ctor_get(x_61, 0); lean_inc(x_62); x_63 = lean_unbox(x_62); @@ -57853,7 +57853,7 @@ lean_object* x_8; lean_inc(x_3); lean_inc(x_6); lean_inc(x_5); -x_8 = l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_5, x_6, x_3, x_7); +x_8 = l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main(x_5, x_6, x_3, x_7); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; uint8_t x_10; @@ -57933,7 +57933,7 @@ lean_dec(x_8); lean_inc(x_3); lean_inc(x_6); lean_inc(x_5); -x_28 = l___private_Init_Lean_Meta_ExprDefEq_42__isDefEqProofIrrel(x_5, x_6, x_3, x_27); +x_28 = l___private_Lean_Meta_ExprDefEq_42__isDefEqProofIrrel(x_5, x_6, x_3, x_27); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; uint8_t x_30; @@ -58010,7 +58010,7 @@ lean_object* x_47; lean_object* x_48; x_47 = lean_ctor_get(x_28, 1); lean_inc(x_47); lean_dec(x_28); -x_48 = l___private_Init_Lean_Meta_ExprDefEq_43__isDefEqWHNF___at_Lean_Meta_isExprDefEqAuxImpl___spec__2(x_5, x_6, x_3, x_47); +x_48 = l___private_Lean_Meta_ExprDefEq_43__isDefEqWHNF___at_Lean_Meta_isExprDefEqAuxImpl___spec__2(x_5, x_6, x_3, x_47); return x_48; } } @@ -58109,7 +58109,7 @@ x_4 = lean_io_ref_set(x_2, x_3, x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_ExprDefEq_47__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Meta_ExprDefEq_47__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -58121,7 +58121,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); lean_dec(x_3); -x_5 = l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2; +x_5 = l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2; x_6 = l_Lean_registerTraceClass(x_5, x_4); if (lean_obj_tag(x_6) == 0) { @@ -58129,7 +58129,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_dec(x_6); -x_8 = l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; +x_8 = l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2; x_9 = l_Lean_registerTraceClass(x_8, x_7); if (lean_obj_tag(x_9) == 0) { @@ -58145,7 +58145,7 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; x_13 = lean_ctor_get(x_12, 1); lean_inc(x_13); lean_dec(x_12); -x_14 = l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; +x_14 = l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2; x_15 = l_Lean_registerTraceClass(x_14, x_13); return x_15; } @@ -58242,63 +58242,63 @@ return x_31; } } } -lean_object* initialize_Init_Lean_ProjFns(lean_object*); -lean_object* initialize_Init_Lean_Meta_WHNF(lean_object*); -lean_object* initialize_Init_Lean_Meta_InferType(lean_object*); -lean_object* initialize_Init_Lean_Meta_FunInfo(lean_object*); -lean_object* initialize_Init_Lean_Meta_LevelDefEq(lean_object*); -lean_object* initialize_Init_Lean_Meta_Check(lean_object*); -lean_object* initialize_Init_Lean_Meta_Offset(lean_object*); +lean_object* initialize_Lean_ProjFns(lean_object*); +lean_object* initialize_Lean_Meta_WHNF(lean_object*); +lean_object* initialize_Lean_Meta_InferType(lean_object*); +lean_object* initialize_Lean_Meta_FunInfo(lean_object*); +lean_object* initialize_Lean_Meta_LevelDefEq(lean_object*); +lean_object* initialize_Lean_Meta_Check(lean_object*); +lean_object* initialize_Lean_Meta_Offset(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_ExprDefEq(lean_object* w) { +lean_object* initialize_Lean_Meta_ExprDefEq(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_ProjFns(lean_io_mk_world()); +res = initialize_Lean_ProjFns(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_WHNF(lean_io_mk_world()); +res = initialize_Lean_Meta_WHNF(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_InferType(lean_io_mk_world()); +res = initialize_Lean_Meta_InferType(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_FunInfo(lean_io_mk_world()); +res = initialize_Lean_Meta_FunInfo(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_LevelDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_LevelDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Check(lean_io_mk_world()); +res = initialize_Lean_Meta_Check(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Offset(lean_io_mk_world()); +res = initialize_Lean_Meta_Offset(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1 = _init_l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1(); -lean_mark_persistent(l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1); +l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1 = _init_l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1(); +lean_mark_persistent(l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_1__isDefEqEta___spec__1___closed__1); l_Lean_Meta_isDefEqStringLit___closed__1 = _init_l_Lean_Meta_isDefEqStringLit___closed__1(); lean_mark_persistent(l_Lean_Meta_isDefEqStringLit___closed__1); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9); -l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10 = _init_l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__1); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__2); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__3); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__4); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__5); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__6); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__7); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__8); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__9); +l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10 = _init_l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_8__checkTypesAndAssign___closed__10); l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__1 = _init_l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__1(); lean_mark_persistent(l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__1); l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__2 = _init_l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__2(); @@ -58307,70 +58307,70 @@ l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__3 = _init_l_Lean_Meta_Chec lean_mark_persistent(l_Lean_Meta_CheckAssignment_Lean_MonadCache___closed__3); l_Lean_Meta_CheckAssignment_Lean_MonadCache = _init_l_Lean_Meta_CheckAssignment_Lean_MonadCache(); lean_mark_persistent(l_Lean_Meta_CheckAssignment_Lean_MonadCache); -l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1 = _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1); -l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2 = _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2); -l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3 = _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3); -l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4 = _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4); -l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5 = _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5); -l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6 = _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6); -l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7 = _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7); -l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8 = _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8); -l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9 = _init_l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9); -l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1 = _init_l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1); -l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2 = _init_l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2); -l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1 = _init_l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1); -l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2 = _init_l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2); -l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3 = _init_l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3); -l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1 = _init_l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1); -l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2 = _init_l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2); -l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3 = _init_l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3); -l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4 = _init_l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4); -l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1 = _init_l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1); -l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2 = _init_l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2); -l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1 = _init_l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1); -l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2 = _init_l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2); -l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1 = _init_l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1); -l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2 = _init_l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2); -l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3 = _init_l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3(); -lean_mark_persistent(l_Lean_Meta_commitWhen___at___private_Init_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3); -l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1 = _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1); -l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2 = _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2); -l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3 = _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3); -l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4 = _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4); -l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5 = _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5); -l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6 = _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6); -l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7 = _init_l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7); +l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1 = _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__1); +l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2 = _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__2); +l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3 = _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__3); +l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4 = _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__4); +l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5 = _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__5); +l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6 = _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__6); +l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7 = _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__7); +l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8 = _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__8); +l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9 = _init_l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_12__checkAssignmentFailure___closed__9); +l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1 = _init_l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__1); +l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2 = _init_l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_15__processAssignmentFOApprox___main___closed__2); +l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1 = _init_l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__1); +l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2 = _init_l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__2); +l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3 = _init_l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_19__processAssignmentAux___main___closed__3); +l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1 = _init_l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__1); +l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2 = _init_l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__2); +l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3 = _init_l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__3); +l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4 = _init_l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_23__isDefEqLeft___closed__4); +l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1 = _init_l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__1); +l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2 = _init_l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_24__isDefEqRight___closed__2); +l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1 = _init_l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__1); +l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2 = _init_l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_25__isDefEqLeftRight___closed__2); +l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1 = _init_l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__1); +l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2 = _init_l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__2); +l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3 = _init_l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3(); +lean_mark_persistent(l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_26__tryHeuristic___spec__1___lambda__2___closed__3); +l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1 = _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__1); +l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2 = _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__2); +l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3 = _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__3); +l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4 = _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__4); +l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5 = _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__5); +l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6 = _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__6); +l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7 = _init_l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_41__isDefEqQuick___main___closed__7); l_Lean_Meta_isExprDefEqAuxImpl___closed__1 = _init_l_Lean_Meta_isExprDefEqAuxImpl___closed__1(); lean_mark_persistent(l_Lean_Meta_isExprDefEqAuxImpl___closed__1); l_Lean_Meta_setIsExprDefEqAuxRef___closed__1 = _init_l_Lean_Meta_setIsExprDefEqAuxRef___closed__1(); @@ -58378,7 +58378,7 @@ lean_mark_persistent(l_Lean_Meta_setIsExprDefEqAuxRef___closed__1); res = l_Lean_Meta_setIsExprDefEqAuxRef(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l___private_Init_Lean_Meta_ExprDefEq_47__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_Meta_ExprDefEq_47__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Meta/FunInfo.c b/stage0/stdlib/Lean/Meta/FunInfo.c similarity index 89% rename from stage0/stdlib/Init/Lean/Meta/FunInfo.c rename to stage0/stdlib/Lean/Meta/FunInfo.c index 6e0e32c369..c1533c0fac 100644 --- a/stage0/stdlib/Init/Lean/Meta/FunInfo.c +++ b/stage0/stdlib/Lean/Meta/FunInfo.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.FunInfo -// Imports: Init.Lean.Meta.Basic Init.Lean.Meta.InferType +// Module: Lean.Meta.FunInfo +// Imports: Lean.Meta.Basic Lean.Meta.InferType #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,110 +13,110 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_Lean_Meta_TransparencyMode_hash(uint8_t); lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_Lean_Meta_isClassExpensive___main(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_2__whenHasVar(lean_object*); +lean_object* l_Array_indexOfAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1(lean_object*, lean_object*, lean_object*); extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; -lean_object* l_Array_qsortAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_4__collectDeps(lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_qsortAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isClassQuick___main(lean_object*, lean_object*, lean_object*); size_t l_USize_sub(size_t, size_t); extern lean_object* l_Array_empty___closed__1; -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps___boxed(lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3___boxed(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_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___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* l_Lean_Meta_getFunInfo(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1___boxed(lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_4__collectDeps___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_4__collectDeps___boxed(lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2(lean_object*, size_t, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_3__collectDepsAux___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev_range(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); size_t l_Option_hash___at_Lean_Meta_InfoCacheKey_Hashable___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_2__whenHasVar___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l_Array_indexOfAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_qsortAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_4__collectDeps(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_indexOfAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); extern lean_object* l_PersistentHashMap_insertAux___main___rarg___closed__3; size_t l_Lean_Expr_hash(lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2(lean_object*, size_t, lean_object*); uint8_t l_Lean_Meta_TransparencyMode_beq(uint8_t, uint8_t); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_3__collectDepsAux(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshId___rarg(lean_object*); size_t l_USize_mul(size_t, size_t); +lean_object* l_Array_contains___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2___boxed(lean_object*, lean_object*); +lean_object* l_Array_indexOfAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isForall(lean_object*); lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); -lean_object* l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_6__getFunInfoAux(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_land(size_t, size_t); -lean_object* l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_qsortAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_3__collectDepsAux___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); uint8_t l_Lean_BinderInfo_beq(uint8_t, uint8_t); uint8_t lean_expr_eqv(lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t l_USize_decLe(size_t, size_t); -lean_object* l___private_Init_Lean_Meta_FunInfo_2__whenHasVar___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_2__whenHasVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___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* l_Array_umapMAux___main___at___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_2__whenHasVar___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_contains___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Meta_getFunInfoNArgs(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited; size_t lean_usize_mix_hash(size_t, size_t); -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_resettingSynthInstanceCache___rarg___closed__1; -lean_object* l_Array_contains___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2___boxed(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Nat_Inhabited; +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1___boxed(lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); -uint8_t l_Array_contains___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_2__whenHasVar___rarg___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasFVar(lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_FunInfo_1__checkFunInfoCache(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___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; @@ -312,7 +312,7 @@ return x_55; } } } -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -511,14 +511,14 @@ x_45 = lean_ctor_get(x_1, 1); lean_inc(x_45); lean_dec(x_1); x_46 = lean_unsigned_to_nat(0u); -x_47 = l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__3(x_44, x_45, lean_box(0), x_46, x_3); +x_47 = l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__3(x_44, x_45, lean_box(0), x_46, x_3); lean_dec(x_45); lean_dec(x_44); return x_47; } } } -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; size_t x_10; size_t x_11; lean_object* x_12; @@ -533,11 +533,11 @@ x_8 = l_Lean_Expr_hash(x_5); x_9 = l_Option_hash___at_Lean_Meta_InfoCacheKey_Hashable___spec__1(x_6); x_10 = lean_usize_mix_hash(x_8, x_9); x_11 = lean_usize_mix_hash(x_7, x_10); -x_12 = l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2(x_3, x_11, x_2); +x_12 = l_PersistentHashMap_findAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2(x_3, x_11, x_2); return x_12; } } -lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; @@ -739,7 +739,7 @@ return x_20; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7(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_object* l_Array_iterateMAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7(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; @@ -776,14 +776,14 @@ lean_dec(x_19); x_23 = lean_usize_mix_hash(x_21, x_22); x_24 = lean_usize_mix_hash(x_20, x_23); x_25 = x_24 >> x_14; -x_26 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_6, x_25, x_1, x_9, x_10); +x_26 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_6, x_25, x_1, x_9, x_10); x_5 = x_16; x_6 = x_26; goto _start; } } } -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(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) @@ -1152,7 +1152,7 @@ lean_object* x_90; size_t x_91; size_t x_92; lean_object* x_93; lean_object* x_9 x_90 = lean_ctor_get(x_15, 0); x_91 = x_2 >> x_9; x_92 = x_3 + x_8; -x_93 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_90, x_91, x_92, x_4, x_5); +x_93 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_90, x_91, x_92, x_4, x_5); lean_ctor_set(x_15, 0, x_93); x_94 = lean_array_fset(x_17, x_12, x_15); lean_dec(x_12); @@ -1167,7 +1167,7 @@ lean_inc(x_95); lean_dec(x_15); x_96 = x_2 >> x_9; x_97 = x_3 + x_8; -x_98 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_95, x_96, x_97, x_4, x_5); +x_98 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_95, x_96, x_97, x_4, x_5); x_99 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_99, 0, x_98); x_100 = lean_array_fset(x_17, x_12, x_99); @@ -1424,7 +1424,7 @@ if (lean_is_exclusive(x_112)) { } x_162 = x_2 >> x_105; x_163 = x_3 + x_104; -x_164 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_160, x_162, x_163, x_4, x_5); +x_164 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_160, x_162, x_163, x_4, x_5); if (lean_is_scalar(x_161)) { x_165 = lean_alloc_ctor(1, 1, 0); } else { @@ -1457,7 +1457,7 @@ else { lean_object* x_171; lean_object* x_172; size_t x_173; uint8_t x_174; x_171 = lean_unsigned_to_nat(0u); -x_172 = l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__6(x_1, x_171, x_4, x_5); +x_172 = l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__6(x_1, x_171, x_4, x_5); x_173 = 7; x_174 = x_173 <= x_3; if (x_174 == 0) @@ -1476,7 +1476,7 @@ x_179 = lean_ctor_get(x_172, 1); lean_inc(x_179); lean_dec(x_172); x_180 = l_PersistentHashMap_insertAux___main___rarg___closed__3; -x_181 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7(x_3, x_178, x_179, x_178, x_171, x_180); +x_181 = l_Array_iterateMAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7(x_3, x_178, x_179, x_178, x_171, x_180); lean_dec(x_179); lean_dec(x_178); return x_181; @@ -1493,7 +1493,7 @@ return x_172; } } } -lean_object* l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -1519,7 +1519,7 @@ x_15 = l_Option_hash___at_Lean_Meta_InfoCacheKey_Hashable___spec__1(x_12); lean_dec(x_12); x_16 = lean_usize_mix_hash(x_14, x_15); x_17 = lean_usize_mix_hash(x_13, x_16); -x_18 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_5, x_17, x_7, x_2, x_3); +x_18 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_5, x_17, x_7, x_2, x_3); lean_ctor_set(x_1, 1, x_9); lean_ctor_set(x_1, 0, x_18); return x_1; @@ -1548,7 +1548,7 @@ x_29 = l_Option_hash___at_Lean_Meta_InfoCacheKey_Hashable___spec__1(x_26); lean_dec(x_26); x_30 = lean_usize_mix_hash(x_28, x_29); x_31 = lean_usize_mix_hash(x_27, x_30); -x_32 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_19, x_31, x_21, x_2, x_3); +x_32 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_19, x_31, x_21, x_2, x_3); x_33 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_23); @@ -1556,7 +1556,7 @@ return x_33; } } } -lean_object* l___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_FunInfo_1__checkFunInfoCache(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -1573,7 +1573,7 @@ x_10 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_10, 0, x_1); lean_ctor_set(x_10, 1, x_2); lean_ctor_set_uint8(x_10, sizeof(void*)*2, x_7); -x_11 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(x_9, x_10); +x_11 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(x_9, x_10); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; @@ -1604,7 +1604,7 @@ if (x_20 == 0) lean_object* x_21; lean_object* x_22; x_21 = lean_ctor_get(x_14, 1); lean_inc(x_16); -x_22 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_21, x_10, x_16); +x_22 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_21, x_10, x_16); lean_ctor_set(x_14, 1, x_22); return x_12; } @@ -1621,7 +1621,7 @@ lean_inc(x_24); lean_inc(x_23); lean_dec(x_14); lean_inc(x_16); -x_27 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_24, x_10, x_16); +x_27 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_24, x_10, x_16); x_28 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_28, 0, x_23); lean_ctor_set(x_28, 1, x_27); @@ -1664,7 +1664,7 @@ if (lean_is_exclusive(x_14)) { x_38 = lean_box(0); } lean_inc(x_16); -x_39 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_35, x_10, x_16); +x_39 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_35, x_10, x_16); if (lean_is_scalar(x_38)) { x_40 = lean_alloc_ctor(0, 4, 0); } else { @@ -1732,7 +1732,7 @@ if (lean_is_exclusive(x_14)) { x_53 = lean_box(0); } lean_inc(x_42); -x_54 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_50, x_10, x_42); +x_54 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_50, x_10, x_42); if (lean_is_scalar(x_53)) { x_55 = lean_alloc_ctor(0, 4, 0); } else { @@ -1799,51 +1799,51 @@ return x_63; } } } -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___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* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___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_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___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_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___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_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2(x_1, x_4, x_3); +x_5 = l_PersistentHashMap_findAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__2(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(x_1, x_2); +x_3 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { size_t x_7; lean_object* x_8; x_7 = lean_unbox_usize(x_1); lean_dec(x_1); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7(x_7, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__7(x_7, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___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* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5___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; @@ -1851,11 +1851,11 @@ x_6 = lean_unbox_usize(x_2); lean_dec(x_2); x_7 = lean_unbox_usize(x_3); lean_dec(x_3); -x_8 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_1, x_6, x_7, x_4, x_5); +x_8 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__5(x_1, x_6, x_7, x_4, x_5); return x_8; } } -lean_object* l___private_Init_Lean_Meta_FunInfo_2__whenHasVar___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_FunInfo_2__whenHasVar___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -1873,24 +1873,24 @@ return x_5; } } } -lean_object* l___private_Init_Lean_Meta_FunInfo_2__whenHasVar(lean_object* x_1) { +lean_object* l___private_Lean_Meta_FunInfo_2__whenHasVar(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_FunInfo_2__whenHasVar___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_FunInfo_2__whenHasVar___rarg___boxed), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_FunInfo_2__whenHasVar___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_FunInfo_2__whenHasVar___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_FunInfo_2__whenHasVar___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_FunInfo_2__whenHasVar___rarg(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_indexOfAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_indexOfAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1929,7 +1929,7 @@ return x_12; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3(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; @@ -1964,18 +1964,18 @@ return x_9; } } } -uint8_t l_Array_contains___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(lean_object* x_1, lean_object* x_2) { +uint8_t l_Array_contains___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(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_1); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3(x_1, x_2, x_1, x_3, x_4); +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3(x_1, x_2, x_1, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_2)) { @@ -1983,7 +1983,7 @@ case 1: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_indexOfAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1(x_1, x_2, x_4); +x_5 = l_Array_indexOfAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1(x_1, x_2, x_4); if (lean_obj_tag(x_5) == 0) { return x_3; @@ -1994,7 +1994,7 @@ lean_object* x_6; uint8_t x_7; x_6 = lean_ctor_get(x_5, 0); lean_inc(x_6); lean_dec(x_5); -x_7 = l_Array_contains___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(x_3, x_6); +x_7 = l_Array_contains___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(x_3, x_6); if (x_7 == 0) { lean_object* x_8; @@ -2021,7 +2021,7 @@ return x_3; else { lean_object* x_12; -x_12 = l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_9, x_3); +x_12 = l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_9, x_3); x_2 = x_10; x_3 = x_12; goto _start; @@ -2040,7 +2040,7 @@ return x_3; else { lean_object* x_17; -x_17 = l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_14, x_3); +x_17 = l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_14, x_3); x_2 = x_15; x_3 = x_17; goto _start; @@ -2059,7 +2059,7 @@ return x_3; else { lean_object* x_22; -x_22 = l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_19, x_3); +x_22 = l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_19, x_3); x_2 = x_20; x_3 = x_22; goto _start; @@ -2079,8 +2079,8 @@ return x_3; else { lean_object* x_28; lean_object* x_29; -x_28 = l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_24, x_3); -x_29 = l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_25, x_28); +x_28 = l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_24, x_3); +x_29 = l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_25, x_28); x_2 = x_26; x_3 = x_29; goto _start; @@ -2107,21 +2107,21 @@ return x_3; } } } -lean_object* l_Array_indexOfAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_indexOfAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_indexOfAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1(x_1, x_2, x_3); +x_4 = l_Array_indexOfAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___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* l_Array_anyRangeMAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__3(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -2130,46 +2130,46 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_contains___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_contains___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Array_contains___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(x_1, x_2); +x_3 = l_Array_contains___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_FunInfo_3__collectDepsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_FunInfo_3__collectDepsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_FunInfo_3__collectDepsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_FunInfo_3__collectDepsAux(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__2(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; @@ -2217,7 +2217,7 @@ goto _start; } } } -lean_object* l_Array_qsortAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_qsortAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_13; @@ -2271,7 +2271,7 @@ if (x_23 == 0) lean_object* x_24; lean_dec(x_16); lean_inc_n(x_2, 2); -x_24 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_3, x_19, x_17, x_2, x_2); +x_24 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_3, x_19, x_17, x_2, x_2); lean_dec(x_19); x_4 = x_24; goto block_12; @@ -2284,7 +2284,7 @@ x_25 = lean_array_swap(x_17, x_16, x_3); lean_dec(x_16); x_26 = lean_array_get(x_18, x_25, x_3); lean_inc_n(x_2, 2); -x_27 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_3, x_26, x_25, x_2, x_2); +x_27 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_3, x_26, x_25, x_2, x_2); lean_dec(x_26); x_4 = x_27; goto block_12; @@ -2304,7 +2304,7 @@ if (x_31 == 0) lean_object* x_32; lean_dec(x_16); lean_inc_n(x_2, 2); -x_32 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_3, x_30, x_28, x_2, x_2); +x_32 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_3, x_30, x_28, x_2, x_2); lean_dec(x_30); x_4 = x_32; goto block_12; @@ -2317,7 +2317,7 @@ x_33 = lean_array_swap(x_28, x_16, x_3); lean_dec(x_16); x_34 = lean_array_get(x_18, x_33, x_3); lean_inc_n(x_2, 2); -x_35 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_3, x_34, x_33, x_2, x_2); +x_35 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_3, x_34, x_33, x_2, x_2); lean_dec(x_34); x_4 = x_35; goto block_12; @@ -2337,7 +2337,7 @@ x_7 = lean_nat_dec_le(x_3, x_5); if (x_7 == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_Array_qsortAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__1(x_6, x_2, x_5); +x_8 = l_Array_qsortAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__1(x_6, x_2, x_5); x_9 = lean_unsigned_to_nat(1u); x_10 = lean_nat_add(x_5, x_9); lean_dec(x_5); @@ -2354,52 +2354,52 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Meta_FunInfo_4__collectDeps(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_FunInfo_4__collectDeps(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; x_3 = l_Array_empty___closed__1; -x_4 = l___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_FunInfo_3__collectDepsAux___main(x_1, x_2, x_3); x_5 = lean_array_get_size(x_4); x_6 = lean_unsigned_to_nat(1u); x_7 = lean_nat_sub(x_5, x_6); lean_dec(x_5); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_qsortAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__1(x_4, x_8, x_7); +x_9 = l_Array_qsortAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__1(x_4, x_8, x_7); lean_dec(x_7); return x_9; } } -lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___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* l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Data_Array_QSort_1__partitionAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l_Array_qsortAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_qsortAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_qsortAux___main___at___private_Init_Lean_Meta_FunInfo_4__collectDeps___spec__1(x_1, x_2, x_3); +x_4 = l_Array_qsortAux___main___at___private_Lean_Meta_FunInfo_4__collectDeps___spec__1(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_FunInfo_4__collectDeps___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_FunInfo_4__collectDeps___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_1, x_2); +x_3 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2430,7 +2430,7 @@ x_16 = lean_nat_add(x_2, x_15); if (x_13 == 0) { uint8_t x_17; -x_17 = l_Array_contains___at___private_Init_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(x_1, x_2); +x_17 = l_Array_contains___at___private_Lean_Meta_FunInfo_3__collectDepsAux___main___spec__2(x_1, x_2); if (x_17 == 0) { lean_object* x_18; lean_object* x_19; @@ -2493,7 +2493,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -2505,7 +2505,7 @@ if (x_5 == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = x_1; -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1(x_2, x_4, x_6); +x_7 = l_Array_umapMAux___main___at___private_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1(x_2, x_4, x_6); x_8 = x_7; return x_8; } @@ -2515,25 +2515,25 @@ return x_1; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_FunInfo_5__updateHasFwdDeps___spec__1(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_1, x_2); +x_3 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -2563,9 +2563,9 @@ x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); x_18 = l_Lean_LocalDecl_type(x_16); -x_19 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_1, x_18); +x_19 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_1, x_18); lean_dec(x_18); -x_20 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_4, x_19); +x_20 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_4, x_19); x_21 = l_Lean_LocalDecl_binderInfo(x_16); lean_dec(x_16); x_22 = 1; @@ -2622,7 +2622,7 @@ return x_34; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -2635,7 +2635,7 @@ lean_object* x_10; lean_object* x_11; lean_dec(x_5); x_10 = l_Array_empty___closed__1; lean_inc(x_2); -x_11 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_1, x_2, x_2, x_10, x_6, x_7); +x_11 = l_Nat_foldMAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_1, x_2, x_2, x_10, x_6, x_7); lean_dec(x_2); if (lean_obj_tag(x_11) == 0) { @@ -2645,8 +2645,8 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_13 = lean_ctor_get(x_11, 0); -x_14 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); -x_15 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_13, x_14); +x_14 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); +x_15 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_13, x_14); x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -2661,8 +2661,8 @@ x_18 = lean_ctor_get(x_11, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_11); -x_19 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); -x_20 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_17, x_19); +x_19 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); +x_20 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_17, 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_19); @@ -2770,7 +2770,7 @@ lean_ctor_set(x_49, 0, x_39); lean_ctor_set(x_49, 1, x_27); x_50 = lean_array_push(x_48, x_49); lean_ctor_set(x_6, 2, x_50); -x_51 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_41, x_6, x_38); +x_51 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_41, x_6, x_38); if (lean_obj_tag(x_51) == 0) { lean_object* x_52; lean_object* x_53; uint8_t x_54; @@ -3130,7 +3130,7 @@ lean_ctor_set(x_133, 1, x_127); lean_ctor_set(x_133, 2, x_132); lean_ctor_set(x_133, 3, x_129); lean_ctor_set(x_133, 4, x_130); -x_134 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_41, x_133, x_38); +x_134 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_41, x_133, x_38); if (lean_obj_tag(x_134) == 0) { lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; 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; @@ -3355,7 +3355,7 @@ lean_ctor_set(x_183, 1, x_176); lean_ctor_set(x_183, 2, x_182); lean_ctor_set(x_183, 3, x_178); lean_ctor_set(x_183, 4, x_179); -x_184 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_41, x_183, x_38); +x_184 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_41, x_183, x_38); if (lean_obj_tag(x_184) == 0) { lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; 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; @@ -3612,7 +3612,7 @@ lean_ctor_set(x_241, 1, x_234); lean_ctor_set(x_241, 2, x_240); lean_ctor_set(x_241, 3, x_236); lean_ctor_set(x_241, 4, x_237); -x_242 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_41, x_241, x_232); +x_242 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_41, x_241, x_232); if (lean_obj_tag(x_242) == 0) { lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; @@ -3844,7 +3844,7 @@ lean_ctor_set(x_295, 0, x_285); lean_ctor_set(x_295, 1, x_27); x_296 = lean_array_push(x_294, x_295); lean_ctor_set(x_6, 2, x_296); -x_297 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_287, x_6, x_284); +x_297 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_287, x_6, x_284); if (lean_obj_tag(x_297) == 0) { lean_object* x_298; lean_object* x_299; uint8_t x_300; @@ -4204,7 +4204,7 @@ lean_ctor_set(x_379, 1, x_373); lean_ctor_set(x_379, 2, x_378); lean_ctor_set(x_379, 3, x_375); lean_ctor_set(x_379, 4, x_376); -x_380 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_287, x_379, x_284); +x_380 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_287, x_379, x_284); if (lean_obj_tag(x_380) == 0) { lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; @@ -4429,7 +4429,7 @@ lean_ctor_set(x_429, 1, x_422); lean_ctor_set(x_429, 2, x_428); lean_ctor_set(x_429, 3, x_424); lean_ctor_set(x_429, 4, x_425); -x_430 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_287, x_429, x_284); +x_430 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_287, x_429, x_284); if (lean_obj_tag(x_430) == 0) { lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; @@ -4686,7 +4686,7 @@ lean_ctor_set(x_487, 1, x_480); lean_ctor_set(x_487, 2, x_486); lean_ctor_set(x_487, 3, x_482); lean_ctor_set(x_487, 4, x_483); -x_488 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_287, x_487, x_478); +x_488 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_287, x_487, x_478); if (lean_obj_tag(x_488) == 0) { 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; @@ -4944,7 +4944,7 @@ return x_534; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; @@ -4957,7 +4957,7 @@ lean_dec(x_6); lean_dec(x_5); x_11 = l_Array_empty___closed__1; lean_inc(x_2); -x_12 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_1, x_2, x_2, x_11, x_8, x_9); +x_12 = l_Nat_foldMAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_1, x_2, x_2, x_11, x_8, x_9); lean_dec(x_2); if (lean_obj_tag(x_12) == 0) { @@ -4967,9 +4967,9 @@ if (x_13 == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_14 = lean_ctor_get(x_12, 0); -x_15 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); +x_15 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); lean_dec(x_1); -x_16 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_14, x_15); +x_16 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_14, 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_15); @@ -4984,9 +4984,9 @@ x_19 = lean_ctor_get(x_12, 1); lean_inc(x_19); lean_inc(x_18); lean_dec(x_12); -x_20 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); +x_20 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); lean_dec(x_1); -x_21 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_18, x_20); +x_21 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_18, 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_20); @@ -5023,12 +5023,12 @@ return x_27; else { lean_object* x_28; -x_28 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(x_4, x_5, x_6, x_1, x_2, x_7, x_8, x_9); +x_28 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(x_4, x_5, x_6, x_1, x_2, x_7, x_8, x_9); return x_28; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -5041,7 +5041,7 @@ lean_inc(x_2); lean_inc(x_8); lean_inc(x_7); lean_inc(x_4); -x_15 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___lambda__1___boxed), 9, 6); +x_15 = lean_alloc_closure((void*)(l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___lambda__1___boxed), 9, 6); lean_closure_set(x_15, 0, x_4); lean_closure_set(x_15, 1, x_7); lean_closure_set(x_15, 2, x_8); @@ -5140,7 +5140,7 @@ lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_19); x_42 = lean_array_push(x_40, x_41); lean_ctor_set(x_11, 2, x_42); -x_43 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33, x_11, x_30); +x_43 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33, x_11, x_30); if (lean_obj_tag(x_43) == 0) { lean_object* x_44; lean_object* x_45; uint8_t x_46; @@ -5500,7 +5500,7 @@ lean_ctor_set(x_125, 1, x_119); lean_ctor_set(x_125, 2, x_124); lean_ctor_set(x_125, 3, x_121); lean_ctor_set(x_125, 4, x_122); -x_126 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33, x_125, x_30); +x_126 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33, x_125, x_30); if (lean_obj_tag(x_126) == 0) { lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; 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; @@ -5725,7 +5725,7 @@ lean_ctor_set(x_175, 1, x_168); lean_ctor_set(x_175, 2, x_174); lean_ctor_set(x_175, 3, x_170); lean_ctor_set(x_175, 4, x_171); -x_176 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33, x_175, x_30); +x_176 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33, x_175, x_30); if (lean_obj_tag(x_176) == 0) { lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; 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; @@ -5982,7 +5982,7 @@ lean_ctor_set(x_233, 1, x_226); lean_ctor_set(x_233, 2, x_232); lean_ctor_set(x_233, 3, x_228); lean_ctor_set(x_233, 4, x_229); -x_234 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33, x_233, x_224); +x_234 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_33, x_233, x_224); if (lean_obj_tag(x_234) == 0) { lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; @@ -6214,7 +6214,7 @@ lean_ctor_set(x_287, 0, x_277); lean_ctor_set(x_287, 1, x_19); x_288 = lean_array_push(x_286, x_287); lean_ctor_set(x_11, 2, x_288); -x_289 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_279, x_11, x_276); +x_289 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_279, x_11, x_276); if (lean_obj_tag(x_289) == 0) { lean_object* x_290; lean_object* x_291; uint8_t x_292; @@ -6574,7 +6574,7 @@ lean_ctor_set(x_371, 1, x_365); lean_ctor_set(x_371, 2, x_370); lean_ctor_set(x_371, 3, x_367); lean_ctor_set(x_371, 4, x_368); -x_372 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_279, x_371, x_276); +x_372 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_279, x_371, x_276); if (lean_obj_tag(x_372) == 0) { lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; @@ -6799,7 +6799,7 @@ lean_ctor_set(x_421, 1, x_414); lean_ctor_set(x_421, 2, x_420); lean_ctor_set(x_421, 3, x_416); lean_ctor_set(x_421, 4, x_417); -x_422 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_279, x_421, x_276); +x_422 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_279, x_421, x_276); if (lean_obj_tag(x_422) == 0) { lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; @@ -7056,7 +7056,7 @@ lean_ctor_set(x_479, 1, x_472); lean_ctor_set(x_479, 2, x_478); lean_ctor_set(x_479, 3, x_474); lean_ctor_set(x_479, 4, x_475); -x_480 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_279, x_479, x_470); +x_480 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_279, x_479, x_470); if (lean_obj_tag(x_480) == 0) { lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; @@ -7326,7 +7326,7 @@ return x_526; } } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -7339,7 +7339,7 @@ lean_object* x_10; lean_object* x_11; lean_dec(x_5); x_10 = l_Array_empty___closed__1; lean_inc(x_2); -x_11 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_1, x_2, x_2, x_10, x_6, x_7); +x_11 = l_Nat_foldMAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_1, x_2, x_2, x_10, x_6, x_7); lean_dec(x_2); if (lean_obj_tag(x_11) == 0) { @@ -7349,8 +7349,8 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_13 = lean_ctor_get(x_11, 0); -x_14 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); -x_15 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_13, x_14); +x_14 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); +x_15 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_13, x_14); x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -7365,8 +7365,8 @@ x_18 = lean_ctor_get(x_11, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_11); -x_19 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); -x_20 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_17, x_19); +x_19 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_1, x_3); +x_20 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_17, 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_19); @@ -7474,7 +7474,7 @@ lean_ctor_set(x_49, 0, x_39); lean_ctor_set(x_49, 1, x_27); x_50 = lean_array_push(x_48, x_49); lean_ctor_set(x_6, 2, x_50); -x_51 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_41, x_6, x_38); +x_51 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_41, x_6, x_38); if (lean_obj_tag(x_51) == 0) { lean_object* x_52; lean_object* x_53; uint8_t x_54; @@ -7834,7 +7834,7 @@ lean_ctor_set(x_133, 1, x_127); lean_ctor_set(x_133, 2, x_132); lean_ctor_set(x_133, 3, x_129); lean_ctor_set(x_133, 4, x_130); -x_134 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_41, x_133, x_38); +x_134 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_41, x_133, x_38); if (lean_obj_tag(x_134) == 0) { lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; 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; @@ -8059,7 +8059,7 @@ lean_ctor_set(x_183, 1, x_176); lean_ctor_set(x_183, 2, x_182); lean_ctor_set(x_183, 3, x_178); lean_ctor_set(x_183, 4, x_179); -x_184 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_41, x_183, x_38); +x_184 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_41, x_183, x_38); if (lean_obj_tag(x_184) == 0) { lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; 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; @@ -8316,7 +8316,7 @@ lean_ctor_set(x_241, 1, x_234); lean_ctor_set(x_241, 2, x_240); lean_ctor_set(x_241, 3, x_236); lean_ctor_set(x_241, 4, x_237); -x_242 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_41, x_241, x_232); +x_242 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_41, x_241, x_232); if (lean_obj_tag(x_242) == 0) { lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; @@ -8548,7 +8548,7 @@ lean_ctor_set(x_295, 0, x_285); lean_ctor_set(x_295, 1, x_27); x_296 = lean_array_push(x_294, x_295); lean_ctor_set(x_6, 2, x_296); -x_297 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_287, x_6, x_284); +x_297 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_287, x_6, x_284); if (lean_obj_tag(x_297) == 0) { lean_object* x_298; lean_object* x_299; uint8_t x_300; @@ -8908,7 +8908,7 @@ lean_ctor_set(x_379, 1, x_373); lean_ctor_set(x_379, 2, x_378); lean_ctor_set(x_379, 3, x_375); lean_ctor_set(x_379, 4, x_376); -x_380 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_287, x_379, x_284); +x_380 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_287, x_379, x_284); if (lean_obj_tag(x_380) == 0) { lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; @@ -9133,7 +9133,7 @@ lean_ctor_set(x_429, 1, x_422); lean_ctor_set(x_429, 2, x_428); lean_ctor_set(x_429, 3, x_424); lean_ctor_set(x_429, 4, x_425); -x_430 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_287, x_429, x_284); +x_430 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_287, x_429, x_284); if (lean_obj_tag(x_430) == 0) { lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; @@ -9390,7 +9390,7 @@ lean_ctor_set(x_487, 1, x_480); lean_ctor_set(x_487, 2, x_486); lean_ctor_set(x_487, 3, x_482); lean_ctor_set(x_487, 4, x_483); -x_488 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_287, x_487, x_478); +x_488 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_287, x_487, x_478); if (lean_obj_tag(x_488) == 0) { 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; @@ -9648,7 +9648,7 @@ return x_534; } } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; @@ -9717,7 +9717,7 @@ lean_object* x_47; lean_object* x_48; x_47 = lean_ctor_get(x_7, 1); lean_dec(x_47); lean_ctor_set(x_7, 1, x_3); -x_48 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_4, x_43, x_45, x_4, x_5, x_7, x_8); +x_48 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_4, x_43, x_45, x_4, x_5, x_7, x_8); lean_dec(x_45); lean_dec(x_4); return x_48; @@ -9740,7 +9740,7 @@ lean_ctor_set(x_53, 1, x_3); lean_ctor_set(x_53, 2, x_50); lean_ctor_set(x_53, 3, x_51); lean_ctor_set(x_53, 4, x_52); -x_54 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_4, x_43, x_45, x_4, x_5, x_53, x_8); +x_54 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_4, x_43, x_45, x_4, x_5, x_53, x_8); lean_dec(x_45); lean_dec(x_4); return x_54; @@ -9799,7 +9799,7 @@ lean_object* x_14; lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); -x_14 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_4, x_10, x_11, x_4, x_5, x_7, x_8); +x_14 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_4, x_10, x_11, x_4, x_5, x_7, x_8); lean_dec(x_11); lean_dec(x_4); return x_14; @@ -9809,7 +9809,7 @@ else lean_object* x_15; lean_inc(x_5); lean_inc(x_4); -x_15 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_11, x_4, x_5, x_7, x_8); +x_15 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_11, x_4, x_5, x_7, x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -9841,7 +9841,7 @@ lean_object* x_21; lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); -x_21 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_4, x_10, x_11, x_4, x_5, x_20, x_8); +x_21 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_4, x_10, x_11, x_4, x_5, x_20, x_8); lean_dec(x_11); lean_dec(x_4); return x_21; @@ -9851,7 +9851,7 @@ else lean_object* x_22; lean_inc(x_5); lean_inc(x_4); -x_22 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_11, x_4, x_5, x_20, x_8); +x_22 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_10, x_11, x_4, x_5, x_20, x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -9861,7 +9861,7 @@ return x_22; } } } -lean_object* _init_l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1() { +lean_object* _init_l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -9870,7 +9870,7 @@ x_2 = lean_array_get_size(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -9892,8 +9892,8 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_dec(x_6); lean_dec(x_2); x_9 = l_Array_empty___closed__1; -x_10 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; -x_11 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_9, x_10, x_10, x_9, x_3, x_7); +x_10 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1; +x_11 = l_Nat_foldMAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_9, x_10, x_10, x_9, x_3, x_7); if (lean_obj_tag(x_11) == 0) { uint8_t x_12; @@ -9902,9 +9902,9 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_13 = lean_ctor_get(x_11, 0); -x_14 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_9, x_1); +x_14 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_9, x_1); lean_dec(x_1); -x_15 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_13, x_14); +x_15 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_13, x_14); x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -9919,9 +9919,9 @@ x_18 = lean_ctor_get(x_11, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_11); -x_19 = l___private_Init_Lean_Meta_FunInfo_4__collectDeps(x_9, x_1); +x_19 = l___private_Lean_Meta_FunInfo_4__collectDeps(x_9, x_1); lean_dec(x_1); -x_20 = l___private_Init_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_17, x_19); +x_20 = l___private_Lean_Meta_FunInfo_5__updateHasFwdDeps(x_17, 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_19); @@ -9964,7 +9964,7 @@ lean_inc(x_27); x_28 = 1; x_29 = l_Array_empty___closed__1; x_30 = lean_unsigned_to_nat(0u); -x_31 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(x_28, x_2, x_27, x_29, x_30, x_6, x_3, x_7); +x_31 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(x_28, x_2, x_27, x_29, x_30, x_6, x_3, x_7); return x_31; } } @@ -9995,7 +9995,7 @@ return x_35; } } } -lean_object* l___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_FunInfo_6__getFunInfoAux(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; @@ -10026,7 +10026,7 @@ x_15 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_15, 0, x_1); lean_ctor_set(x_15, 1, x_2); lean_ctor_set_uint8(x_15, sizeof(void*)*2, x_12); -x_16 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(x_14, x_15); +x_16 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(x_14, x_15); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; uint8_t x_18; @@ -10056,7 +10056,7 @@ lean_inc(x_25); lean_dec(x_17); x_26 = 1; lean_ctor_set_uint8(x_5, sizeof(void*)*1 + 6, x_26); -x_27 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(x_24, x_2, x_3, x_25); +x_27 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(x_24, x_2, x_3, x_25); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; uint8_t x_30; @@ -10083,7 +10083,7 @@ if (x_35 == 0) lean_object* x_36; lean_object* x_37; x_36 = lean_ctor_get(x_29, 1); lean_inc(x_31); -x_37 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_36, x_15, x_31); +x_37 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_36, x_15, x_31); lean_ctor_set(x_29, 1, x_37); return x_27; } @@ -10100,7 +10100,7 @@ lean_inc(x_39); lean_inc(x_38); lean_dec(x_29); lean_inc(x_31); -x_42 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_39, x_15, x_31); +x_42 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_39, x_15, x_31); x_43 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_43, 0, x_38); lean_ctor_set(x_43, 1, x_42); @@ -10143,7 +10143,7 @@ if (lean_is_exclusive(x_29)) { x_53 = lean_box(0); } lean_inc(x_31); -x_54 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_50, x_15, x_31); +x_54 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_50, x_15, x_31); if (lean_is_scalar(x_53)) { x_55 = lean_alloc_ctor(0, 4, 0); } else { @@ -10211,7 +10211,7 @@ if (lean_is_exclusive(x_29)) { x_68 = lean_box(0); } lean_inc(x_57); -x_69 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_65, x_15, x_57); +x_69 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_65, x_15, x_57); if (lean_is_scalar(x_68)) { x_70 = lean_alloc_ctor(0, 4, 0); } else { @@ -10313,7 +10313,7 @@ lean_ctor_set(x_84, 1, x_6); lean_ctor_set(x_84, 2, x_7); lean_ctor_set(x_84, 3, x_8); lean_ctor_set(x_84, 4, x_9); -x_85 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(x_81, x_2, x_84, x_82); +x_85 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(x_81, x_2, x_84, x_82); if (lean_obj_tag(x_85) == 0) { lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; @@ -10372,7 +10372,7 @@ if (lean_is_exclusive(x_87)) { x_100 = lean_box(0); } lean_inc(x_88); -x_101 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_97, x_15, x_88); +x_101 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_97, x_15, x_88); if (lean_is_scalar(x_100)) { x_102 = lean_alloc_ctor(0, 4, 0); } else { @@ -10508,7 +10508,7 @@ x_125 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_125, 0, x_1); lean_ctor_set(x_125, 1, x_2); lean_ctor_set_uint8(x_125, sizeof(void*)*2, x_122); -x_126 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(x_124, x_125); +x_126 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__1(x_124, x_125); if (lean_obj_tag(x_126) == 0) { lean_object* x_127; lean_object* x_128; @@ -10553,7 +10553,7 @@ lean_ctor_set(x_133, 1, x_6); lean_ctor_set(x_133, 2, x_7); lean_ctor_set(x_133, 3, x_8); lean_ctor_set(x_133, 4, x_9); -x_134 = l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(x_129, x_2, x_133, x_130); +x_134 = l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2(x_129, x_2, x_133, x_130); if (lean_obj_tag(x_134) == 0) { lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; 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; @@ -10612,7 +10612,7 @@ if (lean_is_exclusive(x_136)) { x_149 = lean_box(0); } lean_inc(x_137); -x_150 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_146, x_125, x_137); +x_150 = l_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_1__checkFunInfoCache___spec__4(x_146, x_125, x_137); if (lean_is_scalar(x_149)) { x_151 = lean_alloc_ctor(0, 4, 0); } else { @@ -10724,69 +10724,69 @@ return x_163; } } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___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_Nat_foldMAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Nat_foldMAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_8; } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___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, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___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, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_4); lean_dec(x_4); -x_11 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___lambda__1(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___lambda__1(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8, x_9); lean_dec(x_3); return x_11; } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_1); lean_dec(x_1); -x_14 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__5(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); return x_14; } } -lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_Meta_withNewLocalInstances___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_Meta_withNewLocalInstances___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___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* l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___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) { _start: { uint8_t x_9; lean_object* x_10; x_9 = lean_unbox(x_1); lean_dec(x_1); -x_10 = l___private_Init_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l___private_Lean_Meta_Basic_4__forallTelescopeReducingAuxAux___main___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__3(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } @@ -10795,7 +10795,7 @@ _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_box(0); -x_5 = l___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux(x_1, x_4, x_2, x_3); +x_5 = l___private_Lean_Meta_FunInfo_6__getFunInfoAux(x_1, x_4, x_2, x_3); return x_5; } } @@ -10805,25 +10805,25 @@ _start: lean_object* x_5; lean_object* x_6; x_5 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_5, 0, x_2); -x_6 = l___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux(x_1, x_5, x_3, x_4); +x_6 = l___private_Lean_Meta_FunInfo_6__getFunInfoAux(x_1, x_5, x_3, x_4); return x_6; } } -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); -lean_object* initialize_Init_Lean_Meta_InferType(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_InferType(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_FunInfo(lean_object* w) { +lean_object* initialize_Lean_Meta_FunInfo(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_InferType(lean_io_mk_world()); +res = initialize_Lean_Meta_InferType(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1 = _init_l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Init_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1); +l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1 = _init_l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Basic_5__forallTelescopeReducingAux___at___private_Lean_Meta_FunInfo_6__getFunInfoAux___spec__2___closed__1); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/Meta/GeneralizeTelescope.c b/stage0/stdlib/Lean/Meta/GeneralizeTelescope.c similarity index 98% rename from stage0/stdlib/Init/Lean/Meta/GeneralizeTelescope.c rename to stage0/stdlib/Lean/Meta/GeneralizeTelescope.c index 2bf4bd9ff7..df70fc2c95 100644 --- a/stage0/stdlib/Init/Lean/Meta/GeneralizeTelescope.c +++ b/stage0/stdlib/Lean/Meta/GeneralizeTelescope.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.GeneralizeTelescope -// Imports: Init.Lean.Meta.KAbstract +// Module: Lean.Meta.GeneralizeTelescope +// Imports: Lean.Meta.KAbstract #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -779,13 +779,13 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_generalizeTelescope___rarg), 5, 0); return x_2; } } -lean_object* initialize_Init_Lean_Meta_KAbstract(lean_object*); +lean_object* initialize_Lean_Meta_KAbstract(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_GeneralizeTelescope(lean_object* w) { +lean_object* initialize_Lean_Meta_GeneralizeTelescope(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_KAbstract(lean_io_mk_world()); +res = initialize_Lean_Meta_KAbstract(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Meta/InferType.c b/stage0/stdlib/Lean/Meta/InferType.c similarity index 84% rename from stage0/stdlib/Init/Lean/Meta/InferType.c rename to stage0/stdlib/Lean/Meta/InferType.c index fa960585c5..4b590c88a0 100644 --- a/stage0/stdlib/Init/Lean/Meta/InferType.c +++ b/stage0/stdlib/Lean/Meta/InferType.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.InferType -// Imports: Init.Lean.Data.LBool Init.Lean.Meta.Basic +// Module: Lean.Meta.InferType +// Imports: Lean.Data.LBool Lean.Meta.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,151 +13,151 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Meta_InferType_16__isArrowType___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_5__inferLambdaType___closed__1; size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Level_normalize___main(lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_4__inferForallType___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Meta_InferType_11__isAlwaysZero(lean_object*); +lean_object* l___private_Lean_Meta_InferType_5__inferLambdaType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkSort(lean_object*); lean_object* l_Lean_Meta_isTypeFormerAux___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_12__isArrowProp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_16__isArrowType(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_3__inferProjType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_4__inferForallType___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeFormerAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForall(lean_object*, lean_object*, lean_object*, lean_object*); extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; -lean_object* l___private_Init_Lean_Meta_InferType_15__isProofQuickApp___main___at_Lean_Meta_isProofQuick___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_13__isPropQuickApp(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_11__isAlwaysZero___main___boxed(lean_object*); +lean_object* l___private_Lean_Meta_InferType_4__inferForallType(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_6__withLocalDecl(lean_object*); size_t l_USize_sub(size_t, size_t); lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Meta_isProofQuick___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setInferTypeRef(lean_object*); +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_15__isProofQuickApp___main___at_Lean_Meta_isProofQuick___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateLevelMVars(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_4__inferForallType___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_5__inferLambdaType___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_5__inferLambdaType___closed__1; lean_object* l_Lean_Expr_getAppFn___main(lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; -lean_object* l___private_Init_Lean_Meta_InferType_1__inferAppType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_8__inferFVarType(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); -lean_object* l___private_Init_Lean_Meta_InferType_9__checkInferTypeCache(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__7(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_13__isPropQuickApp(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_2__inferConstType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_13__isPropQuickApp___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_12__isArrowProp___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Meta_InferType_11__isAlwaysZero(lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Meta_InferType_4__inferForallType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_15__isProofQuickApp___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_11__isAlwaysZero___boxed(lean_object*); +lean_object* l___private_Lean_Meta_InferType_17__isTypeQuickApp___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_16__isArrowType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_1__inferAppType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_7__inferMVarType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_12__isArrowProp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_10__inferTypeAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Literal_type(lean_object*); -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLevelIMax(lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_mkProj(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_3__inferProjType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev_range(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_1__inferAppType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___boxed(lean_object*); +lean_object* l___private_Lean_Meta_InferType_14__isArrowProposition(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_17__isTypeQuickApp(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isPropQuick(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_5__inferLambdaType___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Meta_InferType_4__inferForallType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_instantiate_type_lparams(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_14__isArrowProposition(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_4__inferForallType___closed__1; +uint8_t l___private_Lean_Meta_InferType_11__isAlwaysZero___main(lean_object*); +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__2(lean_object*, size_t, lean_object*); extern lean_object* l_Lean_Meta_inferTypeRef; extern lean_object* l_PersistentHashMap_insertAux___main___rarg___closed__3; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isPropQuick___main(lean_object*, lean_object*, lean_object*); size_t l_Lean_Expr_hash(lean_object*); -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_2__inferConstType(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_8__inferFVarType(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_4__inferForallType___closed__1; lean_object* l_Lean_Meta_inferTypeImpl(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_12__isArrowProp___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_1__inferAppType(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_16__isArrowType___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_10__inferTypeAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_10__inferTypeAux(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__2(lean_object*, size_t, lean_object*); +lean_object* l___private_Lean_Meta_InferType_9__checkInferTypeCache(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_15__isProofQuickApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshId___rarg(lean_object*); lean_object* l_Lean_Meta_isProof(lean_object*, lean_object*, lean_object*); size_t l_USize_mul(size_t, size_t); lean_object* l_Lean_Meta_setInferTypeRef___closed__1; -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); -lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_7__inferMVarType(lean_object*, lean_object*, lean_object*); size_t l_USize_land(size_t, size_t); -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_12__isArrowProp___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_12__isArrowProp___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* l_Lean_ConstantInfo_lparams(lean_object*); lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* l___private_Lean_Meta_InferType_10__inferTypeAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Meta_InferType_4__inferForallType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_16__isArrowType(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_16__isArrowType___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_6__withLocalDecl___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeQuick(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLevelSucc(lean_object*); uint8_t lean_expr_equal(lean_object*, lean_object*); uint8_t l_USize_decLe(size_t, size_t); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_1__inferAppType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_1__inferAppType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_6__withLocalDecl___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Bool_toLBool(uint8_t); -lean_object* l___private_Init_Lean_Meta_InferType_6__withLocalDecl___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_3__inferProjType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_lambdaTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_14__isArrowProposition___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_find_decl(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_5__inferLambdaType(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_7__inferMVarType___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_1__inferAppType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_12__isArrowProp(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeFormerAux___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_15__isProofQuickApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_16__isArrowType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); extern lean_object* l_Lean_Expr_Inhabited; lean_object* lean_mk_array(lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_3__inferProjType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_4__inferForallType___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeQuick___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_4__inferForallType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_6__withLocalDecl(lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_6__withLocalDecl___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_17__isTypeQuickApp___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Meta_InferType_4__inferForallType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_13__isPropQuickApp___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshLevelMVar___rarg(lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_7__inferMVarType___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_17__isTypeQuickApp(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isClassQuick___main___closed__1; lean_object* l_Lean_Meta_isReadOnlyOrSyntheticOpaqueExprMVar(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_2__inferConstType___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main___boxed(lean_object*); lean_object* l_Lean_Meta_isTypeFormer(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_16__isArrowType___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); +lean_object* l___private_Lean_Meta_InferType_2__inferConstType(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_3__inferProjType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_15__isProofQuickApp___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_3__inferProjType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_InferType_1__inferAppType(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeFormerAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_InferType_12__isArrowProp(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main(lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__7(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProofQuick(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_1__inferAppType___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_1__inferAppType___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -323,7 +323,7 @@ lean_ctor_set(x_38, 1, x_34); lean_ctor_set(x_38, 2, x_35); lean_ctor_set(x_38, 3, x_37); lean_inc(x_1); -x_39 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_22, x_2, x_8, x_1); +x_39 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_22, x_2, x_8, x_1); x_40 = l_Lean_Expr_Inhabited; x_41 = lean_array_get(x_40, x_2, x_22); lean_dec(x_22); @@ -384,7 +384,7 @@ return x_58; } } } -lean_object* l___private_Init_Lean_Meta_InferType_1__inferAppType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_1__inferAppType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -405,7 +405,7 @@ lean_ctor_set(x_9, 0, x_8); lean_ctor_set(x_9, 1, x_6); x_10 = lean_array_get_size(x_2); lean_inc(x_10); -x_11 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_1__inferAppType___spec__1(x_1, x_2, x_10, x_10, x_9, x_3, x_7); +x_11 = l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_1__inferAppType___spec__1(x_1, x_2, x_10, x_10, x_9, x_3, x_7); if (lean_obj_tag(x_11) == 0) { uint8_t x_12; @@ -499,26 +499,26 @@ return x_30; } } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_1__inferAppType___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* l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_1__inferAppType___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_1__inferAppType___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_1__inferAppType___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* l___private_Init_Lean_Meta_InferType_1__inferAppType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_1__inferAppType___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___private_Init_Lean_Meta_InferType_1__inferAppType(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_1__inferAppType(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_2__inferConstType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_2__inferConstType(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; @@ -605,16 +605,16 @@ return x_27; } } } -lean_object* l___private_Init_Lean_Meta_InferType_2__inferConstType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_2__inferConstType___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___private_Init_Lean_Meta_InferType_2__inferConstType(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_2__inferConstType(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_3__inferProjType___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_3__inferProjType___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; uint8_t x_10; @@ -787,7 +787,7 @@ return x_47; } } } -lean_object* l___private_Init_Lean_Meta_InferType_3__inferProjType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_InferType_3__inferProjType(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; @@ -919,7 +919,7 @@ x_38 = lean_mk_array(x_36, x_37); x_39 = lean_unsigned_to_nat(1u); x_40 = lean_nat_sub(x_36, x_39); lean_dec(x_36); -x_41 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_12, x_38, x_40); +x_41 = l___private_Lean_Expr_3__getAppArgsAux___main(x_12, x_38, x_40); x_42 = lean_array_get_size(x_41); x_43 = lean_nat_dec_eq(x_33, x_42); lean_dec(x_42); @@ -995,7 +995,7 @@ lean_dec(x_13); lean_free_object(x_9); x_55 = l_Lean_mkConst(x_34, x_17); lean_inc(x_4); -x_56 = l___private_Init_Lean_Meta_InferType_1__inferAppType(x_55, x_41, x_4, x_11); +x_56 = l___private_Lean_Meta_InferType_1__inferAppType(x_55, x_41, x_4, x_11); lean_dec(x_41); if (lean_obj_tag(x_56) == 0) { @@ -1009,7 +1009,7 @@ lean_inc(x_4); lean_inc(x_3); lean_inc_n(x_2, 2); lean_inc(x_1); -x_59 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_3__inferProjType___spec__1(x_1, x_2, x_3, x_2, x_2, x_57, x_4, x_58); +x_59 = l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_3__inferProjType___spec__1(x_1, x_2, x_3, x_2, x_2, x_57, x_4, x_58); if (lean_obj_tag(x_59) == 0) { lean_object* x_60; lean_object* x_61; lean_object* x_62; @@ -1420,7 +1420,7 @@ x_145 = lean_mk_array(x_143, x_144); x_146 = lean_unsigned_to_nat(1u); x_147 = lean_nat_sub(x_143, x_146); lean_dec(x_143); -x_148 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_117, x_145, x_147); +x_148 = l___private_Lean_Expr_3__getAppArgsAux___main(x_117, x_145, x_147); x_149 = lean_array_get_size(x_148); x_150 = lean_nat_dec_eq(x_140, x_149); lean_dec(x_149); @@ -1497,7 +1497,7 @@ lean_dec(x_119); lean_dec(x_118); x_164 = l_Lean_mkConst(x_141, x_122); lean_inc(x_4); -x_165 = l___private_Init_Lean_Meta_InferType_1__inferAppType(x_164, x_148, x_4, x_116); +x_165 = l___private_Lean_Meta_InferType_1__inferAppType(x_164, x_148, x_4, x_116); lean_dec(x_148); if (lean_obj_tag(x_165) == 0) { @@ -1511,7 +1511,7 @@ lean_inc(x_4); lean_inc(x_3); lean_inc_n(x_2, 2); lean_inc(x_1); -x_168 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_3__inferProjType___spec__1(x_1, x_2, x_3, x_2, x_2, x_166, x_4, x_167); +x_168 = l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_3__inferProjType___spec__1(x_1, x_2, x_3, x_2, x_2, x_166, x_4, x_167); if (lean_obj_tag(x_168) == 0) { lean_object* x_169; lean_object* x_170; lean_object* x_171; @@ -1841,11 +1841,11 @@ return x_224; } } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_3__inferProjType___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* l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_3__inferProjType___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_InferType_3__inferProjType___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Nat_foldMAux___main___at___private_Lean_Meta_InferType_3__inferProjType___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); return x_9; } @@ -2202,7 +2202,7 @@ return x_83; } } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Meta_InferType_4__inferForallType___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Meta_InferType_4__inferForallType___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -2306,7 +2306,7 @@ return x_29; } } } -lean_object* l___private_Init_Lean_Meta_InferType_4__inferForallType___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_4__inferForallType___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -2321,7 +2321,7 @@ x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); x_8 = lean_array_get_size(x_1); -x_9 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Meta_InferType_4__inferForallType___spec__1(x_1, x_1, x_8, lean_box(0), x_6, x_3, x_7); +x_9 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Meta_InferType_4__inferForallType___spec__1(x_1, x_1, x_8, lean_box(0), x_6, x_3, x_7); if (lean_obj_tag(x_9) == 0) { uint8_t x_10; @@ -2401,43 +2401,43 @@ return x_26; } } } -lean_object* _init_l___private_Init_Lean_Meta_InferType_4__inferForallType___closed__1() { +lean_object* _init_l___private_Lean_Meta_InferType_4__inferForallType___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_InferType_4__inferForallType___lambda__1___boxed), 4, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_InferType_4__inferForallType___lambda__1___boxed), 4, 0); return x_1; } } -lean_object* l___private_Init_Lean_Meta_InferType_4__inferForallType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_InferType_4__inferForallType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Meta_InferType_4__inferForallType___closed__1; +x_4 = l___private_Lean_Meta_InferType_4__inferForallType___closed__1; x_5 = l_Lean_Meta_forallTelescope___rarg(x_1, x_4, x_2, x_3); return x_5; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Meta_InferType_4__inferForallType___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* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Meta_InferType_4__inferForallType___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_Meta_InferType_4__inferForallType___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_Meta_InferType_4__inferForallType___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_2); lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Meta_InferType_4__inferForallType___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_4__inferForallType___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___private_Init_Lean_Meta_InferType_4__inferForallType___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_4__inferForallType___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_5__inferLambdaType___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_5__inferLambdaType___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -2480,24 +2480,24 @@ return x_12; } } } -lean_object* _init_l___private_Init_Lean_Meta_InferType_5__inferLambdaType___closed__1() { +lean_object* _init_l___private_Lean_Meta_InferType_5__inferLambdaType___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_InferType_5__inferLambdaType___lambda__1), 4, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_InferType_5__inferLambdaType___lambda__1), 4, 0); return x_1; } } -lean_object* l___private_Init_Lean_Meta_InferType_5__inferLambdaType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_InferType_5__inferLambdaType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Meta_InferType_5__inferLambdaType___closed__1; +x_4 = l___private_Lean_Meta_InferType_5__inferLambdaType___closed__1; x_5 = l_Lean_Meta_lambdaTelescope___rarg(x_1, x_4, x_2, x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_6__withLocalDecl___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_InferType_6__withLocalDecl___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; @@ -2837,25 +2837,25 @@ return x_85; } } } -lean_object* l___private_Init_Lean_Meta_InferType_6__withLocalDecl(lean_object* x_1) { +lean_object* l___private_Lean_Meta_InferType_6__withLocalDecl(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_InferType_6__withLocalDecl___rarg___boxed), 6, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_InferType_6__withLocalDecl___rarg___boxed), 6, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_InferType_6__withLocalDecl___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* l___private_Lean_Meta_InferType_6__withLocalDecl___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) { _start: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_2); lean_dec(x_2); -x_8 = l___private_Init_Lean_Meta_InferType_6__withLocalDecl___rarg(x_1, x_7, x_3, x_4, x_5, x_6); +x_8 = l___private_Lean_Meta_InferType_6__withLocalDecl___rarg(x_1, x_7, x_3, x_4, x_5, x_6); return x_8; } } -lean_object* l___private_Init_Lean_Meta_InferType_7__inferMVarType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_InferType_7__inferMVarType(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; @@ -2906,16 +2906,16 @@ return x_15; } } } -lean_object* l___private_Init_Lean_Meta_InferType_7__inferMVarType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_InferType_7__inferMVarType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_InferType_7__inferMVarType(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_InferType_7__inferMVarType(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Meta_InferType_8__inferFVarType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_InferType_8__inferFVarType(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -2968,7 +2968,7 @@ return x_15; } } } -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___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; @@ -3010,7 +3010,7 @@ return x_15; } } } -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3081,14 +3081,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_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__3(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___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_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -3096,11 +3096,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Expr_hash(x_2); -x_5 = l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__2(x_3, x_4, x_2); +x_5 = l_PersistentHashMap_findAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__2(x_3, x_4, x_2); return x_5; } } -lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; @@ -3192,7 +3192,7 @@ return x_29; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__7(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_object* l_Array_iterateMAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__7(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; @@ -3215,7 +3215,7 @@ x_13 = x_1 - x_12; x_14 = 5; x_15 = x_14 * x_13; x_16 = x_11 >> x_15; -x_17 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_6, x_16, x_1, x_9, x_10); +x_17 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_6, x_16, x_1, x_9, x_10); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_add(x_5, x_18); lean_dec(x_5); @@ -3225,7 +3225,7 @@ goto _start; } } } -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(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) @@ -3338,7 +3338,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 = x_2 >> x_9; x_37 = x_3 + x_8; -x_38 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_35, x_36, x_37, x_4, x_5); +x_38 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(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); @@ -3353,7 +3353,7 @@ lean_inc(x_40); lean_dec(x_15); x_41 = x_2 >> x_9; x_42 = x_3 + x_8; -x_43 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_40, x_41, x_42, x_4, x_5); +x_43 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(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); @@ -3469,7 +3469,7 @@ if (lean_is_exclusive(x_57)) { } x_73 = x_2 >> x_50; x_74 = x_3 + x_49; -x_75 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_71, x_73, x_74, x_4, x_5); +x_75 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(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 { @@ -3502,7 +3502,7 @@ else { lean_object* x_82; lean_object* x_83; size_t x_84; uint8_t x_85; x_82 = lean_unsigned_to_nat(0u); -x_83 = l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__6(x_1, x_82, x_4, x_5); +x_83 = l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__6(x_1, x_82, x_4, x_5); x_84 = 7; x_85 = x_84 <= x_3; if (x_85 == 0) @@ -3521,7 +3521,7 @@ x_90 = lean_ctor_get(x_83, 1); lean_inc(x_90); lean_dec(x_83); x_91 = l_PersistentHashMap_insertAux___main___rarg___closed__3; -x_92 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__7(x_3, x_89, x_90, x_89, x_82, x_91); +x_92 = l_Array_iterateMAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__7(x_3, x_89, x_90, x_89, x_82, x_91); lean_dec(x_90); lean_dec(x_89); return x_92; @@ -3538,7 +3538,7 @@ return x_83; } } } -lean_object* l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -3550,7 +3550,7 @@ x_5 = lean_ctor_get(x_1, 0); x_6 = lean_ctor_get(x_1, 1); x_7 = l_Lean_Expr_hash(x_2); x_8 = 1; -x_9 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_5, x_7, x_8, x_2, x_3); +x_9 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_5, x_7, x_8, x_2, x_3); x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_6, x_10); lean_dec(x_6); @@ -3568,7 +3568,7 @@ lean_inc(x_12); lean_dec(x_1); x_14 = l_Lean_Expr_hash(x_2); x_15 = 1; -x_16 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_12, x_14, x_15, x_2, x_3); +x_16 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_12, x_14, x_15, x_2, x_3); x_17 = lean_unsigned_to_nat(1u); x_18 = lean_nat_add(x_13, x_17); lean_dec(x_13); @@ -3579,7 +3579,7 @@ return x_19; } } } -lean_object* l___private_Init_Lean_Meta_InferType_9__checkInferTypeCache(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_9__checkInferTypeCache(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; @@ -3588,7 +3588,7 @@ lean_inc(x_5); x_6 = lean_ctor_get(x_5, 0); lean_inc(x_6); lean_dec(x_5); -x_7 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_6, x_1); +x_7 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_6, x_1); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; @@ -3619,7 +3619,7 @@ if (x_16 == 0) lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_10, 0); lean_inc(x_12); -x_18 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_17, x_1, x_12); +x_18 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_17, x_1, x_12); lean_ctor_set(x_10, 0, x_18); return x_8; } @@ -3636,7 +3636,7 @@ lean_inc(x_20); lean_inc(x_19); lean_dec(x_10); lean_inc(x_12); -x_23 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_19, x_1, x_12); +x_23 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_19, x_1, x_12); x_24 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_20); @@ -3679,7 +3679,7 @@ if (lean_is_exclusive(x_10)) { x_34 = lean_box(0); } lean_inc(x_12); -x_35 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_30, x_1, x_12); +x_35 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_30, x_1, x_12); if (lean_is_scalar(x_34)) { x_36 = lean_alloc_ctor(0, 4, 0); } else { @@ -3747,7 +3747,7 @@ if (lean_is_exclusive(x_10)) { x_49 = lean_box(0); } lean_inc(x_38); -x_50 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_45, x_1, x_38); +x_50 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_45, x_1, x_38); if (lean_is_scalar(x_49)) { x_51 = lean_alloc_ctor(0, 4, 0); } else { @@ -3814,51 +3814,51 @@ return x_59; } } } -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___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* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___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_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___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_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___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_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__2(x_1, x_4, x_3); +x_5 = l_PersistentHashMap_findAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__2(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_1, x_2); +x_3 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { size_t x_7; lean_object* x_8; x_7 = lean_unbox_usize(x_1); lean_dec(x_1); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__7(x_7, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__7(x_7, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___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* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5___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; @@ -3866,11 +3866,11 @@ x_6 = lean_unbox_usize(x_2); lean_dec(x_2); x_7 = lean_unbox_usize(x_3); lean_dec(x_3); -x_8 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_1, x_6, x_7, x_4, x_5); +x_8 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__5(x_1, x_6, x_7, x_4, x_5); return x_8; } } -lean_object* l___private_Init_Lean_Meta_InferType_10__inferTypeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_InferType_10__inferTypeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_1)) { @@ -3894,7 +3894,7 @@ lean_object* x_7; lean_object* x_8; x_7 = lean_ctor_get(x_1, 0); lean_inc(x_7); lean_dec(x_1); -x_8 = l___private_Init_Lean_Meta_InferType_8__inferFVarType(x_7, x_2, x_3); +x_8 = l___private_Lean_Meta_InferType_8__inferFVarType(x_7, x_2, x_3); return x_8; } case 2: @@ -3903,7 +3903,7 @@ 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___private_Init_Lean_Meta_InferType_7__inferMVarType(x_9, x_2, x_3); +x_10 = l___private_Lean_Meta_InferType_7__inferMVarType(x_9, x_2, x_3); lean_dec(x_2); return x_10; } @@ -3929,7 +3929,7 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_1, 1); lean_inc(x_16); lean_dec(x_1); -x_17 = l___private_Init_Lean_Meta_InferType_2__inferConstType(x_15, x_16, x_2, x_3); +x_17 = l___private_Lean_Meta_InferType_2__inferConstType(x_15, x_16, x_2, x_3); lean_dec(x_2); return x_17; } @@ -3949,17 +3949,17 @@ x_24 = lean_unsigned_to_nat(1u); x_25 = lean_nat_sub(x_21, x_24); lean_dec(x_21); lean_inc(x_1); -x_26 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_23, x_25); +x_26 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_23, x_25); x_27 = lean_ctor_get(x_3, 2); lean_inc(x_27); x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); lean_dec(x_27); -x_29 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_28, x_1); +x_29 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_28, x_1); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; -x_30 = l___private_Init_Lean_Meta_InferType_1__inferAppType(x_19, x_26, x_2, x_3); +x_30 = l___private_Lean_Meta_InferType_1__inferAppType(x_19, x_26, x_2, x_3); lean_dec(x_26); if (lean_obj_tag(x_30) == 0) { @@ -3987,7 +3987,7 @@ if (x_38 == 0) lean_object* x_39; lean_object* x_40; x_39 = lean_ctor_get(x_32, 0); lean_inc(x_34); -x_40 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_39, x_1, x_34); +x_40 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_39, x_1, x_34); lean_ctor_set(x_32, 0, x_40); return x_30; } @@ -4004,7 +4004,7 @@ lean_inc(x_42); lean_inc(x_41); lean_dec(x_32); lean_inc(x_34); -x_45 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_41, x_1, x_34); +x_45 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_41, x_1, x_34); x_46 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_42); @@ -4047,7 +4047,7 @@ if (lean_is_exclusive(x_32)) { x_56 = lean_box(0); } lean_inc(x_34); -x_57 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_52, x_1, x_34); +x_57 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_52, x_1, x_34); if (lean_is_scalar(x_56)) { x_58 = lean_alloc_ctor(0, 4, 0); } else { @@ -4115,7 +4115,7 @@ if (lean_is_exclusive(x_32)) { x_71 = lean_box(0); } lean_inc(x_60); -x_72 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_67, x_1, x_60); +x_72 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_67, x_1, x_60); if (lean_is_scalar(x_71)) { x_73 = lean_alloc_ctor(0, 4, 0); } else { @@ -4190,11 +4190,11 @@ lean_inc(x_82); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); lean_dec(x_82); -x_84 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_83, x_1); +x_84 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_83, x_1); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; -x_85 = l___private_Init_Lean_Meta_InferType_4__inferForallType___closed__1; +x_85 = l___private_Lean_Meta_InferType_4__inferForallType___closed__1; lean_inc(x_1); x_86 = l_Lean_Meta_forallTelescope___rarg(x_1, x_85, x_2, x_3); if (lean_obj_tag(x_86) == 0) @@ -4223,7 +4223,7 @@ if (x_94 == 0) lean_object* x_95; lean_object* x_96; x_95 = lean_ctor_get(x_88, 0); lean_inc(x_90); -x_96 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_95, x_1, x_90); +x_96 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_95, x_1, x_90); lean_ctor_set(x_88, 0, x_96); return x_86; } @@ -4240,7 +4240,7 @@ lean_inc(x_98); lean_inc(x_97); lean_dec(x_88); lean_inc(x_90); -x_101 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_97, x_1, x_90); +x_101 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_97, x_1, x_90); x_102 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_98); @@ -4283,7 +4283,7 @@ if (lean_is_exclusive(x_88)) { x_112 = lean_box(0); } lean_inc(x_90); -x_113 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_108, x_1, x_90); +x_113 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_108, x_1, x_90); if (lean_is_scalar(x_112)) { x_114 = lean_alloc_ctor(0, 4, 0); } else { @@ -4351,7 +4351,7 @@ if (lean_is_exclusive(x_88)) { x_127 = lean_box(0); } lean_inc(x_116); -x_128 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_123, x_1, x_116); +x_128 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_123, x_1, x_116); if (lean_is_scalar(x_127)) { x_129 = lean_alloc_ctor(0, 4, 0); } else { @@ -4453,11 +4453,11 @@ lean_inc(x_146); x_147 = lean_ctor_get(x_146, 0); lean_inc(x_147); lean_dec(x_146); -x_148 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_147, x_1); +x_148 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_147, x_1); if (lean_obj_tag(x_148) == 0) { lean_object* x_149; -x_149 = l___private_Init_Lean_Meta_InferType_3__inferProjType(x_143, x_144, x_145, x_2, x_3); +x_149 = l___private_Lean_Meta_InferType_3__inferProjType(x_143, x_144, x_145, x_2, x_3); if (lean_obj_tag(x_149) == 0) { lean_object* x_150; lean_object* x_151; uint8_t x_152; @@ -4484,7 +4484,7 @@ if (x_157 == 0) lean_object* x_158; lean_object* x_159; x_158 = lean_ctor_get(x_151, 0); lean_inc(x_153); -x_159 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_158, x_1, x_153); +x_159 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_158, x_1, x_153); lean_ctor_set(x_151, 0, x_159); return x_149; } @@ -4501,7 +4501,7 @@ lean_inc(x_161); lean_inc(x_160); lean_dec(x_151); lean_inc(x_153); -x_164 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_160, x_1, x_153); +x_164 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_160, x_1, x_153); x_165 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_165, 0, x_164); lean_ctor_set(x_165, 1, x_161); @@ -4544,7 +4544,7 @@ if (lean_is_exclusive(x_151)) { x_175 = lean_box(0); } lean_inc(x_153); -x_176 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_171, x_1, x_153); +x_176 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_171, x_1, x_153); if (lean_is_scalar(x_175)) { x_177 = lean_alloc_ctor(0, 4, 0); } else { @@ -4612,7 +4612,7 @@ if (lean_is_exclusive(x_151)) { x_190 = lean_box(0); } lean_inc(x_179); -x_191 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_186, x_1, x_179); +x_191 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_186, x_1, x_179); if (lean_is_scalar(x_190)) { x_192 = lean_alloc_ctor(0, 4, 0); } else { @@ -4697,11 +4697,11 @@ lean_inc(x_204); x_205 = lean_ctor_get(x_204, 0); lean_inc(x_205); lean_dec(x_204); -x_206 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_205, x_1); +x_206 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__1(x_205, x_1); if (lean_obj_tag(x_206) == 0) { lean_object* x_207; lean_object* x_208; -x_207 = l___private_Init_Lean_Meta_InferType_5__inferLambdaType___closed__1; +x_207 = l___private_Lean_Meta_InferType_5__inferLambdaType___closed__1; lean_inc(x_1); x_208 = l_Lean_Meta_lambdaTelescope___rarg(x_1, x_207, x_2, x_3); if (lean_obj_tag(x_208) == 0) @@ -4730,7 +4730,7 @@ if (x_216 == 0) lean_object* x_217; lean_object* x_218; x_217 = lean_ctor_get(x_210, 0); lean_inc(x_212); -x_218 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_217, x_1, x_212); +x_218 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_217, x_1, x_212); lean_ctor_set(x_210, 0, x_218); return x_208; } @@ -4747,7 +4747,7 @@ lean_inc(x_220); lean_inc(x_219); lean_dec(x_210); lean_inc(x_212); -x_223 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_219, x_1, x_212); +x_223 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_219, x_1, x_212); x_224 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_224, 0, x_223); lean_ctor_set(x_224, 1, x_220); @@ -4790,7 +4790,7 @@ if (lean_is_exclusive(x_210)) { x_234 = lean_box(0); } lean_inc(x_212); -x_235 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_230, x_1, x_212); +x_235 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_230, x_1, x_212); if (lean_is_scalar(x_234)) { x_236 = lean_alloc_ctor(0, 4, 0); } else { @@ -4858,7 +4858,7 @@ if (lean_is_exclusive(x_210)) { x_249 = lean_box(0); } lean_inc(x_238); -x_250 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_245, x_1, x_238); +x_250 = l_PersistentHashMap_insert___at___private_Lean_Meta_InferType_9__checkInferTypeCache___spec__4(x_245, x_1, x_238); if (lean_is_scalar(x_249)) { x_251 = lean_alloc_ctor(0, 4, 0); } else { @@ -4926,11 +4926,11 @@ return x_259; } } } -lean_object* l___private_Init_Lean_Meta_InferType_10__inferTypeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_InferType_10__inferTypeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_InferType_10__inferTypeAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_InferType_10__inferTypeAux___main(x_1, x_2, x_3); return x_4; } } @@ -4949,7 +4949,7 @@ if (x_6 == 0) uint8_t x_7; lean_object* x_8; x_7 = 1; lean_ctor_set_uint8(x_5, sizeof(void*)*1 + 6, x_7); -x_8 = l___private_Init_Lean_Meta_InferType_10__inferTypeAux___main(x_1, x_2, x_3); +x_8 = l___private_Lean_Meta_InferType_10__inferTypeAux___main(x_1, x_2, x_3); return x_8; } else @@ -4975,7 +4975,7 @@ lean_ctor_set_uint8(x_17, sizeof(void*)*1 + 4, x_14); lean_ctor_set_uint8(x_17, sizeof(void*)*1 + 5, x_15); lean_ctor_set_uint8(x_17, sizeof(void*)*1 + 6, x_16); lean_ctor_set(x_2, 0, x_17); -x_18 = l___private_Init_Lean_Meta_InferType_10__inferTypeAux___main(x_1, x_2, x_3); +x_18 = l___private_Lean_Meta_InferType_10__inferTypeAux___main(x_1, x_2, x_3); return x_18; } } @@ -5028,7 +5028,7 @@ lean_ctor_set(x_34, 1, x_20); lean_ctor_set(x_34, 2, x_21); lean_ctor_set(x_34, 3, x_22); lean_ctor_set(x_34, 4, x_23); -x_35 = l___private_Init_Lean_Meta_InferType_10__inferTypeAux___main(x_1, x_34, x_3); +x_35 = l___private_Lean_Meta_InferType_10__inferTypeAux___main(x_1, x_34, x_3); return x_35; } } @@ -5051,7 +5051,7 @@ x_4 = lean_io_ref_set(x_2, x_3, x_1); return x_4; } } -uint8_t l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main(lean_object* x_1) { +uint8_t l___private_Lean_Meta_InferType_11__isAlwaysZero___main(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { @@ -5066,7 +5066,7 @@ case 2: lean_object* x_3; lean_object* x_4; uint8_t x_5; x_3 = lean_ctor_get(x_1, 0); x_4 = lean_ctor_get(x_1, 1); -x_5 = l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main(x_3); +x_5 = l___private_Lean_Meta_InferType_11__isAlwaysZero___main(x_3); if (x_5 == 0) { uint8_t x_6; @@ -5095,35 +5095,35 @@ return x_10; } } } -lean_object* l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_InferType_11__isAlwaysZero___main___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main(x_1); +x_2 = l___private_Lean_Meta_InferType_11__isAlwaysZero___main(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -uint8_t l___private_Init_Lean_Meta_InferType_11__isAlwaysZero(lean_object* x_1) { +uint8_t l___private_Lean_Meta_InferType_11__isAlwaysZero(lean_object* x_1) { _start: { uint8_t x_2; -x_2 = l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main(x_1); +x_2 = l___private_Lean_Meta_InferType_11__isAlwaysZero___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_InferType_11__isAlwaysZero___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Meta_InferType_11__isAlwaysZero(x_1); +x_2 = l___private_Lean_Meta_InferType_11__isAlwaysZero(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_InferType_12__isArrowProp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_12__isArrowProp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_1)) { @@ -5156,7 +5156,7 @@ if (x_12 == 0) { lean_object* x_13; uint8_t x_14; uint8_t x_15; lean_object* x_16; x_13 = lean_ctor_get(x_11, 0); -x_14 = l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main(x_13); +x_14 = l___private_Lean_Meta_InferType_11__isAlwaysZero___main(x_13); lean_dec(x_13); x_15 = l_Bool_toLBool(x_14); x_16 = lean_box(x_15); @@ -5171,7 +5171,7 @@ x_18 = lean_ctor_get(x_11, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_11); -x_19 = l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main(x_17); +x_19 = l___private_Lean_Meta_InferType_11__isAlwaysZero___main(x_17); lean_dec(x_17); x_20 = l_Bool_toLBool(x_19); x_21 = lean_box(x_20); @@ -5246,33 +5246,33 @@ return x_38; } } } -lean_object* l___private_Init_Lean_Meta_InferType_12__isArrowProp___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_12__isArrowProp___main___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___private_Init_Lean_Meta_InferType_12__isArrowProp___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_12__isArrowProp___main(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_12__isArrowProp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_12__isArrowProp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_InferType_12__isArrowProp___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_12__isArrowProp___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_12__isArrowProp___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_12__isArrowProp___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___private_Init_Lean_Meta_InferType_12__isArrowProp(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_12__isArrowProp(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_13__isPropQuickApp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_13__isPropQuickApp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_1)) { @@ -5283,7 +5283,7 @@ x_5 = lean_ctor_get(x_1, 0); lean_inc(x_5); lean_dec(x_1); lean_inc(x_3); -x_6 = l___private_Init_Lean_Meta_InferType_8__inferFVarType(x_5, x_3, x_4); +x_6 = l___private_Lean_Meta_InferType_8__inferFVarType(x_5, x_3, x_4); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -5292,7 +5292,7 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Meta_InferType_12__isArrowProp___main(x_7, x_2, x_3, x_8); +x_9 = l___private_Lean_Meta_InferType_12__isArrowProp___main(x_7, x_2, x_3, x_8); lean_dec(x_3); return x_9; } @@ -5327,7 +5327,7 @@ lean_object* x_14; lean_object* x_15; x_14 = lean_ctor_get(x_1, 0); lean_inc(x_14); lean_dec(x_1); -x_15 = l___private_Init_Lean_Meta_InferType_7__inferMVarType(x_14, x_3, x_4); +x_15 = l___private_Lean_Meta_InferType_7__inferMVarType(x_14, x_3, x_4); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; @@ -5336,7 +5336,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l___private_Init_Lean_Meta_InferType_12__isArrowProp___main(x_16, x_2, x_3, x_17); +x_18 = l___private_Lean_Meta_InferType_12__isArrowProp___main(x_16, x_2, x_3, x_17); lean_dec(x_3); return x_18; } @@ -5373,7 +5373,7 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_1, 1); lean_inc(x_24); lean_dec(x_1); -x_25 = l___private_Init_Lean_Meta_InferType_2__inferConstType(x_23, x_24, x_3, x_4); +x_25 = l___private_Lean_Meta_InferType_2__inferConstType(x_23, x_24, x_3, x_4); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; @@ -5382,7 +5382,7 @@ lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); lean_inc(x_27); lean_dec(x_25); -x_28 = l___private_Init_Lean_Meta_InferType_12__isArrowProp___main(x_26, x_2, x_3, x_27); +x_28 = l___private_Lean_Meta_InferType_12__isArrowProp___main(x_26, x_2, x_3, x_27); lean_dec(x_3); return x_28; } @@ -5490,11 +5490,11 @@ return x_52; } } } -lean_object* l___private_Init_Lean_Meta_InferType_13__isPropQuickApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_13__isPropQuickApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_InferType_13__isPropQuickApp___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_13__isPropQuickApp___main(x_1, x_2, x_3, x_4); return x_5; } } @@ -5521,7 +5521,7 @@ x_7 = lean_ctor_get(x_1, 0); lean_inc(x_7); lean_dec(x_1); lean_inc(x_2); -x_8 = l___private_Init_Lean_Meta_InferType_8__inferFVarType(x_7, x_2, x_3); +x_8 = l___private_Lean_Meta_InferType_8__inferFVarType(x_7, x_2, x_3); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -5531,7 +5531,7 @@ x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); lean_dec(x_8); x_11 = lean_unsigned_to_nat(0u); -x_12 = l___private_Init_Lean_Meta_InferType_12__isArrowProp___main(x_9, x_11, x_2, x_10); +x_12 = l___private_Lean_Meta_InferType_12__isArrowProp___main(x_9, x_11, x_2, x_10); lean_dec(x_2); return x_12; } @@ -5565,7 +5565,7 @@ lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_1, 0); lean_inc(x_17); lean_dec(x_1); -x_18 = l___private_Init_Lean_Meta_InferType_7__inferMVarType(x_17, x_2, x_3); +x_18 = l___private_Lean_Meta_InferType_7__inferMVarType(x_17, x_2, x_3); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; @@ -5575,7 +5575,7 @@ x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); x_21 = lean_unsigned_to_nat(0u); -x_22 = l___private_Init_Lean_Meta_InferType_12__isArrowProp___main(x_19, x_21, x_2, x_20); +x_22 = l___private_Lean_Meta_InferType_12__isArrowProp___main(x_19, x_21, x_2, x_20); lean_dec(x_2); return x_22; } @@ -5611,7 +5611,7 @@ lean_inc(x_27); x_28 = lean_ctor_get(x_1, 1); lean_inc(x_28); lean_dec(x_1); -x_29 = l___private_Init_Lean_Meta_InferType_2__inferConstType(x_27, x_28, x_2, x_3); +x_29 = l___private_Lean_Meta_InferType_2__inferConstType(x_27, x_28, x_2, x_3); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; @@ -5621,7 +5621,7 @@ x_31 = lean_ctor_get(x_29, 1); lean_inc(x_31); lean_dec(x_29); x_32 = lean_unsigned_to_nat(0u); -x_33 = l___private_Init_Lean_Meta_InferType_12__isArrowProp___main(x_30, x_32, x_2, x_31); +x_33 = l___private_Lean_Meta_InferType_12__isArrowProp___main(x_30, x_32, x_2, x_31); lean_dec(x_2); return x_33; } @@ -5656,7 +5656,7 @@ x_38 = lean_ctor_get(x_1, 0); lean_inc(x_38); lean_dec(x_1); x_39 = lean_unsigned_to_nat(1u); -x_40 = l___private_Init_Lean_Meta_InferType_13__isPropQuickApp___main(x_38, x_39, x_2, x_3); +x_40 = l___private_Lean_Meta_InferType_13__isPropQuickApp___main(x_38, x_39, x_2, x_3); return x_40; } case 7: @@ -5844,7 +5844,7 @@ if (x_32 == 0) { lean_object* x_33; uint8_t x_34; lean_object* x_35; x_33 = lean_ctor_get(x_31, 0); -x_34 = l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main(x_33); +x_34 = l___private_Lean_Meta_InferType_11__isAlwaysZero___main(x_33); lean_dec(x_33); x_35 = lean_box(x_34); lean_ctor_set(x_31, 0, x_35); @@ -5858,7 +5858,7 @@ x_37 = lean_ctor_get(x_31, 1); lean_inc(x_37); lean_inc(x_36); lean_dec(x_31); -x_38 = l___private_Init_Lean_Meta_InferType_11__isAlwaysZero___main(x_36); +x_38 = l___private_Lean_Meta_InferType_11__isAlwaysZero___main(x_36); lean_dec(x_36); x_39 = lean_box(x_38); x_40 = lean_alloc_ctor(0, 2, 0); @@ -5974,7 +5974,7 @@ return x_60; } } } -lean_object* l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_14__isArrowProposition___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -6060,15 +6060,15 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Meta_InferType_14__isArrowProposition(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_14__isArrowProposition(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_15__isProofQuickApp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_InferType_15__isProofQuickApp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { switch (lean_obj_tag(x_2)) { @@ -6080,7 +6080,7 @@ x_6 = lean_ctor_get(x_2, 0); lean_inc(x_6); lean_dec(x_2); lean_inc(x_4); -x_7 = l___private_Init_Lean_Meta_InferType_8__inferFVarType(x_6, x_4, x_5); +x_7 = l___private_Lean_Meta_InferType_8__inferFVarType(x_6, x_4, x_5); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -6089,7 +6089,7 @@ lean_inc(x_8); x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); -x_10 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_8, x_3, x_4, x_9); +x_10 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_8, x_3, x_4, x_9); return x_10; } else @@ -6124,7 +6124,7 @@ lean_dec(x_1); x_15 = lean_ctor_get(x_2, 0); lean_inc(x_15); lean_dec(x_2); -x_16 = l___private_Init_Lean_Meta_InferType_7__inferMVarType(x_15, x_4, x_5); +x_16 = l___private_Lean_Meta_InferType_7__inferMVarType(x_15, x_4, x_5); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; @@ -6133,7 +6133,7 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec(x_16); -x_19 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_17, x_3, x_4, x_18); +x_19 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_17, x_3, x_4, x_18); return x_19; } else @@ -6170,7 +6170,7 @@ lean_inc(x_24); x_25 = lean_ctor_get(x_2, 1); lean_inc(x_25); lean_dec(x_2); -x_26 = l___private_Init_Lean_Meta_InferType_2__inferConstType(x_24, x_25, x_4, x_5); +x_26 = l___private_Lean_Meta_InferType_2__inferConstType(x_24, x_25, x_4, x_5); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; @@ -6179,7 +6179,7 @@ lean_inc(x_27); x_28 = lean_ctor_get(x_26, 1); lean_inc(x_28); lean_dec(x_26); -x_29 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_27, x_3, x_4, x_28); +x_29 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_27, x_3, x_4, x_28); return x_29; } else @@ -6281,15 +6281,15 @@ return x_51; } } } -lean_object* l___private_Init_Lean_Meta_InferType_15__isProofQuickApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_InferType_15__isProofQuickApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_InferType_15__isProofQuickApp___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_InferType_15__isProofQuickApp___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Meta_InferType_15__isProofQuickApp___main___at_Lean_Meta_isProofQuick___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_15__isProofQuickApp___main___at_Lean_Meta_isProofQuick___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_1)) { @@ -6300,7 +6300,7 @@ x_5 = lean_ctor_get(x_1, 0); lean_inc(x_5); lean_dec(x_1); lean_inc(x_3); -x_6 = l___private_Init_Lean_Meta_InferType_8__inferFVarType(x_5, x_3, x_4); +x_6 = l___private_Lean_Meta_InferType_8__inferFVarType(x_5, x_3, x_4); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -6309,7 +6309,7 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_7, x_2, x_3, x_8); +x_9 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_7, x_2, x_3, x_8); return x_9; } else @@ -6343,7 +6343,7 @@ lean_object* x_14; lean_object* x_15; x_14 = lean_ctor_get(x_1, 0); lean_inc(x_14); lean_dec(x_1); -x_15 = l___private_Init_Lean_Meta_InferType_7__inferMVarType(x_14, x_3, x_4); +x_15 = l___private_Lean_Meta_InferType_7__inferMVarType(x_14, x_3, x_4); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; @@ -6352,7 +6352,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_16, x_2, x_3, x_17); +x_18 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_16, x_2, x_3, x_17); return x_18; } else @@ -6388,7 +6388,7 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_1, 1); lean_inc(x_24); lean_dec(x_1); -x_25 = l___private_Init_Lean_Meta_InferType_2__inferConstType(x_23, x_24, x_3, x_4); +x_25 = l___private_Lean_Meta_InferType_2__inferConstType(x_23, x_24, x_3, x_4); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; @@ -6397,7 +6397,7 @@ lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); lean_inc(x_27); lean_dec(x_25); -x_28 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_26, x_2, x_3, x_27); +x_28 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_26, x_2, x_3, x_27); return x_28; } else @@ -6521,7 +6521,7 @@ x_7 = lean_ctor_get(x_1, 0); lean_inc(x_7); lean_dec(x_1); lean_inc(x_2); -x_8 = l___private_Init_Lean_Meta_InferType_8__inferFVarType(x_7, x_2, x_3); +x_8 = l___private_Lean_Meta_InferType_8__inferFVarType(x_7, x_2, x_3); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -6531,7 +6531,7 @@ x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); lean_dec(x_8); x_11 = lean_unsigned_to_nat(0u); -x_12 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_9, x_11, x_2, x_10); +x_12 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_9, x_11, x_2, x_10); return x_12; } else @@ -6564,7 +6564,7 @@ lean_object* x_17; lean_object* x_18; x_17 = lean_ctor_get(x_1, 0); lean_inc(x_17); lean_dec(x_1); -x_18 = l___private_Init_Lean_Meta_InferType_7__inferMVarType(x_17, x_2, x_3); +x_18 = l___private_Lean_Meta_InferType_7__inferMVarType(x_17, x_2, x_3); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; @@ -6574,7 +6574,7 @@ x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); x_21 = lean_unsigned_to_nat(0u); -x_22 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_19, x_21, x_2, x_20); +x_22 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_19, x_21, x_2, x_20); return x_22; } else @@ -6609,7 +6609,7 @@ lean_inc(x_27); x_28 = lean_ctor_get(x_1, 1); lean_inc(x_28); lean_dec(x_1); -x_29 = l___private_Init_Lean_Meta_InferType_2__inferConstType(x_27, x_28, x_2, x_3); +x_29 = l___private_Lean_Meta_InferType_2__inferConstType(x_27, x_28, x_2, x_3); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; @@ -6619,7 +6619,7 @@ x_31 = lean_ctor_get(x_29, 1); lean_inc(x_31); lean_dec(x_29); x_32 = lean_unsigned_to_nat(0u); -x_33 = l___private_Init_Lean_Meta_InferType_14__isArrowProposition___main(x_30, x_32, x_2, x_31); +x_33 = l___private_Lean_Meta_InferType_14__isArrowProposition___main(x_30, x_32, x_2, x_31); return x_33; } else @@ -6653,7 +6653,7 @@ x_38 = lean_ctor_get(x_1, 0); lean_inc(x_38); lean_dec(x_1); x_39 = lean_unsigned_to_nat(1u); -x_40 = l___private_Init_Lean_Meta_InferType_15__isProofQuickApp___main___at_Lean_Meta_isProofQuick___main___spec__1(x_38, x_39, x_2, x_3); +x_40 = l___private_Lean_Meta_InferType_15__isProofQuickApp___main___at_Lean_Meta_isProofQuick___main___spec__1(x_38, x_39, x_2, x_3); return x_40; } case 6: @@ -6873,7 +6873,7 @@ return x_35; } } } -lean_object* l___private_Init_Lean_Meta_InferType_16__isArrowType___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_16__isArrowType___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_1)) { @@ -6960,35 +6960,35 @@ return x_28; } } } -lean_object* l___private_Init_Lean_Meta_InferType_16__isArrowType___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_16__isArrowType___main___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___private_Init_Lean_Meta_InferType_16__isArrowType___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_16__isArrowType___main(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_16__isArrowType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_16__isArrowType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_InferType_16__isArrowType___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_16__isArrowType___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_16__isArrowType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_16__isArrowType___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___private_Init_Lean_Meta_InferType_16__isArrowType(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_16__isArrowType(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_InferType_17__isTypeQuickApp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_17__isTypeQuickApp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_1)) { @@ -6999,7 +6999,7 @@ x_5 = lean_ctor_get(x_1, 0); lean_inc(x_5); lean_dec(x_1); lean_inc(x_3); -x_6 = l___private_Init_Lean_Meta_InferType_8__inferFVarType(x_5, x_3, x_4); +x_6 = l___private_Lean_Meta_InferType_8__inferFVarType(x_5, x_3, x_4); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -7008,7 +7008,7 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Meta_InferType_16__isArrowType___main(x_7, x_2, x_3, x_8); +x_9 = l___private_Lean_Meta_InferType_16__isArrowType___main(x_7, x_2, x_3, x_8); lean_dec(x_3); lean_dec(x_7); return x_9; @@ -7044,7 +7044,7 @@ lean_object* x_14; lean_object* x_15; x_14 = lean_ctor_get(x_1, 0); lean_inc(x_14); lean_dec(x_1); -x_15 = l___private_Init_Lean_Meta_InferType_7__inferMVarType(x_14, x_3, x_4); +x_15 = l___private_Lean_Meta_InferType_7__inferMVarType(x_14, x_3, x_4); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; @@ -7053,7 +7053,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l___private_Init_Lean_Meta_InferType_16__isArrowType___main(x_16, x_2, x_3, x_17); +x_18 = l___private_Lean_Meta_InferType_16__isArrowType___main(x_16, x_2, x_3, x_17); lean_dec(x_3); lean_dec(x_16); return x_18; @@ -7091,7 +7091,7 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_1, 1); lean_inc(x_24); lean_dec(x_1); -x_25 = l___private_Init_Lean_Meta_InferType_2__inferConstType(x_23, x_24, x_3, x_4); +x_25 = l___private_Lean_Meta_InferType_2__inferConstType(x_23, x_24, x_3, x_4); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; @@ -7100,7 +7100,7 @@ lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); lean_inc(x_27); lean_dec(x_25); -x_28 = l___private_Init_Lean_Meta_InferType_16__isArrowType___main(x_26, x_2, x_3, x_27); +x_28 = l___private_Lean_Meta_InferType_16__isArrowType___main(x_26, x_2, x_3, x_27); lean_dec(x_3); lean_dec(x_26); return x_28; @@ -7209,11 +7209,11 @@ return x_52; } } } -lean_object* l___private_Init_Lean_Meta_InferType_17__isTypeQuickApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_InferType_17__isTypeQuickApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_InferType_17__isTypeQuickApp___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_InferType_17__isTypeQuickApp___main(x_1, x_2, x_3, x_4); return x_5; } } @@ -7228,7 +7228,7 @@ x_4 = lean_ctor_get(x_1, 0); lean_inc(x_4); lean_dec(x_1); lean_inc(x_2); -x_5 = l___private_Init_Lean_Meta_InferType_8__inferFVarType(x_4, x_2, x_3); +x_5 = l___private_Lean_Meta_InferType_8__inferFVarType(x_4, x_2, x_3); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -7238,7 +7238,7 @@ x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); x_8 = lean_unsigned_to_nat(0u); -x_9 = l___private_Init_Lean_Meta_InferType_16__isArrowType___main(x_6, x_8, x_2, x_7); +x_9 = l___private_Lean_Meta_InferType_16__isArrowType___main(x_6, x_8, x_2, x_7); lean_dec(x_2); lean_dec(x_6); return x_9; @@ -7273,7 +7273,7 @@ lean_object* x_14; lean_object* x_15; x_14 = lean_ctor_get(x_1, 0); lean_inc(x_14); lean_dec(x_1); -x_15 = l___private_Init_Lean_Meta_InferType_7__inferMVarType(x_14, x_2, x_3); +x_15 = l___private_Lean_Meta_InferType_7__inferMVarType(x_14, x_2, x_3); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; @@ -7283,7 +7283,7 @@ x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); x_18 = lean_unsigned_to_nat(0u); -x_19 = l___private_Init_Lean_Meta_InferType_16__isArrowType___main(x_16, x_18, x_2, x_17); +x_19 = l___private_Lean_Meta_InferType_16__isArrowType___main(x_16, x_18, x_2, x_17); lean_dec(x_2); lean_dec(x_16); return x_19; @@ -7332,7 +7332,7 @@ lean_inc(x_27); x_28 = lean_ctor_get(x_1, 1); lean_inc(x_28); lean_dec(x_1); -x_29 = l___private_Init_Lean_Meta_InferType_2__inferConstType(x_27, x_28, x_2, x_3); +x_29 = l___private_Lean_Meta_InferType_2__inferConstType(x_27, x_28, x_2, x_3); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; @@ -7342,7 +7342,7 @@ x_31 = lean_ctor_get(x_29, 1); lean_inc(x_31); lean_dec(x_29); x_32 = lean_unsigned_to_nat(0u); -x_33 = l___private_Init_Lean_Meta_InferType_16__isArrowType___main(x_30, x_32, x_2, x_31); +x_33 = l___private_Lean_Meta_InferType_16__isArrowType___main(x_30, x_32, x_2, x_31); lean_dec(x_2); lean_dec(x_30); return x_33; @@ -7378,7 +7378,7 @@ x_38 = lean_ctor_get(x_1, 0); lean_inc(x_38); lean_dec(x_1); x_39 = lean_unsigned_to_nat(1u); -x_40 = l___private_Init_Lean_Meta_InferType_17__isTypeQuickApp___main(x_38, x_39, x_2, x_3); +x_40 = l___private_Lean_Meta_InferType_17__isTypeQuickApp___main(x_38, x_39, x_2, x_3); return x_40; } case 6: @@ -7886,23 +7886,23 @@ return x_11; } } } -lean_object* initialize_Init_Lean_Data_LBool(lean_object*); -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Data_LBool(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_InferType(lean_object* w) { +lean_object* initialize_Lean_Meta_InferType(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_LBool(lean_io_mk_world()); +res = initialize_Lean_Data_LBool(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Meta_InferType_4__inferForallType___closed__1 = _init_l___private_Init_Lean_Meta_InferType_4__inferForallType___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_InferType_4__inferForallType___closed__1); -l___private_Init_Lean_Meta_InferType_5__inferLambdaType___closed__1 = _init_l___private_Init_Lean_Meta_InferType_5__inferLambdaType___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_InferType_5__inferLambdaType___closed__1); +l___private_Lean_Meta_InferType_4__inferForallType___closed__1 = _init_l___private_Lean_Meta_InferType_4__inferForallType___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_InferType_4__inferForallType___closed__1); +l___private_Lean_Meta_InferType_5__inferLambdaType___closed__1 = _init_l___private_Lean_Meta_InferType_5__inferLambdaType___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_InferType_5__inferLambdaType___closed__1); l_Lean_Meta_setInferTypeRef___closed__1 = _init_l_Lean_Meta_setInferTypeRef___closed__1(); lean_mark_persistent(l_Lean_Meta_setInferTypeRef___closed__1); res = l_Lean_Meta_setInferTypeRef(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Meta/Instances.c b/stage0/stdlib/Lean/Meta/Instances.c similarity index 95% rename from stage0/stdlib/Init/Lean/Meta/Instances.c rename to stage0/stdlib/Lean/Meta/Instances.c index 25e7a52d1b..f03946da2e 100644 --- a/stage0/stdlib/Init/Lean/Meta/Instances.c +++ b/stage0/stdlib/Lean/Meta/Instances.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Instances -// Imports: Init.Lean.Meta.DiscrTree +// Module: Lean.Meta.Instances +// Imports: Lean.Meta.DiscrTree #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -22,10 +22,8 @@ lean_object* l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_addInstanceEntry___ size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Meta_mkInstanceExtension___lambda__1___closed__1; lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Meta_mkInstanceExtension___spec__5(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Meta_mkInstanceExtension___spec__7___closed__1; lean_object* lean_nat_div(lean_object*, lean_object*); -extern lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; uint8_t l_Array_contains___at_Lean_Meta_addInstanceEntry___spec__11(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_addInstanceEntry___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_addInstanceEntry(lean_object*, lean_object*); @@ -34,8 +32,8 @@ uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_addInstanceEntry___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at_Lean_Meta_addInstanceEntry___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Instances_1__mkInstanceKey(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Meta_addInstanceEntry___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_10__insertVal___at_Lean_Meta_addInstanceEntry___spec__10(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_DiscrTree_insertCore___rarg___closed__4; size_t l_USize_sub(size_t, size_t); extern lean_object* l_Array_empty___closed__1; @@ -49,6 +47,7 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Meta_instanceExtension___elambda__1___boxed(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +extern lean_object* l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_mkInstanceExtension___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_addInstanceEntry___spec__3___boxed(lean_object*, lean_object*, lean_object*); @@ -57,6 +56,7 @@ uint8_t l_Lean_Meta_DiscrTree_Key_beq(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_IO_ofExcept___at_Lean_registerClassAttr___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_instanceExtension___elambda__4___rarg(lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_Environment_getGlobalInstances___boxed(lean_object*); lean_object* l_Lean_Meta_mkInstanceExtension___closed__5; lean_object* lean_add_instance(lean_object*, lean_object*, lean_object*); @@ -77,24 +77,26 @@ lean_object* l_PersistentHashMap_insert___at_Lean_Meta_addInstanceEntry___spec__ lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_Meta_addInstanceEntry___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__3(lean_object*, lean_object*); lean_object* l_Lean_Meta_instanceExtension___closed__4; +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_registerInstanceAttr___closed__1; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Meta_addGlobalInstance___spec__1(lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_mkInstanceExtension___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instanceExtension___elambda__4(lean_object*, lean_object*); +extern lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; lean_object* l_Lean_Meta_mkInstanceExtension(lean_object*); lean_object* l_Lean_Meta_registerInstanceAttr___closed__2; extern lean_object* l_PersistentHashMap_insertAux___main___rarg___closed__3; lean_object* l_PersistentHashMap_find_x3f___at_Lean_Meta_addInstanceEntry___spec__2(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Instances_1__mkInstanceKey(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getGlobalInstances___rarg(lean_object*); extern lean_object* l_PersistentArray_empty___closed__3; lean_object* l_Lean_Meta_instanceExtension___elambda__1(lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_addGlobalInstance___closed__1; extern lean_object* l_IO_Error_Inhabited___closed__1; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); lean_object* l_Array_contains___at_Lean_Meta_addInstanceEntry___spec__11___boxed(lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); @@ -104,13 +106,14 @@ lean_object* l_Lean_Meta_instanceExtension___closed__1; lean_object* l_Lean_Meta_instanceExtension___closed__2; lean_object* l_Lean_Meta_registerInstanceAttr___lambda__1___closed__2; lean_object* lean_add_instance_old(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); size_t l_USize_land(size_t, size_t); lean_object* l_Lean_Meta_addGlobalInstance___closed__2; lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_mkPath(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_Meta_forallMetaTelescopeReducing(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; lean_object* l_Lean_ConstantInfo_lparams(lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Meta_addInstanceEntry___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*); @@ -145,7 +148,6 @@ lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_mkInstanceExtension___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_registerInstanceAttr___closed__3; lean_object* l_Lean_Meta_Exception_toStr(lean_object*); lean_object* l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at_Lean_Meta_addInstanceEntry___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -160,7 +162,6 @@ lean_object* l_Lean_Meta_instanceExtension___elambda__3(lean_object*, lean_objec lean_object* l_Lean_Meta_mkInstanceExtension___closed__4; lean_object* l_Lean_Meta_getGlobalInstances___boxed(lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_mkLevelParam(lean_object*); lean_object* l_Lean_Meta_instanceExtension___elambda__2(lean_object*); @@ -168,7 +169,6 @@ lean_object* lean_usize_to_nat(size_t); extern lean_object* l_Lean_regNamespacesExtension___closed__4; lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_Meta_mkInstanceExtension___spec__1___boxed(lean_object*, lean_object*); lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_DiscrTree_10__insertVal___at_Lean_Meta_addInstanceEntry___spec__10(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_addInstanceEntry___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkInstanceExtension___closed__1; extern lean_object* l_Lean_defaultMaxRecDepth; @@ -846,7 +846,7 @@ lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_10__insertVal___at_Lean_Meta_addInstanceEntry___spec__10(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_DiscrTree_10__insertVal___at_Lean_Meta_addInstanceEntry___spec__10(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -872,7 +872,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_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_5 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_6 = lean_array_get(x_5, x_1, x_4); lean_dec(x_4); return x_6; @@ -886,7 +886,7 @@ x_9 = lean_nat_add(x_7, x_8); x_10 = lean_unsigned_to_nat(2u); x_11 = lean_nat_div(x_9, x_10); lean_dec(x_9); -x_12 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_12 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_13 = lean_array_get(x_12, x_5, x_11); x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); @@ -917,7 +917,7 @@ else { lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = lean_array_fget(x_5, x_11); -x_21 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; +x_21 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; x_22 = lean_array_fset(x_5, x_11, x_21); x_23 = !lean_is_exclusive(x_20); if (x_23 == 0) @@ -928,7 +928,7 @@ x_25 = lean_ctor_get(x_20, 0); lean_dec(x_25); x_26 = lean_unsigned_to_nat(1u); x_27 = lean_nat_add(x_3, x_26); -x_28 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_27, x_24); +x_28 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_27, x_24); lean_dec(x_27); lean_ctor_set(x_20, 1, x_28); lean_ctor_set(x_20, 0, x_4); @@ -944,7 +944,7 @@ lean_inc(x_30); lean_dec(x_20); x_31 = lean_unsigned_to_nat(1u); x_32 = lean_nat_add(x_3, x_31); -x_33 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_32, x_30); +x_33 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_32, x_30); lean_dec(x_32); x_34 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_34, 0, x_4); @@ -979,7 +979,7 @@ lean_dec(x_11); lean_dec(x_8); x_39 = lean_unsigned_to_nat(1u); x_40 = lean_nat_add(x_3, x_39); -x_41 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_40); +x_41 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_40); lean_dec(x_40); x_42 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_42, 0, x_4); @@ -1001,7 +1001,7 @@ x_7 = l_Array_isEmpty___rarg(x_5); if (x_7 == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_8 = l_Array_back___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; +x_8 = l_Array_back___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__2___rarg___closed__2; x_9 = lean_unsigned_to_nat(0u); x_10 = lean_array_get(x_8, x_5, x_9); x_11 = lean_ctor_get(x_6, 0); @@ -1030,7 +1030,7 @@ else { lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; x_17 = lean_array_fget(x_5, x_9); -x_18 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; +x_18 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; x_19 = lean_array_fset(x_5, x_9, x_18); x_20 = !lean_is_exclusive(x_17); if (x_20 == 0) @@ -1041,7 +1041,7 @@ x_22 = lean_ctor_get(x_17, 0); lean_dec(x_22); x_23 = lean_unsigned_to_nat(1u); x_24 = lean_nat_add(x_3, x_23); -x_25 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_24, x_21); +x_25 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_24, x_21); lean_dec(x_24); lean_ctor_set(x_17, 1, x_25); lean_ctor_set(x_17, 0, x_4); @@ -1056,7 +1056,7 @@ lean_inc(x_27); lean_dec(x_17); x_28 = lean_unsigned_to_nat(1u); x_29 = lean_nat_add(x_3, x_28); -x_30 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_29, x_27); +x_30 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_29, x_27); lean_dec(x_29); x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_4); @@ -1098,7 +1098,7 @@ else { lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; x_41 = lean_array_fget(x_5, x_39); -x_42 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; +x_42 = l___private_Init_Data_Array_BinSearch_1__binInsertAux___main___at___private_Lean_Meta_DiscrTree_11__insertAux___main___spec__3___rarg___closed__1; x_43 = lean_array_fset(x_5, x_39, x_42); x_44 = !lean_is_exclusive(x_41); if (x_44 == 0) @@ -1108,7 +1108,7 @@ x_45 = lean_ctor_get(x_41, 1); x_46 = lean_ctor_get(x_41, 0); lean_dec(x_46); x_47 = lean_nat_add(x_3, x_38); -x_48 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_47, x_45); +x_48 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_47, x_45); lean_dec(x_47); lean_ctor_set(x_41, 1, x_48); lean_ctor_set(x_41, 0, x_4); @@ -1123,7 +1123,7 @@ x_50 = lean_ctor_get(x_41, 1); lean_inc(x_50); lean_dec(x_41); x_51 = lean_nat_add(x_3, x_38); -x_52 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_51, x_50); +x_52 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_51, x_50); lean_dec(x_51); x_53 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_53, 0, x_4); @@ -1151,7 +1151,7 @@ lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean lean_dec(x_34); x_59 = lean_unsigned_to_nat(1u); x_60 = lean_nat_add(x_3, x_59); -x_61 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_60); +x_61 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_60); lean_dec(x_60); x_62 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_62, 0, x_4); @@ -1167,7 +1167,7 @@ lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean lean_dec(x_12); x_64 = lean_unsigned_to_nat(1u); x_65 = lean_nat_add(x_3, x_64); -x_66 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_65); +x_66 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_65); lean_dec(x_65); x_67 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_67, 0, x_4); @@ -1181,7 +1181,7 @@ else lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; x_69 = lean_unsigned_to_nat(1u); x_70 = lean_nat_add(x_3, x_69); -x_71 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_70); +x_71 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_1, x_2, x_70); lean_dec(x_70); x_72 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_72, 0, x_4); @@ -1191,7 +1191,7 @@ return x_73; } } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -1207,7 +1207,7 @@ lean_dec(x_8); if (x_9 == 0) { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_DiscrTree_10__insertVal___at_Lean_Meta_addInstanceEntry___spec__10(x_6, x_2); +x_10 = l___private_Lean_Meta_DiscrTree_10__insertVal___at_Lean_Meta_addInstanceEntry___spec__10(x_6, x_2); lean_ctor_set(x_4, 0, x_10); return x_4; } @@ -1240,7 +1240,7 @@ lean_dec(x_17); if (x_18 == 0) { lean_object* x_19; lean_object* x_20; -x_19 = l___private_Init_Lean_Meta_DiscrTree_10__insertVal___at_Lean_Meta_addInstanceEntry___spec__10(x_15, x_2); +x_19 = l___private_Lean_Meta_DiscrTree_10__insertVal___at_Lean_Meta_addInstanceEntry___spec__10(x_15, x_2); x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_16); @@ -1282,7 +1282,7 @@ if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = lean_unsigned_to_nat(1u); -x_10 = l___private_Init_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_9); +x_10 = l___private_Lean_Meta_DiscrTree_9__createNodes___main___rarg(x_2, x_3, x_9); x_11 = l_PersistentHashMap_insert___at_Lean_Meta_addInstanceEntry___spec__5(x_1, x_7, x_10); return x_11; } @@ -1293,7 +1293,7 @@ x_12 = lean_ctor_get(x_8, 0); lean_inc(x_12); lean_dec(x_8); x_13 = lean_unsigned_to_nat(1u); -x_14 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_2, x_3, x_13, x_12); +x_14 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_2, x_3, x_13, x_12); x_15 = l_PersistentHashMap_insert___at_Lean_Meta_addInstanceEntry___spec__5(x_1, x_7, x_14); return x_15; } @@ -1435,11 +1435,11 @@ lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_DiscrTree_11__insertAux___main___at_Lean_Meta_addInstanceEntry___spec__9(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_1); return x_5; @@ -1626,7 +1626,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -1814,7 +1814,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Meta_mkInstan _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -2590,7 +2590,7 @@ lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Instances_1__mkInstanceKey(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Instances_1__mkInstanceKey(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -3264,7 +3264,7 @@ lean_ctor_set(x_16, 4, x_14); lean_ctor_set(x_16, 5, x_15); x_17 = l_Lean_Meta_addGlobalInstance___closed__3; lean_inc(x_10); -x_18 = l___private_Init_Lean_Meta_Instances_1__mkInstanceKey(x_10, x_17, x_16); +x_18 = l___private_Lean_Meta_Instances_1__mkInstanceKey(x_10, x_17, x_16); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; @@ -3645,13 +3645,13 @@ lean_dec(x_1); return x_2; } } -lean_object* initialize_Init_Lean_Meta_DiscrTree(lean_object*); +lean_object* initialize_Lean_Meta_DiscrTree(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Instances(lean_object* w) { +lean_object* initialize_Lean_Meta_Instances(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_DiscrTree(lean_io_mk_world()); +res = initialize_Lean_Meta_DiscrTree(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_registerEnvExtensionUnsafe___at_Lean_Meta_mkInstanceExtension___spec__7___closed__1 = _init_l_Lean_registerEnvExtensionUnsafe___at_Lean_Meta_mkInstanceExtension___spec__7___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/KAbstract.c b/stage0/stdlib/Lean/Meta/KAbstract.c similarity index 91% rename from stage0/stdlib/Init/Lean/Meta/KAbstract.c rename to stage0/stdlib/Lean/Meta/KAbstract.c index 45718fab64..41702925dd 100644 --- a/stage0/stdlib/Init/Lean/Meta/KAbstract.c +++ b/stage0/stdlib/Lean/Meta/KAbstract.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.KAbstract -// Imports: Init.Lean.Data.Occurrences Init.Lean.HeadIndex Init.Lean.Meta.ExprDefEq +// Module: Lean.Meta.KAbstract +// Imports: Lean.Data.Occurrences Lean.HeadIndex Lean.Meta.ExprDefEq #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,27 +15,27 @@ extern "C" { #endif lean_object* lean_expr_update_forall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_expr_update_mdata(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_HeadIndex_1__headNumArgsAux___main(lean_object*, lean_object*); uint8_t l_Lean_HeadIndex_HeadIndex_beq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_KAbstract_1__kabstractAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Expr_toHeadIndex___main(lean_object*); +lean_object* l___private_Lean_Meta_KAbstract_1__kabstractAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Occurrences_contains(lean_object*, lean_object*); lean_object* lean_expr_update_let(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); -lean_object* l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main(lean_object*, lean_object*); lean_object* lean_expr_update_proj(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_KAbstract_1__kabstractAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_lambda(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkBVar(lean_object*); lean_object* l_Lean_Meta_kabstract(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_KAbstract_1__kabstractAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_kabstract___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_KAbstract_1__kabstractAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_KAbstract_1__kabstractAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, 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_216; @@ -57,7 +57,7 @@ else { lean_object* x_220; lean_object* x_221; uint8_t x_222; x_220 = lean_unsigned_to_nat(0u); -x_221 = l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main(x_5, x_220); +x_221 = l___private_Lean_HeadIndex_1__headNumArgsAux___main(x_5, x_220); x_222 = lean_nat_dec_eq(x_221, x_4); lean_dec(x_221); if (x_222 == 0) @@ -97,7 +97,7 @@ lean_inc(x_229); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_230 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_228, x_6, x_7, x_8, x_227); +x_230 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_228, x_6, x_7, x_8, x_227); if (lean_obj_tag(x_230) == 0) { lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; @@ -111,7 +111,7 @@ lean_inc(x_233); x_234 = lean_ctor_get(x_231, 1); lean_inc(x_234); lean_dec(x_231); -x_235 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_229, x_6, x_234, x_8, x_232); +x_235 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_229, x_6, x_234, x_8, x_232); if (lean_obj_tag(x_235) == 0) { uint8_t x_236; @@ -246,7 +246,7 @@ x_264 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_265 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_262, x_6, x_7, x_8, x_261); +x_265 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_262, x_6, x_7, x_8, x_261); if (lean_obj_tag(x_265) == 0) { 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; @@ -263,7 +263,7 @@ lean_dec(x_266); x_270 = lean_unsigned_to_nat(1u); x_271 = lean_nat_add(x_6, x_270); lean_dec(x_6); -x_272 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_263, x_271, x_269, x_8, x_267); +x_272 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_263, x_271, x_269, x_8, x_267); if (lean_obj_tag(x_272) == 0) { uint8_t x_273; @@ -401,7 +401,7 @@ x_304 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_305 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_302, x_6, x_7, x_8, x_301); +x_305 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_302, x_6, x_7, x_8, x_301); if (lean_obj_tag(x_305) == 0) { 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; @@ -418,7 +418,7 @@ lean_dec(x_306); x_310 = lean_unsigned_to_nat(1u); x_311 = lean_nat_add(x_6, x_310); lean_dec(x_6); -x_312 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_303, x_311, x_309, x_8, x_307); +x_312 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_303, x_311, x_309, x_8, x_307); if (lean_obj_tag(x_312) == 0) { uint8_t x_313; @@ -557,7 +557,7 @@ lean_inc(x_344); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_345 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_342, x_6, x_7, x_8, x_341); +x_345 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_342, x_6, x_7, x_8, x_341); if (lean_obj_tag(x_345) == 0) { lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; @@ -574,7 +574,7 @@ lean_dec(x_346); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_350 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_343, x_6, x_349, x_8, x_347); +x_350 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_343, x_6, x_349, x_8, x_347); if (lean_obj_tag(x_350) == 0) { 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; @@ -591,7 +591,7 @@ lean_dec(x_351); x_355 = lean_unsigned_to_nat(1u); x_356 = lean_nat_add(x_6, x_355); lean_dec(x_6); -x_357 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_344, x_356, x_354, x_8, x_352); +x_357 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_344, x_356, x_354, x_8, x_352); if (lean_obj_tag(x_357) == 0) { uint8_t x_358; @@ -751,7 +751,7 @@ lean_inc(x_387); lean_dec(x_224); x_388 = lean_ctor_get(x_5, 1); lean_inc(x_388); -x_389 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_388, x_6, x_7, x_8, x_387); +x_389 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_388, x_6, x_7, x_8, x_387); if (lean_obj_tag(x_389) == 0) { uint8_t x_390; @@ -851,7 +851,7 @@ lean_inc(x_411); lean_dec(x_224); x_412 = lean_ctor_get(x_5, 2); lean_inc(x_412); -x_413 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_412, x_6, x_7, x_8, x_411); +x_413 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_412, x_6, x_7, x_8, x_411); if (lean_obj_tag(x_413) == 0) { uint8_t x_414; @@ -1006,7 +1006,7 @@ lean_inc(x_448); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_449 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_447, x_6, x_445, x_8, x_442); +x_449 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_447, x_6, x_445, x_8, x_442); if (lean_obj_tag(x_449) == 0) { lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; @@ -1020,7 +1020,7 @@ lean_inc(x_452); x_453 = lean_ctor_get(x_450, 1); lean_inc(x_453); lean_dec(x_450); -x_454 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_448, x_6, x_453, x_8, x_451); +x_454 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_448, x_6, x_453, x_8, x_451); if (lean_obj_tag(x_454) == 0) { uint8_t x_455; @@ -1153,7 +1153,7 @@ x_482 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_483 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_480, x_6, x_445, x_8, x_442); +x_483 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_480, x_6, x_445, x_8, x_442); if (lean_obj_tag(x_483) == 0) { lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; @@ -1169,7 +1169,7 @@ lean_inc(x_487); lean_dec(x_484); x_488 = lean_nat_add(x_6, x_444); lean_dec(x_6); -x_489 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_481, x_488, x_487, x_8, x_485); +x_489 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_481, x_488, x_487, x_8, x_485); if (lean_obj_tag(x_489) == 0) { uint8_t x_490; @@ -1305,7 +1305,7 @@ x_520 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_521 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_518, x_6, x_445, x_8, x_442); +x_521 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_518, x_6, x_445, x_8, x_442); if (lean_obj_tag(x_521) == 0) { lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; @@ -1321,7 +1321,7 @@ lean_inc(x_525); lean_dec(x_522); x_526 = lean_nat_add(x_6, x_444); lean_dec(x_6); -x_527 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_519, x_526, x_525, x_8, x_523); +x_527 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_519, x_526, x_525, x_8, x_523); if (lean_obj_tag(x_527) == 0) { uint8_t x_528; @@ -1458,7 +1458,7 @@ lean_inc(x_558); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_559 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_556, x_6, x_445, x_8, x_442); +x_559 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_556, x_6, x_445, x_8, x_442); if (lean_obj_tag(x_559) == 0) { lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; @@ -1475,7 +1475,7 @@ lean_dec(x_560); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_564 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_557, x_6, x_563, x_8, x_561); +x_564 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_557, x_6, x_563, x_8, x_561); if (lean_obj_tag(x_564) == 0) { lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; @@ -1491,7 +1491,7 @@ lean_inc(x_568); lean_dec(x_565); x_569 = lean_nat_add(x_6, x_444); lean_dec(x_6); -x_570 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_558, x_569, x_568, x_8, x_566); +x_570 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_558, x_569, x_568, x_8, x_566); if (lean_obj_tag(x_570) == 0) { uint8_t x_571; @@ -1649,7 +1649,7 @@ lean_object* x_600; lean_object* x_601; lean_free_object(x_224); x_600 = lean_ctor_get(x_5, 1); lean_inc(x_600); -x_601 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_600, x_6, x_445, x_8, x_442); +x_601 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_600, x_6, x_445, x_8, x_442); if (lean_obj_tag(x_601) == 0) { uint8_t x_602; @@ -1747,7 +1747,7 @@ lean_object* x_623; lean_object* x_624; lean_free_object(x_224); x_623 = lean_ctor_get(x_5, 2); lean_inc(x_623); -x_624 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_623, x_6, x_445, x_8, x_442); +x_624 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_623, x_6, x_445, x_8, x_442); if (lean_obj_tag(x_624) == 0) { uint8_t x_625; @@ -1890,7 +1890,7 @@ lean_inc(x_654); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_655 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_653, x_6, x_651, x_8, x_649); +x_655 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_653, x_6, x_651, x_8, x_649); if (lean_obj_tag(x_655) == 0) { lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; @@ -1904,7 +1904,7 @@ lean_inc(x_658); x_659 = lean_ctor_get(x_656, 1); lean_inc(x_659); lean_dec(x_656); -x_660 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_654, x_6, x_659, x_8, x_657); +x_660 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_654, x_6, x_659, x_8, x_657); if (lean_obj_tag(x_660) == 0) { lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; @@ -2017,7 +2017,7 @@ x_680 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_681 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_678, x_6, x_651, x_8, x_649); +x_681 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_678, x_6, x_651, x_8, x_649); if (lean_obj_tag(x_681) == 0) { lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; @@ -2033,7 +2033,7 @@ lean_inc(x_685); lean_dec(x_682); x_686 = lean_nat_add(x_6, x_650); lean_dec(x_6); -x_687 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_679, x_686, x_685, x_8, x_683); +x_687 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_679, x_686, x_685, x_8, x_683); if (lean_obj_tag(x_687) == 0) { lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; uint8_t x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; @@ -2147,7 +2147,7 @@ x_708 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_709 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_706, x_6, x_651, x_8, x_649); +x_709 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_706, x_6, x_651, x_8, x_649); if (lean_obj_tag(x_709) == 0) { lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; @@ -2163,7 +2163,7 @@ lean_inc(x_713); lean_dec(x_710); x_714 = lean_nat_add(x_6, x_650); lean_dec(x_6); -x_715 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_707, x_714, x_713, x_8, x_711); +x_715 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_707, x_714, x_713, x_8, x_711); if (lean_obj_tag(x_715) == 0) { lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; uint8_t x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; @@ -2278,7 +2278,7 @@ lean_inc(x_736); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_737 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_734, x_6, x_651, x_8, x_649); +x_737 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_734, x_6, x_651, x_8, x_649); if (lean_obj_tag(x_737) == 0) { lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; @@ -2295,7 +2295,7 @@ lean_dec(x_738); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_742 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_735, x_6, x_741, x_8, x_739); +x_742 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_735, x_6, x_741, x_8, x_739); if (lean_obj_tag(x_742) == 0) { lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; @@ -2311,7 +2311,7 @@ lean_inc(x_746); lean_dec(x_743); x_747 = lean_nat_add(x_6, x_650); lean_dec(x_6); -x_748 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_736, x_747, x_746, x_8, x_744); +x_748 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_736, x_747, x_746, x_8, x_744); if (lean_obj_tag(x_748) == 0) { lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; @@ -2451,7 +2451,7 @@ case 10: lean_object* x_770; lean_object* x_771; x_770 = lean_ctor_get(x_5, 1); lean_inc(x_770); -x_771 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_770, x_6, x_651, x_8, x_649); +x_771 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_770, x_6, x_651, x_8, x_649); if (lean_obj_tag(x_771) == 0) { lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; @@ -2527,7 +2527,7 @@ case 11: lean_object* x_785; lean_object* x_786; x_785 = lean_ctor_get(x_5, 2); lean_inc(x_785); -x_786 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_785, x_6, x_651, x_8, x_649); +x_786 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_785, x_6, x_651, x_8, x_649); if (lean_obj_tag(x_786) == 0) { lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; @@ -2675,7 +2675,7 @@ lean_inc(x_810); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_811 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_809, x_6, x_7, x_8, x_9); +x_811 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_809, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_811) == 0) { lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; @@ -2689,7 +2689,7 @@ lean_inc(x_814); x_815 = lean_ctor_get(x_812, 1); lean_inc(x_815); lean_dec(x_812); -x_816 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_810, x_6, x_815, x_8, x_813); +x_816 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_810, x_6, x_815, x_8, x_813); if (lean_obj_tag(x_816) == 0) { uint8_t x_817; @@ -2821,7 +2821,7 @@ x_844 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_845 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_842, x_6, x_7, x_8, x_9); +x_845 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_842, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_845) == 0) { lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; @@ -2838,7 +2838,7 @@ lean_dec(x_846); x_850 = lean_unsigned_to_nat(1u); x_851 = lean_nat_add(x_6, x_850); lean_dec(x_6); -x_852 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_843, x_851, x_849, x_8, x_847); +x_852 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_843, x_851, x_849, x_8, x_847); if (lean_obj_tag(x_852) == 0) { uint8_t x_853; @@ -2973,7 +2973,7 @@ x_883 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_884 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_881, x_6, x_7, x_8, x_9); +x_884 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_881, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_884) == 0) { lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; @@ -2990,7 +2990,7 @@ lean_dec(x_885); x_889 = lean_unsigned_to_nat(1u); x_890 = lean_nat_add(x_6, x_889); lean_dec(x_6); -x_891 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_882, x_890, x_888, x_8, x_886); +x_891 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_882, x_890, x_888, x_8, x_886); if (lean_obj_tag(x_891) == 0) { uint8_t x_892; @@ -3126,7 +3126,7 @@ lean_inc(x_922); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_923 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_920, x_6, x_7, x_8, x_9); +x_923 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_920, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_923) == 0) { lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; @@ -3143,7 +3143,7 @@ lean_dec(x_924); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_928 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_921, x_6, x_927, x_8, x_925); +x_928 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_921, x_6, x_927, x_8, x_925); if (lean_obj_tag(x_928) == 0) { lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; @@ -3160,7 +3160,7 @@ lean_dec(x_929); x_933 = lean_unsigned_to_nat(1u); x_934 = lean_nat_add(x_6, x_933); lean_dec(x_6); -x_935 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_922, x_934, x_932, x_8, x_930); +x_935 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_922, x_934, x_932, x_8, x_930); if (lean_obj_tag(x_935) == 0) { uint8_t x_936; @@ -3317,7 +3317,7 @@ case 10: lean_object* x_965; lean_object* x_966; x_965 = lean_ctor_get(x_5, 1); lean_inc(x_965); -x_966 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_965, x_6, x_7, x_8, x_9); +x_966 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_965, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_966) == 0) { uint8_t x_967; @@ -3414,7 +3414,7 @@ case 11: lean_object* x_988; lean_object* x_989; x_988 = lean_ctor_get(x_5, 2); lean_inc(x_988); -x_989 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_988, x_6, x_7, x_8, x_9); +x_989 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_988, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_989) == 0) { uint8_t x_990; @@ -3536,7 +3536,7 @@ lean_inc(x_12); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_13 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_11, x_6, x_7, x_8, x_9); +x_13 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_11, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; @@ -3550,7 +3550,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_14, 1); lean_inc(x_17); lean_dec(x_14); -x_18 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_12, x_6, x_17, x_8, x_15); +x_18 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_12, x_6, x_17, x_8, x_15); if (lean_obj_tag(x_18) == 0) { uint8_t x_19; @@ -3682,7 +3682,7 @@ x_46 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_47 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_44, x_6, x_7, x_8, x_9); +x_47 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_44, x_6, x_7, x_8, x_9); 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; lean_object* x_53; lean_object* x_54; @@ -3699,7 +3699,7 @@ lean_dec(x_48); x_52 = lean_unsigned_to_nat(1u); x_53 = lean_nat_add(x_6, x_52); lean_dec(x_6); -x_54 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_45, x_53, x_51, x_8, x_49); +x_54 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_45, x_53, x_51, x_8, x_49); if (lean_obj_tag(x_54) == 0) { uint8_t x_55; @@ -3834,7 +3834,7 @@ x_85 = lean_ctor_get_uint64(x_5, sizeof(void*)*3); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_86 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_83, x_6, x_7, x_8, x_9); +x_86 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_83, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_86) == 0) { lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; @@ -3851,7 +3851,7 @@ lean_dec(x_87); x_91 = lean_unsigned_to_nat(1u); x_92 = lean_nat_add(x_6, x_91); lean_dec(x_6); -x_93 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_84, x_92, x_90, x_8, x_88); +x_93 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_84, x_92, x_90, x_8, x_88); if (lean_obj_tag(x_93) == 0) { uint8_t x_94; @@ -3987,7 +3987,7 @@ lean_inc(x_124); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_125 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_122, x_6, x_7, x_8, x_9); +x_125 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_122, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_125) == 0) { lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; @@ -4004,7 +4004,7 @@ lean_dec(x_126); lean_inc(x_8); lean_inc(x_6); lean_inc(x_2); -x_130 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_123, x_6, x_129, x_8, x_127); +x_130 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_123, x_6, x_129, x_8, x_127); if (lean_obj_tag(x_130) == 0) { 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; @@ -4021,7 +4021,7 @@ lean_dec(x_131); x_135 = lean_unsigned_to_nat(1u); x_136 = lean_nat_add(x_6, x_135); lean_dec(x_6); -x_137 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_124, x_136, x_134, x_8, x_132); +x_137 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_124, x_136, x_134, x_8, x_132); if (lean_obj_tag(x_137) == 0) { uint8_t x_138; @@ -4178,7 +4178,7 @@ case 10: lean_object* x_167; lean_object* x_168; x_167 = lean_ctor_get(x_5, 1); lean_inc(x_167); -x_168 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_167, x_6, x_7, x_8, x_9); +x_168 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_167, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_168) == 0) { uint8_t x_169; @@ -4275,7 +4275,7 @@ case 11: lean_object* x_190; lean_object* x_191; x_190 = lean_ctor_get(x_5, 2); lean_inc(x_190); -x_191 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_190, x_6, x_7, x_8, x_9); +x_191 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_190, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_191) == 0) { uint8_t x_192; @@ -4385,30 +4385,30 @@ return x_214; } } } -lean_object* l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_KAbstract_1__kabstractAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_10; } } -lean_object* l___private_Init_Lean_Meta_KAbstract_1__kabstractAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_KAbstract_1__kabstractAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -lean_object* l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Meta_KAbstract_1__kabstractAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Meta_KAbstract_1__kabstractAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); @@ -4421,9 +4421,9 @@ _start: lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_6 = l_Lean_Expr_toHeadIndex___main(x_2); x_7 = lean_unsigned_to_nat(0u); -x_8 = l___private_Init_Lean_HeadIndex_1__headNumArgsAux___main(x_2, x_7); +x_8 = l___private_Lean_HeadIndex_1__headNumArgsAux___main(x_2, x_7); x_9 = lean_unsigned_to_nat(1u); -x_10 = l___private_Init_Lean_Meta_KAbstract_1__kabstractAux___main(x_3, x_2, x_6, x_8, x_1, x_7, x_9, x_4, x_5); +x_10 = l___private_Lean_Meta_KAbstract_1__kabstractAux___main(x_3, x_2, x_6, x_8, x_1, x_7, x_9, x_4, x_5); lean_dec(x_8); lean_dec(x_6); if (lean_obj_tag(x_10) == 0) @@ -4490,21 +4490,21 @@ lean_dec(x_3); return x_6; } } -lean_object* initialize_Init_Lean_Data_Occurrences(lean_object*); -lean_object* initialize_Init_Lean_HeadIndex(lean_object*); -lean_object* initialize_Init_Lean_Meta_ExprDefEq(lean_object*); +lean_object* initialize_Lean_Data_Occurrences(lean_object*); +lean_object* initialize_Lean_HeadIndex(lean_object*); +lean_object* initialize_Lean_Meta_ExprDefEq(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_KAbstract(lean_object* w) { +lean_object* initialize_Lean_Meta_KAbstract(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Occurrences(lean_io_mk_world()); +res = initialize_Lean_Data_Occurrences(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_HeadIndex(lean_io_mk_world()); +res = initialize_Lean_HeadIndex(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_ExprDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_ExprDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Meta/LevelDefEq.c b/stage0/stdlib/Lean/Meta/LevelDefEq.c similarity index 87% rename from stage0/stdlib/Init/Lean/Meta/LevelDefEq.c rename to stage0/stdlib/Lean/Meta/LevelDefEq.c index 537b650085..362f271953 100644 --- a/stage0/stdlib/Init/Lean/Meta/LevelDefEq.c +++ b/stage0/stdlib/Lean/Meta/LevelDefEq.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.LevelDefEq -// Imports: Init.Lean.Meta.Basic +// Module: Lean.Meta.LevelDefEq +// Imports: Lean.Meta.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,147 +13,147 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8; +lean_object* l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__51; lean_object* l_Lean_Meta_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlM___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___boxed(lean_object*); lean_object* l_Lean_Level_normalize___main(lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___boxed(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4; +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9; lean_object* l_Lean_Meta_isExprDefEq___closed__2; uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1; +lean_object* l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2; +lean_object* l___private_Lean_Meta_LevelDefEq_3__strictOccursMax___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqAux(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux(lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEq___closed__5; -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(lean_object*); -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateLevelMVars(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3; lean_object* l_Lean_Meta_isLevelDefEq___closed__3; +lean_object* l___private_Lean_Meta_LevelDefEq_12__processPostponed(lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq___closed__1; lean_object* lean_array_get_size(lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main(lean_object*); lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___boxed(lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux___main___closed__5; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(lean_object*); lean_object* l_Lean_Level_mvarId_x21(lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(lean_object*); lean_object* l_Lean_Meta_decLevel_x3f___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux___main___closed__3; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_9__getResetPostponed(lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux___main___closed__1; +lean_object* l___private_Lean_Meta_LevelDefEq_9__getResetPostponed___boxed(lean_object*); +lean_object* l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_12__processPostponed___boxed(lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_hasAssignableLevelMVar___main(lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux___main___closed__2; -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux(lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_isListLevelDefEqAux(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_13__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_13__regTraceClasses(lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux___main___closed__4; -lean_object* l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isLevelDefEqAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEq___closed__7; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_metavar_ctx_get_level_assignment(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux___main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed(lean_object*); lean_object* l_Lean_mkLevelMax(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_5__solveSelfMax(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(lean_object*); lean_object* l_Nat_repr(lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg___boxed(lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(lean_object*, lean_object*); extern lean_object* l_PersistentArray_empty___closed__3; +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___boxed(lean_object*); lean_object* l_Lean_Meta_addContext(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3; -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6(lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_10__processPostponedStep(lean_object*, lean_object*); lean_object* l_Lean_Meta_isListLevelDefEqAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignLevelMVar(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5; -lean_object* l___private_Init_Lean_Meta_LevelDefEq_3__strictOccursMax___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEqAux___main___closed__6; lean_object* l_Lean_Meta_commitWhen___at_Lean_Meta_isLevelDefEq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7; +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_5__solveSelfMax___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEq___closed__6; lean_object* l_Lean_Meta_commitWhen(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isListLevelDefEqAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isDefEq(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlM___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3; +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_mkLevelSucc(lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5; uint8_t l_Lean_Level_occurs___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___boxed(lean_object*); lean_object* l_Lean_Meta_isLevelDefEq(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3; +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7; +lean_object* l_PersistentArray_foldlM___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Level_isMVar(lean_object*); -uint8_t l___private_Init_Lean_Meta_LevelDefEq_3__strictOccursMax(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed(lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; +lean_object* l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEq___closed__4; -lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; lean_object* l_Lean_Meta_isListLevelDefEqAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEq___closed__9; -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___boxed(lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEq___closed__8; -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlM___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4; +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6(lean_object*); lean_object* l_Lean_Meta_commitWhen___at_Lean_Meta_isExprDefEq___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEq___closed__1; -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6; +lean_object* l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +lean_object* l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_8__getNumPostponed___boxed(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isLevelDefEqAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main(lean_object*); lean_object* l_Lean_Meta_commitWhen___at_Lean_Meta_isLevelDefEq___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshLevelMVar___rarg(lean_object*); +uint8_t l___private_Lean_Meta_LevelDefEq_3__strictOccursMax(lean_object*, lean_object*); lean_object* l_Lean_Meta_isLevelDefEq___closed__2; -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_1__decAux_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_restore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; lean_object* l_Lean_Meta_commitWhen___at_Lean_Meta_isLevelDefEq___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8; -lean_object* l___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main(lean_object*, lean_object*, lean_object*); uint8_t lean_level_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_isReadOnlyLevelMVar(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9; -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_commitWhen___at_Lean_Meta_isExprDefEq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2; -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1; -lean_object* l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_8__getNumPostponed(lean_object*); +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6; lean_object* l_Lean_Meta_decLevel_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_toArray___rarg(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Meta_commitWhen___at_Lean_Meta_isLevelDefEq___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_1)) { @@ -178,7 +178,7 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_1, 1); lean_inc(x_8); lean_dec(x_1); -x_9 = l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_7, x_2, x_3); +x_9 = l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_7, x_2, x_3); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; @@ -217,7 +217,7 @@ lean_dec(x_9); x_16 = lean_ctor_get(x_10, 0); lean_inc(x_16); lean_dec(x_10); -x_17 = l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_8, x_2, x_15); +x_17 = l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_8, x_2, x_15); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; @@ -364,7 +364,7 @@ lean_inc(x_45); x_46 = lean_ctor_get(x_1, 1); lean_inc(x_46); lean_dec(x_1); -x_47 = l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_45, x_2, x_3); +x_47 = l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_45, x_2, x_3); if (lean_obj_tag(x_47) == 0) { lean_object* x_48; @@ -403,7 +403,7 @@ lean_dec(x_47); x_54 = lean_ctor_get(x_48, 0); lean_inc(x_54); lean_dec(x_48); -x_55 = l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_46, x_2, x_53); +x_55 = l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_46, x_2, x_53); if (lean_obj_tag(x_55) == 0) { lean_object* x_56; @@ -676,28 +676,28 @@ return x_111; } } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_LevelDefEq_1__decAux_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_LevelDefEq_1__decAux_x3f(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -708,7 +708,7 @@ _start: lean_object* x_4; lean_object* x_5; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l___private_Init_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_1, x_2, x_3); +x_5 = l___private_Lean_Meta_LevelDefEq_1__decAux_x3f___main(x_1, x_2, x_3); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; @@ -862,7 +862,7 @@ lean_dec(x_2); return x_4; } } -uint8_t l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -871,7 +871,7 @@ if (lean_obj_tag(x_2) == 2) lean_object* x_8; lean_object* x_9; uint8_t x_10; x_8 = lean_ctor_get(x_2, 0); x_9 = lean_ctor_get(x_2, 1); -x_10 = l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_8); +x_10 = l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_8); if (x_10 == 0) { x_2 = x_9; @@ -911,37 +911,37 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux(x_1, x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Meta_LevelDefEq_3__strictOccursMax(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Meta_LevelDefEq_3__strictOccursMax(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 2) @@ -949,11 +949,11 @@ if (lean_obj_tag(x_2) == 2) lean_object* x_3; lean_object* x_4; uint8_t x_5; x_3 = lean_ctor_get(x_2, 0); x_4 = lean_ctor_get(x_2, 1); -x_5 = l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_3); +x_5 = l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_3); if (x_5 == 0) { uint8_t x_6; -x_6 = l___private_Init_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_4); +x_6 = l___private_Lean_Meta_LevelDefEq_2__strictOccursMaxAux___main(x_1, x_4); return x_6; } else @@ -971,18 +971,18 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_3__strictOccursMax___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_3__strictOccursMax___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_3__strictOccursMax(x_1, x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_3__strictOccursMax(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_2)) { @@ -994,7 +994,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_2, 1); lean_inc(x_5); lean_dec(x_2); -x_6 = l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(x_1, x_4, x_3); +x_6 = l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(x_1, x_4, x_3); x_2 = x_5; x_3 = x_6; goto _start; @@ -1027,33 +1027,33 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_LevelDefEq_5__solveSelfMax(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; @@ -1063,21 +1063,21 @@ lean_inc(x_6); x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); -x_8 = l___private_Init_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(x_1, x_2, x_6); +x_8 = l___private_Lean_Meta_LevelDefEq_4__mkMaxArgsDiff___main(x_1, x_2, x_6); x_9 = l_Lean_Meta_assignLevelMVar(x_1, x_8, x_3, x_7); return x_9; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_LevelDefEq_5__solveSelfMax___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___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_LevelDefEq_5__solveSelfMax(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -1132,16 +1132,16 @@ return x_21; } } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq___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___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_1) == 5) @@ -1179,7 +1179,7 @@ return x_6; else { uint8_t x_14; -x_14 = l___private_Init_Lean_Meta_LevelDefEq_3__strictOccursMax(x_1, x_2); +x_14 = l___private_Lean_Meta_LevelDefEq_3__strictOccursMax(x_1, x_2); lean_dec(x_1); if (x_14 == 0) { @@ -1220,7 +1220,7 @@ return x_23; else { uint8_t x_24; -x_24 = l___private_Init_Lean_Meta_LevelDefEq_3__strictOccursMax(x_1, x_2); +x_24 = l___private_Lean_Meta_LevelDefEq_3__strictOccursMax(x_1, x_2); lean_dec(x_1); if (x_24 == 0) { @@ -1312,11 +1312,11 @@ return x_45; } } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind___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___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); return x_5; @@ -1494,7 +1494,7 @@ return x_52; } } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -1520,7 +1520,7 @@ lean_object* _init_l_Lean_Meta_isLevelDefEqAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_1 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; x_2 = l_Lean_Meta_isLevelDefEqAux___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1617,7 +1617,7 @@ else { lean_object* x_639; lean_object* x_640; lean_object* x_641; uint8_t x_642; x_639 = l_Lean_Meta_isLevelDefEqAux___main___closed__4; -x_640 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_639, x_3, x_4); +x_640 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_639, x_3, x_4); x_641 = lean_ctor_get(x_640, 0); lean_inc(x_641); x_642 = lean_unbox(x_641); @@ -1802,7 +1802,7 @@ else { lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; uint8_t x_395; x_391 = l_Lean_Meta_isLevelDefEqAux___main___closed__6; -x_392 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_391, x_3, x_15); +x_392 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_391, x_3, x_15); x_393 = lean_ctor_get(x_392, 0); lean_inc(x_393); x_394 = lean_ctor_get(x_392, 1); @@ -1953,7 +1953,7 @@ block_347: lean_object* x_24; lean_dec(x_23); lean_inc(x_1); -x_24 = l___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_1, x_2, x_3, x_15); +x_24 = l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_1, x_2, x_3, x_15); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; uint8_t x_26; @@ -2004,7 +2004,7 @@ lean_inc(x_38); lean_dec(x_24); x_39 = l_Lean_Level_mvarId_x21(x_1); lean_dec(x_1); -x_40 = l___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax(x_39, x_2, x_3, x_38); +x_40 = l___private_Lean_Meta_LevelDefEq_5__solveSelfMax(x_39, x_2, x_3, x_38); x_41 = !lean_is_exclusive(x_40); if (x_41 == 0) { @@ -2041,7 +2041,7 @@ x_50 = lean_ctor_get(x_24, 1); x_51 = lean_ctor_get(x_24, 0); lean_dec(x_51); lean_inc(x_2); -x_52 = l___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_2, x_1, x_3, x_50); +x_52 = l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_2, x_1, x_3, x_50); if (lean_obj_tag(x_52) == 0) { lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; uint8_t x_110; @@ -2100,7 +2100,7 @@ lean_dec(x_55); lean_free_object(x_24); x_121 = l_Lean_Level_mvarId_x21(x_2); lean_dec(x_2); -x_122 = l___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax(x_121, x_1, x_3, x_54); +x_122 = l___private_Lean_Meta_LevelDefEq_5__solveSelfMax(x_121, x_1, x_3, x_54); x_123 = !lean_is_exclusive(x_122); if (x_123 == 0) { @@ -2261,7 +2261,7 @@ lean_dec(x_152); x_155 = lean_ctor_get(x_153, 1); lean_inc(x_155); lean_dec(x_153); -x_156 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_155); +x_156 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_155); x_157 = !lean_is_exclusive(x_156); if (x_157 == 0) { @@ -2310,7 +2310,7 @@ lean_dec(x_168); x_170 = lean_ctor_get(x_167, 1); lean_inc(x_170); lean_dec(x_167); -x_171 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_170); +x_171 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_170); x_172 = !lean_is_exclusive(x_171); if (x_172 == 0) { @@ -2417,7 +2417,7 @@ return x_191; else { lean_object* x_192; uint8_t x_193; -x_192 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_54); +x_192 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_54); x_193 = !lean_is_exclusive(x_192); if (x_193 == 0) { @@ -2496,7 +2496,7 @@ lean_dec(x_58); x_61 = lean_ctor_get(x_59, 1); lean_inc(x_61); lean_dec(x_59); -x_62 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_61); +x_62 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_61); x_63 = !lean_is_exclusive(x_62); if (x_63 == 0) { @@ -2545,7 +2545,7 @@ lean_dec(x_74); x_76 = lean_ctor_get(x_73, 1); lean_inc(x_76); lean_dec(x_73); -x_77 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_76); +x_77 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_76); x_78 = !lean_is_exclusive(x_77); if (x_78 == 0) { @@ -2652,7 +2652,7 @@ return x_97; else { lean_object* x_98; uint8_t x_99; -x_98 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_57); +x_98 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_57); x_99 = !lean_is_exclusive(x_98); if (x_99 == 0) { @@ -2729,7 +2729,7 @@ x_209 = lean_ctor_get(x_24, 1); lean_inc(x_209); lean_dec(x_24); lean_inc(x_2); -x_210 = l___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_2, x_1, x_3, x_209); +x_210 = l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_2, x_1, x_3, x_209); if (lean_obj_tag(x_210) == 0) { lean_object* x_211; lean_object* x_212; lean_object* x_213; uint8_t x_214; lean_object* x_215; uint8_t x_258; @@ -2782,7 +2782,7 @@ lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_dec(x_213); x_266 = l_Lean_Level_mvarId_x21(x_2); lean_dec(x_2); -x_267 = l___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax(x_266, x_1, x_3, x_212); +x_267 = l___private_Lean_Meta_LevelDefEq_5__solveSelfMax(x_266, x_1, x_3, x_212); x_268 = lean_ctor_get(x_267, 1); lean_inc(x_268); if (lean_is_exclusive(x_267)) { @@ -2942,7 +2942,7 @@ lean_dec(x_294); x_297 = lean_ctor_get(x_295, 1); lean_inc(x_297); lean_dec(x_295); -x_298 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_297); +x_298 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_297); x_299 = lean_ctor_get(x_298, 1); lean_inc(x_299); if (lean_is_exclusive(x_298)) { @@ -2987,7 +2987,7 @@ lean_dec(x_307); x_309 = lean_ctor_get(x_306, 1); lean_inc(x_309); lean_dec(x_306); -x_310 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_309); +x_310 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_309); x_311 = lean_ctor_get(x_310, 1); lean_inc(x_311); if (lean_is_exclusive(x_310)) { @@ -3093,7 +3093,7 @@ return x_326; else { lean_object* x_327; lean_object* x_328; lean_object* x_329; uint8_t x_330; lean_object* x_331; lean_object* x_332; -x_327 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_212); +x_327 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_212); x_328 = lean_ctor_get(x_327, 1); lean_inc(x_328); if (lean_is_exclusive(x_327)) { @@ -3170,7 +3170,7 @@ lean_dec(x_216); x_219 = lean_ctor_get(x_217, 1); lean_inc(x_219); lean_dec(x_217); -x_220 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_219); +x_220 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_219); x_221 = lean_ctor_get(x_220, 1); lean_inc(x_221); if (lean_is_exclusive(x_220)) { @@ -3215,7 +3215,7 @@ lean_dec(x_229); x_231 = lean_ctor_get(x_228, 1); lean_inc(x_231); lean_dec(x_228); -x_232 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_231); +x_232 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_231); x_233 = lean_ctor_get(x_232, 1); lean_inc(x_233); if (lean_is_exclusive(x_232)) { @@ -3321,7 +3321,7 @@ return x_248; else { lean_object* x_249; lean_object* x_250; lean_object* x_251; uint8_t x_252; lean_object* x_253; lean_object* x_254; -x_249 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_215); +x_249 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_215); x_250 = lean_ctor_get(x_249, 1); lean_inc(x_250); if (lean_is_exclusive(x_249)) { @@ -3558,7 +3558,7 @@ else { lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; uint8_t x_620; x_616 = l_Lean_Meta_isLevelDefEqAux___main___closed__6; -x_617 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_616, x_3, x_414); +x_617 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_616, x_3, x_414); x_618 = lean_ctor_get(x_617, 0); lean_inc(x_618); x_619 = lean_ctor_get(x_617, 1); @@ -3686,7 +3686,7 @@ block_581: lean_object* x_423; lean_dec(x_422); lean_inc(x_1); -x_423 = l___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_1, x_2, x_3, x_414); +x_423 = l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_1, x_2, x_3, x_414); if (lean_obj_tag(x_423) == 0) { lean_object* x_424; uint8_t x_425; @@ -3733,7 +3733,7 @@ lean_inc(x_434); lean_dec(x_423); x_435 = l_Lean_Level_mvarId_x21(x_1); lean_dec(x_1); -x_436 = l___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax(x_435, x_2, x_3, x_434); +x_436 = l___private_Lean_Meta_LevelDefEq_5__solveSelfMax(x_435, x_2, x_3, x_434); x_437 = lean_ctor_get(x_436, 1); lean_inc(x_437); if (lean_is_exclusive(x_436)) { @@ -3769,7 +3769,7 @@ if (lean_is_exclusive(x_423)) { x_443 = lean_box(0); } lean_inc(x_2); -x_444 = l___private_Init_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_2, x_1, x_3, x_442); +x_444 = l___private_Lean_Meta_LevelDefEq_7__getLevelConstraintKind(x_2, x_1, x_3, x_442); if (lean_obj_tag(x_444) == 0) { lean_object* x_445; lean_object* x_446; lean_object* x_447; uint8_t x_448; lean_object* x_449; uint8_t x_492; @@ -3824,7 +3824,7 @@ lean_dec(x_447); lean_dec(x_443); x_500 = l_Lean_Level_mvarId_x21(x_2); lean_dec(x_2); -x_501 = l___private_Init_Lean_Meta_LevelDefEq_5__solveSelfMax(x_500, x_1, x_3, x_446); +x_501 = l___private_Lean_Meta_LevelDefEq_5__solveSelfMax(x_500, x_1, x_3, x_446); x_502 = lean_ctor_get(x_501, 1); lean_inc(x_502); if (lean_is_exclusive(x_501)) { @@ -3985,7 +3985,7 @@ lean_dec(x_528); x_531 = lean_ctor_get(x_529, 1); lean_inc(x_531); lean_dec(x_529); -x_532 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_531); +x_532 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_531); x_533 = lean_ctor_get(x_532, 1); lean_inc(x_533); if (lean_is_exclusive(x_532)) { @@ -4030,7 +4030,7 @@ lean_dec(x_541); x_543 = lean_ctor_get(x_540, 1); lean_inc(x_543); lean_dec(x_540); -x_544 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_543); +x_544 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_543); x_545 = lean_ctor_get(x_544, 1); lean_inc(x_545); if (lean_is_exclusive(x_544)) { @@ -4136,7 +4136,7 @@ return x_560; else { lean_object* x_561; lean_object* x_562; lean_object* x_563; uint8_t x_564; lean_object* x_565; lean_object* x_566; -x_561 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_446); +x_561 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_446); x_562 = lean_ctor_get(x_561, 1); lean_inc(x_562); if (lean_is_exclusive(x_561)) { @@ -4221,7 +4221,7 @@ lean_dec(x_450); x_453 = lean_ctor_get(x_451, 1); lean_inc(x_453); lean_dec(x_451); -x_454 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_453); +x_454 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_453); x_455 = lean_ctor_get(x_454, 1); lean_inc(x_455); if (lean_is_exclusive(x_454)) { @@ -4266,7 +4266,7 @@ lean_dec(x_463); x_465 = lean_ctor_get(x_462, 1); lean_inc(x_465); lean_dec(x_462); -x_466 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_465); +x_466 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_465); x_467 = lean_ctor_get(x_466, 1); lean_inc(x_467); if (lean_is_exclusive(x_466)) { @@ -4372,7 +4372,7 @@ return x_482; else { lean_object* x_483; lean_object* x_484; lean_object* x_485; uint8_t x_486; lean_object* x_487; lean_object* x_488; -x_483 = l___private_Init_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_449); +x_483 = l___private_Lean_Meta_LevelDefEq_6__postponeIsLevelDefEq(x_1, x_2, x_3, x_449); x_484 = lean_ctor_get(x_483, 1); lean_inc(x_484); if (lean_is_exclusive(x_483)) { @@ -4498,11 +4498,11 @@ lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_1, x_2, x_3); +x_4 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -4685,7 +4685,7 @@ lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -4700,24 +4700,24 @@ lean_ctor_set(x_4, 1, x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_8__getNumPostponed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_8__getNumPostponed___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed(x_1); +x_2 = l___private_Lean_Meta_LevelDefEq_8__getNumPostponed(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(lean_object* x_1) { _start: { uint8_t x_2; @@ -4764,24 +4764,24 @@ return x_14; } } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_9__getResetPostponed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_9__getResetPostponed___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed(x_1); +x_2 = l___private_Lean_Meta_LevelDefEq_9__getResetPostponed(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -4805,7 +4805,7 @@ x_11 = lean_array_fget(x_2, x_3); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_add(x_3, x_12); lean_dec(x_3); -x_14 = l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(x_11, x_4, x_5, x_6); +x_14 = l_PersistentArray_foldlMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(x_11, x_4, x_5, x_6); lean_dec(x_11); if (lean_obj_tag(x_14) == 0) { @@ -4848,7 +4848,7 @@ return x_22; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -4932,7 +4932,7 @@ return x_26; } } } -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_1) == 0) @@ -4940,7 +4940,7 @@ if (lean_obj_tag(x_1) == 0) lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_1, 0); x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3(x_5, x_5, x_6, x_2, x_3, x_4); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3(x_5, x_5, x_6, x_2, x_3, x_4); return x_7; } else @@ -4948,12 +4948,12 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = lean_ctor_get(x_1, 0); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4(x_8, x_8, x_9, x_2, x_3, x_4); +x_10 = l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4(x_8, x_8, x_9, x_2, x_3, x_4); return x_10; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -5037,12 +5037,12 @@ return x_26; } } } -lean_object* l_PersistentArray_foldlM___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlM___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; x_5 = lean_ctor_get(x_1, 0); -x_6 = l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(x_5, x_2, x_3, x_4); +x_6 = l_PersistentArray_foldlMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(x_5, x_2, x_3, x_4); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; @@ -5055,7 +5055,7 @@ x_9 = lean_ctor_get(x_1, 1); x_10 = lean_unsigned_to_nat(0u); x_11 = lean_unbox(x_7); lean_dec(x_7); -x_12 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5(x_1, x_9, x_10, x_11, x_3, x_8); +x_12 = l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5(x_1, x_9, x_10, x_11, x_3, x_8); return x_12; } else @@ -5082,7 +5082,7 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(lean_object* x_1) { _start: { uint8_t x_2; @@ -5169,15 +5169,15 @@ return x_25; } } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -5288,7 +5288,7 @@ return x_40; } } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1() { _start: { lean_object* x_1; @@ -5296,27 +5296,27 @@ x_1 = lean_mk_string("postponed"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Meta_isLevelDefEqAux___main___closed__2; -x_2 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; +x_2 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_1 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; x_2 = l_Lean_Meta_isLevelDefEqAux___main___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_10__processPostponedStep(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; lean_object* x_186; uint8_t x_187; @@ -5335,8 +5335,8 @@ goto block_185; else { lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; uint8_t x_193; -x_189 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3; -x_190 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_189, x_1, x_2); +x_189 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3; +x_190 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_189, x_1, x_2); x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); x_192 = lean_ctor_get(x_190, 1); @@ -5365,14 +5365,14 @@ uint8_t x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_1 x_8 = lean_ctor_get_uint8(x_6, sizeof(void*)*1); x_9 = 0; lean_ctor_set_uint8(x_6, sizeof(void*)*1, x_9); -x_10 = l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(x_4); +x_10 = l___private_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(x_4); 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); x_13 = 1; -x_14 = l_PersistentArray_foldlM___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_11, x_13, x_1, x_12); +x_14 = l_PersistentArray_foldlM___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_11, x_13, x_1, x_12); lean_dec(x_11); if (lean_obj_tag(x_14) == 0) { @@ -5667,14 +5667,14 @@ x_78 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_78, 0, x_76); lean_ctor_set_uint8(x_78, sizeof(void*)*1, x_77); lean_ctor_set(x_4, 4, x_78); -x_79 = l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(x_4); +x_79 = l___private_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(x_4); x_80 = lean_ctor_get(x_79, 0); lean_inc(x_80); x_81 = lean_ctor_get(x_79, 1); lean_inc(x_81); lean_dec(x_79); x_82 = 1; -x_83 = l_PersistentArray_foldlM___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_80, x_82, x_1, x_81); +x_83 = l_PersistentArray_foldlM___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_80, x_82, x_1, x_81); lean_dec(x_80); if (lean_obj_tag(x_83) == 0) { @@ -5869,14 +5869,14 @@ lean_ctor_set(x_125, 2, x_117); lean_ctor_set(x_125, 3, x_118); lean_ctor_set(x_125, 4, x_124); lean_ctor_set(x_125, 5, x_119); -x_126 = l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(x_125); +x_126 = l___private_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(x_125); x_127 = lean_ctor_get(x_126, 0); lean_inc(x_127); x_128 = lean_ctor_get(x_126, 1); lean_inc(x_128); lean_dec(x_126); x_129 = 1; -x_130 = l_PersistentArray_foldlM___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_127, x_129, x_1, x_128); +x_130 = l_PersistentArray_foldlM___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_127, x_129, x_1, x_128); lean_dec(x_127); if (lean_obj_tag(x_130) == 0) { @@ -6033,20 +6033,20 @@ return x_160; else { lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; lean_object* x_168; -x_161 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_4); +x_161 = l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_4); x_162 = lean_ctor_get(x_161, 0); lean_inc(x_162); x_163 = lean_ctor_get(x_161, 1); lean_inc(x_163); lean_dec(x_161); -x_164 = l___private_Init_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(x_163); +x_164 = l___private_Lean_Meta_LevelDefEq_9__getResetPostponed___rarg(x_163); x_165 = lean_ctor_get(x_164, 0); lean_inc(x_165); x_166 = lean_ctor_get(x_164, 1); lean_inc(x_166); lean_dec(x_164); x_167 = 1; -x_168 = l_PersistentArray_foldlM___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_165, x_167, x_1, x_166); +x_168 = l_PersistentArray_foldlM___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_165, x_167, x_1, x_166); lean_dec(x_165); if (lean_obj_tag(x_168) == 0) { @@ -6056,8 +6056,8 @@ lean_inc(x_169); x_170 = lean_ctor_get(x_168, 1); lean_inc(x_170); lean_dec(x_168); -x_171 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3; -x_172 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_162, x_171, x_1, x_170); +x_171 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3; +x_172 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_162, x_171, x_1, x_170); x_173 = !lean_is_exclusive(x_172); if (x_173 == 0) { @@ -6087,8 +6087,8 @@ lean_inc(x_177); x_178 = lean_ctor_get(x_168, 1); lean_inc(x_178); lean_dec(x_168); -x_179 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3; -x_180 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_162, x_179, x_1, x_178); +x_179 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3; +x_180 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_162, x_179, x_1, x_178); x_181 = !lean_is_exclusive(x_180); if (x_181 == 0) { @@ -6115,97 +6115,97 @@ return x_184; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___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* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___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: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_4); lean_dec(x_4); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3(x_1, x_2, x_3, x_7, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__3(x_1, x_2, x_3, x_7, x_5, x_6); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_8; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___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) { _start: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_4); lean_dec(x_4); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4(x_1, x_2, x_3, x_7, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__4(x_1, x_2, x_3, x_7, x_5, x_6); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_8; } } -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_2); lean_dec(x_2); -x_6 = l_PersistentArray_foldlMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(x_1, x_5, x_3, x_4); +x_6 = l_PersistentArray_foldlMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__2(x_1, x_5, x_3, x_4); lean_dec(x_3); lean_dec(x_1); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___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* l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___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) { _start: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_4); lean_dec(x_4); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5(x_1, x_2, x_3, x_7, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__5(x_1, x_2, x_3, x_7, x_5, x_6); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_8; } } -lean_object* l_PersistentArray_foldlM___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlM___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_2); lean_dec(x_2); -x_6 = l_PersistentArray_foldlM___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_1, x_5, x_3, x_4); +x_6 = l_PersistentArray_foldlM___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__1(x_1, x_5, x_3, x_4); lean_dec(x_3); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6(x_1); +x_2 = l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep(x_1, x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1() { _start: { lean_object* x_1; @@ -6213,27 +6213,27 @@ x_1 = lean_mk_string("no progress solving pending is-def-eq level constraints"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1; +x_1 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2; +x_1 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4() { _start: { lean_object* x_1; @@ -6241,27 +6241,27 @@ x_1 = lean_mk_string("processing #"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4; +x_1 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5; +x_1 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7() { _start: { lean_object* x_1; @@ -6269,31 +6269,31 @@ x_1 = lean_mk_string(" postponed is-def-eq level constraints"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7; +x_1 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9() { +lean_object* _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8; +x_1 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(x_2); x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) { @@ -6318,8 +6318,8 @@ goto block_88; else { lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; -x_91 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_92 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_91, x_1, x_6); +x_91 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_92 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_91, x_1, x_6); x_93 = lean_ctor_get(x_92, 0); lean_inc(x_93); x_94 = lean_unbox(x_93); @@ -6345,11 +6345,11 @@ x_98 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_98, 0, x_97); x_99 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_99, 0, x_98); -x_100 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6; +x_100 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6; x_101 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_101, 0, x_100); lean_ctor_set(x_101, 1, x_99); -x_102 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9; +x_102 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9; x_103 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_103, 0, x_101); lean_ctor_set(x_103, 1, x_102); @@ -6364,7 +6364,7 @@ goto block_88; block_88: { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep(x_1, x_9); +x_10 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep(x_1, x_9); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; uint8_t x_12; @@ -6402,7 +6402,7 @@ lean_dec(x_11); x_17 = lean_ctor_get(x_10, 1); lean_inc(x_17); lean_dec(x_10); -x_18 = l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(x_17); +x_18 = l___private_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(x_17); x_19 = !lean_is_exclusive(x_18); if (x_19 == 0) { @@ -6435,8 +6435,8 @@ else { lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_free_object(x_18); -x_28 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_29 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_28, x_1, x_21); +x_28 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_29 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_28, x_1, x_21); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -6475,7 +6475,7 @@ lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; x_40 = lean_ctor_get(x_29, 1); lean_inc(x_40); lean_dec(x_29); -x_41 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3; +x_41 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3; x_42 = l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isLevelDefEqAux___main___spec__1(x_28, x_41, x_1, x_40); x_43 = !lean_is_exclusive(x_42); if (x_43 == 0) @@ -6557,8 +6557,8 @@ return x_62; else { lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; -x_63 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_64 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_63, x_1, x_55); +x_63 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_64 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_63, x_1, x_55); x_65 = lean_ctor_get(x_64, 0); lean_inc(x_65); x_66 = lean_unbox(x_65); @@ -6593,7 +6593,7 @@ lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean x_72 = lean_ctor_get(x_64, 1); lean_inc(x_72); lean_dec(x_64); -x_73 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3; +x_73 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3; x_74 = l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isLevelDefEqAux___main___spec__1(x_63, x_73, x_1, x_72); x_75 = lean_ctor_get(x_74, 1); lean_inc(x_75); @@ -6699,8 +6699,8 @@ goto block_156; else { lean_object* x_159; lean_object* x_160; lean_object* x_161; uint8_t x_162; -x_159 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_160 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_159, x_1, x_109); +x_159 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_160 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_159, x_1, x_109); x_161 = lean_ctor_get(x_160, 0); lean_inc(x_161); x_162 = lean_unbox(x_161); @@ -6726,11 +6726,11 @@ x_166 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_166, 0, x_165); x_167 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_167, 0, x_166); -x_168 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6; +x_168 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6; x_169 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_169, 0, x_168); lean_ctor_set(x_169, 1, x_167); -x_170 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9; +x_170 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9; x_171 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_171, 0, x_169); lean_ctor_set(x_171, 1, x_170); @@ -6745,7 +6745,7 @@ goto block_156; block_156: { lean_object* x_113; -x_113 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep(x_1, x_112); +x_113 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep(x_1, x_112); if (lean_obj_tag(x_113) == 0) { lean_object* x_114; uint8_t x_115; @@ -6782,7 +6782,7 @@ lean_dec(x_114); x_119 = lean_ctor_get(x_113, 1); lean_inc(x_119); lean_dec(x_113); -x_120 = l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(x_119); +x_120 = l___private_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(x_119); x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); x_122 = lean_ctor_get(x_120, 1); @@ -6827,8 +6827,8 @@ else { lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_dec(x_123); -x_131 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_132 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_131, x_1, x_122); +x_131 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_132 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_131, x_1, x_122); x_133 = lean_ctor_get(x_132, 0); lean_inc(x_133); x_134 = lean_unbox(x_133); @@ -6863,7 +6863,7 @@ lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; x_140 = lean_ctor_get(x_132, 1); lean_inc(x_140); lean_dec(x_132); -x_141 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3; +x_141 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3; x_142 = l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isLevelDefEqAux___main___spec__1(x_131, x_141, x_1, x_140); x_143 = lean_ctor_get(x_142, 1); lean_inc(x_143); @@ -6954,71 +6954,71 @@ return x_176; } } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___boxed), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main(x_1); +x_2 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg___boxed), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg(x_1, x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___rarg(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux(x_1); +x_2 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_12__processPostponed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_8__getNumPostponed___rarg(x_2); x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) { @@ -7047,8 +7047,8 @@ goto block_175; else { lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; uint8_t x_183; -x_179 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_180 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_179, x_1, x_6); +x_179 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_180 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_179, x_1, x_6); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_ctor_get(x_180, 1); @@ -7077,7 +7077,7 @@ uint8_t x_14; uint8_t x_15; lean_object* x_16; x_14 = lean_ctor_get_uint8(x_12, sizeof(void*)*1); x_15 = 0; lean_ctor_set_uint8(x_12, sizeof(void*)*1, x_15); -x_16 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_10); +x_16 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_10); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -7371,7 +7371,7 @@ x_80 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_80, 0, x_78); lean_ctor_set_uint8(x_80, sizeof(void*)*1, x_79); lean_ctor_set(x_10, 4, x_80); -x_81 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_10); +x_81 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_10); if (lean_obj_tag(x_81) == 0) { lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; 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; @@ -7565,7 +7565,7 @@ lean_ctor_set(x_123, 2, x_115); lean_ctor_set(x_123, 3, x_116); lean_ctor_set(x_123, 4, x_122); lean_ctor_set(x_123, 5, x_117); -x_124 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_123); +x_124 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_123); if (lean_obj_tag(x_124) == 0) { lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; 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; @@ -7721,13 +7721,13 @@ return x_154; else { lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; -x_155 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_10); +x_155 = l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_10); x_156 = lean_ctor_get(x_155, 0); lean_inc(x_156); x_157 = lean_ctor_get(x_155, 1); lean_inc(x_157); lean_dec(x_155); -x_158 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_157); +x_158 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_157); if (lean_obj_tag(x_158) == 0) { lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; @@ -7736,8 +7736,8 @@ lean_inc(x_159); x_160 = lean_ctor_get(x_158, 1); lean_inc(x_160); lean_dec(x_158); -x_161 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_162 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_156, x_161, x_1, x_160); +x_161 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_162 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_156, x_161, x_1, x_160); x_163 = !lean_is_exclusive(x_162); if (x_163 == 0) { @@ -7767,8 +7767,8 @@ lean_inc(x_167); x_168 = lean_ctor_get(x_158, 1); lean_inc(x_168); lean_dec(x_158); -x_169 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_170 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_156, x_169, x_1, x_168); +x_169 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_170 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_156, x_169, x_1, x_168); x_171 = !lean_is_exclusive(x_170); if (x_171 == 0) { @@ -7832,8 +7832,8 @@ goto block_254; else { lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint8_t x_262; -x_258 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_259 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_258, x_1, x_187); +x_258 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_259 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_258, x_1, x_187); x_260 = lean_ctor_get(x_259, 0); lean_inc(x_260); x_261 = lean_ctor_get(x_259, 1); @@ -7903,7 +7903,7 @@ lean_ctor_set(x_204, 2, x_195); lean_ctor_set(x_204, 3, x_196); lean_ctor_set(x_204, 4, x_203); lean_ctor_set(x_204, 5, x_197); -x_205 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_204); +x_205 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_204); if (lean_obj_tag(x_205) == 0) { 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; @@ -8058,13 +8058,13 @@ return x_235; else { lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; -x_236 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_191); +x_236 = l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_191); x_237 = lean_ctor_get(x_236, 0); lean_inc(x_237); x_238 = lean_ctor_get(x_236, 1); lean_inc(x_238); lean_dec(x_236); -x_239 = l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_238); +x_239 = l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg(x_1, x_238); if (lean_obj_tag(x_239) == 0) { lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; @@ -8073,8 +8073,8 @@ lean_inc(x_240); x_241 = lean_ctor_get(x_239, 1); lean_inc(x_241); lean_dec(x_239); -x_242 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_243 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_237, x_242, x_1, x_241); +x_242 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_243 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_237, x_242, x_1, x_241); x_244 = lean_ctor_get(x_243, 1); lean_inc(x_244); if (lean_is_exclusive(x_243)) { @@ -8102,8 +8102,8 @@ lean_inc(x_247); x_248 = lean_ctor_get(x_239, 1); lean_inc(x_248); lean_dec(x_239); -x_249 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; -x_250 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_237, x_249, x_1, x_248); +x_249 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_250 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_237, x_249, x_1, x_248); x_251 = lean_ctor_get(x_250, 1); lean_inc(x_251); if (lean_is_exclusive(x_250)) { @@ -8140,11 +8140,11 @@ return x_265; } } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_LevelDefEq_12__processPostponed___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_1, x_2); +x_3 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_1, x_2); lean_dec(x_1); return x_3; } @@ -8265,7 +8265,7 @@ lean_dec(x_18); x_26 = lean_ctor_get(x_17, 1); lean_inc(x_26); lean_dec(x_17); -x_27 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_2, x_26); +x_27 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_2, x_26); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; uint8_t x_29; @@ -8451,7 +8451,7 @@ lean_dec(x_60); x_67 = lean_ctor_get(x_59, 1); lean_inc(x_67); lean_dec(x_59); -x_68 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_2, x_67); +x_68 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_2, x_67); if (lean_obj_tag(x_68) == 0) { lean_object* x_69; uint8_t x_70; @@ -8623,7 +8623,7 @@ lean_dec(x_19); x_27 = lean_ctor_get(x_18, 1); lean_inc(x_27); lean_dec(x_18); -x_28 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); +x_28 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; uint8_t x_30; @@ -8804,7 +8804,7 @@ lean_dec(x_61); x_68 = lean_ctor_get(x_60, 1); lean_inc(x_68); lean_dec(x_60); -x_69 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); +x_69 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; uint8_t x_71; @@ -8973,7 +8973,7 @@ lean_dec(x_19); x_27 = lean_ctor_get(x_18, 1); lean_inc(x_27); lean_dec(x_18); -x_28 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); +x_28 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; uint8_t x_30; @@ -9154,7 +9154,7 @@ lean_dec(x_61); x_68 = lean_ctor_get(x_60, 1); lean_inc(x_68); lean_dec(x_60); -x_69 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); +x_69 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; uint8_t x_71; @@ -9370,7 +9370,7 @@ else { lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; uint8_t x_308; x_304 = l_Lean_Meta_isLevelDefEqAux___main___closed__2; -x_305 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_304, x_3, x_4); +x_305 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_304, x_3, x_4); x_306 = lean_ctor_get(x_305, 0); lean_inc(x_306); x_307 = lean_ctor_get(x_305, 1); @@ -9424,7 +9424,7 @@ else { lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; uint8_t x_90; x_86 = l_Lean_Meta_isLevelDefEqAux___main___closed__2; -x_87 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_86, x_3, x_59); +x_87 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_86, x_3, x_59); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_ctor_get(x_87, 1); @@ -9720,7 +9720,7 @@ else { lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; x_157 = l_Lean_Meta_isLevelDefEqAux___main___closed__2; -x_158 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_157, x_3, x_130); +x_158 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_157, x_3, x_130); x_159 = lean_ctor_get(x_158, 0); lean_inc(x_159); x_160 = lean_ctor_get(x_158, 1); @@ -10004,7 +10004,7 @@ else { lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; uint8_t x_240; x_236 = l_Lean_Meta_isLevelDefEqAux___main___closed__2; -x_237 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_236, x_3, x_209); +x_237 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_236, x_3, x_209); x_238 = lean_ctor_get(x_237, 0); lean_inc(x_238); x_239 = lean_ctor_get(x_237, 1); @@ -10225,7 +10225,7 @@ return x_205; else { lean_object* x_243; lean_object* x_244; lean_object* x_245; uint8_t x_246; lean_object* x_247; lean_object* x_257; -x_243 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); +x_243 = l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); x_244 = lean_ctor_get(x_243, 0); lean_inc(x_244); x_245 = lean_ctor_get(x_243, 1); @@ -10258,7 +10258,7 @@ else { lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; uint8_t x_291; x_287 = l_Lean_Meta_isLevelDefEqAux___main___closed__2; -x_288 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_287, x_3, x_259); +x_288 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_287, x_3, x_259); x_289 = lean_ctor_get(x_288, 0); lean_inc(x_289); x_290 = lean_ctor_get(x_288, 1); @@ -10352,7 +10352,7 @@ x_293 = lean_ctor_get(x_257, 1); lean_inc(x_293); lean_dec(x_257); x_294 = l_Lean_Meta_isLevelDefEqAux___main___closed__2; -x_295 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_244, x_294, x_3, x_293); +x_295 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_244, x_294, x_3, x_293); x_296 = !lean_is_exclusive(x_295); if (x_296 == 0) { @@ -10379,7 +10379,7 @@ block_256: { lean_object* x_248; lean_object* x_249; uint8_t x_250; x_248 = l_Lean_Meta_isLevelDefEqAux___main___closed__2; -x_249 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_244, x_248, x_3, x_247); +x_249 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_244, x_248, x_3, x_247); x_250 = !lean_is_exclusive(x_249); if (x_250 == 0) { @@ -10493,7 +10493,7 @@ lean_dec(x_19); x_27 = lean_ctor_get(x_18, 1); lean_inc(x_27); lean_dec(x_18); -x_28 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); +x_28 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; uint8_t x_30; @@ -10679,7 +10679,7 @@ lean_dec(x_61); x_68 = lean_ctor_get(x_60, 1); lean_inc(x_68); lean_dec(x_60); -x_69 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); +x_69 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; uint8_t x_71; @@ -10853,7 +10853,7 @@ lean_dec(x_19); x_27 = lean_ctor_get(x_18, 1); lean_inc(x_27); lean_dec(x_18); -x_28 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); +x_28 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_27); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; uint8_t x_30; @@ -11039,7 +11039,7 @@ lean_dec(x_61); x_68 = lean_ctor_get(x_60, 1); lean_inc(x_68); lean_dec(x_60); -x_69 = l___private_Init_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); +x_69 = l___private_Lean_Meta_LevelDefEq_12__processPostponed(x_3, x_68); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; uint8_t x_71; @@ -11166,7 +11166,7 @@ lean_object* _init_l_Lean_Meta_isExprDefEq___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_1 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; x_2 = l_Lean_Meta_isExprDefEq___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -11192,7 +11192,7 @@ else { lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; uint8_t x_308; x_304 = l_Lean_Meta_isExprDefEq___closed__2; -x_305 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_304, x_3, x_4); +x_305 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_304, x_3, x_4); x_306 = lean_ctor_get(x_305, 0); lean_inc(x_306); x_307 = lean_ctor_get(x_305, 1); @@ -11247,7 +11247,7 @@ else { lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; uint8_t x_90; x_86 = l_Lean_Meta_isExprDefEq___closed__2; -x_87 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_86, x_3, x_59); +x_87 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_86, x_3, x_59); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_ctor_get(x_87, 1); @@ -11548,7 +11548,7 @@ else { lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; x_157 = l_Lean_Meta_isExprDefEq___closed__2; -x_158 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_157, x_3, x_130); +x_158 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_157, x_3, x_130); x_159 = lean_ctor_get(x_158, 0); lean_inc(x_159); x_160 = lean_ctor_get(x_158, 1); @@ -11837,7 +11837,7 @@ else { lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; uint8_t x_240; x_236 = l_Lean_Meta_isExprDefEq___closed__2; -x_237 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_236, x_3, x_209); +x_237 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_236, x_3, x_209); x_238 = lean_ctor_get(x_237, 0); lean_inc(x_238); x_239 = lean_ctor_get(x_237, 1); @@ -12062,7 +12062,7 @@ return x_205; else { lean_object* x_243; lean_object* x_244; lean_object* x_245; uint8_t x_246; lean_object* x_247; lean_object* x_257; -x_243 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); +x_243 = l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); x_244 = lean_ctor_get(x_243, 0); lean_inc(x_244); x_245 = lean_ctor_get(x_243, 1); @@ -12096,7 +12096,7 @@ else { lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; uint8_t x_291; x_287 = l_Lean_Meta_isExprDefEq___closed__2; -x_288 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_287, x_3, x_259); +x_288 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_287, x_3, x_259); x_289 = lean_ctor_get(x_288, 0); lean_inc(x_289); x_290 = lean_ctor_get(x_288, 1); @@ -12190,7 +12190,7 @@ x_293 = lean_ctor_get(x_257, 1); lean_inc(x_293); lean_dec(x_257); x_294 = l_Lean_Meta_isExprDefEq___closed__2; -x_295 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_244, x_294, x_3, x_293); +x_295 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_244, x_294, x_3, x_293); lean_dec(x_3); x_296 = !lean_is_exclusive(x_295); if (x_296 == 0) @@ -12218,7 +12218,7 @@ block_256: { lean_object* x_248; lean_object* x_249; uint8_t x_250; x_248 = l_Lean_Meta_isExprDefEq___closed__2; -x_249 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_244, x_248, x_3, x_247); +x_249 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_244, x_248, x_3, x_247); lean_dec(x_3); x_250 = !lean_is_exclusive(x_249); if (x_250 == 0) @@ -12255,7 +12255,7 @@ x_5 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Meta_LevelDefEq_13__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Meta_LevelDefEq_13__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -12275,7 +12275,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_dec(x_6); -x_8 = l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; +x_8 = l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2; x_9 = l_Lean_registerTraceClass(x_8, x_7); return x_9; } @@ -12326,13 +12326,13 @@ return x_17; } } } -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_LevelDefEq(lean_object* w) { +lean_object* initialize_Lean_Meta_LevelDefEq(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_isLevelDefEqAux___main___closed__1 = _init_l_Lean_Meta_isLevelDefEqAux___main___closed__1(); @@ -12347,30 +12347,30 @@ l_Lean_Meta_isLevelDefEqAux___main___closed__5 = _init_l_Lean_Meta_isLevelDefEqA lean_mark_persistent(l_Lean_Meta_isLevelDefEqAux___main___closed__5); l_Lean_Meta_isLevelDefEqAux___main___closed__6 = _init_l_Lean_Meta_isLevelDefEqAux___main___closed__6(); lean_mark_persistent(l_Lean_Meta_isLevelDefEqAux___main___closed__6); -l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1 = _init_l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1); -l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2 = _init_l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2); -l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3 = _init_l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3); -l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1 = _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1); -l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2 = _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2); -l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3 = _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3); -l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4 = _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4); -l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5 = _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5); -l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6 = _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6); -l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7 = _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7); -l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8 = _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8); -l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9 = _init_l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9); +l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1 = _init_l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1); +l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2 = _init_l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__2); +l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3 = _init_l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__3); +l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1 = _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__1); +l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2 = _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__2); +l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3 = _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__3); +l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4 = _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__4); +l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5 = _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__5); +l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6 = _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__6); +l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7 = _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__7); +l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8 = _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__8); +l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9 = _init_l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9(); +lean_mark_persistent(l___private_Lean_Meta_LevelDefEq_11__processPostponedAux___main___rarg___closed__9); l_Lean_Meta_isLevelDefEq___closed__1 = _init_l_Lean_Meta_isLevelDefEq___closed__1(); lean_mark_persistent(l_Lean_Meta_isLevelDefEq___closed__1); l_Lean_Meta_isLevelDefEq___closed__2 = _init_l_Lean_Meta_isLevelDefEq___closed__2(); @@ -12393,7 +12393,7 @@ l_Lean_Meta_isExprDefEq___closed__1 = _init_l_Lean_Meta_isExprDefEq___closed__1( lean_mark_persistent(l_Lean_Meta_isExprDefEq___closed__1); l_Lean_Meta_isExprDefEq___closed__2 = _init_l_Lean_Meta_isExprDefEq___closed__2(); lean_mark_persistent(l_Lean_Meta_isExprDefEq___closed__2); -res = l___private_Init_Lean_Meta_LevelDefEq_13__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_Meta_LevelDefEq_13__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Meta/Message.c b/stage0/stdlib/Lean/Meta/Message.c similarity index 92% rename from stage0/stdlib/Init/Lean/Meta/Message.c rename to stage0/stdlib/Lean/Meta/Message.c index 9a20946f9a..9296b63d8b 100644 --- a/stage0/stdlib/Init/Lean/Meta/Message.c +++ b/stage0/stdlib/Lean/Meta/Message.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Message -// Imports: Init.Lean.Meta.Basic +// Module: Lean.Meta.Message +// Imports: Lean.Meta.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,13 +15,11 @@ extern "C" { #endif extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__51; lean_object* l_Lean_Meta_Exception_toMessageData___closed__12; -lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f(lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__51; -lean_object* l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___boxed(lean_object*, lean_object*); lean_object* l_PersistentArray_forM___at_Lean_Meta_MetaHasEval___spec__1___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_ofList___closed__3; -lean_object* l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2; lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__39; lean_object* l_Lean_Meta_Exception_toMessageData___closed__35; @@ -32,18 +30,20 @@ lean_object* l_Lean_Meta_Exception_toMessageData(lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__31; lean_object* l_Lean_mkMVar(lean_object*); extern lean_object* l_Array_empty___closed__1; -lean_object* l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1; +lean_object* l___private_Lean_Meta_Message_3__inferDomain_x3f___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Message_3__inferDomain_x3f___closed__1; lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_mkAppTypeMismatchMessage(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_arrayExpr_toMessageData___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__43; -lean_object* l___private_Init_Lean_Meta_Message_3__inferDomain_x3f(lean_object*, lean_object*); lean_object* l_Lean_Meta_MetaHasEval(lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_MessageData_formatAux___main(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__26; +lean_object* l___private_Lean_Meta_Message_4__whnf_x3f___boxed(lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_Lean_Meta_MetaHasEval___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_mkLetTypeMismatchMessage(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_forMAux___main___at_Lean_Meta_MetaHasEval___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__86; lean_object* l_Lean_Meta_Exception_toMessageData___closed__40; @@ -52,7 +52,7 @@ lean_object* l_Lean_Meta_Exception_toMessageData___closed__9; lean_object* l_Lean_Meta_Exception_toMessageData___closed__27; lean_object* l_Lean_Meta_Exception_toMessageData___closed__45; extern lean_object* l_Lean_LocalContext_Inhabited___closed__2; -lean_object* l___private_Init_Lean_Meta_Message_4__whnf_x3f(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Message_1__run_x3f(lean_object*); extern lean_object* l_Lean_Meta_run___rarg___closed__5; lean_object* l_Lean_Meta_Exception_toMessageData___closed__8; lean_object* l_Lean_Meta_Exception_toMessageData___closed__17; @@ -78,39 +78,40 @@ lean_object* l_Lean_Meta_Exception_toMessageData___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_PersistentArray_empty___closed__3; extern lean_object* l_Lean_Meta_Exception_toStr___closed__11; +lean_object* l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__3; extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__4; lean_object* l_Lean_Meta_Exception_toMessageData___closed__2; lean_object* l_Lean_Meta_Exception_toMessageData___closed__47; extern lean_object* l_Lean_Options_empty; +lean_object* l___private_Lean_Meta_Message_4__whnf_x3f(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__33; lean_object* l_Lean_Meta_Exception_mkLetTypeMismatchMessage___closed__5; lean_object* l_Lean_Meta_Exception_toMessageData___closed__46; lean_object* l_Lean_Meta_Exception_mkLetTypeMismatchMessage___closed__6; -lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__3; lean_object* l_Lean_Meta_Exception_toMessageData___closed__6; lean_object* l_Lean_Meta_Exception_toMessageData___closed__25; lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Message_4__whnf_x3f___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__3; lean_object* l_Lean_Meta_Exception_mkLetTypeMismatchMessage___closed__3; lean_object* l_Lean_Meta_Exception_toMessageData___closed__53; lean_object* l_Lean_Meta_Exception_toMessageData___closed__37; -lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__1; lean_object* l_Lean_Meta_Exception_toMessageData___closed__42; +lean_object* l___private_Lean_Meta_Message_2__inferType_x3f___boxed(lean_object*, lean_object*); lean_object* l_PersistentArray_forMAux___main___at_Lean_Meta_MetaHasEval___spec__2___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__2; lean_object* l_Array_forMAux___main___at_Lean_Meta_MetaHasEval___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__22; lean_object* l_PersistentArray_forM___at_Lean_Meta_MetaHasEval___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__50; lean_object* l_Lean_Meta_MetaHasEval___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Message_3__inferDomain_x3f(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__38; lean_object* l_Lean_Meta_Exception_toMessageData___closed__21; lean_object* l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__1; -lean_object* l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___closed__1; lean_object* l_Lean_Meta_Exception_toMessageData___closed__41; +lean_object* l___private_Lean_Meta_Message_1__run_x3f___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Lean_getMaxRecDepth(lean_object*); +lean_object* l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__1; lean_object* l_Lean_Meta_Exception_toMessageData___closed__13; lean_object* l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__2; lean_object* l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__4; @@ -118,33 +119,32 @@ lean_object* l_Lean_Meta_Exception_toMessageData___closed__52; lean_object* l_Lean_Meta_Exception_toMessageData___closed__54; lean_object* l_Lean_Meta_Exception_toMessageData___closed__29; extern lean_object* l_Lean_Meta_Exception_toStr___closed__10; +lean_object* l___private_Lean_Meta_Message_1__run_x3f___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__10; lean_object* l_Lean_Meta_Exception_toMessageData___closed__32; lean_object* l_Lean_Meta_Exception_toMessageData___closed__7; +lean_object* l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__2; lean_object* l_Lean_Meta_Exception_toMessageData___closed__49; +lean_object* l___private_Lean_Meta_Message_2__inferType_x3f(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__5; extern lean_object* l_Lean_TraceState_Inhabited___closed__1; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2; lean_object* l_Lean_Meta_Exception_mkLetTypeMismatchMessage___closed__7; -lean_object* l___private_Init_Lean_Meta_Message_2__inferType_x3f___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__24; extern lean_object* l_Lean_KernelException_toMessageData___closed__12; lean_object* l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__3; -lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_MetavarContext_Inhabited___closed__1; extern lean_object* l_Lean_Meta_run___rarg___closed__1; extern lean_object* l_Lean_Meta_Exception_toStr___closed__18; +lean_object* l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1; lean_object* l_Lean_Meta_Exception_toMessageData___closed__18; lean_object* l_Lean_Meta_Exception_toMessageData___closed__30; lean_object* lean_local_ctx_find(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__5; lean_object* l_Lean_Meta_Exception_toMessageData___closed__14; lean_object* l_Lean_Meta_Exception_toMessageData___closed__28; lean_object* l_Lean_indentExpr(lean_object*); lean_object* l_Lean_mkBVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_Message_2__inferType_x3f(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__6; lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Meta_Exception_toMessageData___closed__15; @@ -154,7 +154,7 @@ lean_object* l_Lean_Meta_Exception_toMessageData___closed__20; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_IO_println___at_IO_runMeta___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__39; -lean_object* _init_l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__1() { +lean_object* _init_l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__1() { _start: { lean_object* x_1; @@ -162,21 +162,21 @@ x_1 = lean_mk_string("_meta_exception"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__2() { +lean_object* _init_l___private_Lean_Meta_Message_1__run_x3f___rarg___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_Lean_Meta_Message_1__run_x3f___rarg___closed__1; +x_2 = l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__3() { +lean_object* _init_l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__2; +x_1 = l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__2; x_2 = lean_unsigned_to_nat(1u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -184,7 +184,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Message_1__run_x3f___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; 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; @@ -204,7 +204,7 @@ lean_ctor_set(x_11, 2, x_9); lean_ctor_set(x_11, 3, x_10); lean_ctor_set(x_11, 4, x_7); x_12 = l_Lean_Meta_run___rarg___closed__5; -x_13 = l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__3; +x_13 = l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__3; x_14 = l_Lean_TraceState_Inhabited___closed__1; x_15 = l_PersistentArray_empty___closed__3; lean_inc(x_4); @@ -236,43 +236,43 @@ return x_20; } } } -lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Message_1__run_x3f(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Message_1__run_x3f___rarg___boxed), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Message_1__run_x3f___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_Message_1__run_x3f___rarg(x_1, x_2); +x_3 = l___private_Lean_Meta_Message_1__run_x3f___rarg(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Message_2__inferType_x3f(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Message_2__inferType_x3f(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_alloc_closure((void*)(l_Lean_Meta_inferType), 3, 1); lean_closure_set(x_3, 0, x_2); -x_4 = l___private_Init_Lean_Meta_Message_1__run_x3f___rarg(x_1, x_3); +x_4 = l___private_Lean_Meta_Message_1__run_x3f___rarg(x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_Message_2__inferType_x3f___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Message_2__inferType_x3f___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_Message_2__inferType_x3f(x_1, x_2); +x_3 = l___private_Lean_Meta_Message_2__inferType_x3f(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -280,17 +280,17 @@ x_1 = lean_mk_string("unexpected"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1; +x_1 = l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1; x_2 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -340,7 +340,7 @@ if (x_12 == 0) lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_4, 0); lean_dec(x_13); -x_14 = l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2; +x_14 = l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2; lean_ctor_set_tag(x_4, 1); lean_ctor_set(x_4, 0, x_14); return x_4; @@ -351,7 +351,7 @@ lean_object* x_15; lean_object* x_16; lean_object* x_17; x_15 = lean_ctor_get(x_4, 1); lean_inc(x_15); lean_dec(x_4); -x_16 = l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2; +x_16 = l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2; x_17 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_15); @@ -383,52 +383,52 @@ return x_21; } } } -lean_object* _init_l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___closed__1() { +lean_object* _init_l___private_Lean_Meta_Message_3__inferDomain_x3f___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1), 3, 0); return x_1; } } -lean_object* l___private_Init_Lean_Meta_Message_3__inferDomain_x3f(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Message_3__inferDomain_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; x_3 = lean_alloc_closure((void*)(l_Lean_Meta_inferType), 3, 1); lean_closure_set(x_3, 0, x_2); -x_4 = l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___closed__1; +x_4 = l___private_Lean_Meta_Message_3__inferDomain_x3f___closed__1; x_5 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg), 4, 2); lean_closure_set(x_5, 0, x_3); lean_closure_set(x_5, 1, x_4); -x_6 = l___private_Init_Lean_Meta_Message_1__run_x3f___rarg(x_1, x_5); +x_6 = l___private_Lean_Meta_Message_1__run_x3f___rarg(x_1, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Message_3__inferDomain_x3f___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_Message_3__inferDomain_x3f(x_1, x_2); +x_3 = l___private_Lean_Meta_Message_3__inferDomain_x3f(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Message_4__whnf_x3f(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Message_4__whnf_x3f(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_alloc_closure((void*)(l_Lean_Meta_whnf), 3, 1); lean_closure_set(x_3, 0, x_2); -x_4 = l___private_Init_Lean_Meta_Message_1__run_x3f___rarg(x_1, x_3); +x_4 = l___private_Lean_Meta_Message_1__run_x3f___rarg(x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_Message_4__whnf_x3f___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Message_4__whnf_x3f___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_Message_4__whnf_x3f(x_1, x_2); +x_3 = l___private_Lean_Meta_Message_4__whnf_x3f(x_1, x_2); lean_dec(x_1); return x_3; } @@ -497,7 +497,7 @@ lean_inc(x_2); lean_inc(x_1); x_4 = l_Lean_mkApp(x_1, x_2); lean_inc(x_2); -x_12 = l___private_Init_Lean_Meta_Message_2__inferType_x3f(x_3, x_2); +x_12 = l___private_Lean_Meta_Message_2__inferType_x3f(x_3, x_2); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; @@ -513,7 +513,7 @@ lean_object* x_14; lean_object* x_15; x_14 = lean_ctor_get(x_12, 0); lean_inc(x_14); lean_dec(x_12); -x_15 = l___private_Init_Lean_Meta_Message_3__inferDomain_x3f(x_3, x_1); +x_15 = l___private_Lean_Meta_Message_3__inferDomain_x3f(x_3, x_1); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; @@ -729,7 +729,7 @@ x_14 = lean_ctor_get(x_8, 3); lean_inc(x_14); lean_dec(x_8); lean_inc(x_14); -x_15 = l___private_Init_Lean_Meta_Message_2__inferType_x3f(x_2, x_14); +x_15 = l___private_Lean_Meta_Message_2__inferType_x3f(x_2, x_14); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; @@ -2191,27 +2191,27 @@ x_8 = l_Lean_Meta_MetaHasEval___rarg(x_1, x_2, x_3, x_4, x_7, x_6); return x_8; } } -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Message(lean_object* w) { +lean_object* initialize_Lean_Meta_Message(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__1 = _init_l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__1); -l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__2 = _init_l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__2); -l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__3 = _init_l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__3); -l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1 = _init_l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1); -l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2 = _init_l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2); -l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___closed__1 = _init_l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Message_3__inferDomain_x3f___closed__1); +l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__1 = _init_l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__1); +l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__2 = _init_l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__2); +l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__3 = _init_l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Message_1__run_x3f___rarg___closed__3); +l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1 = _init_l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__1); +l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2 = _init_l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Message_3__inferDomain_x3f___lambda__1___closed__2); +l___private_Lean_Meta_Message_3__inferDomain_x3f___closed__1 = _init_l___private_Lean_Meta_Message_3__inferDomain_x3f___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Message_3__inferDomain_x3f___closed__1); l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__1 = _init_l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__1(); lean_mark_persistent(l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__1); l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__2 = _init_l_Lean_Meta_Exception_mkAppTypeMismatchMessage___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Meta/Offset.c b/stage0/stdlib/Lean/Meta/Offset.c similarity index 92% rename from stage0/stdlib/Init/Lean/Meta/Offset.c rename to stage0/stdlib/Lean/Meta/Offset.c index 82bb1734a3..5728359161 100644 --- a/stage0/stdlib/Init/Lean/Meta/Offset.c +++ b/stage0/stdlib/Lean/Meta/Offset.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Offset -// Imports: Init.Lean.Data.LBool Init.Lean.Meta.InferType +// Module: Lean.Meta.Offset +// Imports: Lean.Data.LBool Lean.Meta.InferType #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,52 +13,52 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Offset_1__getOffsetAux___boxed(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqAux(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Offset_5__mkOffset___closed__1; +uint8_t l___private_Lean_Meta_Offset_4__isNatZero(lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__10; lean_object* l_Lean_Expr_getAppFn___main(lean_object*); -lean_object* l___private_Init_Lean_Meta_Offset_3__isOffset(lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__16; lean_object* l_Lean_Meta_evalNat(lean_object*); -lean_object* l___private_Init_Lean_Meta_Offset_2__getOffset(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Offset_5__mkOffset(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__11; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Meta_evalNat___main(lean_object*); +lean_object* l___private_Lean_Meta_Offset_3__isOffset(lean_object*); lean_object* l_Lean_Meta_isDefEqOffset(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__12; +lean_object* l___private_Lean_Meta_Offset_4__isNatZero___boxed(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_Literal_type___closed__1; -lean_object* l___private_Init_Lean_Meta_Offset_1__getOffsetAux(lean_object*, uint8_t); +lean_object* l___private_Lean_Meta_Offset_1__getOffsetAux___main(lean_object*, uint8_t); +lean_object* l___private_Lean_Meta_Offset_1__getOffsetAux___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__6; extern lean_object* l_Lean_Literal_type___closed__2; lean_object* l_Lean_Meta_evalNat___main___closed__13; -lean_object* l___private_Init_Lean_Meta_Offset_4__isNatZero___boxed(lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__4; lean_object* l_Lean_Expr_getRevArg_x21___main(lean_object*, lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__2; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Offset_5__mkOffset___closed__1; +lean_object* l___private_Lean_Meta_Offset_1__getOffsetAux(lean_object*, uint8_t); lean_object* l_Lean_Meta_evalNat___main___closed__9; uint8_t l_Bool_toLBool(uint8_t); -uint8_t l___private_Init_Lean_Meta_Offset_4__isNatZero(lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__17; lean_object* l_Lean_Meta_evalNat___main___closed__8; lean_object* lean_nat_mul(lean_object*, lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__7; -lean_object* l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(lean_object*, uint8_t); +lean_object* l___private_Lean_Meta_Offset_2__getOffset(lean_object*); lean_object* l_Lean_Meta_evalNat___main___closed__15; lean_object* l_Lean_Meta_evalNat___main___closed__18; lean_object* l_Lean_Meta_evalNat___main___closed__3; lean_object* l_Lean_Meta_evalNat___main___closed__5; lean_object* l_Lean_Meta_evalNat___main___closed__14; lean_object* l_Lean_Meta_evalNat___main___closed__1; -lean_object* l___private_Init_Lean_Meta_Offset_1__getOffsetAux___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkNatLit(lean_object*); +lean_object* l___private_Lean_Meta_Offset_5__mkOffset(lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_decodeNatLitVal___closed__1; lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); @@ -1102,7 +1102,7 @@ x_2 = l_Lean_Meta_evalNat___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(lean_object* x_1, uint8_t x_2) { +lean_object* l___private_Lean_Meta_Offset_1__getOffsetAux___main(lean_object* x_1, uint8_t x_2) { _start: { lean_object* x_3; @@ -1150,7 +1150,7 @@ lean_dec(x_13); lean_dec(x_11); lean_dec(x_1); x_96 = 0; -x_97 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_9, x_96); +x_97 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_9, x_96); if (lean_obj_tag(x_97) == 0) { lean_object* x_98; @@ -1286,7 +1286,7 @@ lean_dec(x_30); x_32 = l_Lean_Expr_getRevArg_x21___main(x_1, x_31); lean_dec(x_1); x_33 = 0; -x_34 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_32, x_33); +x_34 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_32, x_33); if (lean_obj_tag(x_34) == 0) { lean_object* x_35; @@ -1424,7 +1424,7 @@ lean_dec(x_67); x_69 = l_Lean_Expr_getRevArg_x21___main(x_1, x_68); lean_dec(x_1); x_70 = 0; -x_71 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_69, x_70); +x_71 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_69, x_70); if (lean_obj_tag(x_71) == 0) { lean_object* x_72; @@ -1548,44 +1548,44 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Offset_1__getOffsetAux___main___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_2); lean_dec(x_2); -x_4 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_3); +x_4 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_Offset_1__getOffsetAux(lean_object* x_1, uint8_t x_2) { +lean_object* l___private_Lean_Meta_Offset_1__getOffsetAux(lean_object* x_1, uint8_t x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_2); +x_3 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Offset_1__getOffsetAux___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Offset_1__getOffsetAux___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_2); lean_dec(x_2); -x_4 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux(x_1, x_3); +x_4 = l___private_Lean_Meta_Offset_1__getOffsetAux(x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_Offset_2__getOffset(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Offset_2__getOffset(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; x_2 = 1; -x_3 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_2); +x_3 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Offset_3__isOffset(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Offset_3__isOffset(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 5) @@ -1630,7 +1630,7 @@ uint8_t x_25; lean_object* x_26; lean_dec(x_5); lean_dec(x_3); x_25 = 1; -x_26 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_25); +x_26 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_25); return x_26; } } @@ -1666,7 +1666,7 @@ uint8_t x_33; lean_object* x_34; lean_dec(x_5); lean_dec(x_3); x_33 = 1; -x_34 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_33); +x_34 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_33); return x_34; } } @@ -1677,7 +1677,7 @@ uint8_t x_35; lean_object* x_36; lean_dec(x_5); lean_dec(x_3); x_35 = 1; -x_36 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_35); +x_36 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_35); return x_36; } } @@ -1701,7 +1701,7 @@ else { uint8_t x_10; lean_object* x_11; x_10 = 1; -x_11 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_10); +x_11 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_10); return x_11; } } @@ -1722,7 +1722,7 @@ else { uint8_t x_15; lean_object* x_16; x_15 = 1; -x_16 = l___private_Init_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_15); +x_16 = l___private_Lean_Meta_Offset_1__getOffsetAux___main(x_1, x_15); return x_16; } } @@ -1746,7 +1746,7 @@ return x_38; } } } -uint8_t l___private_Init_Lean_Meta_Offset_4__isNatZero(lean_object* x_1) { +uint8_t l___private_Lean_Meta_Offset_4__isNatZero(lean_object* x_1) { _start: { lean_object* x_2; @@ -1770,16 +1770,16 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Meta_Offset_4__isNatZero___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Offset_4__isNatZero___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Meta_Offset_4__isNatZero(x_1); +x_2 = l___private_Lean_Meta_Offset_4__isNatZero(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_Offset_5__mkOffset___closed__1() { +lean_object* _init_l___private_Lean_Meta_Offset_5__mkOffset___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1789,7 +1789,7 @@ x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Offset_5__mkOffset(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Offset_5__mkOffset(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -1799,12 +1799,12 @@ if (x_4 == 0) { uint8_t x_5; lean_inc(x_1); -x_5 = l___private_Init_Lean_Meta_Offset_4__isNatZero(x_1); +x_5 = l___private_Lean_Meta_Offset_4__isNatZero(x_1); if (x_5 == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_mkNatLit(x_2); -x_7 = l___private_Init_Lean_Meta_Offset_5__mkOffset___closed__1; +x_7 = l___private_Lean_Meta_Offset_5__mkOffset___closed__1; x_8 = l_Lean_mkAppB(x_7, x_1, x_6); return x_8; } @@ -1828,7 +1828,7 @@ _start: { lean_object* x_5; lean_inc(x_1); -x_5 = l___private_Init_Lean_Meta_Offset_3__isOffset(x_1); +x_5 = l___private_Lean_Meta_Offset_3__isOffset(x_1); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; @@ -1852,7 +1852,7 @@ x_10 = lean_ctor_get(x_6, 0); lean_inc(x_10); lean_dec(x_6); lean_inc(x_2); -x_11 = l___private_Init_Lean_Meta_Offset_3__isOffset(x_2); +x_11 = l___private_Lean_Meta_Offset_3__isOffset(x_2); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; @@ -1993,7 +1993,7 @@ x_48 = lean_ctor_get(x_46, 1); lean_inc(x_48); lean_dec(x_46); lean_inc(x_2); -x_49 = l___private_Init_Lean_Meta_Offset_3__isOffset(x_2); +x_49 = l___private_Lean_Meta_Offset_3__isOffset(x_2); if (lean_obj_tag(x_49) == 0) { lean_object* x_50; @@ -2121,7 +2121,7 @@ lean_object* x_82; lean_object* x_83; lean_object* x_84; x_82 = lean_nat_sub(x_48, x_79); lean_dec(x_79); lean_dec(x_48); -x_83 = l___private_Init_Lean_Meta_Offset_5__mkOffset(x_47, x_82); +x_83 = l___private_Lean_Meta_Offset_5__mkOffset(x_47, x_82); x_84 = l_Lean_Meta_isExprDefEqAux(x_83, x_78, x_3, x_4); if (lean_obj_tag(x_84) == 0) { @@ -2185,7 +2185,7 @@ lean_object* x_100; lean_object* x_101; lean_object* x_102; x_100 = lean_nat_sub(x_79, x_48); lean_dec(x_48); lean_dec(x_79); -x_101 = l___private_Init_Lean_Meta_Offset_5__mkOffset(x_78, x_100); +x_101 = l___private_Lean_Meta_Offset_5__mkOffset(x_78, x_100); x_102 = l_Lean_Meta_isExprDefEqAux(x_47, x_101, x_3, x_4); if (lean_obj_tag(x_102) == 0) { @@ -2310,17 +2310,17 @@ return x_133; } } } -lean_object* initialize_Init_Lean_Data_LBool(lean_object*); -lean_object* initialize_Init_Lean_Meta_InferType(lean_object*); +lean_object* initialize_Lean_Data_LBool(lean_object*); +lean_object* initialize_Lean_Meta_InferType(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Offset(lean_object* w) { +lean_object* initialize_Lean_Meta_Offset(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_LBool(lean_io_mk_world()); +res = initialize_Lean_Data_LBool(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_InferType(lean_io_mk_world()); +res = initialize_Lean_Meta_InferType(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_evalNat___main___closed__1 = _init_l_Lean_Meta_evalNat___main___closed__1(); @@ -2359,8 +2359,8 @@ l_Lean_Meta_evalNat___main___closed__17 = _init_l_Lean_Meta_evalNat___main___clo lean_mark_persistent(l_Lean_Meta_evalNat___main___closed__17); l_Lean_Meta_evalNat___main___closed__18 = _init_l_Lean_Meta_evalNat___main___closed__18(); lean_mark_persistent(l_Lean_Meta_evalNat___main___closed__18); -l___private_Init_Lean_Meta_Offset_5__mkOffset___closed__1 = _init_l___private_Init_Lean_Meta_Offset_5__mkOffset___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Offset_5__mkOffset___closed__1); +l___private_Lean_Meta_Offset_5__mkOffset___closed__1 = _init_l___private_Lean_Meta_Offset_5__mkOffset___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Offset_5__mkOffset___closed__1); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/Meta/RecursorInfo.c b/stage0/stdlib/Lean/Meta/RecursorInfo.c similarity index 79% rename from stage0/stdlib/Init/Lean/Meta/RecursorInfo.c rename to stage0/stdlib/Lean/Meta/RecursorInfo.c index a9d679b558..9759c8e58b 100644 --- a/stage0/stdlib/Init/Lean/Meta/RecursorInfo.c +++ b/stage0/stdlib/Lean/Meta/RecursorInfo.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.RecursorInfo -// Imports: Init.Data.Nat.Control Init.Lean.AuxRecursor Init.Lean.Util.FindExpr Init.Lean.Meta.ExprDefEq Init.Lean.Meta.Message +// Module: Lean.Meta.RecursorInfo +// Imports: Init.Data.Nat.Control Lean.AuxRecursor Lean.Util.FindExpr Lean.Meta.ExprDefEq Lean.Meta.Message #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,204 +14,204 @@ extern "C" { #endif lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__7; +lean_object* l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___boxed(lean_object*); lean_object* l_Lean_Meta_recursorAttribute; +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_Meta_brecOnSuffix___closed__1; lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1; extern lean_object* l_Option_HasRepr___rarg___closed__2; +lean_object* l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(lean_object*); lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_Meta_mkRecursorAttr(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__3; lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6; -lean_object* l_Array_getIdx_x3f___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1(lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_4__getNumParams___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); extern lean_object* l_List_repr___rarg___closed__1; extern lean_object* l_Option_HasRepr___rarg___closed__1; -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4; +lean_object* l___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toString___at_Lean_Meta_RecursorInfo_HasToString___spec__5(lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_isMinor___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1___boxed(lean_object**); +lean_object* l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkRecursorAttr___closed__4; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_List_toString___at_Lean_Meta_RecursorInfo_HasToString___spec__7(lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(lean_object*); lean_object* l_RBNode_find___main___at_Lean_Meta_getMajorPos_x3f___spec__2(lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2; -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___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_io_ref_get(lean_object*, lean_object*); -lean_object* l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Meta_RecursorInfo_isMinor(lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__14; lean_object* l_Lean_Meta_recOnSuffix; lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__5; lean_object* l_Lean_Meta_RecursorInfo_numParams(lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Meta_mkRecursorAttr___spec__4(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_object* lean_string_append(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2; lean_object* l_List_range(lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_inhabited; extern lean_object* l_String_splitAux___main___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Meta_mkRecursorAttr___spec__7(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkRecursorAttr___closed__5; extern lean_object* l_List_repr___rarg___closed__3; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2; lean_object* l_Array_binSearchAux___main___at_Lean_Meta_getMajorPos_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1; uint8_t l_Array_contains___at_Lean_Meta_CheckAssignment_check___main___spec__2(lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__2___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_Meta_getMajorPos_x3f___spec__2___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_auxRecExt; -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkRecursorAttr___closed__3; -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__2; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___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_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; extern lean_object* l_Lean_ParametricAttribute_Inhabited___closed__3; lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__6; lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__8; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__4; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2; lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); lean_object* l_List_replicate___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_casesOnSuffix; -lean_object* l_Array_back___at___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(lean_object*); +lean_object* l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_numParams___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__2; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7; -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; lean_object* l_Array_binSearchAux___main___at_Lean_Meta_getMajorPos_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__13; lean_object* l_Lean_RecursorVal_getMajorIdx(lean_object*); +lean_object* l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_brecOnSuffix; lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__6(uint8_t, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7; lean_object* l_Lean_registerParametricAttribute___at_Lean_Meta_mkRecursorAttr___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_numMinors(lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMajorPos_x3f(lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__8(uint8_t, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3; +lean_object* l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3; +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_7__getIndicesPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind; lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_4__getNumParams___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_3__checkMotive___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_14__mkRecursorInfoCore(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__1; lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3___boxed(lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1; -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_14__mkRecursorInfoCore(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorUnivLevelPos_hasToString(lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__2(uint8_t, lean_object*); +lean_object* l_Array_getIdx_x3f___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_mkRecursorAttr___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_fold___main___at_Lean_Meta_mkRecursorAttr___spec__2___boxed(lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___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_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerParametricAttribute___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6; lean_object* l_Lean_ConstantInfo_name(lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__8___closed__2; lean_object* l_Nat_repr(lean_object*); extern lean_object* l_Char_HasRepr___closed__1; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); lean_object* l_RBNode_fold___main___at_Lean_Meta_mkRecursorAttr___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkRecursorAttr___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2; +lean_object* l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__3; lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_numMinors___boxed(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__2; lean_object* l_Lean_Meta_run___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toString___at_Lean_Meta_RecursorInfo_HasToString___spec__7___boxed(lean_object*); +lean_object* l_Array_back___at___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(lean_object*); extern lean_object* l_List_reprAux___main___rarg___closed__1; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2; +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3; extern lean_object* l_IO_println___rarg___closed__1; lean_object* l_Lean_Meta_RecursorInfo_HasToString(lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__8___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1; lean_object* l_Lean_Meta_RecursorInfo_motivePos___boxed(lean_object*); -lean_object* l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_3__checkMotive___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_addParenHeuristic(lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__8___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5; lean_object* l_Lean_Meta_mkRecOnFor(lean_object*); extern lean_object* l_Lean_mkRecFor___closed__1; extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__1; lean_object* l_Lean_Meta_RecursorUnivLevelPos_hasToString___closed__1; extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__2; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__9; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3; +lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(lean_object*, size_t, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(lean_object*, lean_object*); lean_object* l_List_toString___at_Lean_Meta_RecursorInfo_HasToString___spec__3(lean_object*); lean_object* l_List_redLength___main___rarg(lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Meta_mkRecursorAttr___spec__5(lean_object*, lean_object*); lean_object* l_Lean_ParametricAttribute_getParam___at_Lean_Meta_getMajorPos_x3f___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_firstIndexPos(lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2; +lean_object* l___private_Lean_Meta_RecursorInfo_4__getNumParams(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__4; lean_object* l_Lean_Meta_getMajorPos_x3f___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_numIndices(lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; lean_object* l_Lean_ConstantInfo_type(lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos(lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5; lean_object* l_Array_qsortAux___main___at_Lean_Meta_mkRecursorAttr___spec__3(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_Meta_mkRecursorInfo(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1; lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Meta_mkRecursorAttr___spec__4___closed__1; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_mod(size_t, size_t); lean_object* l_Lean_Meta_mkBRecOnFor(lean_object*); lean_object* l_Lean_RecursorVal_getInduct(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; lean_object* l_Lean_ConstantInfo_lparams(lean_object*); lean_object* l_Lean_Meta_casesOnSuffix___closed__1; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3; extern lean_object* l_Option_HasRepr___rarg___closed__3; lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__11; extern lean_object* l_Lean_Expr_FindImpl_initCache; @@ -223,42 +223,43 @@ extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed_ extern lean_object* l_PersistentArray_Stats_toString___closed__4; lean_object* l_Lean_Meta_getLocalDecl(lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); -lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(lean_object*, size_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___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* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Bool_HasRepr___closed__2; +lean_object* l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1; lean_object* l_Lean_registerParametricAttribute___at_Lean_Meta_mkRecursorAttr___spec__1___lambda__1___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_6__getParamsPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_firstIndexPos___boxed(lean_object*); +lean_object* l_Array_getIdx_x3f___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_3__checkMotive(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__3; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos(lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_7__getIndicesPos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__12; lean_object* lean_io_ref_reset(lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Lean_registerParametricAttribute___at_Lean_Meta_mkRecursorAttr___spec__1___closed__1; lean_object* l_Lean_registerParametricAttribute___at_Lean_Meta_mkRecursorAttr___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1; +lean_object* l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; lean_object* l_Lean_Meta_mkCasesOnFor(lean_object*); lean_object* l_Lean_Meta_RecursorInfo_motivePos(lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1; uint8_t l_Lean_Expr_isFVar(lean_object*); -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_3__checkMotive___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkRecursorAttr___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__4___closed__1; lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__4___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__2; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_getIdx_x3f___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1___boxed(lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_registerParametricAttribute___spec__9___rarg___closed__1; lean_object* l_Lean_Meta_getConstInfo(lean_object*, lean_object*, lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_Meta_mkRecursorAttr___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited; uint8_t l_Lean_TagDeclarationExtension_isTagged(lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); @@ -266,42 +267,41 @@ lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__16; lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__4(uint8_t, lean_object*); lean_object* l_Lean_Meta_Exception_toStr(lean_object*); lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_initializing(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; -lean_object* l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___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* l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4; +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__10; -lean_object* l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParametricAttribute_getParam___at_Lean_Meta_getMajorPos_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2; lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Nat_Inhabited; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_6__getParamsPos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Meta_RecursorInfo_HasToString___spec__2___closed__1; +lean_object* l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Meta_mkRecursorAttr___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLevelParam(lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___boxed(lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1; +lean_object* l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_level_eq(lean_object*, lean_object*); +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__15; -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_HasToString___closed__3; -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1; lean_object* l_Lean_Meta_mkRecursorAttr___closed__2; -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1___boxed(lean_object**); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_mkRecursorAttr___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_recOnSuffix___closed__1; lean_object* l_Lean_registerParametricAttribute___at_Lean_Meta_mkRecursorAttr___spec__1___lambda__1(lean_object*); +lean_object* l___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkRecursorAttr___closed__1; lean_object* l_Lean_Meta_forallTelescopeReducing___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkRecursorAttr___lambda__1(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isSort(lean_object*); lean_object* l_Lean_Meta_RecursorInfo_numIndices___boxed(lean_object*); @@ -1346,7 +1346,7 @@ lean_dec(x_1); return x_2; } } -lean_object* l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1366,7 +1366,7 @@ x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); x_6 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_6, 0, x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(x_5); +x_7 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -1381,7 +1381,7 @@ lean_inc(x_8); lean_dec(x_1); x_10 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_10, 0, x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(x_9); +x_11 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -1390,7 +1390,7 @@ return x_12; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1410,7 +1410,7 @@ x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); x_6 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_6, 0, x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(x_5); +x_7 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -1425,7 +1425,7 @@ lean_inc(x_8); lean_dec(x_1); x_10 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_10, 0, x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(x_9); +x_11 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -1434,7 +1434,7 @@ return x_12; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -1454,7 +1454,7 @@ x_5 = lean_ctor_get(x_2, 0); x_6 = lean_ctor_get(x_2, 1); x_7 = lean_nat_add(x_1, x_5); lean_dec(x_5); -x_8 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_1, x_6); +x_8 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_1, x_6); lean_ctor_set(x_2, 1, x_8); lean_ctor_set(x_2, 0, x_7); return x_2; @@ -1469,7 +1469,7 @@ lean_inc(x_9); lean_dec(x_2); x_11 = lean_nat_add(x_1, x_9); lean_dec(x_9); -x_12 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_1, x_10); +x_12 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_1, x_10); x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -1478,7 +1478,7 @@ return x_13; } } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1() { _start: { lean_object* x_1; @@ -1486,17 +1486,17 @@ x_1 = lean_mk_string("ill-formed builtin recursor"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1; +x_1 = l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1; x_2 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(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; @@ -1530,7 +1530,7 @@ x_14 = l_List_lengthAux___main___rarg(x_12, x_13); lean_dec(x_12); lean_inc(x_14); x_15 = l_List_range(x_14); -x_16 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(x_15); +x_16 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(x_15); x_17 = lean_ctor_get(x_2, 0); lean_inc(x_17); x_18 = lean_ctor_get(x_17, 1); @@ -1551,12 +1551,12 @@ x_25 = lean_ctor_get(x_2, 2); lean_inc(x_25); lean_inc(x_25); x_26 = l_List_range(x_25); -x_27 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(x_26); +x_27 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(x_26); x_28 = lean_ctor_get(x_2, 3); lean_inc(x_28); lean_inc(x_28); x_29 = l_List_range(x_28); -x_30 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_25, x_29); +x_30 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_25, x_29); x_31 = lean_nat_add(x_28, x_25); lean_dec(x_25); lean_dec(x_28); @@ -1633,7 +1633,7 @@ x_48 = l_List_lengthAux___main___rarg(x_46, x_47); lean_dec(x_46); lean_inc(x_48); x_49 = l_List_range(x_48); -x_50 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(x_49); +x_50 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__1(x_49); x_51 = lean_ctor_get(x_2, 0); lean_inc(x_51); x_52 = lean_ctor_get(x_51, 1); @@ -1654,12 +1654,12 @@ x_59 = lean_ctor_get(x_2, 2); lean_inc(x_59); lean_inc(x_59); x_60 = l_List_range(x_59); -x_61 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(x_60); +x_61 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__2(x_60); x_62 = lean_ctor_get(x_2, 3); lean_inc(x_62); lean_inc(x_62); x_63 = l_List_range(x_62); -x_64 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_59, x_63); +x_64 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_59, x_63); x_65 = lean_nat_add(x_62, x_59); lean_dec(x_59); lean_dec(x_62); @@ -1735,7 +1735,7 @@ if (x_79 == 0) lean_object* x_80; lean_object* x_81; x_80 = lean_ctor_get(x_6, 0); lean_dec(x_80); -x_81 = l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2; +x_81 = l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2; lean_ctor_set_tag(x_6, 1); lean_ctor_set(x_6, 0, x_81); return x_6; @@ -1746,7 +1746,7 @@ lean_object* x_82; lean_object* x_83; lean_object* x_84; x_82 = lean_ctor_get(x_6, 1); lean_inc(x_82); lean_dec(x_6); -x_83 = l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2; +x_83 = l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -1781,25 +1781,25 @@ return x_88; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_map___main___at___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_1, x_2); +x_3 = l_List_map___main___at___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___spec__3(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___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___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1() { _start: { lean_object* x_1; @@ -1807,17 +1807,17 @@ x_1 = lean_mk_string("unexpected recursor information"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1; +x_1 = l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1; x_2 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -2017,7 +2017,7 @@ if (x_46 == 0) lean_object* x_47; lean_object* x_48; x_47 = lean_ctor_get(x_15, 0); lean_dec(x_47); -x_48 = l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2; +x_48 = l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2; lean_ctor_set_tag(x_15, 1); lean_ctor_set(x_15, 0, x_48); return x_15; @@ -2028,7 +2028,7 @@ lean_object* x_49; lean_object* x_50; lean_object* x_51; x_49 = lean_ctor_get(x_15, 1); lean_inc(x_49); lean_dec(x_15); -x_50 = l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2; +x_50 = l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); @@ -2084,16 +2084,16 @@ return x_70; } } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___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___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_3__checkMotive___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -2130,7 +2130,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1() { _start: { lean_object* x_1; @@ -2138,7 +2138,7 @@ x_1 = lean_mk_string("invalid user defined recursor '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__2() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__2() { _start: { lean_object* x_1; @@ -2146,7 +2146,7 @@ x_1 = lean_mk_string("', result type must be of the form (C t), "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__3() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__3() { _start: { lean_object* x_1; @@ -2154,7 +2154,7 @@ x_1 = lean_mk_string("where C is a bound variable, and t is a (possibly empty) s return x_1; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_RecursorInfo_3__checkMotive(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; @@ -2164,12 +2164,12 @@ if (x_6 == 0) lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_7 = l_Lean_Name_toString___closed__1; x_8 = l_Lean_Name_toStringWithSep___main(x_7, x_1); -x_9 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_9 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_10 = lean_string_append(x_9, x_8); lean_dec(x_8); -x_11 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__2; +x_11 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__2; x_12 = lean_string_append(x_10, x_11); -x_13 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__3; +x_13 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__3; x_14 = lean_string_append(x_12, x_13); x_15 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_15, 0, x_14); @@ -2183,7 +2183,7 @@ else lean_object* x_17; lean_object* x_18; uint8_t x_19; x_17 = lean_array_get_size(x_3); x_18 = lean_unsigned_to_nat(0u); -x_19 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___spec__1(x_3, x_3, x_17, x_18); +x_19 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_3__checkMotive___spec__1(x_3, x_3, x_17, x_18); lean_dec(x_17); if (x_19 == 0) { @@ -2200,12 +2200,12 @@ else lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; x_22 = l_Lean_Name_toString___closed__1; x_23 = l_Lean_Name_toStringWithSep___main(x_22, x_1); -x_24 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_24 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_25 = lean_string_append(x_24, x_23); lean_dec(x_23); -x_26 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__2; +x_26 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__2; x_27 = lean_string_append(x_25, x_26); -x_28 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__3; +x_28 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__3; x_29 = lean_string_append(x_27, x_28); x_30 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_30, 0, x_29); @@ -2217,11 +2217,11 @@ return x_31; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_3__checkMotive___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_3__checkMotive___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -2229,18 +2229,18 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_RecursorInfo_3__checkMotive___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2273,35 +2273,35 @@ return x_3; } } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_RecursorInfo_4__getNumParams___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_RecursorInfo_4__getNumParams(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_RecursorInfo_4__getNumParams___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_RecursorInfo_4__getNumParams(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2340,16 +2340,16 @@ return x_12; } } } -lean_object* l_Array_getIdx_x3f___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_getIdx_x3f___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(x_2, x_1, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(x_2, x_1, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1() { _start: { lean_object* x_1; @@ -2357,7 +2357,7 @@ x_1 = lean_mk_string("ill-formed recursor '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2() { _start: { lean_object* x_1; @@ -2365,7 +2365,7 @@ x_1 = lean_mk_string("invalid user defined recursor, '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3() { _start: { lean_object* x_1; @@ -2373,7 +2373,7 @@ x_1 = lean_mk_string("' does not support dependent elimination, "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4() { _start: { lean_object* x_1; @@ -2381,7 +2381,7 @@ x_1 = lean_mk_string("and position of the major premise was not specified "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5() { _start: { lean_object* x_1; @@ -2389,7 +2389,7 @@ x_1 = lean_mk_string("(solution: set attribute '[recursor ]', where i return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6() { _start: { lean_object* x_1; @@ -2397,7 +2397,7 @@ x_1 = lean_mk_string("invalid major premise position for user defined recursor, return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7() { _start: { lean_object* x_1; @@ -2405,7 +2405,7 @@ x_1 = lean_mk_string(" arguments"); return x_1; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { if (lean_obj_tag(x_2) == 0) @@ -2415,16 +2415,16 @@ x_8 = l_Array_isEmpty___rarg(x_5); if (x_8 == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = l_Array_back___at___private_Init_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(x_5); +x_9 = l_Array_back___at___private_Lean_Meta_ExprDefEq_14__processAssignmentFOApproxAux___spec__1(x_5); x_10 = lean_unsigned_to_nat(0u); -x_11 = l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(x_9, x_3, x_10); +x_11 = l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(x_9, x_3, x_10); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_dec(x_9); x_12 = l_Lean_Name_toString___closed__1; x_13 = l_Lean_Name_toStringWithSep___main(x_12, x_1); -x_14 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1; +x_14 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1; x_15 = lean_string_append(x_14, x_13); lean_dec(x_13); x_16 = l_Char_HasRepr___closed__1; @@ -2462,14 +2462,14 @@ else lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; x_26 = l_Lean_Name_toString___closed__1; x_27 = l_Lean_Name_toStringWithSep___main(x_26, x_1); -x_28 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2; +x_28 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2; x_29 = lean_string_append(x_28, x_27); lean_dec(x_27); -x_30 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3; +x_30 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3; x_31 = lean_string_append(x_29, x_30); -x_32 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4; +x_32 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4; x_33 = lean_string_append(x_31, x_32); -x_34 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5; +x_34 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5; x_35 = lean_string_append(x_33, x_34); x_36 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_36, 0, x_35); @@ -2490,10 +2490,10 @@ if (x_40 == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; x_41 = l_Nat_repr(x_39); -x_42 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6; +x_42 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6; x_43 = lean_string_append(x_42, x_41); lean_dec(x_41); -x_44 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7; +x_44 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7; x_45 = lean_string_append(x_43, x_44); x_46 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_46, 0, x_45); @@ -2524,31 +2524,31 @@ return x_53; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(x_1, x_2, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__2(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Array_getIdx_x3f___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_getIdx_x3f___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Array_getIdx_x3f___at___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1(x_1, x_2); +x_3 = l_Array_getIdx_x3f___at___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(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); @@ -2557,7 +2557,7 @@ lean_dec(x_2); return x_8; } } -lean_object* l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -2662,7 +2662,7 @@ return x_27; } } } -lean_object* _init_l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1() { +lean_object* _init_l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1() { _start: { lean_object* x_1; @@ -2670,7 +2670,7 @@ x_1 = lean_mk_string("' , type of the major premise does not contain the recurso return x_1; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; uint8_t x_10; @@ -2690,7 +2690,7 @@ x_16 = lean_array_get(x_15, x_2, x_14); lean_dec(x_14); lean_inc(x_7); lean_inc(x_16); -x_17 = l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1(x_16, x_3, x_9, x_7, x_8); +x_17 = l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1(x_16, x_3, x_9, x_7, x_8); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; @@ -2726,10 +2726,10 @@ lean_dec(x_7); lean_dec(x_6); x_27 = l_Lean_Name_toString___closed__1; x_28 = l_Lean_Name_toStringWithSep___main(x_27, x_1); -x_29 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_29 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_30 = lean_string_append(x_29, x_28); lean_dec(x_28); -x_31 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1; +x_31 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1; x_32 = lean_string_append(x_30, x_31); x_33 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_33, 0, x_32); @@ -2767,10 +2767,10 @@ lean_dec(x_7); lean_dec(x_6); x_40 = l_Lean_Name_toString___closed__1; x_41 = l_Lean_Name_toStringWithSep___main(x_40, x_1); -x_42 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_42 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_43 = lean_string_append(x_42, x_41); lean_dec(x_41); -x_44 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1; +x_44 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1; x_45 = lean_string_append(x_43, x_44); x_46 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_46, 0, x_45); @@ -2872,13 +2872,13 @@ return x_61; } } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_RecursorInfo_6__getParamsPos(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_empty___closed__1; lean_inc(x_3); -x_8 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2(x_1, x_2, x_4, x_3, x_3, x_7, x_5, x_6); +x_8 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2(x_1, x_2, x_4, x_3, x_3, x_7, x_5, x_6); lean_dec(x_3); if (lean_obj_tag(x_8) == 0) { @@ -2933,37 +2933,37 @@ return x_19; } } } -lean_object* l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___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* l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___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* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_9; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_RecursorInfo_6__getParamsPos___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_RecursorInfo_6__getParamsPos(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_2); return x_7; } } -lean_object* l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -3068,7 +3068,7 @@ return x_27; } } } -lean_object* _init_l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1() { +lean_object* _init_l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1() { _start: { lean_object* x_1; @@ -3076,7 +3076,7 @@ x_1 = lean_mk_string("' , type of the major premise does not contain the recurso return x_1; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; @@ -3099,7 +3099,7 @@ x_19 = l_Lean_Expr_Inhabited; x_20 = lean_array_get(x_19, x_2, x_18); lean_dec(x_18); lean_inc(x_9); -x_21 = l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1(x_20, x_5, x_11, x_9, x_10); +x_21 = l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1(x_20, x_5, x_11, x_9, x_10); if (lean_obj_tag(x_21) == 0) { lean_object* x_22; @@ -3119,10 +3119,10 @@ x_24 = lean_ctor_get(x_21, 0); lean_dec(x_24); x_25 = l_Lean_Name_toString___closed__1; x_26 = l_Lean_Name_toStringWithSep___main(x_25, x_1); -x_27 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_27 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_28 = lean_string_append(x_27, x_26); lean_dec(x_26); -x_29 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1; +x_29 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1; x_30 = lean_string_append(x_28, x_29); x_31 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_31, 0, x_30); @@ -3138,10 +3138,10 @@ lean_inc(x_32); lean_dec(x_21); x_33 = l_Lean_Name_toString___closed__1; x_34 = l_Lean_Name_toStringWithSep___main(x_33, x_1); -x_35 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_35 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_36 = lean_string_append(x_35, x_34); lean_dec(x_34); -x_37 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1; +x_37 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1; x_38 = lean_string_append(x_36, x_37); x_39 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_39, 0, x_38); @@ -3207,13 +3207,13 @@ return x_49; } } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_RecursorInfo_7__getIndicesPos(lean_object* x_1, 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_empty___closed__1; lean_inc(x_4); -x_9 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2(x_1, x_2, x_3, x_4, x_5, x_4, x_4, x_8, x_6, x_7); +x_9 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2(x_1, x_2, x_3, x_4, x_5, x_4, x_4, x_8, x_6, x_7); lean_dec(x_4); if (lean_obj_tag(x_9) == 0) { @@ -3268,20 +3268,20 @@ return x_20; } } } -lean_object* l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___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* l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_findIdxMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_findIdxMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___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* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -3290,18 +3290,18 @@ lean_dec(x_2); return x_11; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_RecursorInfo_7__getIndicesPos___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_RecursorInfo_7__getIndicesPos(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1() { _start: { lean_object* x_1; @@ -3309,7 +3309,7 @@ x_1 = lean_mk_string("' , motive result sort must be Prop or (Sort u) where u is return x_1; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -3360,10 +3360,10 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj lean_dec(x_5); x_6 = l_Lean_Name_toString___closed__1; x_7 = l_Lean_Name_toStringWithSep___main(x_6, x_1); -x_8 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_8 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_9 = lean_string_append(x_8, x_7); lean_dec(x_7); -x_10 = l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1; +x_10 = l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1; x_11 = lean_string_append(x_9, x_10); x_12 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_12, 0, x_11); @@ -3374,17 +3374,17 @@ return x_13; } } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel___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___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); return x_5; } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3423,7 +3423,7 @@ return x_12; } } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1() { _start: { lean_object* x_1; @@ -3431,7 +3431,7 @@ x_1 = lean_mk_string("' , major premise type does not contain universe level par return x_1; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { if (lean_obj_tag(x_5) == 0) @@ -3458,7 +3458,7 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; x_13 = lean_unsigned_to_nat(0u); -x_14 = l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1(x_11, x_3, x_13); +x_14 = l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1(x_11, x_3, x_13); lean_dec(x_11); if (lean_obj_tag(x_14) == 0) { @@ -3467,10 +3467,10 @@ lean_dec(x_10); lean_dec(x_4); x_15 = l_Lean_Name_toString___closed__1; x_16 = l_Lean_Name_toStringWithSep___main(x_15, x_1); -x_17 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_17 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_18 = lean_string_append(x_17, x_16); lean_dec(x_16); -x_19 = l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1; +x_19 = l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1; x_20 = lean_string_append(x_18, x_19); x_21 = l_Lean_Name_toStringWithSep___main(x_15, x_9); x_22 = lean_string_append(x_20, x_21); @@ -3513,7 +3513,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos(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; @@ -3522,7 +3522,7 @@ x_8 = lean_mk_empty_array_with_capacity(x_7); lean_dec(x_7); x_9 = l_List_toArrayAux___main___rarg(x_4, x_8); x_10 = l_Array_empty___closed__1; -x_11 = l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2(x_1, x_3, x_9, x_10, x_2, x_5, x_6); +x_11 = l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2(x_1, x_3, x_9, x_10, x_2, x_5, x_6); lean_dec(x_9); if (lean_obj_tag(x_11) == 0) { @@ -3577,38 +3577,38 @@ return x_22; } } } -lean_object* l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findIdxAux___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1(x_1, x_2, x_3); +x_4 = l_Array_findIdxAux___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___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* l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_3); return x_7; } } -lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; size_t x_97; size_t x_98; lean_object* x_99; size_t x_100; uint8_t x_101; @@ -3653,7 +3653,7 @@ lean_inc(x_8); x_9 = lean_ctor_get(x_3, 1); lean_inc(x_9); lean_dec(x_3); -x_10 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_8, x_6); +x_10 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_8, x_6); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); if (lean_obj_tag(x_11) == 0) @@ -3729,7 +3729,7 @@ lean_inc(x_24); x_25 = lean_ctor_get(x_3, 2); lean_inc(x_25); lean_dec(x_3); -x_26 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_24, x_6); +x_26 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_24, x_6); x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); if (lean_obj_tag(x_27) == 0) @@ -3805,7 +3805,7 @@ lean_inc(x_40); x_41 = lean_ctor_get(x_3, 2); lean_inc(x_41); lean_dec(x_3); -x_42 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_40, x_6); +x_42 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_40, x_6); x_43 = lean_ctor_get(x_42, 0); lean_inc(x_43); if (lean_obj_tag(x_43) == 0) @@ -3883,7 +3883,7 @@ lean_inc(x_57); x_58 = lean_ctor_get(x_3, 3); lean_inc(x_58); lean_dec(x_3); -x_59 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_56, x_6); +x_59 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_56, x_6); x_60 = lean_ctor_get(x_59, 0); lean_inc(x_60); if (lean_obj_tag(x_60) == 0) @@ -3892,7 +3892,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; x_61 = lean_ctor_get(x_59, 1); lean_inc(x_61); lean_dec(x_59); -x_62 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_57, x_61); +x_62 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_2, x_57, x_61); x_63 = lean_ctor_get(x_62, 0); lean_inc(x_63); if (lean_obj_tag(x_63) == 0) @@ -4072,7 +4072,7 @@ return x_95; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -4106,7 +4106,7 @@ x_15 = lean_ctor_get(x_13, 0); x_16 = lean_ctor_get(x_13, 1); x_17 = 8192; x_18 = l_Lean_Expr_FindImpl_initCache; -x_19 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_17, x_15, x_18); +x_19 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_17, x_15, x_18); x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); lean_dec(x_19); @@ -4143,7 +4143,7 @@ lean_inc(x_26); lean_dec(x_13); x_28 = 8192; x_29 = l_Lean_Expr_FindImpl_initCache; -x_30 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_28, x_26, x_29); +x_30 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_28, x_26, x_29); x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); lean_dec(x_30); @@ -4199,7 +4199,7 @@ return x_41; } } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { if (lean_obj_tag(x_5) == 5) @@ -4233,7 +4233,7 @@ if (x_3 == 0) lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_array_get_size(x_4); x_20 = lean_unsigned_to_nat(0u); -x_21 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2(x_1, x_4, x_4, x_19, x_20, x_8, x_9); +x_21 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2(x_1, x_4, x_4, x_19, x_20, x_8, x_9); lean_dec(x_19); if (lean_obj_tag(x_21) == 0) { @@ -4306,7 +4306,7 @@ return x_35; } } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _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; @@ -4318,11 +4318,11 @@ x_11 = lean_mk_array(x_9, x_10); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_sub(x_9, x_12); lean_dec(x_9); -x_14 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3(x_1, x_2, x_3, x_4, x_5, x_11, x_13, x_6, x_7); +x_14 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3(x_1, x_2, x_3, x_4, x_5, x_11, x_13, x_6, x_7); return x_14; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; @@ -4401,7 +4401,7 @@ x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec(x_22); lean_inc(x_5); -x_25 = lean_alloc_closure((void*)(l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1___boxed), 7, 3); +x_25 = lean_alloc_closure((void*)(l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1___boxed), 7, 3); lean_closure_set(x_25, 0, x_5); lean_closure_set(x_25, 1, x_18); lean_closure_set(x_25, 2, x_19); @@ -4488,7 +4488,7 @@ return x_48; } } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; @@ -4501,14 +4501,14 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = lean_array_get_size(x_1); -x_9 = l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1; +x_9 = l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1; lean_inc(x_8); -x_10 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4(x_1, x_2, x_3, x_4, x_5, x_8, x_8, x_9, x_6, x_7); +x_10 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4(x_1, x_2, x_3, x_4, x_5, x_8, x_8, x_9, x_6, x_7); lean_dec(x_8); if (lean_obj_tag(x_10) == 0) { @@ -4604,22 +4604,22 @@ return x_31; } } } -lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { size_t x_5; lean_object* x_6; x_5 = lean_unbox_usize(x_2); lean_dec(x_2); -x_6 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_5, x_3, x_4); +x_6 = l_Lean_Expr_FindImpl_findM_x3f___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__1(x_1, x_5, x_3, x_4); lean_dec(x_1); return x_6; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___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* l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -4627,35 +4627,35 @@ lean_dec(x_1); return x_8; } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___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* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___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) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_3); lean_dec(x_3); -x_11 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3(x_1, x_2, x_10, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__3(x_1, x_2, x_10, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec(x_1); return x_11; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___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) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___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: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_3); lean_dec(x_3); -x_9 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1(x_1, x_2, x_8, x_4, x_5, x_6, x_7); +x_9 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___lambda__1(x_1, x_2, x_8, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_1); return x_9; } } -lean_object* l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); @@ -4664,11 +4664,11 @@ lean_dec(x_1); return x_11; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -4676,7 +4676,7 @@ lean_dec(x_1); return x_8; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1() { _start: { lean_object* x_1; @@ -4684,7 +4684,7 @@ x_1 = lean_mk_string("', motive must have a type of the form "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2() { _start: { lean_object* x_1; @@ -4692,7 +4692,7 @@ x_1 = lean_mk_string("(C : Pi (i : B A), I A i -> Type), where A is (possibly em return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3() { _start: { lean_object* x_1; @@ -4700,7 +4700,7 @@ x_1 = lean_mk_string("(i : B A) is a (possibly empty) telescope (aka indices), a return x_1; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType(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; @@ -4710,14 +4710,14 @@ if (x_7 == 0) lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; x_8 = l_Lean_Name_toString___closed__1; x_9 = l_Lean_Name_toStringWithSep___main(x_8, x_1); -x_10 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_10 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_11 = lean_string_append(x_10, x_9); lean_dec(x_9); -x_12 = l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1; +x_12 = l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1; x_13 = lean_string_append(x_11, x_12); -x_14 = l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2; +x_14 = l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2; x_15 = lean_string_append(x_13, x_14); -x_16 = l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3; +x_16 = l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3; x_17 = lean_string_append(x_15, x_16); x_18 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_18, 0, x_17); @@ -4739,14 +4739,14 @@ if (x_22 == 0) lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; x_23 = l_Lean_Name_toString___closed__1; x_24 = l_Lean_Name_toStringWithSep___main(x_23, x_1); -x_25 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_25 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_26 = lean_string_append(x_25, x_24); lean_dec(x_24); -x_27 = l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1; +x_27 = l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1; x_28 = lean_string_append(x_26, x_27); -x_29 = l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2; +x_29 = l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2; x_30 = lean_string_append(x_28, x_29); -x_31 = l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3; +x_31 = l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3; x_32 = lean_string_append(x_30, x_31); x_33 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_33, 0, x_32); @@ -4768,11 +4768,11 @@ return x_36; } } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -4780,12 +4780,12 @@ lean_dec(x_2); return x_7; } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___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, uint8_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___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, uint8_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_18; lean_inc(x_1); -x_18 = l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType(x_1, x_2, x_15, x_14, x_16, x_17); +x_18 = l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType(x_1, x_2, x_15, x_14, x_16, x_17); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; @@ -4793,7 +4793,7 @@ x_19 = lean_ctor_get(x_18, 1); lean_inc(x_19); lean_dec(x_18); lean_inc(x_1); -x_20 = l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel(x_1, x_15, x_16, x_19); +x_20 = l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel(x_1, x_15, x_16, x_19); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; @@ -4804,7 +4804,7 @@ lean_inc(x_22); lean_dec(x_20); x_23 = l_Lean_ConstantInfo_lparams(x_3); lean_inc(x_1); -x_24 = l___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos(x_1, x_23, x_21, x_4, x_16, x_22); +x_24 = l___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos(x_1, x_23, x_21, x_4, x_16, x_22); lean_dec(x_21); if (lean_obj_tag(x_24) == 0) { @@ -4814,7 +4814,7 @@ lean_inc(x_25); x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); lean_dec(x_24); -x_27 = l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive(x_5, x_6, x_7, x_8, x_9, x_16, x_26); +x_27 = l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive(x_5, x_6, x_7, x_8, x_9, x_16, x_26); if (lean_obj_tag(x_27) == 0) { uint8_t x_28; @@ -5000,7 +5000,7 @@ return x_58; } } } -lean_object* _init_l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1() { +lean_object* _init_l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1() { _start: { lean_object* x_1; @@ -5008,7 +5008,7 @@ x_1 = lean_mk_string("', type of the major premise must be of the form (I ...), return x_1; } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, 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* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { switch (lean_obj_tag(x_10)) { @@ -5024,7 +5024,7 @@ lean_dec(x_10); lean_inc(x_13); lean_inc(x_6); lean_inc(x_2); -x_17 = l___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos(x_2, x_3, x_6, x_11, x_13, x_14); +x_17 = l___private_Lean_Meta_RecursorInfo_6__getParamsPos(x_2, x_3, x_6, x_11, x_13, x_14); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -5036,7 +5036,7 @@ lean_dec(x_17); lean_inc(x_13); lean_inc(x_9); lean_inc(x_2); -x_20 = l___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos(x_2, x_3, x_7, x_9, x_11, x_13, x_19); +x_20 = l___private_Lean_Meta_RecursorInfo_7__getIndicesPos(x_2, x_3, x_7, x_9, x_11, x_13, x_19); lean_dec(x_11); if (lean_obj_tag(x_20) == 0) { @@ -5058,7 +5058,7 @@ x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); lean_dec(x_23); x_26 = lean_box(x_8); -x_27 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1___boxed), 17, 13); +x_27 = lean_alloc_closure((void*)(l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1___boxed), 17, 13); lean_closure_set(x_27, 0, x_2); lean_closure_set(x_27, 1, x_5); lean_closure_set(x_27, 2, x_1); @@ -5214,10 +5214,10 @@ lean_dec(x_3); lean_dec(x_1); x_47 = l_Lean_Name_toString___closed__1; x_48 = l_Lean_Name_toStringWithSep___main(x_47, x_2); -x_49 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_49 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_50 = lean_string_append(x_49, x_48); lean_dec(x_48); -x_51 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1; +x_51 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1; x_52 = lean_string_append(x_50, x_51); x_53 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_53, 0, x_52); @@ -5229,7 +5229,7 @@ return x_54; } } } -lean_object* _init_l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1() { +lean_object* _init_l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1() { _start: { lean_object* x_1; @@ -5237,7 +5237,7 @@ x_1 = lean_mk_string("', indices must occur before major premise"); return x_1; } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { switch (lean_obj_tag(x_5)) { @@ -5246,9 +5246,9 @@ case 0: lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_dec(x_7); x_10 = lean_unsigned_to_nat(0u); -x_11 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_10); +x_11 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_10); lean_inc(x_2); -x_12 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_12 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; @@ -5256,7 +5256,7 @@ x_13 = lean_ctor_get(x_12, 1); lean_inc(x_13); lean_dec(x_12); lean_inc(x_2); -x_14 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_13); +x_14 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_47; @@ -5327,7 +5327,7 @@ x_31 = lean_nat_sub(x_27, x_30); lean_dec(x_27); x_32 = lean_unbox(x_21); lean_dec(x_21); -x_33 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_11, x_20, x_32, x_22, x_25, x_29, x_31, x_8, x_26); +x_33 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_11, x_20, x_32, x_22, x_25, x_29, x_31, x_8, x_26); return x_33; } else @@ -5378,10 +5378,10 @@ lean_dec(x_4); lean_dec(x_1); x_38 = l_Lean_Name_toString___closed__1; x_39 = l_Lean_Name_toStringWithSep___main(x_38, x_2); -x_40 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_40 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_41 = lean_string_append(x_40, x_39); lean_dec(x_39); -x_42 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_42 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_43 = lean_string_append(x_41, x_42); x_44 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_44, 0, x_43); @@ -5462,9 +5462,9 @@ case 1: lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_dec(x_7); x_60 = lean_unsigned_to_nat(0u); -x_61 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_60); +x_61 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_60); lean_inc(x_2); -x_62 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_62 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_62) == 0) { lean_object* x_63; lean_object* x_64; @@ -5472,7 +5472,7 @@ x_63 = lean_ctor_get(x_62, 1); lean_inc(x_63); lean_dec(x_62); lean_inc(x_2); -x_64 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_63); +x_64 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_63); if (lean_obj_tag(x_64) == 0) { lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_97; @@ -5543,7 +5543,7 @@ x_81 = lean_nat_sub(x_77, x_80); lean_dec(x_77); x_82 = lean_unbox(x_71); lean_dec(x_71); -x_83 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_61, x_70, x_82, x_72, x_75, x_79, x_81, x_8, x_76); +x_83 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_61, x_70, x_82, x_72, x_75, x_79, x_81, x_8, x_76); return x_83; } else @@ -5594,10 +5594,10 @@ lean_dec(x_4); lean_dec(x_1); x_88 = l_Lean_Name_toString___closed__1; x_89 = l_Lean_Name_toStringWithSep___main(x_88, x_2); -x_90 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_90 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_91 = lean_string_append(x_90, x_89); lean_dec(x_89); -x_92 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_92 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_93 = lean_string_append(x_91, x_92); x_94 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_94, 0, x_93); @@ -5678,9 +5678,9 @@ case 2: lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_dec(x_7); x_110 = lean_unsigned_to_nat(0u); -x_111 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_110); +x_111 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_110); lean_inc(x_2); -x_112 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_112 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_112) == 0) { lean_object* x_113; lean_object* x_114; @@ -5688,7 +5688,7 @@ x_113 = lean_ctor_get(x_112, 1); lean_inc(x_113); lean_dec(x_112); lean_inc(x_2); -x_114 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_113); +x_114 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_113); if (lean_obj_tag(x_114) == 0) { lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; uint8_t x_147; @@ -5759,7 +5759,7 @@ x_131 = lean_nat_sub(x_127, x_130); lean_dec(x_127); x_132 = lean_unbox(x_121); lean_dec(x_121); -x_133 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_111, x_120, x_132, x_122, x_125, x_129, x_131, x_8, x_126); +x_133 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_111, x_120, x_132, x_122, x_125, x_129, x_131, x_8, x_126); return x_133; } else @@ -5810,10 +5810,10 @@ lean_dec(x_4); lean_dec(x_1); x_138 = l_Lean_Name_toString___closed__1; x_139 = l_Lean_Name_toStringWithSep___main(x_138, x_2); -x_140 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_140 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_141 = lean_string_append(x_140, x_139); lean_dec(x_139); -x_142 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_142 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_143 = lean_string_append(x_141, x_142); x_144 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_144, 0, x_143); @@ -5894,9 +5894,9 @@ case 3: lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_dec(x_7); x_160 = lean_unsigned_to_nat(0u); -x_161 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_160); +x_161 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_160); lean_inc(x_2); -x_162 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_162 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_162) == 0) { lean_object* x_163; lean_object* x_164; @@ -5904,7 +5904,7 @@ x_163 = lean_ctor_get(x_162, 1); lean_inc(x_163); lean_dec(x_162); lean_inc(x_2); -x_164 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_163); +x_164 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_163); if (lean_obj_tag(x_164) == 0) { lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_197; @@ -5975,7 +5975,7 @@ x_181 = lean_nat_sub(x_177, x_180); lean_dec(x_177); x_182 = lean_unbox(x_171); lean_dec(x_171); -x_183 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_161, x_170, x_182, x_172, x_175, x_179, x_181, x_8, x_176); +x_183 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_161, x_170, x_182, x_172, x_175, x_179, x_181, x_8, x_176); return x_183; } else @@ -6026,10 +6026,10 @@ lean_dec(x_4); lean_dec(x_1); x_188 = l_Lean_Name_toString___closed__1; x_189 = l_Lean_Name_toStringWithSep___main(x_188, x_2); -x_190 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_190 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_191 = lean_string_append(x_190, x_189); lean_dec(x_189); -x_192 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_192 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_193 = lean_string_append(x_191, x_192); x_194 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_194, 0, x_193); @@ -6110,9 +6110,9 @@ case 4: lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_dec(x_7); x_210 = lean_unsigned_to_nat(0u); -x_211 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_210); +x_211 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_210); lean_inc(x_2); -x_212 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_212 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_212) == 0) { lean_object* x_213; lean_object* x_214; @@ -6120,7 +6120,7 @@ x_213 = lean_ctor_get(x_212, 1); lean_inc(x_213); lean_dec(x_212); lean_inc(x_2); -x_214 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_213); +x_214 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_213); if (lean_obj_tag(x_214) == 0) { 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; uint8_t x_247; @@ -6191,7 +6191,7 @@ x_231 = lean_nat_sub(x_227, x_230); lean_dec(x_227); x_232 = lean_unbox(x_221); lean_dec(x_221); -x_233 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_211, x_220, x_232, x_222, x_225, x_229, x_231, x_8, x_226); +x_233 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_211, x_220, x_232, x_222, x_225, x_229, x_231, x_8, x_226); return x_233; } else @@ -6242,10 +6242,10 @@ lean_dec(x_4); lean_dec(x_1); x_238 = l_Lean_Name_toString___closed__1; x_239 = l_Lean_Name_toStringWithSep___main(x_238, x_2); -x_240 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_240 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_241 = lean_string_append(x_240, x_239); lean_dec(x_239); -x_242 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_242 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_243 = lean_string_append(x_241, x_242); x_244 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_244, 0, x_243); @@ -6343,9 +6343,9 @@ case 6: lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_dec(x_7); x_266 = lean_unsigned_to_nat(0u); -x_267 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_266); +x_267 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_266); lean_inc(x_2); -x_268 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_268 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_268) == 0) { lean_object* x_269; lean_object* x_270; @@ -6353,7 +6353,7 @@ x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); lean_dec(x_268); lean_inc(x_2); -x_270 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_269); +x_270 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_269); if (lean_obj_tag(x_270) == 0) { lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; uint8_t x_303; @@ -6424,7 +6424,7 @@ x_287 = lean_nat_sub(x_283, x_286); lean_dec(x_283); x_288 = lean_unbox(x_277); lean_dec(x_277); -x_289 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_267, x_276, x_288, x_278, x_281, x_285, x_287, x_8, x_282); +x_289 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_267, x_276, x_288, x_278, x_281, x_285, x_287, x_8, x_282); return x_289; } else @@ -6475,10 +6475,10 @@ lean_dec(x_4); lean_dec(x_1); x_294 = l_Lean_Name_toString___closed__1; x_295 = l_Lean_Name_toStringWithSep___main(x_294, x_2); -x_296 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_296 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_297 = lean_string_append(x_296, x_295); lean_dec(x_295); -x_298 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_298 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_299 = lean_string_append(x_297, x_298); x_300 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_300, 0, x_299); @@ -6559,9 +6559,9 @@ case 7: lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_dec(x_7); x_316 = lean_unsigned_to_nat(0u); -x_317 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_316); +x_317 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_316); lean_inc(x_2); -x_318 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_318 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_318) == 0) { lean_object* x_319; lean_object* x_320; @@ -6569,7 +6569,7 @@ x_319 = lean_ctor_get(x_318, 1); lean_inc(x_319); lean_dec(x_318); lean_inc(x_2); -x_320 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_319); +x_320 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_319); if (lean_obj_tag(x_320) == 0) { 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; uint8_t x_353; @@ -6640,7 +6640,7 @@ x_337 = lean_nat_sub(x_333, x_336); lean_dec(x_333); x_338 = lean_unbox(x_327); lean_dec(x_327); -x_339 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_317, x_326, x_338, x_328, x_331, x_335, x_337, x_8, x_332); +x_339 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_317, x_326, x_338, x_328, x_331, x_335, x_337, x_8, x_332); return x_339; } else @@ -6691,10 +6691,10 @@ lean_dec(x_4); lean_dec(x_1); x_344 = l_Lean_Name_toString___closed__1; x_345 = l_Lean_Name_toStringWithSep___main(x_344, x_2); -x_346 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_346 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_347 = lean_string_append(x_346, x_345); lean_dec(x_345); -x_348 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_348 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_349 = lean_string_append(x_347, x_348); x_350 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_350, 0, x_349); @@ -6775,9 +6775,9 @@ case 8: lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_dec(x_7); x_366 = lean_unsigned_to_nat(0u); -x_367 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_366); +x_367 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_366); lean_inc(x_2); -x_368 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_368 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_368) == 0) { lean_object* x_369; lean_object* x_370; @@ -6785,7 +6785,7 @@ x_369 = lean_ctor_get(x_368, 1); lean_inc(x_369); lean_dec(x_368); lean_inc(x_2); -x_370 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_369); +x_370 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_369); if (lean_obj_tag(x_370) == 0) { 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; uint8_t x_403; @@ -6856,7 +6856,7 @@ x_387 = lean_nat_sub(x_383, x_386); lean_dec(x_383); x_388 = lean_unbox(x_377); lean_dec(x_377); -x_389 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_367, x_376, x_388, x_378, x_381, x_385, x_387, x_8, x_382); +x_389 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_367, x_376, x_388, x_378, x_381, x_385, x_387, x_8, x_382); return x_389; } else @@ -6907,10 +6907,10 @@ lean_dec(x_4); lean_dec(x_1); x_394 = l_Lean_Name_toString___closed__1; x_395 = l_Lean_Name_toStringWithSep___main(x_394, x_2); -x_396 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_396 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_397 = lean_string_append(x_396, x_395); lean_dec(x_395); -x_398 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_398 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_399 = lean_string_append(x_397, x_398); x_400 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_400, 0, x_399); @@ -6991,9 +6991,9 @@ case 9: lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_dec(x_7); x_416 = lean_unsigned_to_nat(0u); -x_417 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_416); +x_417 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_416); lean_inc(x_2); -x_418 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_418 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_418) == 0) { lean_object* x_419; lean_object* x_420; @@ -7001,7 +7001,7 @@ x_419 = lean_ctor_get(x_418, 1); lean_inc(x_419); lean_dec(x_418); lean_inc(x_2); -x_420 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_419); +x_420 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_419); if (lean_obj_tag(x_420) == 0) { 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; uint8_t x_453; @@ -7072,7 +7072,7 @@ x_437 = lean_nat_sub(x_433, x_436); lean_dec(x_433); x_438 = lean_unbox(x_427); lean_dec(x_427); -x_439 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_417, x_426, x_438, x_428, x_431, x_435, x_437, x_8, x_432); +x_439 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_417, x_426, x_438, x_428, x_431, x_435, x_437, x_8, x_432); return x_439; } else @@ -7123,10 +7123,10 @@ lean_dec(x_4); lean_dec(x_1); x_444 = l_Lean_Name_toString___closed__1; x_445 = l_Lean_Name_toStringWithSep___main(x_444, x_2); -x_446 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_446 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_447 = lean_string_append(x_446, x_445); lean_dec(x_445); -x_448 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_448 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_449 = lean_string_append(x_447, x_448); x_450 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_450, 0, x_449); @@ -7207,9 +7207,9 @@ case 10: lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_dec(x_7); x_466 = lean_unsigned_to_nat(0u); -x_467 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_466); +x_467 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_466); lean_inc(x_2); -x_468 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_468 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_468) == 0) { lean_object* x_469; lean_object* x_470; @@ -7217,7 +7217,7 @@ x_469 = lean_ctor_get(x_468, 1); lean_inc(x_469); lean_dec(x_468); lean_inc(x_2); -x_470 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_469); +x_470 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_469); if (lean_obj_tag(x_470) == 0) { 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; uint8_t x_503; @@ -7288,7 +7288,7 @@ x_487 = lean_nat_sub(x_483, x_486); lean_dec(x_483); x_488 = lean_unbox(x_477); lean_dec(x_477); -x_489 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_467, x_476, x_488, x_478, x_481, x_485, x_487, x_8, x_482); +x_489 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_467, x_476, x_488, x_478, x_481, x_485, x_487, x_8, x_482); return x_489; } else @@ -7339,10 +7339,10 @@ lean_dec(x_4); lean_dec(x_1); x_494 = l_Lean_Name_toString___closed__1; x_495 = l_Lean_Name_toStringWithSep___main(x_494, x_2); -x_496 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_496 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_497 = lean_string_append(x_496, x_495); lean_dec(x_495); -x_498 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_498 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_499 = lean_string_append(x_497, x_498); x_500 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_500, 0, x_499); @@ -7423,9 +7423,9 @@ case 11: lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_dec(x_7); x_516 = lean_unsigned_to_nat(0u); -x_517 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_516); +x_517 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_516); lean_inc(x_2); -x_518 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_518 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_518) == 0) { lean_object* x_519; lean_object* x_520; @@ -7433,7 +7433,7 @@ x_519 = lean_ctor_get(x_518, 1); lean_inc(x_519); lean_dec(x_518); lean_inc(x_2); -x_520 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_519); +x_520 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_519); if (lean_obj_tag(x_520) == 0) { lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; uint8_t x_553; @@ -7504,7 +7504,7 @@ x_537 = lean_nat_sub(x_533, x_536); lean_dec(x_533); x_538 = lean_unbox(x_527); lean_dec(x_527); -x_539 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_517, x_526, x_538, x_528, x_531, x_535, x_537, x_8, x_532); +x_539 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_517, x_526, x_538, x_528, x_531, x_535, x_537, x_8, x_532); return x_539; } else @@ -7555,10 +7555,10 @@ lean_dec(x_4); lean_dec(x_1); x_544 = l_Lean_Name_toString___closed__1; x_545 = l_Lean_Name_toStringWithSep___main(x_544, x_2); -x_546 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_546 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_547 = lean_string_append(x_546, x_545); lean_dec(x_545); -x_548 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_548 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_549 = lean_string_append(x_547, x_548); x_550 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_550, 0, x_549); @@ -7639,9 +7639,9 @@ default: lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_dec(x_7); x_566 = lean_unsigned_to_nat(0u); -x_567 = l___private_Init_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_566); +x_567 = l___private_Lean_Meta_RecursorInfo_4__getNumParams___main(x_4, x_5, x_566); lean_inc(x_2); -x_568 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); +x_568 = l___private_Lean_Meta_RecursorInfo_3__checkMotive(x_2, x_5, x_6, x_8, x_9); if (lean_obj_tag(x_568) == 0) { lean_object* x_569; lean_object* x_570; @@ -7649,7 +7649,7 @@ x_569 = lean_ctor_get(x_568, 1); lean_inc(x_569); lean_dec(x_568); lean_inc(x_2); -x_570 = l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_569); +x_570 = l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim(x_2, x_3, x_4, x_5, x_6, x_8, x_569); if (lean_obj_tag(x_570) == 0) { lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; uint8_t x_603; @@ -7720,7 +7720,7 @@ x_587 = lean_nat_sub(x_583, x_586); lean_dec(x_583); x_588 = lean_unbox(x_577); lean_dec(x_577); -x_589 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_567, x_576, x_588, x_578, x_581, x_585, x_587, x_8, x_582); +x_589 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_4, x_5, x_6, x_567, x_576, x_588, x_578, x_581, x_585, x_587, x_8, x_582); return x_589; } else @@ -7771,10 +7771,10 @@ lean_dec(x_4); lean_dec(x_1); x_594 = l_Lean_Name_toString___closed__1; x_595 = l_Lean_Name_toStringWithSep___main(x_594, x_2); -x_596 = l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; +x_596 = l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1; x_597 = lean_string_append(x_596, x_595); lean_dec(x_595); -x_598 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; +x_598 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1; x_599 = lean_string_append(x_597, x_598); x_600 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_600, 0, x_599); @@ -7853,7 +7853,7 @@ return x_615; } } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___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* l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___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; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -7865,17 +7865,17 @@ x_11 = lean_mk_array(x_9, x_10); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_sub(x_9, x_12); lean_dec(x_9); -x_14 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2(x_1, x_2, x_3, x_4, x_5, x_11, x_13, x_6, x_7); +x_14 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2(x_1, x_2, x_3, x_4, x_5, x_11, x_13, x_6, x_7); return x_14; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(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_ConstantInfo_name(x_1); lean_inc(x_5); -x_6 = l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f(x_5, x_2, x_3, x_4); +x_6 = l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f(x_5, x_2, x_3, x_4); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -7885,7 +7885,7 @@ x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); x_9 = l_Lean_ConstantInfo_type(x_1); -x_10 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___lambda__1___boxed), 7, 3); +x_10 = lean_alloc_closure((void*)(l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___lambda__1___boxed), 7, 3); lean_closure_set(x_10, 0, x_1); lean_closure_set(x_10, 1, x_5); lean_closure_set(x_10, 2, x_7); @@ -7919,7 +7919,7 @@ return x_15; } } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1___boxed(lean_object** _args) { +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -7942,7 +7942,7 @@ _start: uint8_t x_18; lean_object* x_19; x_18 = lean_unbox(x_11); lean_dec(x_11); -x_19 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_18, x_12, x_13, x_14, x_15, x_16, x_17); +x_19 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_18, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_7); @@ -7953,35 +7953,35 @@ lean_dec(x_2); return x_19; } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; lean_object* x_16; x_15 = lean_unbox(x_8); lean_dec(x_8); -x_16 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_15, x_9, x_10, x_11, x_12, x_13, x_14); +x_16 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_15, x_9, x_10, x_11, x_12, x_13, x_14); return x_16; } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___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* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_3); return x_10; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___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) { +lean_object* l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___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___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); return x_8; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1() { _start: { lean_object* x_1; @@ -7989,17 +7989,17 @@ x_1 = lean_mk_string("unexpected kind of argument"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1; +x_1 = l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3() { _start: { lean_object* x_1; @@ -8007,17 +8007,17 @@ x_1 = lean_mk_string("major premise position must be greater than 0"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4() { +lean_object* _init_l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3; +x_1 = l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos(lean_object* x_1) { +lean_object* l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -8039,7 +8039,7 @@ lean_dec(x_7); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; -x_10 = l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2; +x_10 = l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2; return x_10; } else @@ -8063,7 +8063,7 @@ else { lean_object* x_16; lean_dec(x_11); -x_16 = l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4; +x_16 = l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4; return x_16; } } @@ -8071,28 +8071,28 @@ return x_16; else { lean_object* x_17; -x_17 = l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2; +x_17 = l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2; return x_17; } } else { lean_object* x_18; -x_18 = l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2; +x_18 = l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2; return x_18; } } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos(x_1); +x_2 = l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_RecursorInfo_14__mkRecursorInfoCore(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_RecursorInfo_14__mkRecursorInfoCore(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -8113,7 +8113,7 @@ lean_dec(x_5); x_8 = lean_ctor_get(x_6, 0); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(x_1, x_8, x_3, x_7); +x_9 = l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(x_1, x_8, x_3, x_7); lean_dec(x_3); return x_9; } @@ -8124,7 +8124,7 @@ lean_dec(x_1); x_10 = lean_ctor_get(x_5, 1); lean_inc(x_10); lean_dec(x_5); -x_11 = l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(x_6, x_2, x_3, x_10); +x_11 = l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(x_6, x_2, x_3, x_10); return x_11; } } @@ -8490,7 +8490,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -8678,7 +8678,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Meta_mkRecurs _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -9290,7 +9290,7 @@ lean_object* l_Lean_Meta_mkRecursorAttr___lambda__1(lean_object* x_1, lean_objec _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos(x_3); +x_4 = l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos(x_3); return x_4; } } @@ -9300,7 +9300,7 @@ _start: lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_4, 0, x_3); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_RecursorInfo_14__mkRecursorInfoCore), 4, 2); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Meta_RecursorInfo_14__mkRecursorInfoCore), 4, 2); lean_closure_set(x_5, 0, x_2); lean_closure_set(x_5, 1, x_4); x_6 = lean_unsigned_to_nat(10000u); @@ -9745,7 +9745,7 @@ lean_dec(x_2); x_14 = lean_ctor_get(x_6, 0); lean_inc(x_14); lean_dec(x_6); -x_15 = l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(x_1, x_14, x_3, x_7); +x_15 = l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec(x_1, x_14, x_3, x_7); lean_dec(x_3); return x_15; } @@ -9762,7 +9762,7 @@ else { lean_object* x_17; lean_dec(x_1); -x_17 = l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(x_6, x_2, x_3, x_7); +x_17 = l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(x_6, x_2, x_3, x_7); return x_17; } } @@ -9775,7 +9775,7 @@ lean_inc(x_9); x_10 = l_Lean_Meta_recursorAttribute; x_11 = l_Lean_ParametricAttribute_getParam___at_Lean_Meta_getMajorPos_x3f___spec__1(x_10, x_9, x_1); lean_dec(x_9); -x_12 = l___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(x_6, x_11, x_3, x_7); +x_12 = l___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux(x_6, x_11, x_3, x_7); return x_12; } } @@ -9807,28 +9807,28 @@ return x_21; } } lean_object* initialize_Init_Data_Nat_Control(lean_object*); -lean_object* initialize_Init_Lean_AuxRecursor(lean_object*); -lean_object* initialize_Init_Lean_Util_FindExpr(lean_object*); -lean_object* initialize_Init_Lean_Meta_ExprDefEq(lean_object*); -lean_object* initialize_Init_Lean_Meta_Message(lean_object*); +lean_object* initialize_Lean_AuxRecursor(lean_object*); +lean_object* initialize_Lean_Util_FindExpr(lean_object*); +lean_object* initialize_Lean_Meta_ExprDefEq(lean_object*); +lean_object* initialize_Lean_Meta_Message(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_RecursorInfo(lean_object* w) { +lean_object* initialize_Lean_Meta_RecursorInfo(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Data_Nat_Control(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_AuxRecursor(lean_io_mk_world()); +res = initialize_Lean_AuxRecursor(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_FindExpr(lean_io_mk_world()); +res = initialize_Lean_Util_FindExpr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_ExprDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_ExprDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Message(lean_io_mk_world()); +res = initialize_Lean_Meta_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_casesOnSuffix___closed__1 = _init_l_Lean_Meta_casesOnSuffix___closed__1(); @@ -9885,62 +9885,62 @@ l_Lean_Meta_RecursorInfo_HasToString___closed__15 = _init_l_Lean_Meta_RecursorIn lean_mark_persistent(l_Lean_Meta_RecursorInfo_HasToString___closed__15); l_Lean_Meta_RecursorInfo_HasToString___closed__16 = _init_l_Lean_Meta_RecursorInfo_HasToString___closed__16(); lean_mark_persistent(l_Lean_Meta_RecursorInfo_HasToString___closed__16); -l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1 = _init_l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2 = _init_l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2); -l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1 = _init_l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2 = _init_l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2); -l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1 = _init_l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__2 = _init_l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__2); -l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__3 = _init_l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_3__checkMotive___closed__3); -l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1 = _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2 = _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2); -l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3 = _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3); -l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4 = _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4); -l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5 = _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5); -l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6 = _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6); -l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7 = _init_l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7); -l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1 = _init_l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1(); -lean_mark_persistent(l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1); -l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1 = _init_l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1(); -lean_mark_persistent(l_Nat_foldMAux___main___at___private_Init_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1 = _init_l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1); -l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1 = _init_l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1 = _init_l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1 = _init_l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2 = _init_l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2); -l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3 = _init_l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3); -l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1 = _init_l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1(); -lean_mark_persistent(l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1); -l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1 = _init_l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1(); -lean_mark_persistent(l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1 = _init_l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1); -l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2 = _init_l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2); -l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3 = _init_l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3); -l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4 = _init_l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4); +l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1 = _init_l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__1); +l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2 = _init_l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_1__mkRecursorInfoForKernelRec___closed__2); +l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1 = _init_l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__1); +l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2 = _init_l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_2__getMajorPosIfAuxRecursor_x3f___closed__2); +l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1 = _init_l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__1); +l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__2 = _init_l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__2); +l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__3 = _init_l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_3__checkMotive___closed__3); +l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1 = _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__1); +l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2 = _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__2); +l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3 = _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__3); +l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4 = _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__4); +l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5 = _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__5); +l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6 = _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__6); +l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7 = _init_l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_5__getMajorPosDepElim___closed__7); +l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1 = _init_l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1(); +lean_mark_persistent(l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_6__getParamsPos___spec__2___closed__1); +l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1 = _init_l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1(); +lean_mark_persistent(l_Nat_foldMAux___main___at___private_Lean_Meta_RecursorInfo_7__getIndicesPos___spec__2___closed__1); +l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1 = _init_l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_8__getMotiveLevel___closed__1); +l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1 = _init_l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Meta_RecursorInfo_9__getUnivLevelPos___spec__2___closed__1); +l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1 = _init_l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1); +l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1 = _init_l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__1); +l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2 = _init_l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__2); +l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3 = _init_l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_11__checkMotiveResultType___closed__3); +l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1 = _init_l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1(); +lean_mark_persistent(l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__1___closed__1); +l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1 = _init_l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1(); +lean_mark_persistent(l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_RecursorInfo_12__mkRecursorInfoAux___spec__2___closed__1); +l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1 = _init_l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__1); +l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2 = _init_l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__2); +l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3 = _init_l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__3); +l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4 = _init_l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_RecursorInfo_13__syntaxToMajorPos___closed__4); l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Meta_mkRecursorAttr___spec__4___closed__1 = _init_l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Meta_mkRecursorAttr___spec__4___closed__1(); lean_mark_persistent(l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Meta_mkRecursorAttr___spec__4___closed__1); l_Lean_registerParametricAttribute___at_Lean_Meta_mkRecursorAttr___spec__1___closed__1 = _init_l_Lean_registerParametricAttribute___at_Lean_Meta_mkRecursorAttr___spec__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Reduce.c b/stage0/stdlib/Lean/Meta/Reduce.c similarity index 97% rename from stage0/stdlib/Init/Lean/Meta/Reduce.c rename to stage0/stdlib/Lean/Meta/Reduce.c index 2a9f244bae..da34a6183e 100644 --- a/stage0/stdlib/Init/Lean/Meta/Reduce.c +++ b/stage0/stdlib/Lean/Meta/Reduce.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Reduce -// Imports: Init.Lean.Meta.Basic Init.Lean.Meta.FunInfo +// Module: Lean.Meta.Reduce +// Imports: Lean.Meta.Basic Lean.Meta.FunInfo #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForall(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_foldMAux___main___at_Lean_Meta_reduceAux___main___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_Meta_reduce(lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*); @@ -34,7 +35,6 @@ lean_object* l_Lean_Meta_reduceAux___main___lambda__1___boxed(lean_object*, lean lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceAux___boxed(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* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceAux___main___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduce___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -556,7 +556,7 @@ x_19 = lean_mk_array(x_14, x_18); x_20 = lean_unsigned_to_nat(1u); x_21 = lean_nat_sub(x_14, x_20); lean_dec(x_14); -x_22 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_10, x_19, x_21); +x_22 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_19, x_21); x_23 = lean_array_get_size(x_22); lean_inc(x_23); x_24 = l_Nat_foldMAux___main___at_Lean_Meta_reduceAux___main___spec__1(x_1, x_2, x_3, x_16, x_23, x_23, x_22, x_5, x_17); @@ -838,17 +838,17 @@ x_10 = l_Lean_Meta_reduce(x_1, x_7, x_8, x_9, x_5, x_6); return x_10; } } -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); -lean_object* initialize_Init_Lean_Meta_FunInfo(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_FunInfo(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Reduce(lean_object* w) { +lean_object* initialize_Lean_Meta_Reduce(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_FunInfo(lean_io_mk_world()); +res = initialize_Lean_Meta_FunInfo(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Meta/SynthInstance.c b/stage0/stdlib/Lean/Meta/SynthInstance.c similarity index 97% rename from stage0/stdlib/Init/Lean/Meta/SynthInstance.c rename to stage0/stdlib/Lean/Meta/SynthInstance.c index 968794d78e..460d1327e5 100644 --- a/stage0/stdlib/Init/Lean/Meta/SynthInstance.c +++ b/stage0/stdlib/Lean/Meta/SynthInstance.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.SynthInstance -// Imports: Init.Lean.Meta.Basic Init.Lean.Meta.Instances Init.Lean.Meta.LevelDefEq Init.Lean.Meta.AbstractMVars Init.Lean.Meta.WHNF +// Module: Lean.Meta.SynthInstance +// Imports: Lean.Meta.Basic Lean.Meta.Instances Lean.Meta.LevelDefEq Lean.Meta.AbstractMVars Lean.Meta.WHNF #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,33 +15,32 @@ extern "C" { #endif lean_object* l_List_reverse___rarg(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_SynthInstance_getInstances___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_1__getSubgoalsAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_5__preprocessOutParam___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__51; lean_object* lean_expr_update_forall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___main___closed__3; +lean_object* l___private_Lean_Meta_SynthInstance_2__preprocess(lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Meta_SynthInstance_mkInferTCGoalsLRAttr___lambda__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_is_out_param(lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_addAnswer(lean_object*, lean_object*, lean_object*); lean_object* l_mkHashMap___at_Lean_Meta_SynthInstance_mkTableKey___spec__1(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_List_mapM___main___at_Lean_Meta_SynthInstance_getInstances___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getTop(lean_object*); lean_object* l_AssocList_contains___main___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__4___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_MkTableKey_normLevel(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_tryAnswer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Option_toLOption___rarg(lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__2___boxed(lean_object*, lean_object*); lean_object* l_AssocList_foldlM___main___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__7(lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1; uint8_t l_AssocList_contains___main___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__4(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Meta_synthInstance_x3f___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); lean_object* lean_expr_update_mdata(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_7__regTraceClasses(lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_generate___closed__5; uint8_t lean_name_eq(lean_object*, lean_object*); @@ -52,11 +51,12 @@ extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l_Lean_Meta_SynthInstance_addAnswer___closed__1; lean_object* l_Lean_Meta_SynthInstance_synth___main___closed__7; lean_object* l_Lean_Meta_SynthInstance_mkTableKey___closed__3; +lean_object* l___private_Lean_Meta_SynthInstance_7__regTraceClasses(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_Meta_SynthInstance_addAnswer___closed__2; lean_object* l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; +lean_object* l___private_Lean_Meta_SynthInstance_3__preprocessLevels___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_Meta_synthInstance_x3f___spec__1(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; lean_object* l_Lean_Meta_SynthInstance_SynthM_inhabited___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getResult(lean_object*); size_t l_USize_sub(size_t, size_t); @@ -68,11 +68,11 @@ lean_object* l_Lean_Meta_synthPendingImp(lean_object*, lean_object*, lean_object lean_object* l___private_Init_Util_1__mkPanicMessage(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); uint8_t l_Lean_Level_hasMVar(lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_5__preprocessOutParam(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_main___closed__3; lean_object* l_Lean_Meta_SynthInstance_getTraceState___boxed(lean_object*); lean_object* l_Lean_MessageData_arrayExpr_toMessageData___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_SynthM_inhabited(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(lean_object*); lean_object* l_Lean_Meta_SynthInstance_mkTableKey___closed__1; lean_object* l_mkHashMap___at_Lean_Meta_SynthInstance_mkTableKey___spec__2(lean_object*); lean_object* l_Lean_Meta_instantiateLevelMVars(lean_object*, lean_object*, lean_object*); @@ -92,16 +92,13 @@ lean_object* l_Lean_Meta_SynthInstance_withMCtx(lean_object*); lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_Meta_synthInstance_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; -lean_object* l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1; extern lean_object* l_Lean_Expr_getAppArgs___closed__1; lean_object* l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__5; extern lean_object* l_Lean_Meta_Exception_Inhabited___closed__1; -lean_object* l___private_Init_Lean_Meta_SynthInstance_2__preprocess(lean_object*, lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Lean_Meta_SynthInstance_findEntry_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_mkTableKey___closed__2; lean_object* l_Lean_Meta_SynthInstance_main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2; lean_object* l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__2; lean_object* l_Lean_Meta_SynthInstance_mkInferTCGoalsLRAttr___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_List_mapM___main___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__9(lean_object*, lean_object*, lean_object*); @@ -110,29 +107,25 @@ lean_object* l_Lean_Meta_SynthInstance_getInstances___lambda__1___boxed(lean_obj lean_object* l_Lean_Meta_maxStepsOption___closed__3; lean_object* l_Lean_Meta_SynthInstance_newSubgoal___closed__1; lean_object* l_Lean_Meta_SynthInstance_mkInferTCGoalsLRAttr___closed__3; -lean_object* l___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getInstances(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___boxed(lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_synthInstance_x3f___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_findEntry_x3f___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_2__preprocess___closed__1; +lean_object* l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_tracer___closed__5; lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); uint8_t lean_metavar_ctx_is_expr_assigned(lean_object*, lean_object*); lean_object* l_Lean_Meta_isClass(lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Meta_SynthInstance_getTop___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___rarg(lean_object*); lean_object* l_AssocList_replace___main___at_Lean_Meta_SynthInstance_newSubgoal___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_wakeUp(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__73; -lean_object* l___private_Init_Lean_Meta_SynthInstance_6__getMaxSteps(lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_2__preprocess___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_AbstractMVarsResult_inhabited___closed__1; lean_object* l_AssocList_find_x3f___main___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_setSynthPendingRef___closed__1; uint8_t l_Lean_Meta_SynthInstance_Waiter_isRoot(lean_object*); +extern lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev_range(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited___closed__1; @@ -140,8 +133,6 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_meta2Synth(lean_object*); lean_object* l_Lean_Meta_SynthInstance_getTop___boxed(lean_object*); lean_object* l_Lean_Meta_abstractMVars(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_6__getMaxSteps___boxed(lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_5__preprocessOutParam___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___main___closed__6; lean_object* l_Lean_Meta_SynthInstance_getTraceState(lean_object*); lean_object* l_Lean_Meta_SynthInstance_tryResolve(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -170,7 +161,9 @@ lean_object* l_Array_iterateMAux___main___at_Lean_Meta_SynthInstance_consume___s lean_object* l_AssocList_find_x3f___main___at_Lean_Meta_SynthInstance_findEntry_x3f___spec__2(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_SynthInstance_isNewAnswer___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getNextToResume___rarg(lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(lean_object*); lean_object* l_Lean_Meta_SynthInstance_hasInferTCGoalsLRAttribute___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_Lean_Name_hash(lean_object*); lean_object* l_Nat_repr(lean_object*); extern lean_object* l_Lean_MessageData_coeOfArrayExpr___closed__2; @@ -181,19 +174,21 @@ lean_object* l_Array_iterateMAux___main___at_Lean_Meta_SynthInstance_getInstance lean_object* l_AssocList_foldlM___main___at_Lean_Meta_SynthInstance_newSubgoal___spec__5(lean_object*, lean_object*); size_t l_Lean_Expr_hash(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2; lean_object* l_Array_iterateMAux___main___at_Lean_Meta_SynthInstance_getInstances___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_GeneratorNode_inhabited; lean_object* l_Lean_Meta_SynthInstance_getTraceState___rarg(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Meta_SynthInstance_getNextToResume___spec__1___boxed(lean_object*); lean_object* l_Lean_Meta_getGlobalInstances___rarg(lean_object*); lean_object* l_Lean_Meta_SynthInstance_getOptions___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___main___closed__4; extern lean_object* l_PersistentArray_empty___closed__3; lean_object* l_Array_back___at_Lean_Meta_SynthInstance_getNextToResume___spec__1___closed__1; +lean_object* l___private_Lean_Meta_SynthInstance_1__getSubgoalsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__4; lean_object* l_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_findEntry_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_step(lean_object*, lean_object*); +lean_object* l_List_foldlM___main___at___private_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_synthInstance_x3f___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setSynthPendingRef(lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___main___closed__9; @@ -208,7 +203,6 @@ lean_object* l_Lean_Meta_SynthInstance_newSubgoal(lean_object*, lean_object*, le size_t l_USize_mul(size_t, size_t); lean_object* l_HashMapImp_moveEntries___main___at_Lean_Meta_SynthInstance_newSubgoal___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_mkHashMapImp___rarg(lean_object*); -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_let(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isForall(lean_object*); uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); @@ -223,7 +217,7 @@ lean_object* l_Lean_KVMap_getNat(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___main___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_Meta_SynthInstance_consume___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_proj(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1(lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_2__preprocess___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_main___closed__4; size_t l_USize_land(size_t, size_t); lean_object* l_AssocList_replace___main___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__8(lean_object*, lean_object*, lean_object*); @@ -236,10 +230,8 @@ lean_object* l_Lean_Meta_SynthInstance_synth(lean_object*, lean_object*, lean_ob lean_object* l_Lean_Meta_SynthInstance_getEntry___closed__2; uint8_t l_Lean_Meta_SynthInstance_hasInferTCGoalsLRAttribute(lean_object*, lean_object*); lean_object* l_HashMapImp_insert___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__3(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getEntry___closed__1; lean_object* l_Lean_Meta_mkFreshExprMVarAt(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_1__getSubgoalsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_SynthInstance_newSubgoal___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_AssocList_contains___main___at_Lean_Meta_SynthInstance_newSubgoal___spec__2(lean_object*, lean_object*); lean_object* l_HashMapImp_insert___at_Lean_Meta_SynthInstance_newSubgoal___spec__1(lean_object*, lean_object*, lean_object*); @@ -252,6 +244,7 @@ lean_object* lean_level_update_imax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_Meta_synthInstance_x3f___spec__6(lean_object*, size_t, lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_3__preprocessLevels(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_trySynthInstance(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_hasAssignableMVar(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___main(lean_object*, lean_object*, lean_object*); @@ -261,6 +254,7 @@ lean_object* l_Lean_Meta_SynthInstance_tracer___closed__3; lean_object* l_Array_umapMAux___main___at_Lean_Meta_SynthInstance_getInstances___spec__2___closed__2; lean_object* l_Lean_Meta_SynthInstance_wakeUp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_withMCtx___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_2__preprocess___closed__1; lean_object* l_Lean_Meta_SynthInstance_getTop___rarg(lean_object*); lean_object* l_Lean_Meta_synthInstance_x3f___closed__6; uint8_t lean_expr_eqv(lean_object*, lean_object*); @@ -274,13 +268,12 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t l_USize_decLe(size_t, size_t); lean_object* l_Lean_Meta_mkFreshExprMVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_newSubgoal___closed__2; uint8_t l_Lean_Expr_hasMVar(lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___main___closed__8; lean_object* l_Array_umapMAux___main___at_Lean_Meta_SynthInstance_getInstances___spec__2___closed__1; -lean_object* l_List_foldlM___main___at___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_addContext___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_Waiter_isRoot___boxed(lean_object*); extern lean_object* l_Lean_Meta_synthPendingRef; uint8_t l_AssocList_contains___main___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__4(lean_object*, lean_object*); @@ -288,17 +281,17 @@ lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_incDepth(lean_object*); uint8_t l_Lean_TagAttribute_hasTag(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getResult___boxed(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__2(lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Meta_SynthInstance_getInstances___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___main___closed__2; lean_object* l_Lean_Meta_SynthInstance_tracer; lean_object* l_Lean_Meta_SynthInstance_mkTableKey(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_SynthInstance_5__preprocessOutParam(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_6__getMaxSteps(lean_object*); extern lean_object* l_Lean_Meta_Exception_toTraceMessageData___closed__72; lean_object* lean_nat_mul(lean_object*, lean_object*); lean_object* l_Lean_Meta_synthInstance_x3f___closed__4; +lean_object* l_List_foldlM___main___at___private_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getNextToResume(lean_object*); lean_object* l_Lean_Meta_SynthInstance_isNewAnswer___boxed(lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_isLevelAssignable(lean_object*, lean_object*); @@ -316,6 +309,7 @@ lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, l lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); lean_object* l_Lean_Meta_SynthInstance_modifyTop___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_SynthM_inhabited___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_6__getMaxSteps___boxed(lean_object*); lean_object* l_Lean_Meta_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_expand___at_Lean_Meta_SynthInstance_newSubgoal___spec__3(lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Meta_SynthInstance_getNextToResume___spec__1(lean_object*); @@ -333,12 +327,14 @@ lean_object* l_Lean_Meta_maxStepsOption___closed__1; lean_object* l_HashMapImp_moveEntries___main___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forMAux___main___at_Lean_Meta_SynthInstance_addAnswer___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_tryResolveCore(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTagAttribute(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___main___spec__1(lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Meta_SynthInstance_findEntry_x3f___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_mkInferTCGoalsLRAttr___closed__1; lean_object* l_Lean_Meta_maxStepsOption___closed__2; lean_object* l_Lean_Meta_SynthInstance_getInstances___closed__1; +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___boxed(lean_object*); uint8_t l_Lean_MetavarContext_isExprAssignable(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isLevelDefEqAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_Answer_inhabited___closed__1; @@ -349,23 +345,25 @@ lean_object* l_Lean_Meta_SynthInstance_liftMeta___rarg(lean_object*, lean_object lean_object* l_Lean_Meta_SynthInstance_MkTableKey_normLevel___main(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_TagAttribute_Inhabited___closed__3; extern lean_object* l_Lean_Meta_isClassQuick___main___closed__1; -extern lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; +extern lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; lean_object* l_Lean_Meta_SynthInstance_consume(lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getInstances___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLevelParam(lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); +lean_object* l___private_Lean_Meta_SynthInstance_4__preprocessArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__1; lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_SynthInstance_isNewAnswer___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_SynthInstance_1__getSubgoalsAux___main(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_SynthInstance_resume___closed__4; lean_object* l_Lean_Meta_synthInstance_x3f___closed__2; -lean_object* l___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_mkInferTCGoalsLRAttr___closed__2; lean_object* l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__3; lean_object* l_Lean_Meta_SynthInstance_tracer___closed__1; -lean_object* l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_AssocList_find_x3f___main___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___main___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_tracer___closed__2; lean_object* l_Lean_mkConst(lean_object*, lean_object*); @@ -383,6 +381,7 @@ lean_object* l_AssocList_contains___main___at_Lean_Meta_SynthInstance_newSubgoal lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_resume___closed__2; lean_object* l_Lean_Meta_forallTelescopeReducing___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1(lean_object*); lean_object* l_Lean_Meta_synthInstance_x3f___closed__8; lean_object* l_Lean_Meta_SynthInstance_generate___closed__4; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Meta_synthInstance_x3f___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -393,12 +392,13 @@ lean_object* l_AssocList_contains___main___at_Lean_Meta_SynthInstance_MkTableKey lean_object* l_PersistentArray_toArray___rarg(lean_object*); lean_object* l_Lean_Meta_maxStepsOption___closed__4; lean_object* l_Lean_Meta_SynthInstance_liftMeta(lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___rarg(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_mkInferTCGoalsLRAttr___lambda__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; +x_3 = l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; return x_3; } } @@ -3596,7 +3596,7 @@ lean_object* _init_l_Array_umapMAux___main___at_Lean_Meta_SynthInstance_getInsta _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Meta.SynthInstance"); +x_1 = lean_mk_string("Lean.Meta.SynthInstance"); return x_1; } } @@ -3828,7 +3828,7 @@ lean_object* _init_l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_1 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; x_2 = l_Lean_Meta_Exception_toTraceMessageData___closed__72; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3995,7 +3995,7 @@ else { lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; x_67 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__3; -x_68 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_67, x_3, x_40); +x_68 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_67, x_3, x_40); x_69 = lean_ctor_get(x_68, 0); lean_inc(x_69); x_70 = lean_ctor_get(x_68, 1); @@ -4526,7 +4526,7 @@ return x_36; } } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4923,7 +4923,7 @@ x_148 = lean_ctor_get(x_144, 1); lean_inc(x_148); lean_dec(x_144); x_149 = l_Lean_Meta_SynthInstance_newSubgoal___closed__2; -x_150 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_149, x_5, x_148); +x_150 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_149, x_5, x_148); x_151 = lean_ctor_get(x_150, 0); lean_inc(x_151); x_152 = lean_unbox(x_151); @@ -5517,7 +5517,7 @@ x_244 = lean_ctor_get(x_240, 1); lean_inc(x_244); lean_dec(x_240); x_245 = l_Lean_Meta_SynthInstance_newSubgoal___closed__2; -x_246 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_245, x_5, x_244); +x_246 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_245, x_5, x_244); x_247 = lean_ctor_get(x_246, 0); lean_inc(x_247); x_248 = lean_unbox(x_247); @@ -5885,11 +5885,11 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_1, x_2, x_3); +x_4 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -6728,7 +6728,7 @@ return x_138; } } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_1__getSubgoalsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_SynthInstance_1__getSubgoalsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_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; @@ -6950,11 +6950,11 @@ return x_30; } } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_1__getSubgoalsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_SynthInstance_1__getSubgoalsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Meta_SynthInstance_1__getSubgoalsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Meta_SynthInstance_1__getSubgoalsAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_11; } } @@ -6977,7 +6977,7 @@ x_10 = lean_box(0); x_11 = l_Array_empty___closed__1; x_12 = lean_unsigned_to_nat(0u); lean_inc(x_4); -x_13 = l___private_Init_Lean_Meta_SynthInstance_1__getSubgoalsAux___main(x_1, x_2, x_3, x_11, x_12, x_10, x_4, x_8, x_5, x_9); +x_13 = l___private_Lean_Meta_SynthInstance_1__getSubgoalsAux___main(x_1, x_2, x_3, x_11, x_12, x_10, x_4, x_8, x_5, x_9); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -7251,7 +7251,7 @@ else { lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; x_182 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_183 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_182, x_7, x_11); +x_183 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_182, x_7, x_11); x_184 = lean_ctor_get(x_183, 0); lean_inc(x_184); x_185 = lean_unbox(x_184); @@ -7334,7 +7334,7 @@ else lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_free_object(x_16); x_25 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_26 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_25, x_7, x_20); +x_26 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_25, x_7, x_20); x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); x_28 = lean_unbox(x_27); @@ -7420,7 +7420,7 @@ else { lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; x_45 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_46 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_45, x_7, x_40); +x_46 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_45, x_7, x_40); x_47 = lean_ctor_get(x_46, 0); lean_inc(x_47); x_48 = lean_unbox(x_47); @@ -7531,7 +7531,7 @@ else lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; lean_free_object(x_62); x_71 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_72 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_71, x_7, x_66); +x_72 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_71, x_7, x_66); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_unbox(x_73); @@ -7617,7 +7617,7 @@ else { lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; x_91 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_92 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_91, x_7, x_86); +x_92 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_91, x_7, x_86); x_93 = lean_ctor_get(x_92, 0); lean_inc(x_93); x_94 = lean_unbox(x_93); @@ -7709,7 +7709,7 @@ else lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_free_object(x_62); x_112 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_113 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_112, x_7, x_105); +x_113 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_112, x_7, x_105); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_unbox(x_114); @@ -7831,7 +7831,7 @@ else { lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; x_148 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_149 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_148, x_7, x_141); +x_149 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_148, x_7, x_141); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_unbox(x_150); @@ -8068,7 +8068,7 @@ return x_15; } } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -8334,15 +8334,15 @@ return x_65; } } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___rarg), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -8573,7 +8573,7 @@ x_545 = lean_ctor_get(x_540, 1); lean_inc(x_545); lean_dec(x_540); x_546 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_547 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_546, x_4, x_545); +x_547 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_546, x_4, x_545); x_548 = lean_ctor_get(x_547, 0); lean_inc(x_548); x_549 = lean_ctor_get(x_547, 1); @@ -10347,7 +10347,7 @@ return x_363; else { lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; uint8_t x_413; -x_409 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___rarg(x_7); +x_409 = l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___rarg(x_7); x_410 = lean_ctor_get(x_409, 1); lean_inc(x_410); x_411 = lean_ctor_get(x_410, 0); @@ -10386,7 +10386,7 @@ lean_dec(x_421); lean_ctor_set(x_418, 1, x_416); lean_ctor_set(x_410, 0, x_418); x_422 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_423 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_422, x_4, x_410); +x_423 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_422, x_4, x_410); lean_dec(x_4); x_424 = !lean_is_exclusive(x_423); if (x_424 == 0) @@ -10432,7 +10432,7 @@ lean_ctor_set(x_433, 4, x_431); lean_ctor_set(x_433, 5, x_432); lean_ctor_set(x_410, 0, x_433); x_434 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_435 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_434, x_4, x_410); +x_435 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_434, x_4, x_410); lean_dec(x_4); x_436 = lean_ctor_get(x_435, 1); lean_inc(x_436); @@ -10471,7 +10471,7 @@ lean_dec(x_442); lean_ctor_set(x_439, 1, x_416); lean_ctor_set(x_410, 0, x_439); x_443 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_444 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_443, x_4, x_410); +x_444 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_443, x_4, x_410); lean_dec(x_4); x_445 = !lean_is_exclusive(x_444); if (x_445 == 0) @@ -10518,7 +10518,7 @@ lean_ctor_set(x_454, 4, x_452); lean_ctor_set(x_454, 5, x_453); lean_ctor_set(x_410, 0, x_454); x_455 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_456 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_455, x_4, x_410); +x_456 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_455, x_4, x_410); lean_dec(x_4); x_457 = lean_ctor_get(x_456, 1); lean_inc(x_457); @@ -10610,7 +10610,7 @@ lean_ctor_set(x_476, 4, x_473); lean_ctor_set(x_476, 5, x_474); lean_ctor_set(x_410, 0, x_476); x_477 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_478 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_477, x_4, x_410); +x_478 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_477, x_4, x_410); lean_dec(x_4); x_479 = lean_ctor_get(x_478, 1); lean_inc(x_479); @@ -10674,7 +10674,7 @@ lean_ctor_set(x_490, 4, x_487); lean_ctor_set(x_490, 5, x_488); lean_ctor_set(x_410, 0, x_490); x_491 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_492 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_491, x_4, x_410); +x_492 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_491, x_4, x_410); lean_dec(x_4); x_493 = lean_ctor_get(x_492, 1); lean_inc(x_493); @@ -10795,7 +10795,7 @@ lean_ctor_set(x_518, 2, x_497); lean_ctor_set(x_518, 3, x_498); lean_ctor_set(x_518, 4, x_499); x_519 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_520 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_519, x_4, x_518); +x_520 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_519, x_4, x_518); lean_dec(x_4); x_521 = lean_ctor_get(x_520, 1); lean_inc(x_521); @@ -10864,7 +10864,7 @@ lean_ctor_set(x_533, 2, x_497); lean_ctor_set(x_533, 3, x_498); lean_ctor_set(x_533, 4, x_499); x_534 = l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__2; -x_535 = l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_534, x_4, x_533); +x_535 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_412, x_534, x_4, x_533); lean_dec(x_4); x_536 = lean_ctor_get(x_535, 1); lean_inc(x_536); @@ -10891,20 +10891,20 @@ return x_538; } } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1(x_1); +x_2 = l___private_Lean_Util_Trace_3__getResetTraces___at_Lean_Meta_SynthInstance_tryResolve___spec__1(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___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___private_Init_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Util_Trace_2__addNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -12008,7 +12008,7 @@ x_41 = lean_ctor_get(x_32, 1); lean_inc(x_41); lean_dec(x_32); x_42 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_43 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_42, x_3, x_41); +x_43 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_42, x_3, x_41); x_44 = lean_ctor_get(x_43, 0); lean_inc(x_44); x_45 = lean_unbox(x_44); @@ -12182,7 +12182,7 @@ x_86 = lean_ctor_get(x_79, 1); lean_inc(x_86); lean_dec(x_79); x_87 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_88 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_87, x_3, x_86); +x_88 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_87, x_3, x_86); x_89 = lean_ctor_get(x_88, 0); lean_inc(x_89); x_90 = lean_unbox(x_89); @@ -12518,7 +12518,7 @@ x_247 = lean_ctor_get(x_242, 1); lean_inc(x_247); lean_dec(x_242); x_248 = l_Lean_Meta_SynthInstance_addAnswer___closed__2; -x_249 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_248, x_2, x_247); +x_249 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_248, x_2, x_247); x_250 = lean_ctor_get(x_249, 0); lean_inc(x_250); x_251 = lean_ctor_get(x_249, 1); @@ -13536,7 +13536,7 @@ x_360 = lean_ctor_get(x_355, 1); lean_inc(x_360); lean_dec(x_355); x_361 = l_Lean_Meta_SynthInstance_addAnswer___closed__2; -x_362 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_361, x_2, x_360); +x_362 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_361, x_2, x_360); x_363 = lean_ctor_get(x_362, 0); lean_inc(x_363); x_364 = lean_ctor_get(x_362, 1); @@ -14044,7 +14044,7 @@ x_479 = lean_ctor_get(x_474, 1); lean_inc(x_479); lean_dec(x_474); x_480 = l_Lean_Meta_SynthInstance_addAnswer___closed__2; -x_481 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_480, x_2, x_479); +x_481 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_480, x_2, x_479); x_482 = lean_ctor_get(x_481, 0); lean_inc(x_482); x_483 = lean_ctor_get(x_481, 1); @@ -15052,7 +15052,7 @@ x_145 = lean_ctor_get(x_141, 1); lean_inc(x_145); lean_dec(x_141); x_146 = l_Lean_Meta_SynthInstance_generate___closed__2; -x_147 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_146, x_1, x_145); +x_147 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_146, x_1, x_145); x_148 = lean_ctor_get(x_147, 0); lean_inc(x_148); x_149 = lean_unbox(x_148); @@ -15744,7 +15744,7 @@ x_241 = lean_ctor_get(x_237, 1); lean_inc(x_241); lean_dec(x_237); x_242 = l_Lean_Meta_SynthInstance_generate___closed__2; -x_243 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_242, x_1, x_241); +x_243 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_242, x_1, x_241); x_244 = lean_ctor_get(x_243, 0); lean_inc(x_244); x_245 = lean_unbox(x_244); @@ -16397,7 +16397,7 @@ x_147 = lean_ctor_get(x_142, 1); lean_inc(x_147); lean_dec(x_142); x_148 = l_Lean_Meta_SynthInstance_resume___closed__4; -x_149 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_148, x_1, x_147); +x_149 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_148, x_1, x_147); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_ctor_get(x_149, 1); @@ -16879,7 +16879,7 @@ x_230 = lean_ctor_get(x_225, 1); lean_inc(x_230); lean_dec(x_225); x_231 = l_Lean_Meta_SynthInstance_resume___closed__4; -x_232 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_231, x_1, x_230); +x_232 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_231, x_1, x_230); x_233 = lean_ctor_get(x_232, 0); lean_inc(x_233); x_234 = lean_ctor_get(x_232, 1); @@ -17255,7 +17255,7 @@ x_320 = lean_ctor_get(x_315, 1); lean_inc(x_320); lean_dec(x_315); x_321 = l_Lean_Meta_SynthInstance_resume___closed__4; -x_322 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_321, x_1, x_320); +x_322 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_321, x_1, x_320); x_323 = lean_ctor_get(x_322, 0); lean_inc(x_323); x_324 = lean_ctor_get(x_322, 1); @@ -17746,7 +17746,7 @@ x_430 = lean_ctor_get(x_425, 1); lean_inc(x_430); lean_dec(x_425); x_431 = l_Lean_Meta_SynthInstance_resume___closed__4; -x_432 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_431, x_1, x_430); +x_432 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_431, x_1, x_430); x_433 = lean_ctor_get(x_432, 0); lean_inc(x_433); x_434 = lean_ctor_get(x_432, 1); @@ -18364,7 +18364,7 @@ x_73 = lean_ctor_get(x_68, 1); lean_inc(x_73); lean_dec(x_68); x_74 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_75 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_74, x_2, x_73); +x_75 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_74, x_2, x_73); x_76 = lean_ctor_get(x_75, 0); lean_inc(x_76); x_77 = lean_ctor_get(x_75, 1); @@ -18433,7 +18433,7 @@ x_21 = lean_ctor_get(x_14, 1); lean_inc(x_21); lean_dec(x_14); x_22 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_23 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_22, x_2, x_21); +x_23 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_22, x_2, x_21); x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); x_25 = lean_unbox(x_24); @@ -18668,7 +18668,7 @@ x_87 = lean_ctor_get(x_80, 1); lean_inc(x_87); lean_dec(x_80); x_88 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_89 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_88, x_2, x_87); +x_89 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_SynthInstance_newSubgoal___spec__7(x_88, x_2, x_87); x_90 = lean_ctor_get(x_89, 0); lean_inc(x_90); x_91 = lean_unbox(x_90); @@ -18805,7 +18805,7 @@ else { lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; uint8_t x_273; x_269 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_270 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_269, x_3, x_4); +x_270 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_269, x_3, x_4); x_271 = lean_ctor_get(x_270, 0); lean_inc(x_271); x_272 = lean_ctor_get(x_270, 1); @@ -19591,7 +19591,7 @@ return x_166; else { lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_252; uint8_t x_253; -x_205 = l___private_Init_Lean_Util_Trace_3__getResetTraces___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); +x_205 = l___private_Lean_Util_Trace_3__getResetTraces___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__6___rarg(x_6); x_206 = lean_ctor_get(x_205, 0); lean_inc(x_206); x_207 = lean_ctor_get(x_205, 1); @@ -19610,7 +19610,7 @@ else { lean_object* x_254; lean_object* x_255; lean_object* x_256; uint8_t x_257; x_254 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_255 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_254, x_3, x_207); +x_255 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_254, x_3, x_207); x_256 = lean_ctor_get(x_255, 0); lean_inc(x_256); x_257 = lean_unbox(x_256); @@ -19694,7 +19694,7 @@ x_226 = lean_ctor_get(x_225, 0); lean_inc(x_226); lean_dec(x_225); x_227 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_228 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_206, x_227, x_3, x_226); +x_228 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_206, x_227, x_3, x_226); lean_dec(x_3); x_229 = !lean_is_exclusive(x_228); if (x_229 == 0) @@ -19729,7 +19729,7 @@ x_235 = lean_ctor_get(x_234, 0); lean_inc(x_235); lean_dec(x_234); x_236 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_237 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_206, x_236, x_3, x_235); +x_237 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_206, x_236, x_3, x_235); lean_dec(x_3); x_238 = !lean_is_exclusive(x_237); if (x_238 == 0) @@ -19767,7 +19767,7 @@ x_244 = lean_ctor_get(x_243, 0); lean_inc(x_244); lean_dec(x_243); x_245 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_246 = l___private_Init_Lean_Util_Trace_2__addNode___at___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_206, x_245, x_3, x_244); +x_246 = l___private_Lean_Util_Trace_2__addNode___at___private_Lean_Meta_LevelDefEq_10__processPostponedStep___spec__7(x_206, x_245, x_3, x_244); lean_dec(x_3); x_247 = !lean_is_exclusive(x_246); if (x_247 == 0) @@ -19796,7 +19796,7 @@ return x_250; } } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_2__preprocess___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_SynthInstance_2__preprocess___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -19839,24 +19839,24 @@ return x_12; } } } -lean_object* _init_l___private_Init_Lean_Meta_SynthInstance_2__preprocess___closed__1() { +lean_object* _init_l___private_Lean_Meta_SynthInstance_2__preprocess___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_SynthInstance_2__preprocess___lambda__1), 4, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_SynthInstance_2__preprocess___lambda__1), 4, 0); return x_1; } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_2__preprocess(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_SynthInstance_2__preprocess(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Meta_SynthInstance_2__preprocess___closed__1; +x_4 = l___private_Lean_Meta_SynthInstance_2__preprocess___closed__1; x_5 = l_Lean_Meta_forallTelescopeReducing___rarg(x_1, x_4, x_2, x_3); return x_5; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_foldlM___main___at___private_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -19958,12 +19958,12 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_SynthInstance_3__preprocessLevels(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; x_4 = lean_box(0); -x_5 = l_List_foldlM___main___at___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1(x_4, x_1, x_2, x_3); +x_5 = l_List_foldlM___main___at___private_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1(x_4, x_1, x_2, x_3); x_6 = !lean_is_exclusive(x_5); if (x_6 == 0) { @@ -19989,25 +19989,25 @@ return x_12; } } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_foldlM___main___at___private_Lean_Meta_SynthInstance_3__preprocessLevels___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_List_foldlM___main___at___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_List_foldlM___main___at___private_Lean_Meta_SynthInstance_3__preprocessLevels___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_SynthInstance_3__preprocessLevels___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_SynthInstance_3__preprocessLevels(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* _init_l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1() { _start: { lean_object* x_1; @@ -20015,17 +20015,17 @@ x_1 = lean_mk_string("type class resolution failed, insufficient number of argum return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1; +x_1 = l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1; x_2 = lean_alloc_ctor(22, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main(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; @@ -20126,7 +20126,7 @@ if (x_31 == 0) lean_object* x_32; lean_object* x_33; x_32 = lean_ctor_get(x_9, 0); lean_dec(x_32); -x_33 = l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2; +x_33 = l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2; lean_ctor_set_tag(x_9, 1); lean_ctor_set(x_9, 0, x_33); return x_9; @@ -20137,7 +20137,7 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; x_34 = lean_ctor_get(x_9, 1); lean_inc(x_34); lean_dec(x_9); -x_35 = l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2; +x_35 = l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2; x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); @@ -20173,15 +20173,15 @@ return x_40; } } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_SynthInstance_4__preprocessArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_5__preprocessOutParam___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_SynthInstance_5__preprocessOutParam___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; @@ -20223,8 +20223,8 @@ 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_Init_Lean_Expr_3__getAppArgsAux___main(x_3, x_15, x_17); -x_19 = l___private_Init_Lean_Meta_SynthInstance_3__preprocessLevels(x_8, x_4, x_5); +x_18 = l___private_Lean_Expr_3__getAppArgsAux___main(x_3, x_15, x_17); +x_19 = l___private_Lean_Meta_SynthInstance_3__preprocessLevels(x_8, x_4, x_5); x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); @@ -20243,7 +20243,7 @@ x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); lean_dec(x_23); lean_inc(x_4); -x_26 = l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main(x_24, x_12, x_18, x_4, x_25); +x_26 = l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main(x_24, x_12, x_18, x_4, x_25); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; @@ -20325,12 +20325,12 @@ return x_39; } } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_5__preprocessOutParam(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_SynthInstance_5__preprocessOutParam(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_inc(x_1); -x_4 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_SynthInstance_5__preprocessOutParam___lambda__1), 5, 1); +x_4 = lean_alloc_closure((void*)(l___private_Lean_Meta_SynthInstance_5__preprocessOutParam___lambda__1), 5, 1); lean_closure_set(x_4, 0, x_1); x_5 = l_Lean_Meta_forallTelescope___rarg(x_1, x_4, x_2, x_3); return x_5; @@ -20396,7 +20396,7 @@ x_4 = lean_register_option(x_2, x_3, x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_6__getMaxSteps(lean_object* x_1) { +lean_object* l___private_Lean_Meta_SynthInstance_6__getMaxSteps(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -20406,11 +20406,11 @@ x_4 = l_Lean_KVMap_getNat(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_6__getMaxSteps___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Meta_SynthInstance_6__getMaxSteps___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_SynthInstance_6__getMaxSteps(x_1); +x_2 = l___private_Lean_Meta_SynthInstance_6__getMaxSteps(x_1); lean_dec(x_1); return x_2; } @@ -21129,7 +21129,7 @@ x_11 = lean_ctor_get_uint8(x_5, sizeof(void*)*1 + 2); x_12 = lean_ctor_get_uint8(x_5, sizeof(void*)*1 + 3); x_13 = lean_ctor_get_uint8(x_5, sizeof(void*)*1 + 4); x_14 = lean_ctor_get_uint8(x_5, sizeof(void*)*1 + 5); -x_15 = l___private_Init_Lean_Meta_SynthInstance_6__getMaxSteps(x_10); +x_15 = l___private_Lean_Meta_SynthInstance_6__getMaxSteps(x_10); x_16 = 1; x_17 = 2; x_18 = lean_alloc_ctor(0, 1, 7); @@ -21159,7 +21159,7 @@ if (lean_is_exclusive(x_19)) { lean_dec_ref(x_19); x_22 = lean_box(0); } -x_23 = l___private_Init_Lean_Meta_SynthInstance_2__preprocess___closed__1; +x_23 = l___private_Lean_Meta_SynthInstance_2__preprocess___closed__1; lean_inc(x_2); x_24 = l_Lean_Meta_forallTelescopeReducing___rarg(x_20, x_23, x_2, x_21); if (lean_obj_tag(x_24) == 0) @@ -21216,7 +21216,7 @@ x_177 = l_Lean_MetavarContext_incDepth(x_62); lean_ctor_set(x_26, 1, x_177); lean_inc(x_2); lean_inc(x_25); -x_178 = l___private_Init_Lean_Meta_SynthInstance_5__preprocessOutParam(x_25, x_2, x_26); +x_178 = l___private_Lean_Meta_SynthInstance_5__preprocessOutParam(x_25, x_2, x_26); if (lean_obj_tag(x_178) == 0) { lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_216; uint8_t x_217; @@ -21238,7 +21238,7 @@ else { lean_object* x_218; lean_object* x_219; lean_object* x_220; uint8_t x_221; x_218 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_219 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_218, x_2, x_180); +x_219 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_218, x_2, x_180); x_220 = lean_ctor_get(x_219, 0); lean_inc(x_220); x_221 = lean_unbox(x_220); @@ -21328,7 +21328,7 @@ else { lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; x_202 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_203 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_202, x_2, x_185); +x_203 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_202, x_2, x_185); x_204 = lean_ctor_get(x_203, 0); lean_inc(x_204); x_205 = lean_unbox(x_204); @@ -21500,7 +21500,7 @@ else { lean_object* x_108; lean_object* x_109; lean_object* x_110; uint8_t x_111; x_108 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_109 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_108, x_2, x_77); +x_109 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_108, x_2, x_77); x_110 = lean_ctor_get(x_109, 0); lean_inc(x_110); x_111 = lean_unbox(x_110); @@ -21723,7 +21723,7 @@ else { lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; x_152 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_153 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_152, x_2, x_124); +x_153 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_152, x_2, x_124); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -21961,7 +21961,7 @@ lean_ctor_set(x_293, 4, x_65); lean_ctor_set(x_293, 5, x_66); lean_inc(x_2); lean_inc(x_25); -x_294 = l___private_Init_Lean_Meta_SynthInstance_5__preprocessOutParam(x_25, x_2, x_293); +x_294 = l___private_Lean_Meta_SynthInstance_5__preprocessOutParam(x_25, x_2, x_293); if (lean_obj_tag(x_294) == 0) { lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_332; uint8_t x_333; @@ -21983,7 +21983,7 @@ else { lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; x_334 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_335 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_334, x_2, x_296); +x_335 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_334, x_2, x_296); x_336 = lean_ctor_get(x_335, 0); lean_inc(x_336); x_337 = lean_unbox(x_336); @@ -22073,7 +22073,7 @@ else { lean_object* x_318; lean_object* x_319; lean_object* x_320; uint8_t x_321; x_318 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_319 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_318, x_2, x_301); +x_319 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_318, x_2, x_301); x_320 = lean_ctor_get(x_319, 0); lean_inc(x_320); x_321 = lean_unbox(x_320); @@ -22270,7 +22270,7 @@ else { lean_object* x_269; lean_object* x_270; lean_object* x_271; uint8_t x_272; x_269 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_270 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_269, x_2, x_241); +x_270 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_269, x_2, x_241); x_271 = lean_ctor_get(x_270, 0); lean_inc(x_271); x_272 = lean_unbox(x_271); @@ -22704,7 +22704,7 @@ x_361 = lean_ctor_get_uint8(x_355, sizeof(void*)*1 + 2); x_362 = lean_ctor_get_uint8(x_355, sizeof(void*)*1 + 3); x_363 = lean_ctor_get_uint8(x_355, sizeof(void*)*1 + 4); x_364 = lean_ctor_get_uint8(x_355, sizeof(void*)*1 + 5); -x_365 = l___private_Init_Lean_Meta_SynthInstance_6__getMaxSteps(x_360); +x_365 = l___private_Lean_Meta_SynthInstance_6__getMaxSteps(x_360); x_366 = 1; x_367 = 2; x_368 = lean_alloc_ctor(0, 1, 7); @@ -22739,7 +22739,7 @@ if (lean_is_exclusive(x_370)) { lean_dec_ref(x_370); x_373 = lean_box(0); } -x_374 = l___private_Init_Lean_Meta_SynthInstance_2__preprocess___closed__1; +x_374 = l___private_Lean_Meta_SynthInstance_2__preprocess___closed__1; lean_inc(x_369); x_375 = l_Lean_Meta_forallTelescopeReducing___rarg(x_371, x_374, x_369, x_372); if (lean_obj_tag(x_375) == 0) @@ -22802,7 +22802,7 @@ lean_ctor_set(x_469, 4, x_404); lean_ctor_set(x_469, 5, x_405); lean_inc(x_369); lean_inc(x_376); -x_470 = l___private_Init_Lean_Meta_SynthInstance_5__preprocessOutParam(x_376, x_369, x_469); +x_470 = l___private_Lean_Meta_SynthInstance_5__preprocessOutParam(x_376, x_369, x_469); if (lean_obj_tag(x_470) == 0) { lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_508; uint8_t x_509; @@ -22824,7 +22824,7 @@ else { lean_object* x_510; lean_object* x_511; lean_object* x_512; uint8_t x_513; x_510 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_511 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_510, x_369, x_472); +x_511 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_510, x_369, x_472); x_512 = lean_ctor_get(x_511, 0); lean_inc(x_512); x_513 = lean_unbox(x_512); @@ -22914,7 +22914,7 @@ else { lean_object* x_494; lean_object* x_495; lean_object* x_496; uint8_t x_497; x_494 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_495 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_494, x_369, x_477); +x_495 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_494, x_369, x_477); x_496 = lean_ctor_get(x_495, 0); lean_inc(x_496); x_497 = lean_unbox(x_496); @@ -23111,7 +23111,7 @@ else { lean_object* x_445; lean_object* x_446; lean_object* x_447; uint8_t x_448; x_445 = l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__1; -x_446 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_445, x_369, x_417); +x_446 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_445, x_369, x_417); x_447 = lean_ctor_get(x_446, 0); lean_inc(x_447); x_448 = lean_unbox(x_447); @@ -24507,7 +24507,7 @@ x_4 = lean_io_ref_set(x_2, x_3, x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_SynthInstance_7__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Meta_SynthInstance_7__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -24671,29 +24671,29 @@ return x_38; } } } -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); -lean_object* initialize_Init_Lean_Meta_Instances(lean_object*); -lean_object* initialize_Init_Lean_Meta_LevelDefEq(lean_object*); -lean_object* initialize_Init_Lean_Meta_AbstractMVars(lean_object*); -lean_object* initialize_Init_Lean_Meta_WHNF(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_Instances(lean_object*); +lean_object* initialize_Lean_Meta_LevelDefEq(lean_object*); +lean_object* initialize_Lean_Meta_AbstractMVars(lean_object*); +lean_object* initialize_Lean_Meta_WHNF(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_SynthInstance(lean_object* w) { +lean_object* initialize_Lean_Meta_SynthInstance(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Instances(lean_io_mk_world()); +res = initialize_Lean_Meta_Instances(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_LevelDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_LevelDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_AbstractMVars(lean_io_mk_world()); +res = initialize_Lean_Meta_AbstractMVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_WHNF(lean_io_mk_world()); +res = initialize_Lean_Meta_WHNF(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_SynthInstance_mkInferTCGoalsLRAttr___closed__1 = _init_l_Lean_Meta_SynthInstance_mkInferTCGoalsLRAttr___closed__1(); @@ -24843,12 +24843,12 @@ l_Lean_Meta_SynthInstance_main___closed__3 = _init_l_Lean_Meta_SynthInstance_mai lean_mark_persistent(l_Lean_Meta_SynthInstance_main___closed__3); l_Lean_Meta_SynthInstance_main___closed__4 = _init_l_Lean_Meta_SynthInstance_main___closed__4(); lean_mark_persistent(l_Lean_Meta_SynthInstance_main___closed__4); -l___private_Init_Lean_Meta_SynthInstance_2__preprocess___closed__1 = _init_l___private_Init_Lean_Meta_SynthInstance_2__preprocess___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_SynthInstance_2__preprocess___closed__1); -l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1 = _init_l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1); -l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2 = _init_l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2); +l___private_Lean_Meta_SynthInstance_2__preprocess___closed__1 = _init_l___private_Lean_Meta_SynthInstance_2__preprocess___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_SynthInstance_2__preprocess___closed__1); +l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1 = _init_l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__1); +l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2 = _init_l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_SynthInstance_4__preprocessArgs___main___closed__2); l_Lean_Meta_maxStepsOption___closed__1 = _init_l_Lean_Meta_maxStepsOption___closed__1(); lean_mark_persistent(l_Lean_Meta_maxStepsOption___closed__1); l_Lean_Meta_maxStepsOption___closed__2 = _init_l_Lean_Meta_maxStepsOption___closed__2(); @@ -24885,7 +24885,7 @@ lean_mark_persistent(l_Lean_Meta_setSynthPendingRef___closed__1); res = l_Lean_Meta_setSynthPendingRef(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l___private_Init_Lean_Meta_SynthInstance_7__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_Meta_SynthInstance_7__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Lean/Meta/Tactic.c b/stage0/stdlib/Lean/Meta/Tactic.c new file mode 100644 index 0000000000..eab6f397c9 --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Tactic.c @@ -0,0 +1,73 @@ +// Lean compiler output +// Module: Lean.Meta.Tactic +// Imports: Lean.Meta.Tactic.Intro Lean.Meta.Tactic.Assumption Lean.Meta.Tactic.Apply Lean.Meta.Tactic.Revert Lean.Meta.Tactic.Clear Lean.Meta.Tactic.Assert Lean.Meta.Tactic.Target Lean.Meta.Tactic.Rewrite Lean.Meta.Tactic.Generalize Lean.Meta.Tactic.LocalDecl Lean.Meta.Tactic.Induction Lean.Meta.Tactic.Cases +#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* initialize_Lean_Meta_Tactic_Intro(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Assumption(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Apply(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Revert(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Clear(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Assert(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Target(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Rewrite(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Generalize(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_LocalDecl(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Induction(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Cases(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Lean_Meta_Tactic(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_mk_io_result(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Tactic_Intro(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Assumption(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Apply(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Revert(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Clear(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Assert(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Target(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Rewrite(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Generalize(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_LocalDecl(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Induction(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Cases(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_mk_io_result(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Apply.c b/stage0/stdlib/Lean/Meta/Tactic/Apply.c similarity index 78% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Apply.c rename to stage0/stdlib/Lean/Meta/Tactic/Apply.c index e253a237c4..e43ee995f6 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Apply.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Apply.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Apply -// Imports: Init.Lean.Util.FindMVar Init.Lean.Meta.Message Init.Lean.Meta.ExprDefEq Init.Lean.Meta.SynthInstance Init.Lean.Meta.Tactic.Util +// Module: Lean.Meta.Tactic.Apply +// Imports: Lean.Util.FindMVar Lean.Meta.Message Lean.Meta.ExprDefEq Lean.Meta.SynthInstance Lean.Meta.Tactic.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,60 +13,61 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1; lean_object* l_Nat_forMAux___main___at_Lean_Meta_appendParentTag___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_Lean_Name_eraseMacroScopes(lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4; +lean_object* l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_ofList___closed__3; uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Meta_getMVarTag(lean_object*, lean_object*, lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Meta_postprocessAppMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7; lean_object* l_Lean_Meta_synthAppInstances___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_apply(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1; +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError(lean_object*); uint8_t lean_metavar_ctx_is_expr_assigned(lean_object*, lean_object*); lean_object* l_Lean_Meta_appendParentTag___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1; +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6; +lean_object* l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3; lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*); lean_object* l_Array_filterMAux___main___at_Lean_Meta_apply___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2; lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); lean_object* l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__3; lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_apply___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1; lean_object* l_Lean_Meta_renameMVar(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_apply___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_2__getExpectedNumArgs(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3; -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5; +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6; +lean_object* l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_2__getExpectedNumArgs(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_postprocessAppMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallMetaTelescopeReducing(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); extern uint8_t l_Lean_BinderInfo_inhabited; @@ -76,11 +77,10 @@ lean_object* l_Lean_Meta_checkNotAssigned(lean_object*, lean_object*, lean_objec uint8_t lean_expr_eqv(lean_object*, lean_object*); uint8_t l_Lean_Expr_isMVar(lean_object*); lean_object* l_Lean_Meta_synthAppInstances(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isAnonymous(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4; +lean_object* l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1; lean_object* l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__1; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*); @@ -89,19 +89,19 @@ lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); extern lean_object* l_Lean_Expr_Inhabited; lean_object* l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__2; -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7; lean_object* l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1; +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2; +lean_object* l___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_forMAux___main___at_Lean_Meta_appendParentTag___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8; lean_object* l_Lean_Meta_appendParentTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___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; uint8_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -119,15 +119,15 @@ lean_ctor_set(x_10, 1, x_4); return x_10; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1___boxed), 4, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1___boxed), 4, 0); return x_1; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -142,7 +142,7 @@ if (x_6 == 0) uint8_t x_7; lean_object* x_8; lean_object* x_9; x_7 = 2; lean_ctor_set_uint8(x_5, sizeof(void*)*1 + 6, x_7); -x_8 = l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1; +x_8 = l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1; x_9 = l_Lean_Meta_forallTelescopeReducing___rarg(x_1, x_8, x_2, x_3); return x_9; } @@ -169,7 +169,7 @@ lean_ctor_set_uint8(x_18, sizeof(void*)*1 + 4, x_15); lean_ctor_set_uint8(x_18, sizeof(void*)*1 + 5, x_16); lean_ctor_set_uint8(x_18, sizeof(void*)*1 + 6, x_17); lean_ctor_set(x_2, 0, x_18); -x_19 = l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1; +x_19 = l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1; x_20 = l_Lean_Meta_forallTelescopeReducing___rarg(x_1, x_19, x_2, x_3); return x_20; } @@ -223,28 +223,28 @@ lean_ctor_set(x_36, 1, x_22); lean_ctor_set(x_36, 2, x_23); lean_ctor_set(x_36, 3, x_24); lean_ctor_set(x_36, 4, x_25); -x_37 = l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1; +x_37 = l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1; x_38 = l_Lean_Meta_forallTelescopeReducing___rarg(x_1, x_37, x_36, x_3); return x_38; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___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___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_2__getExpectedNumArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Tactic_Apply_2__getExpectedNumArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux(x_1, x_2, x_3); if (lean_obj_tag(x_4) == 0) { uint8_t x_5; @@ -300,7 +300,7 @@ return x_15; } } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1() { _start: { lean_object* x_1; @@ -308,17 +308,17 @@ x_1 = lean_mk_string("apply"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___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_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1; +x_2 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3() { _start: { lean_object* x_1; @@ -326,27 +326,27 @@ x_1 = lean_mk_string("failed to unify"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3; +x_1 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4; +x_1 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6() { _start: { lean_object* x_1; @@ -354,34 +354,34 @@ x_1 = lean_mk_string("with"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6; +x_1 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7; +x_1 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_6 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_6, 0, x_2); x_7 = l_Lean_indentExpr(x_6); -x_8 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5; +x_8 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5; x_9 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_9, 0, x_8); lean_ctor_set(x_9, 1, x_7); @@ -389,7 +389,7 @@ x_10 = l_Lean_MessageData_ofList___closed__3; x_11 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_10); -x_12 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8; +x_12 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8; x_13 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -399,24 +399,24 @@ x_15 = l_Lean_indentExpr(x_14); x_16 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_16, 0, x_13); lean_ctor_set(x_16, 1, x_15); -x_17 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2; +x_17 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2; x_18 = l_Lean_Meta_throwTacticEx___rarg(x_17, x_1, x_16, x_4, x_5); return x_18; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___boxed), 5, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } @@ -959,7 +959,7 @@ lean_dec(x_3); return x_7; } } -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_2)) { @@ -1015,7 +1015,7 @@ goto _start; else { lean_object* x_13; -x_13 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_8, x_3); +x_13 = l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_8, x_3); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -1067,7 +1067,7 @@ goto _start; else { lean_object* x_21; -x_21 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_16, x_3); +x_21 = l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_16, x_3); if (lean_obj_tag(x_21) == 0) { uint8_t x_22; @@ -1119,7 +1119,7 @@ goto _start; else { lean_object* x_29; -x_29 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_24, x_3); +x_29 = l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_24, x_3); if (lean_obj_tag(x_29) == 0) { uint8_t x_30; @@ -1164,7 +1164,7 @@ goto block_42; else { lean_object* x_44; -x_44 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_32, x_3); +x_44 = l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_32, x_3); if (lean_obj_tag(x_44) == 0) { x_35 = x_44; @@ -1209,7 +1209,7 @@ return x_35; else { lean_object* x_39; -x_39 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_33, x_35); +x_39 = l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_33, x_35); if (lean_obj_tag(x_39) == 0) { uint8_t x_40; @@ -1283,7 +1283,7 @@ return x_3; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -1320,7 +1320,7 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; x_16 = lean_ctor_get(x_14, 0); x_17 = lean_ctor_get(x_14, 1); x_18 = lean_box(0); -x_19 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_16, x_18); +x_19 = l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_16, x_18); lean_dec(x_16); if (lean_obj_tag(x_19) == 0) { @@ -1354,7 +1354,7 @@ lean_inc(x_26); lean_inc(x_25); lean_dec(x_14); x_27 = lean_box(0); -x_28 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_25, x_27); +x_28 = l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_25, x_27); lean_dec(x_25); if (lean_obj_tag(x_28) == 0) { @@ -1419,32 +1419,32 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers(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; x_5 = lean_array_get_size(x_2); x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2(x_1, x_2, x_2, x_5, x_6, x_3, x_4); +x_7 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2(x_1, x_2, x_2, x_5, x_6, x_3, x_4); lean_dec(x_5); return x_7; } } -lean_object* l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_FindMVar_main___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_2, x_3); +x_4 = l_Lean_FindMVar_main___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___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* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -1452,17 +1452,17 @@ lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers___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___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -1494,7 +1494,7 @@ x_14 = lean_ctor_get(x_4, 0); x_15 = lean_ctor_get(x_4, 1); x_16 = l_Lean_Expr_mvarId_x21(x_10); lean_inc(x_5); -x_17 = l___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers(x_10, x_1, x_5, x_6); +x_17 = l___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers(x_10, x_1, x_5, x_6); lean_dec(x_10); if (lean_obj_tag(x_17) == 0) { @@ -1567,7 +1567,7 @@ lean_inc(x_30); lean_dec(x_4); x_32 = l_Lean_Expr_mvarId_x21(x_10); lean_inc(x_5); -x_33 = l___private_Init_Lean_Meta_Tactic_Apply_4__dependsOnOthers(x_10, x_1, x_5, x_6); +x_33 = l___private_Lean_Meta_Tactic_Apply_4__dependsOnOthers(x_10, x_1, x_5, x_6); lean_dec(x_10); if (lean_obj_tag(x_33) == 0) { @@ -1640,7 +1640,7 @@ return x_47; } } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -1651,13 +1651,13 @@ lean_ctor_set(x_2, 1, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_unsigned_to_nat(0u); -x_5 = l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1(x_1, x_1, x_4, x_5, x_2, x_3); +x_5 = l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1; +x_6 = l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1(x_1, x_1, x_4, x_5, x_2, x_3); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -1727,21 +1727,21 @@ return x_25; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___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_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(x_1, x_2, x_3); lean_dec(x_1); return x_4; } @@ -1852,7 +1852,7 @@ lean_inc(x_13); lean_dec(x_11); lean_inc(x_4); lean_inc(x_12); -x_14 = l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux(x_12, x_4, x_13); +x_14 = l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux(x_12, x_4, x_13); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; uint8_t x_17; @@ -1918,7 +1918,7 @@ lean_dec(x_2); x_34 = lean_ctor_get(x_31, 1); lean_inc(x_34); lean_dec(x_31); -x_35 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(x_1, x_28, x_9, x_4, x_34); +x_35 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(x_1, x_28, x_9, x_4, x_34); lean_dec(x_4); x_36 = !lean_is_exclusive(x_35); if (x_36 == 0) @@ -1970,7 +1970,7 @@ lean_inc(x_46); x_47 = lean_ctor_get(x_45, 1); lean_inc(x_47); lean_dec(x_45); -x_48 = l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(x_46, x_4, x_47); +x_48 = l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(x_46, x_4, x_47); lean_dec(x_46); return x_48; } @@ -2097,7 +2097,7 @@ lean_inc(x_66); lean_dec(x_15); lean_inc(x_4); lean_inc(x_9); -x_67 = l___private_Init_Lean_Meta_Tactic_Apply_2__getExpectedNumArgs(x_9, x_4, x_65); +x_67 = l___private_Lean_Meta_Tactic_Apply_2__getExpectedNumArgs(x_9, x_4, x_65); if (lean_obj_tag(x_67) == 0) { lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; @@ -2156,7 +2156,7 @@ lean_dec(x_2); x_85 = lean_ctor_get(x_82, 1); lean_inc(x_85); lean_dec(x_82); -x_86 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(x_1, x_79, x_9, x_4, x_85); +x_86 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg(x_1, x_79, x_9, x_4, x_85); lean_dec(x_4); x_87 = !lean_is_exclusive(x_86); if (x_87 == 0) @@ -2208,7 +2208,7 @@ lean_inc(x_97); x_98 = lean_ctor_get(x_96, 1); lean_inc(x_98); lean_dec(x_96); -x_99 = l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(x_97, x_4, x_98); +x_99 = l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst(x_97, x_4, x_98); lean_dec(x_97); return x_99; } @@ -2471,7 +2471,7 @@ lean_object* l_Lean_Meta_apply(lean_object* x_1, lean_object* x_2, lean_object* _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_5 = l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2; +x_5 = l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2; lean_inc(x_1); x_6 = lean_alloc_closure((void*)(l_Lean_Meta_apply___lambda__1), 5, 3); lean_closure_set(x_6, 0, x_1); @@ -2537,57 +2537,57 @@ lean_dec(x_3); return x_5; } } -lean_object* initialize_Init_Lean_Util_FindMVar(lean_object*); -lean_object* initialize_Init_Lean_Meta_Message(lean_object*); -lean_object* initialize_Init_Lean_Meta_ExprDefEq(lean_object*); -lean_object* initialize_Init_Lean_Meta_SynthInstance(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Util_FindMVar(lean_object*); +lean_object* initialize_Lean_Meta_Message(lean_object*); +lean_object* initialize_Lean_Meta_ExprDefEq(lean_object*); +lean_object* initialize_Lean_Meta_SynthInstance(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Apply(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Apply(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Util_FindMVar(lean_io_mk_world()); +res = initialize_Lean_Util_FindMVar(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Message(lean_io_mk_world()); +res = initialize_Lean_Meta_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_ExprDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_ExprDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_SynthInstance(lean_io_mk_world()); +res = initialize_Lean_Meta_SynthInstance(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1); -l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1); -l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2 = _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2); -l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3 = _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3); -l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4 = _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4); -l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5 = _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5); -l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6 = _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6); -l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7 = _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7); -l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8 = _init_l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8); +l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1 = _init_l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_1__getExpectedNumArgsAux___closed__1); +l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1 = _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__1); +l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2 = _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__2); +l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3 = _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__3); +l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4 = _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__4); +l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5 = _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__5); +l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6 = _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__6); +l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7 = _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__7); +l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8 = _init_l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_3__throwApplyError___rarg___closed__8); l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__1 = _init_l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__1(); lean_mark_persistent(l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__1); l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__2 = _init_l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__2(); lean_mark_persistent(l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__2); l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__3 = _init_l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__3(); lean_mark_persistent(l_Nat_forMAux___main___at_Lean_Meta_synthAppInstances___spec__1___closed__3); -l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1); +l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1 = _init_l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Apply_5__reorderNonDependentFirst___closed__1); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Assert.c b/stage0/stdlib/Lean/Meta/Tactic/Assert.c similarity index 98% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Assert.c rename to stage0/stdlib/Lean/Meta/Tactic/Assert.c index 7040ff4ea0..19bcf59691 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Assert.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Assert.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Assert -// Imports: Init.Lean.Meta.Tactic.Util +// Module: Lean.Meta.Tactic.Assert +// Imports: Lean.Meta.Tactic.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -572,13 +572,13 @@ lean_dec(x_5); return x_7; } } -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Assert(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Assert(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_assert___closed__1 = _init_l_Lean_Meta_assert___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Assumption.c b/stage0/stdlib/Lean/Meta/Tactic/Assumption.c similarity index 98% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Assumption.c rename to stage0/stdlib/Lean/Meta/Tactic/Assumption.c index 70ae498089..16302fe6fa 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Assumption.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Assumption.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Assumption -// Imports: Init.Lean.Meta.ExprDefEq Init.Lean.Meta.Tactic.Util +// Module: Lean.Meta.Tactic.Assumption +// Imports: Lean.Meta.ExprDefEq Lean.Meta.Tactic.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1117,17 +1117,17 @@ lean_dec(x_2); return x_4; } } -lean_object* initialize_Init_Lean_Meta_ExprDefEq(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_ExprDefEq(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Assumption(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Assumption(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_ExprDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_ExprDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_assumptionAux___closed__1 = _init_l_Lean_Meta_assumptionAux___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Cases.c b/stage0/stdlib/Lean/Meta/Tactic/Cases.c similarity index 72% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Cases.c rename to stage0/stdlib/Lean/Meta/Tactic/Cases.c index 2633283cb1..4d0191feb8 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Cases.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Cases.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Cases -// Imports: Init.Lean.Meta.AppBuilder Init.Lean.Meta.Tactic.Induction Init.Lean.Meta.Tactic.Injection Init.Lean.Meta.Tactic.Assert Init.Lean.Meta.Tactic.Subst +// Module: Lean.Meta.Tactic.Cases +// Imports: Lean.Meta.AppBuilder Lean.Meta.Tactic.Induction Lean.Meta.Tactic.Injection Lean.Meta.Tactic.Assert Lean.Meta.Tactic.Subst #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,306 +13,306 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__7; lean_object* l_Lean_Meta_getLCtx___boxed(lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assert(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__5; -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_eq_x3f___closed__2; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_1__mkEqAndProof(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__3; +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8; extern lean_object* l_Lean_MessageData_ofList___closed__3; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4; uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForall(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_generalizeIndices___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_3__withNewIndexEqs___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9; +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___boxed(lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_9__unifyEqs(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_get_expr_assignment(lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarTag(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases___lambda__1___closed__7; lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isApp(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_inhabited; lean_object* l_Lean_Meta_Cases_cases___lambda__1___closed__3; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_3__withNewIndexEqs(lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2; +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__6; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases___lambda__1___closed__5; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___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*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_casesOnSuffix; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___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_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1; -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_substCore(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isTypeCorrect___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5___boxed(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_6__visit_x3f(lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_3__withNewIndexEqs___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases___lambda__1___closed__6; +lean_object* l___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_heq_x3f___closed__2; -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionCore(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f(lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__4; +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_clear(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_generalizeIndices(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_mkNoConfusion___closed__4; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_cases(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10; -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases___lambda__1___closed__1; extern lean_object* l_Lean_Meta_mkHEqRefl___closed__1; -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1; +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___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_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9; -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__1; -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__2; -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3; -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4; -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2; +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5; +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_generalizeIndices___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main(lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_generalizeIndices___closed__1; lean_object* l_Lean_LocalDecl_toExpr(lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8; +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_redLength___main___rarg(lean_object*); lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); uint8_t l_Lean_Expr_isAppOfArity___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__8; extern lean_object* l_HashSet_Inhabited___closed__1; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___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_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5(lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_fvarId(lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_mkEqRefl___closed__2; -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprMVarAt(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* l_Lean_Meta_Cases_cases___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2; +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7; extern lean_object* l_Lean_Meta_casesOnSuffix___closed__1; lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_FVarSubst_get(lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_checkNotAssigned(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLocalDecl(lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_3__withNewIndexEqs(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Cases_cases___lambda__1___closed__4; -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_1__mkEqAndProof(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6; -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_introNCore___at_Lean_Meta_introN___spec__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1; +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isFVar(lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1; +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_generalizeIndices___lambda__1___closed__2; +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_FVarSubst_compose(lean_object*, lean_object*); lean_object* l_Lean_Meta_generalizeIndices___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux(lean_object*); lean_object* l_Lean_Meta_intro1(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited; +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22(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___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5; -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3(lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_9__unifyEqs___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6; extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1___boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___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* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2; +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasFVar(lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqOfHEq(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13(lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_erase___at_Lean_Meta_FVarSubst_erase___spec__1(lean_object*, lean_object*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_6__visit_x3f(lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2; lean_object* l_Lean_Meta_forallTelescopeReducing___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7; +uint8_t l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_induction(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Meta_cases___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_1__mkEqAndProof(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Cases_1__mkEqAndProof(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -583,7 +583,7 @@ return x_76; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___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_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -591,11 +591,11 @@ x_11 = lean_unsigned_to_nat(1u); x_12 = lean_nat_add(x_1, x_11); x_13 = lean_array_push(x_2, x_8); x_14 = lean_array_push(x_3, x_4); -x_15 = l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg(x_5, x_6, x_7, x_12, x_13, x_14, x_9, x_10); +x_15 = l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg(x_5, x_6, x_7, x_12, x_13, x_14, x_9, x_10); return x_15; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1() { _start: { lean_object* x_1; @@ -603,17 +603,17 @@ x_1 = lean_mk_string("h"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___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_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1; +x_2 = l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___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) { +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___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; uint8_t x_10; @@ -636,7 +636,7 @@ x_12 = l_Lean_Expr_Inhabited; x_13 = lean_array_get(x_12, x_1, x_4); x_14 = lean_array_get(x_12, x_2, x_4); lean_inc(x_7); -x_15 = l___private_Init_Lean_Meta_Tactic_Cases_1__mkEqAndProof(x_13, x_14, x_7, x_8); +x_15 = l___private_Lean_Meta_Tactic_Cases_1__mkEqAndProof(x_13, x_14, x_7, x_8); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; @@ -650,7 +650,7 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_16, 1); lean_inc(x_19); lean_dec(x_16); -x_20 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___lambda__1___boxed), 10, 7); +x_20 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___lambda__1___boxed), 10, 7); lean_closure_set(x_20, 0, x_4); lean_closure_set(x_20, 1, x_5); lean_closure_set(x_20, 2, x_6); @@ -658,7 +658,7 @@ lean_closure_set(x_20, 3, x_19); lean_closure_set(x_20, 4, x_1); lean_closure_set(x_20, 5, x_2); lean_closure_set(x_20, 6, x_3); -x_21 = l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2; +x_21 = l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2; x_22 = 0; x_23 = l_Lean_Meta_withLocalDecl___rarg(x_21, x_18, x_22, x_20, x_7, x_17); return x_23; @@ -695,54 +695,54 @@ return x_27; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg), 8, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg), 8, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_1); return x_11; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___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) { +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___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; -x_9 = l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_9; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___rarg), 8, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___rarg), 8, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_3__withNewIndexEqs___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Tactic_Cases_3__withNewIndexEqs___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; x_6 = lean_unsigned_to_nat(0u); x_7 = l_Array_empty___closed__1; -x_8 = l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg(x_1, x_2, x_3, x_6, x_7, x_7, x_4, x_5); +x_8 = l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg(x_1, x_2, x_3, x_6, x_7, x_7, x_4, x_5); return x_8; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_3__withNewIndexEqs(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Tactic_Cases_3__withNewIndexEqs(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Tactic_Cases_3__withNewIndexEqs___rarg), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Cases_3__withNewIndexEqs___rarg), 5, 0); return x_2; } } @@ -1138,7 +1138,7 @@ x_12 = l_Lean_LocalDecl_toExpr(x_1); lean_inc(x_10); lean_inc(x_2); lean_inc(x_12); -x_13 = l___private_Init_Lean_Meta_Tactic_Cases_1__mkEqAndProof(x_12, x_2, x_10, x_11); +x_13 = l___private_Lean_Meta_Tactic_Cases_1__mkEqAndProof(x_12, x_2, x_10, x_11); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; @@ -1163,7 +1163,7 @@ lean_closure_set(x_19, 5, x_6); lean_closure_set(x_19, 6, x_7); lean_closure_set(x_19, 7, x_12); lean_closure_set(x_19, 8, x_18); -x_20 = l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2; +x_20 = l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2; x_21 = 0; x_22 = l_Lean_Meta_withLocalDecl___rarg(x_20, x_16, x_21, x_19, x_10, x_15); return x_22; @@ -1216,7 +1216,7 @@ lean_closure_set(x_10, 3, x_3); lean_closure_set(x_10, 4, x_4); lean_closure_set(x_10, 5, x_5); lean_closure_set(x_10, 6, x_6); -x_11 = l___private_Init_Lean_Meta_Tactic_Cases_3__withNewIndexEqs___rarg(x_6, x_3, x_10, x_8, x_9); +x_11 = l___private_Lean_Meta_Tactic_Cases_3__withNewIndexEqs___rarg(x_6, x_3, x_10, x_8, x_9); return x_11; } } @@ -1817,7 +1817,7 @@ lean_dec(x_3); return x_5; } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_Tactic_Cases_4__mkCasesContext_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, lean_object* x_7) { +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_Tactic_Cases_4__mkCasesContext_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, lean_object* x_7) { _start: { switch (lean_obj_tag(x_3)) { @@ -2066,7 +2066,7 @@ return x_61; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -2137,7 +2137,7 @@ x_23 = lean_mk_array(x_21, x_22); x_24 = lean_unsigned_to_nat(1u); x_25 = lean_nat_sub(x_21, x_24); lean_dec(x_21); -x_26 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f___spec__1(x_4, x_14, x_18, x_23, x_25, x_2, x_19); +x_26 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f___spec__1(x_4, x_14, x_18, x_23, x_25, x_2, x_19); lean_dec(x_2); return x_26; } @@ -2195,16 +2195,16 @@ return x_34; } } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_Tactic_Cases_4__mkCasesContext_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, lean_object* x_7) { +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_Tactic_Cases_4__mkCasesContext_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, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_Expr_withAppAux___main___at___private_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); return x_8; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -2241,7 +2241,7 @@ goto _start; } } } -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___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_6; @@ -2283,7 +2283,7 @@ return x_16; } } } -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +uint8_t l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2297,7 +2297,7 @@ x_7 = lean_nat_sub(x_3, x_6); x_8 = lean_nat_sub(x_2, x_3); lean_dec(x_3); lean_inc(x_8); -x_9 = l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2(x_1, x_8, x_8, x_8); +x_9 = l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2(x_1, x_8, x_8, x_8); lean_dec(x_8); if (x_9 == 0) { @@ -2321,7 +2321,7 @@ return x_12; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(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; @@ -2358,7 +2358,7 @@ return x_10; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(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; @@ -2397,7 +2397,7 @@ return x_14; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -2413,7 +2413,7 @@ else { lean_object* x_10; uint8_t x_11; x_10 = lean_array_fget(x_5, x_7); -x_11 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(x_1, x_2, x_3, x_10); +x_11 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(x_1, x_2, x_3, x_10); lean_dec(x_10); if (x_11 == 0) { @@ -2432,7 +2432,7 @@ return x_11; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -2466,7 +2466,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -2488,7 +2488,7 @@ goto _start; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_4) == 0) @@ -2497,7 +2497,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_4, 0); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9(x_1, x_2, x_3, x_5, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9(x_1, x_2, x_3, x_5, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -2507,13 +2507,13 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_ctor_get(x_4, 0); x_10 = lean_array_get_size(x_9); x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10(x_1, x_2, x_3, x_9, x_9, x_10, x_11); +x_12 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10(x_1, x_2, x_3, x_9, x_9, x_10, x_11); lean_dec(x_10); return x_12; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -2547,7 +2547,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -2569,19 +2569,19 @@ goto _start; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; x_5 = lean_ctor_get(x_4, 0); -x_6 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(x_1, x_2, x_3, x_5); +x_6 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(x_1, x_2, x_3, x_5); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_4, 1); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11(x_1, x_2, x_3, x_4, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11(x_1, x_2, x_3, x_4, x_7, x_8, x_9); lean_dec(x_8); return x_10; } @@ -2591,7 +2591,7 @@ return x_6; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { switch (lean_obj_tag(x_5)) { @@ -2603,7 +2603,7 @@ x_7 = lean_ctor_get(x_5, 0); lean_inc(x_7); lean_dec(x_5); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); lean_dec(x_7); if (x_9 == 0) { @@ -2646,7 +2646,7 @@ lean_dec(x_18); x_20 = lean_ctor_get(x_19, 1); lean_inc(x_20); lean_dec(x_19); -x_21 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7(x_1, x_2, x_3, x_20); +x_21 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7(x_1, x_2, x_3, x_20); lean_dec(x_20); x_22 = lean_box(x_21); x_23 = lean_alloc_ctor(0, 2, 0); @@ -2662,7 +2662,7 @@ x_24 = lean_ctor_get(x_17, 0); lean_inc(x_24); lean_dec(x_17); lean_inc(x_24); -x_25 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_24, x_6); +x_25 = l___private_Lean_MetavarContext_6__visit_x3f(x_24, x_6); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_unbox(x_26); @@ -2713,7 +2713,7 @@ x_35 = lean_ctor_get(x_5, 1); lean_inc(x_35); lean_dec(x_5); lean_inc(x_35); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_35, x_6); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_35, x_6); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -2730,7 +2730,7 @@ if (x_40 == 0) { lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_inc(x_34); -x_41 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_39); +x_41 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_39); x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); x_43 = lean_unbox(x_42); @@ -2785,7 +2785,7 @@ x_51 = lean_ctor_get(x_36, 1); lean_inc(x_51); lean_dec(x_36); lean_inc(x_4); -x_52 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_35, x_51); +x_52 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_35, x_51); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -2801,7 +2801,7 @@ if (x_56 == 0) { lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_inc(x_34); -x_57 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_55); +x_57 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_55); x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); x_59 = lean_unbox(x_58); @@ -2885,7 +2885,7 @@ x_72 = lean_ctor_get(x_5, 2); lean_inc(x_72); lean_dec(x_5); lean_inc(x_71); -x_73 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_71, x_6); +x_73 = l___private_Lean_MetavarContext_6__visit_x3f(x_71, x_6); x_74 = lean_ctor_get(x_73, 0); lean_inc(x_74); x_75 = lean_unbox(x_74); @@ -2898,7 +2898,7 @@ x_76 = lean_ctor_get(x_73, 1); lean_inc(x_76); lean_dec(x_73); lean_inc(x_72); -x_77 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_76); +x_77 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_76); x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); x_79 = lean_unbox(x_78); @@ -2946,7 +2946,7 @@ x_86 = lean_ctor_get(x_73, 1); lean_inc(x_86); lean_dec(x_73); lean_inc(x_4); -x_87 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_71, x_86); +x_87 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_71, x_86); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_unbox(x_88); @@ -2958,7 +2958,7 @@ x_90 = lean_ctor_get(x_87, 1); lean_inc(x_90); lean_dec(x_87); lean_inc(x_72); -x_91 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_90); +x_91 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_90); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_unbox(x_92); @@ -3035,7 +3035,7 @@ x_105 = lean_ctor_get(x_5, 2); lean_inc(x_105); lean_dec(x_5); lean_inc(x_104); -x_106 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_104, x_6); +x_106 = l___private_Lean_MetavarContext_6__visit_x3f(x_104, x_6); x_107 = lean_ctor_get(x_106, 0); lean_inc(x_107); x_108 = lean_unbox(x_107); @@ -3048,7 +3048,7 @@ x_109 = lean_ctor_get(x_106, 1); lean_inc(x_109); lean_dec(x_106); lean_inc(x_105); -x_110 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_109); +x_110 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_109); x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); x_112 = lean_unbox(x_111); @@ -3096,7 +3096,7 @@ x_119 = lean_ctor_get(x_106, 1); lean_inc(x_119); lean_dec(x_106); lean_inc(x_4); -x_120 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_104, x_119); +x_120 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_104, x_119); x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); x_122 = lean_unbox(x_121); @@ -3108,7 +3108,7 @@ x_123 = lean_ctor_get(x_120, 1); lean_inc(x_123); lean_dec(x_120); lean_inc(x_105); -x_124 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_123); +x_124 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_123); x_125 = lean_ctor_get(x_124, 0); lean_inc(x_125); x_126 = lean_unbox(x_125); @@ -3187,7 +3187,7 @@ x_139 = lean_ctor_get(x_5, 3); lean_inc(x_139); lean_dec(x_5); lean_inc(x_137); -x_176 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_137, x_6); +x_176 = l___private_Lean_MetavarContext_6__visit_x3f(x_137, x_6); x_177 = lean_ctor_get(x_176, 0); lean_inc(x_177); x_178 = lean_unbox(x_177); @@ -3212,7 +3212,7 @@ x_181 = lean_ctor_get(x_176, 1); lean_inc(x_181); lean_dec(x_176); lean_inc(x_4); -x_182 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_137, x_181); +x_182 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_137, x_181); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_ctor_get(x_182, 1); @@ -3230,7 +3230,7 @@ if (x_140 == 0) { lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_inc(x_138); -x_142 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_138, x_141); +x_142 = l___private_Lean_MetavarContext_6__visit_x3f(x_138, x_141); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_unbox(x_143); @@ -3243,7 +3243,7 @@ x_145 = lean_ctor_get(x_142, 1); lean_inc(x_145); lean_dec(x_142); lean_inc(x_139); -x_146 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_145); +x_146 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_145); x_147 = lean_ctor_get(x_146, 0); lean_inc(x_147); x_148 = lean_unbox(x_147); @@ -3291,7 +3291,7 @@ x_155 = lean_ctor_get(x_142, 1); lean_inc(x_155); lean_dec(x_142); lean_inc(x_4); -x_156 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_138, x_155); +x_156 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_138, x_155); x_157 = lean_ctor_get(x_156, 0); lean_inc(x_157); x_158 = lean_unbox(x_157); @@ -3303,7 +3303,7 @@ x_159 = lean_ctor_get(x_156, 1); lean_inc(x_159); lean_dec(x_156); lean_inc(x_139); -x_160 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_159); +x_160 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_159); x_161 = lean_ctor_get(x_160, 0); lean_inc(x_161); x_162 = lean_unbox(x_161); @@ -3392,7 +3392,7 @@ x_186 = lean_ctor_get(x_5, 1); lean_inc(x_186); lean_dec(x_5); lean_inc(x_186); -x_187 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_186, x_6); +x_187 = l___private_Lean_MetavarContext_6__visit_x3f(x_186, x_6); x_188 = lean_ctor_get(x_187, 0); lean_inc(x_188); x_189 = lean_unbox(x_188); @@ -3440,7 +3440,7 @@ x_196 = lean_ctor_get(x_5, 2); lean_inc(x_196); lean_dec(x_5); lean_inc(x_196); -x_197 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_196, x_6); +x_197 = l___private_Lean_MetavarContext_6__visit_x3f(x_196, x_6); x_198 = lean_ctor_get(x_197, 0); lean_inc(x_198); x_199 = lean_unbox(x_198); @@ -3496,7 +3496,7 @@ return x_208; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -3512,7 +3512,7 @@ else { lean_object* x_10; uint8_t x_11; x_10 = lean_array_fget(x_5, x_7); -x_11 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(x_1, x_2, x_3, x_10); +x_11 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(x_1, x_2, x_3, x_10); lean_dec(x_10); if (x_11 == 0) { @@ -3531,7 +3531,7 @@ return x_11; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -3565,7 +3565,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -3587,7 +3587,7 @@ goto _start; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_4) == 0) @@ -3596,7 +3596,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_4, 0); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15(x_1, x_2, x_3, x_5, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15(x_1, x_2, x_3, x_5, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -3606,13 +3606,13 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_ctor_get(x_4, 0); x_10 = lean_array_get_size(x_9); x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16(x_1, x_2, x_3, x_9, x_9, x_10, x_11); +x_12 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16(x_1, x_2, x_3, x_9, x_9, x_10, x_11); lean_dec(x_10); return x_12; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -3646,7 +3646,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -3668,19 +3668,19 @@ goto _start; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; x_5 = lean_ctor_get(x_4, 0); -x_6 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(x_1, x_2, x_3, x_5); +x_6 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(x_1, x_2, x_3, x_5); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_4, 1); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17(x_1, x_2, x_3, x_4, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17(x_1, x_2, x_3, x_4, x_7, x_8, x_9); lean_dec(x_8); return x_10; } @@ -3690,7 +3690,7 @@ return x_6; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { switch (lean_obj_tag(x_5)) { @@ -3702,7 +3702,7 @@ x_7 = lean_ctor_get(x_5, 0); lean_inc(x_7); lean_dec(x_5); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); lean_dec(x_7); if (x_9 == 0) { @@ -3745,7 +3745,7 @@ lean_dec(x_18); x_20 = lean_ctor_get(x_19, 1); lean_inc(x_20); lean_dec(x_19); -x_21 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13(x_1, x_2, x_3, x_20); +x_21 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13(x_1, x_2, x_3, x_20); lean_dec(x_20); x_22 = lean_box(x_21); x_23 = lean_alloc_ctor(0, 2, 0); @@ -3761,7 +3761,7 @@ x_24 = lean_ctor_get(x_17, 0); lean_inc(x_24); lean_dec(x_17); lean_inc(x_24); -x_25 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_24, x_6); +x_25 = l___private_Lean_MetavarContext_6__visit_x3f(x_24, x_6); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_unbox(x_26); @@ -3812,7 +3812,7 @@ x_35 = lean_ctor_get(x_5, 1); lean_inc(x_35); lean_dec(x_5); lean_inc(x_35); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_35, x_6); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_35, x_6); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -3829,7 +3829,7 @@ if (x_40 == 0) { lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_inc(x_34); -x_41 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_39); +x_41 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_39); x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); x_43 = lean_unbox(x_42); @@ -3884,7 +3884,7 @@ x_51 = lean_ctor_get(x_36, 1); lean_inc(x_51); lean_dec(x_36); lean_inc(x_4); -x_52 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_35, x_51); +x_52 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_35, x_51); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -3900,7 +3900,7 @@ if (x_56 == 0) { lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_inc(x_34); -x_57 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_55); +x_57 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_55); x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); x_59 = lean_unbox(x_58); @@ -3984,7 +3984,7 @@ x_72 = lean_ctor_get(x_5, 2); lean_inc(x_72); lean_dec(x_5); lean_inc(x_71); -x_73 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_71, x_6); +x_73 = l___private_Lean_MetavarContext_6__visit_x3f(x_71, x_6); x_74 = lean_ctor_get(x_73, 0); lean_inc(x_74); x_75 = lean_unbox(x_74); @@ -3997,7 +3997,7 @@ x_76 = lean_ctor_get(x_73, 1); lean_inc(x_76); lean_dec(x_73); lean_inc(x_72); -x_77 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_76); +x_77 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_76); x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); x_79 = lean_unbox(x_78); @@ -4045,7 +4045,7 @@ x_86 = lean_ctor_get(x_73, 1); lean_inc(x_86); lean_dec(x_73); lean_inc(x_4); -x_87 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_71, x_86); +x_87 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_71, x_86); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_unbox(x_88); @@ -4057,7 +4057,7 @@ x_90 = lean_ctor_get(x_87, 1); lean_inc(x_90); lean_dec(x_87); lean_inc(x_72); -x_91 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_90); +x_91 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_90); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_unbox(x_92); @@ -4134,7 +4134,7 @@ x_105 = lean_ctor_get(x_5, 2); lean_inc(x_105); lean_dec(x_5); lean_inc(x_104); -x_106 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_104, x_6); +x_106 = l___private_Lean_MetavarContext_6__visit_x3f(x_104, x_6); x_107 = lean_ctor_get(x_106, 0); lean_inc(x_107); x_108 = lean_unbox(x_107); @@ -4147,7 +4147,7 @@ x_109 = lean_ctor_get(x_106, 1); lean_inc(x_109); lean_dec(x_106); lean_inc(x_105); -x_110 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_109); +x_110 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_109); x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); x_112 = lean_unbox(x_111); @@ -4195,7 +4195,7 @@ x_119 = lean_ctor_get(x_106, 1); lean_inc(x_119); lean_dec(x_106); lean_inc(x_4); -x_120 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_104, x_119); +x_120 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_104, x_119); x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); x_122 = lean_unbox(x_121); @@ -4207,7 +4207,7 @@ x_123 = lean_ctor_get(x_120, 1); lean_inc(x_123); lean_dec(x_120); lean_inc(x_105); -x_124 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_123); +x_124 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_123); x_125 = lean_ctor_get(x_124, 0); lean_inc(x_125); x_126 = lean_unbox(x_125); @@ -4286,7 +4286,7 @@ x_139 = lean_ctor_get(x_5, 3); lean_inc(x_139); lean_dec(x_5); lean_inc(x_137); -x_176 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_137, x_6); +x_176 = l___private_Lean_MetavarContext_6__visit_x3f(x_137, x_6); x_177 = lean_ctor_get(x_176, 0); lean_inc(x_177); x_178 = lean_unbox(x_177); @@ -4311,7 +4311,7 @@ x_181 = lean_ctor_get(x_176, 1); lean_inc(x_181); lean_dec(x_176); lean_inc(x_4); -x_182 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_137, x_181); +x_182 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_137, x_181); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_ctor_get(x_182, 1); @@ -4329,7 +4329,7 @@ if (x_140 == 0) { lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_inc(x_138); -x_142 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_138, x_141); +x_142 = l___private_Lean_MetavarContext_6__visit_x3f(x_138, x_141); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_unbox(x_143); @@ -4342,7 +4342,7 @@ x_145 = lean_ctor_get(x_142, 1); lean_inc(x_145); lean_dec(x_142); lean_inc(x_139); -x_146 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_145); +x_146 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_145); x_147 = lean_ctor_get(x_146, 0); lean_inc(x_147); x_148 = lean_unbox(x_147); @@ -4390,7 +4390,7 @@ x_155 = lean_ctor_get(x_142, 1); lean_inc(x_155); lean_dec(x_142); lean_inc(x_4); -x_156 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_138, x_155); +x_156 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_138, x_155); x_157 = lean_ctor_get(x_156, 0); lean_inc(x_157); x_158 = lean_unbox(x_157); @@ -4402,7 +4402,7 @@ x_159 = lean_ctor_get(x_156, 1); lean_inc(x_159); lean_dec(x_156); lean_inc(x_139); -x_160 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_159); +x_160 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_159); x_161 = lean_ctor_get(x_160, 0); lean_inc(x_161); x_162 = lean_unbox(x_161); @@ -4491,7 +4491,7 @@ x_186 = lean_ctor_get(x_5, 1); lean_inc(x_186); lean_dec(x_5); lean_inc(x_186); -x_187 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_186, x_6); +x_187 = l___private_Lean_MetavarContext_6__visit_x3f(x_186, x_6); x_188 = lean_ctor_get(x_187, 0); lean_inc(x_188); x_189 = lean_unbox(x_188); @@ -4539,7 +4539,7 @@ x_196 = lean_ctor_get(x_5, 2); lean_inc(x_196); lean_dec(x_5); lean_inc(x_196); -x_197 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_196, x_6); +x_197 = l___private_Lean_MetavarContext_6__visit_x3f(x_196, x_6); x_198 = lean_ctor_get(x_197, 0); lean_inc(x_198); x_199 = lean_unbox(x_198); @@ -4595,7 +4595,7 @@ return x_208; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -4611,7 +4611,7 @@ else { lean_object* x_10; uint8_t x_11; x_10 = lean_array_fget(x_5, x_7); -x_11 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(x_1, x_2, x_3, x_10); +x_11 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(x_1, x_2, x_3, x_10); lean_dec(x_10); if (x_11 == 0) { @@ -4630,7 +4630,7 @@ return x_11; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -4664,7 +4664,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -4686,7 +4686,7 @@ goto _start; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_4) == 0) @@ -4695,7 +4695,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_4, 0); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21(x_1, x_2, x_3, x_5, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21(x_1, x_2, x_3, x_5, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -4705,13 +4705,13 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_ctor_get(x_4, 0); x_10 = lean_array_get_size(x_9); x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22(x_1, x_2, x_3, x_9, x_9, x_10, x_11); +x_12 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22(x_1, x_2, x_3, x_9, x_9, x_10, x_11); lean_dec(x_10); return x_12; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -4745,7 +4745,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -4767,19 +4767,19 @@ goto _start; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; x_5 = lean_ctor_get(x_4, 0); -x_6 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(x_1, x_2, x_3, x_5); +x_6 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(x_1, x_2, x_3, x_5); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_4, 1); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23(x_1, x_2, x_3, x_4, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23(x_1, x_2, x_3, x_4, x_7, x_8, x_9); lean_dec(x_8); return x_10; } @@ -4789,7 +4789,7 @@ return x_6; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { switch (lean_obj_tag(x_5)) { @@ -4801,7 +4801,7 @@ x_7 = lean_ctor_get(x_5, 0); lean_inc(x_7); lean_dec(x_5); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); lean_dec(x_7); if (x_9 == 0) { @@ -4844,7 +4844,7 @@ lean_dec(x_18); x_20 = lean_ctor_get(x_19, 1); lean_inc(x_20); lean_dec(x_19); -x_21 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19(x_1, x_2, x_3, x_20); +x_21 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19(x_1, x_2, x_3, x_20); lean_dec(x_20); x_22 = lean_box(x_21); x_23 = lean_alloc_ctor(0, 2, 0); @@ -4860,7 +4860,7 @@ x_24 = lean_ctor_get(x_17, 0); lean_inc(x_24); lean_dec(x_17); lean_inc(x_24); -x_25 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_24, x_6); +x_25 = l___private_Lean_MetavarContext_6__visit_x3f(x_24, x_6); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_unbox(x_26); @@ -4911,7 +4911,7 @@ x_35 = lean_ctor_get(x_5, 1); lean_inc(x_35); lean_dec(x_5); lean_inc(x_35); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_35, x_6); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_35, x_6); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -4928,7 +4928,7 @@ if (x_40 == 0) { lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_inc(x_34); -x_41 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_39); +x_41 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_39); x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); x_43 = lean_unbox(x_42); @@ -4983,7 +4983,7 @@ x_51 = lean_ctor_get(x_36, 1); lean_inc(x_51); lean_dec(x_36); lean_inc(x_4); -x_52 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_35, x_51); +x_52 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_35, x_51); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -4999,7 +4999,7 @@ if (x_56 == 0) { lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_inc(x_34); -x_57 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_55); +x_57 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_55); x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); x_59 = lean_unbox(x_58); @@ -5083,7 +5083,7 @@ x_72 = lean_ctor_get(x_5, 2); lean_inc(x_72); lean_dec(x_5); lean_inc(x_71); -x_73 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_71, x_6); +x_73 = l___private_Lean_MetavarContext_6__visit_x3f(x_71, x_6); x_74 = lean_ctor_get(x_73, 0); lean_inc(x_74); x_75 = lean_unbox(x_74); @@ -5096,7 +5096,7 @@ x_76 = lean_ctor_get(x_73, 1); lean_inc(x_76); lean_dec(x_73); lean_inc(x_72); -x_77 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_76); +x_77 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_76); x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); x_79 = lean_unbox(x_78); @@ -5144,7 +5144,7 @@ x_86 = lean_ctor_get(x_73, 1); lean_inc(x_86); lean_dec(x_73); lean_inc(x_4); -x_87 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_71, x_86); +x_87 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_71, x_86); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_unbox(x_88); @@ -5156,7 +5156,7 @@ x_90 = lean_ctor_get(x_87, 1); lean_inc(x_90); lean_dec(x_87); lean_inc(x_72); -x_91 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_90); +x_91 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_90); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_unbox(x_92); @@ -5233,7 +5233,7 @@ x_105 = lean_ctor_get(x_5, 2); lean_inc(x_105); lean_dec(x_5); lean_inc(x_104); -x_106 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_104, x_6); +x_106 = l___private_Lean_MetavarContext_6__visit_x3f(x_104, x_6); x_107 = lean_ctor_get(x_106, 0); lean_inc(x_107); x_108 = lean_unbox(x_107); @@ -5246,7 +5246,7 @@ x_109 = lean_ctor_get(x_106, 1); lean_inc(x_109); lean_dec(x_106); lean_inc(x_105); -x_110 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_109); +x_110 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_109); x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); x_112 = lean_unbox(x_111); @@ -5294,7 +5294,7 @@ x_119 = lean_ctor_get(x_106, 1); lean_inc(x_119); lean_dec(x_106); lean_inc(x_4); -x_120 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_104, x_119); +x_120 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_104, x_119); x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); x_122 = lean_unbox(x_121); @@ -5306,7 +5306,7 @@ x_123 = lean_ctor_get(x_120, 1); lean_inc(x_123); lean_dec(x_120); lean_inc(x_105); -x_124 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_123); +x_124 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_123); x_125 = lean_ctor_get(x_124, 0); lean_inc(x_125); x_126 = lean_unbox(x_125); @@ -5385,7 +5385,7 @@ x_139 = lean_ctor_get(x_5, 3); lean_inc(x_139); lean_dec(x_5); lean_inc(x_137); -x_176 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_137, x_6); +x_176 = l___private_Lean_MetavarContext_6__visit_x3f(x_137, x_6); x_177 = lean_ctor_get(x_176, 0); lean_inc(x_177); x_178 = lean_unbox(x_177); @@ -5410,7 +5410,7 @@ x_181 = lean_ctor_get(x_176, 1); lean_inc(x_181); lean_dec(x_176); lean_inc(x_4); -x_182 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_137, x_181); +x_182 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_137, x_181); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_ctor_get(x_182, 1); @@ -5428,7 +5428,7 @@ if (x_140 == 0) { lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_inc(x_138); -x_142 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_138, x_141); +x_142 = l___private_Lean_MetavarContext_6__visit_x3f(x_138, x_141); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_unbox(x_143); @@ -5441,7 +5441,7 @@ x_145 = lean_ctor_get(x_142, 1); lean_inc(x_145); lean_dec(x_142); lean_inc(x_139); -x_146 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_145); +x_146 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_145); x_147 = lean_ctor_get(x_146, 0); lean_inc(x_147); x_148 = lean_unbox(x_147); @@ -5489,7 +5489,7 @@ x_155 = lean_ctor_get(x_142, 1); lean_inc(x_155); lean_dec(x_142); lean_inc(x_4); -x_156 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_138, x_155); +x_156 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_138, x_155); x_157 = lean_ctor_get(x_156, 0); lean_inc(x_157); x_158 = lean_unbox(x_157); @@ -5501,7 +5501,7 @@ x_159 = lean_ctor_get(x_156, 1); lean_inc(x_159); lean_dec(x_156); lean_inc(x_139); -x_160 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_159); +x_160 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_159); x_161 = lean_ctor_get(x_160, 0); lean_inc(x_161); x_162 = lean_unbox(x_161); @@ -5590,7 +5590,7 @@ x_186 = lean_ctor_get(x_5, 1); lean_inc(x_186); lean_dec(x_5); lean_inc(x_186); -x_187 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_186, x_6); +x_187 = l___private_Lean_MetavarContext_6__visit_x3f(x_186, x_6); x_188 = lean_ctor_get(x_187, 0); lean_inc(x_188); x_189 = lean_unbox(x_188); @@ -5638,7 +5638,7 @@ x_196 = lean_ctor_get(x_5, 2); lean_inc(x_196); lean_dec(x_5); lean_inc(x_196); -x_197 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_196, x_6); +x_197 = l___private_Lean_MetavarContext_6__visit_x3f(x_196, x_6); x_198 = lean_ctor_get(x_197, 0); lean_inc(x_198); x_199 = lean_unbox(x_198); @@ -5694,7 +5694,7 @@ return x_208; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -5710,7 +5710,7 @@ else { lean_object* x_10; uint8_t x_11; x_10 = lean_array_fget(x_5, x_7); -x_11 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(x_1, x_2, x_3, x_10); +x_11 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(x_1, x_2, x_3, x_10); lean_dec(x_10); if (x_11 == 0) { @@ -5729,7 +5729,7 @@ return x_11; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -5763,7 +5763,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -5785,7 +5785,7 @@ goto _start; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_4) == 0) @@ -5794,7 +5794,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_4, 0); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27(x_1, x_2, x_3, x_5, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27(x_1, x_2, x_3, x_5, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -5804,13 +5804,13 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_ctor_get(x_4, 0); x_10 = lean_array_get_size(x_9); x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28(x_1, x_2, x_3, x_9, x_9, x_10, x_11); +x_12 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28(x_1, x_2, x_3, x_9, x_9, x_10, x_11); lean_dec(x_10); return x_12; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -5844,7 +5844,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -5866,19 +5866,19 @@ goto _start; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; x_5 = lean_ctor_get(x_4, 0); -x_6 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(x_1, x_2, x_3, x_5); +x_6 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(x_1, x_2, x_3, x_5); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_4, 1); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29(x_1, x_2, x_3, x_4, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29(x_1, x_2, x_3, x_4, x_7, x_8, x_9); lean_dec(x_8); return x_10; } @@ -5888,7 +5888,7 @@ return x_6; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { switch (lean_obj_tag(x_5)) { @@ -5900,7 +5900,7 @@ x_7 = lean_ctor_get(x_5, 0); lean_inc(x_7); lean_dec(x_5); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); lean_dec(x_7); if (x_9 == 0) { @@ -5943,7 +5943,7 @@ lean_dec(x_18); x_20 = lean_ctor_get(x_19, 1); lean_inc(x_20); lean_dec(x_19); -x_21 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25(x_1, x_2, x_3, x_20); +x_21 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25(x_1, x_2, x_3, x_20); lean_dec(x_20); x_22 = lean_box(x_21); x_23 = lean_alloc_ctor(0, 2, 0); @@ -5959,7 +5959,7 @@ x_24 = lean_ctor_get(x_17, 0); lean_inc(x_24); lean_dec(x_17); lean_inc(x_24); -x_25 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_24, x_6); +x_25 = l___private_Lean_MetavarContext_6__visit_x3f(x_24, x_6); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_unbox(x_26); @@ -6010,7 +6010,7 @@ x_35 = lean_ctor_get(x_5, 1); lean_inc(x_35); lean_dec(x_5); lean_inc(x_35); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_35, x_6); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_35, x_6); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -6027,7 +6027,7 @@ if (x_40 == 0) { lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_inc(x_34); -x_41 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_39); +x_41 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_39); x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); x_43 = lean_unbox(x_42); @@ -6082,7 +6082,7 @@ x_51 = lean_ctor_get(x_36, 1); lean_inc(x_51); lean_dec(x_36); lean_inc(x_4); -x_52 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_35, x_51); +x_52 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_35, x_51); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -6098,7 +6098,7 @@ if (x_56 == 0) { lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_inc(x_34); -x_57 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_55); +x_57 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_55); x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); x_59 = lean_unbox(x_58); @@ -6182,7 +6182,7 @@ x_72 = lean_ctor_get(x_5, 2); lean_inc(x_72); lean_dec(x_5); lean_inc(x_71); -x_73 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_71, x_6); +x_73 = l___private_Lean_MetavarContext_6__visit_x3f(x_71, x_6); x_74 = lean_ctor_get(x_73, 0); lean_inc(x_74); x_75 = lean_unbox(x_74); @@ -6195,7 +6195,7 @@ x_76 = lean_ctor_get(x_73, 1); lean_inc(x_76); lean_dec(x_73); lean_inc(x_72); -x_77 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_76); +x_77 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_76); x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); x_79 = lean_unbox(x_78); @@ -6243,7 +6243,7 @@ x_86 = lean_ctor_get(x_73, 1); lean_inc(x_86); lean_dec(x_73); lean_inc(x_4); -x_87 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_71, x_86); +x_87 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_71, x_86); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_unbox(x_88); @@ -6255,7 +6255,7 @@ x_90 = lean_ctor_get(x_87, 1); lean_inc(x_90); lean_dec(x_87); lean_inc(x_72); -x_91 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_90); +x_91 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_90); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_unbox(x_92); @@ -6332,7 +6332,7 @@ x_105 = lean_ctor_get(x_5, 2); lean_inc(x_105); lean_dec(x_5); lean_inc(x_104); -x_106 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_104, x_6); +x_106 = l___private_Lean_MetavarContext_6__visit_x3f(x_104, x_6); x_107 = lean_ctor_get(x_106, 0); lean_inc(x_107); x_108 = lean_unbox(x_107); @@ -6345,7 +6345,7 @@ x_109 = lean_ctor_get(x_106, 1); lean_inc(x_109); lean_dec(x_106); lean_inc(x_105); -x_110 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_109); +x_110 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_109); x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); x_112 = lean_unbox(x_111); @@ -6393,7 +6393,7 @@ x_119 = lean_ctor_get(x_106, 1); lean_inc(x_119); lean_dec(x_106); lean_inc(x_4); -x_120 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_104, x_119); +x_120 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_104, x_119); x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); x_122 = lean_unbox(x_121); @@ -6405,7 +6405,7 @@ x_123 = lean_ctor_get(x_120, 1); lean_inc(x_123); lean_dec(x_120); lean_inc(x_105); -x_124 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_123); +x_124 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_123); x_125 = lean_ctor_get(x_124, 0); lean_inc(x_125); x_126 = lean_unbox(x_125); @@ -6484,7 +6484,7 @@ x_139 = lean_ctor_get(x_5, 3); lean_inc(x_139); lean_dec(x_5); lean_inc(x_137); -x_176 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_137, x_6); +x_176 = l___private_Lean_MetavarContext_6__visit_x3f(x_137, x_6); x_177 = lean_ctor_get(x_176, 0); lean_inc(x_177); x_178 = lean_unbox(x_177); @@ -6509,7 +6509,7 @@ x_181 = lean_ctor_get(x_176, 1); lean_inc(x_181); lean_dec(x_176); lean_inc(x_4); -x_182 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_137, x_181); +x_182 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_137, x_181); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_ctor_get(x_182, 1); @@ -6527,7 +6527,7 @@ if (x_140 == 0) { lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_inc(x_138); -x_142 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_138, x_141); +x_142 = l___private_Lean_MetavarContext_6__visit_x3f(x_138, x_141); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_unbox(x_143); @@ -6540,7 +6540,7 @@ x_145 = lean_ctor_get(x_142, 1); lean_inc(x_145); lean_dec(x_142); lean_inc(x_139); -x_146 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_145); +x_146 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_145); x_147 = lean_ctor_get(x_146, 0); lean_inc(x_147); x_148 = lean_unbox(x_147); @@ -6588,7 +6588,7 @@ x_155 = lean_ctor_get(x_142, 1); lean_inc(x_155); lean_dec(x_142); lean_inc(x_4); -x_156 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_138, x_155); +x_156 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_138, x_155); x_157 = lean_ctor_get(x_156, 0); lean_inc(x_157); x_158 = lean_unbox(x_157); @@ -6600,7 +6600,7 @@ x_159 = lean_ctor_get(x_156, 1); lean_inc(x_159); lean_dec(x_156); lean_inc(x_139); -x_160 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_159); +x_160 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_159); x_161 = lean_ctor_get(x_160, 0); lean_inc(x_161); x_162 = lean_unbox(x_161); @@ -6689,7 +6689,7 @@ x_186 = lean_ctor_get(x_5, 1); lean_inc(x_186); lean_dec(x_5); lean_inc(x_186); -x_187 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_186, x_6); +x_187 = l___private_Lean_MetavarContext_6__visit_x3f(x_186, x_6); x_188 = lean_ctor_get(x_187, 0); lean_inc(x_188); x_189 = lean_unbox(x_188); @@ -6737,7 +6737,7 @@ x_196 = lean_ctor_get(x_5, 2); lean_inc(x_196); lean_dec(x_5); lean_inc(x_196); -x_197 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_196, x_6); +x_197 = l___private_Lean_MetavarContext_6__visit_x3f(x_196, x_6); x_198 = lean_ctor_get(x_197, 0); lean_inc(x_198); x_199 = lean_unbox(x_198); @@ -6793,7 +6793,7 @@ return x_208; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -6809,7 +6809,7 @@ else { lean_object* x_10; uint8_t x_11; x_10 = lean_array_fget(x_5, x_7); -x_11 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(x_1, x_2, x_3, x_10); +x_11 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(x_1, x_2, x_3, x_10); lean_dec(x_10); if (x_11 == 0) { @@ -6828,7 +6828,7 @@ return x_11; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -6862,7 +6862,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -6884,7 +6884,7 @@ goto _start; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_4) == 0) @@ -6893,7 +6893,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_4, 0); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33(x_1, x_2, x_3, x_5, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33(x_1, x_2, x_3, x_5, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -6903,13 +6903,13 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_ctor_get(x_4, 0); x_10 = lean_array_get_size(x_9); x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34(x_1, x_2, x_3, x_9, x_9, x_10, x_11); +x_12 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34(x_1, x_2, x_3, x_9, x_9, x_10, x_11); lean_dec(x_10); return x_12; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -6943,7 +6943,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -6965,19 +6965,19 @@ goto _start; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; x_5 = lean_ctor_get(x_4, 0); -x_6 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(x_1, x_2, x_3, x_5); +x_6 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(x_1, x_2, x_3, x_5); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_4, 1); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35(x_1, x_2, x_3, x_4, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35(x_1, x_2, x_3, x_4, x_7, x_8, x_9); lean_dec(x_8); return x_10; } @@ -6987,7 +6987,7 @@ return x_6; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { switch (lean_obj_tag(x_5)) { @@ -6999,7 +6999,7 @@ x_7 = lean_ctor_get(x_5, 0); lean_inc(x_7); lean_dec(x_5); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); lean_dec(x_7); if (x_9 == 0) { @@ -7042,7 +7042,7 @@ lean_dec(x_18); x_20 = lean_ctor_get(x_19, 1); lean_inc(x_20); lean_dec(x_19); -x_21 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31(x_1, x_2, x_3, x_20); +x_21 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31(x_1, x_2, x_3, x_20); lean_dec(x_20); x_22 = lean_box(x_21); x_23 = lean_alloc_ctor(0, 2, 0); @@ -7058,7 +7058,7 @@ x_24 = lean_ctor_get(x_17, 0); lean_inc(x_24); lean_dec(x_17); lean_inc(x_24); -x_25 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_24, x_6); +x_25 = l___private_Lean_MetavarContext_6__visit_x3f(x_24, x_6); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_unbox(x_26); @@ -7109,7 +7109,7 @@ x_35 = lean_ctor_get(x_5, 1); lean_inc(x_35); lean_dec(x_5); lean_inc(x_35); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_35, x_6); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_35, x_6); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -7126,7 +7126,7 @@ if (x_40 == 0) { lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_inc(x_34); -x_41 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_39); +x_41 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_39); x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); x_43 = lean_unbox(x_42); @@ -7181,7 +7181,7 @@ x_51 = lean_ctor_get(x_36, 1); lean_inc(x_51); lean_dec(x_36); lean_inc(x_4); -x_52 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_35, x_51); +x_52 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_35, x_51); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -7197,7 +7197,7 @@ if (x_56 == 0) { lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_inc(x_34); -x_57 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_55); +x_57 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_55); x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); x_59 = lean_unbox(x_58); @@ -7281,7 +7281,7 @@ x_72 = lean_ctor_get(x_5, 2); lean_inc(x_72); lean_dec(x_5); lean_inc(x_71); -x_73 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_71, x_6); +x_73 = l___private_Lean_MetavarContext_6__visit_x3f(x_71, x_6); x_74 = lean_ctor_get(x_73, 0); lean_inc(x_74); x_75 = lean_unbox(x_74); @@ -7294,7 +7294,7 @@ x_76 = lean_ctor_get(x_73, 1); lean_inc(x_76); lean_dec(x_73); lean_inc(x_72); -x_77 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_76); +x_77 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_76); x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); x_79 = lean_unbox(x_78); @@ -7342,7 +7342,7 @@ x_86 = lean_ctor_get(x_73, 1); lean_inc(x_86); lean_dec(x_73); lean_inc(x_4); -x_87 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_71, x_86); +x_87 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_71, x_86); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_unbox(x_88); @@ -7354,7 +7354,7 @@ x_90 = lean_ctor_get(x_87, 1); lean_inc(x_90); lean_dec(x_87); lean_inc(x_72); -x_91 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_90); +x_91 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_90); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_unbox(x_92); @@ -7431,7 +7431,7 @@ x_105 = lean_ctor_get(x_5, 2); lean_inc(x_105); lean_dec(x_5); lean_inc(x_104); -x_106 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_104, x_6); +x_106 = l___private_Lean_MetavarContext_6__visit_x3f(x_104, x_6); x_107 = lean_ctor_get(x_106, 0); lean_inc(x_107); x_108 = lean_unbox(x_107); @@ -7444,7 +7444,7 @@ x_109 = lean_ctor_get(x_106, 1); lean_inc(x_109); lean_dec(x_106); lean_inc(x_105); -x_110 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_109); +x_110 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_109); x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); x_112 = lean_unbox(x_111); @@ -7492,7 +7492,7 @@ x_119 = lean_ctor_get(x_106, 1); lean_inc(x_119); lean_dec(x_106); lean_inc(x_4); -x_120 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_104, x_119); +x_120 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_104, x_119); x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); x_122 = lean_unbox(x_121); @@ -7504,7 +7504,7 @@ x_123 = lean_ctor_get(x_120, 1); lean_inc(x_123); lean_dec(x_120); lean_inc(x_105); -x_124 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_123); +x_124 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_123); x_125 = lean_ctor_get(x_124, 0); lean_inc(x_125); x_126 = lean_unbox(x_125); @@ -7583,7 +7583,7 @@ x_139 = lean_ctor_get(x_5, 3); lean_inc(x_139); lean_dec(x_5); lean_inc(x_137); -x_176 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_137, x_6); +x_176 = l___private_Lean_MetavarContext_6__visit_x3f(x_137, x_6); x_177 = lean_ctor_get(x_176, 0); lean_inc(x_177); x_178 = lean_unbox(x_177); @@ -7608,7 +7608,7 @@ x_181 = lean_ctor_get(x_176, 1); lean_inc(x_181); lean_dec(x_176); lean_inc(x_4); -x_182 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_137, x_181); +x_182 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_137, x_181); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_ctor_get(x_182, 1); @@ -7626,7 +7626,7 @@ if (x_140 == 0) { lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_inc(x_138); -x_142 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_138, x_141); +x_142 = l___private_Lean_MetavarContext_6__visit_x3f(x_138, x_141); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_unbox(x_143); @@ -7639,7 +7639,7 @@ x_145 = lean_ctor_get(x_142, 1); lean_inc(x_145); lean_dec(x_142); lean_inc(x_139); -x_146 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_145); +x_146 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_145); x_147 = lean_ctor_get(x_146, 0); lean_inc(x_147); x_148 = lean_unbox(x_147); @@ -7687,7 +7687,7 @@ x_155 = lean_ctor_get(x_142, 1); lean_inc(x_155); lean_dec(x_142); lean_inc(x_4); -x_156 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_138, x_155); +x_156 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_138, x_155); x_157 = lean_ctor_get(x_156, 0); lean_inc(x_157); x_158 = lean_unbox(x_157); @@ -7699,7 +7699,7 @@ x_159 = lean_ctor_get(x_156, 1); lean_inc(x_159); lean_dec(x_156); lean_inc(x_139); -x_160 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_159); +x_160 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_159); x_161 = lean_ctor_get(x_160, 0); lean_inc(x_161); x_162 = lean_unbox(x_161); @@ -7788,7 +7788,7 @@ x_186 = lean_ctor_get(x_5, 1); lean_inc(x_186); lean_dec(x_5); lean_inc(x_186); -x_187 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_186, x_6); +x_187 = l___private_Lean_MetavarContext_6__visit_x3f(x_186, x_6); x_188 = lean_ctor_get(x_187, 0); lean_inc(x_188); x_189 = lean_unbox(x_188); @@ -7836,7 +7836,7 @@ x_196 = lean_ctor_get(x_5, 2); lean_inc(x_196); lean_dec(x_5); lean_inc(x_196); -x_197 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_196, x_6); +x_197 = l___private_Lean_MetavarContext_6__visit_x3f(x_196, x_6); x_198 = lean_ctor_get(x_197, 0); lean_inc(x_198); x_199 = lean_unbox(x_198); @@ -7892,7 +7892,7 @@ return x_208; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -7908,7 +7908,7 @@ else { lean_object* x_10; uint8_t x_11; x_10 = lean_array_fget(x_5, x_7); -x_11 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(x_1, x_2, x_3, x_10); +x_11 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(x_1, x_2, x_3, x_10); lean_dec(x_10); if (x_11 == 0) { @@ -7927,7 +7927,7 @@ return x_11; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -7961,7 +7961,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -7983,7 +7983,7 @@ goto _start; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_4) == 0) @@ -7992,7 +7992,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_4, 0); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39(x_1, x_2, x_3, x_5, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39(x_1, x_2, x_3, x_5, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -8002,13 +8002,13 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_ctor_get(x_4, 0); x_10 = lean_array_get_size(x_9); x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40(x_1, x_2, x_3, x_9, x_9, x_10, x_11); +x_12 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40(x_1, x_2, x_3, x_9, x_9, x_10, x_11); lean_dec(x_10); return x_12; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -8042,7 +8042,7 @@ lean_dec(x_10); x_15 = l_Lean_LocalDecl_fvarId(x_14); lean_dec(x_14); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); +x_17 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_15, x_2, x_3, x_16); lean_dec(x_15); if (x_17 == 0) { @@ -8064,19 +8064,19 @@ goto _start; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; x_5 = lean_ctor_get(x_4, 0); -x_6 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(x_1, x_2, x_3, x_5); +x_6 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(x_1, x_2, x_3, x_5); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_4, 1); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41(x_1, x_2, x_3, x_4, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41(x_1, x_2, x_3, x_4, x_7, x_8, x_9); lean_dec(x_8); return x_10; } @@ -8086,7 +8086,7 @@ return x_6; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { switch (lean_obj_tag(x_5)) { @@ -8098,7 +8098,7 @@ x_7 = lean_ctor_get(x_5, 0); lean_inc(x_7); lean_dec(x_5); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_7, x_2, x_3, x_8); lean_dec(x_7); if (x_9 == 0) { @@ -8141,7 +8141,7 @@ lean_dec(x_18); x_20 = lean_ctor_get(x_19, 1); lean_inc(x_20); lean_dec(x_19); -x_21 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37(x_1, x_2, x_3, x_20); +x_21 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37(x_1, x_2, x_3, x_20); lean_dec(x_20); x_22 = lean_box(x_21); x_23 = lean_alloc_ctor(0, 2, 0); @@ -8157,7 +8157,7 @@ x_24 = lean_ctor_get(x_17, 0); lean_inc(x_24); lean_dec(x_17); lean_inc(x_24); -x_25 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_24, x_6); +x_25 = l___private_Lean_MetavarContext_6__visit_x3f(x_24, x_6); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_unbox(x_26); @@ -8208,7 +8208,7 @@ x_35 = lean_ctor_get(x_5, 1); lean_inc(x_35); lean_dec(x_5); lean_inc(x_35); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_35, x_6); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_35, x_6); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -8225,7 +8225,7 @@ if (x_40 == 0) { lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_inc(x_34); -x_41 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_39); +x_41 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_39); x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); x_43 = lean_unbox(x_42); @@ -8280,7 +8280,7 @@ x_51 = lean_ctor_get(x_36, 1); lean_inc(x_51); lean_dec(x_36); lean_inc(x_4); -x_52 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_35, x_51); +x_52 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_35, x_51); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -8296,7 +8296,7 @@ if (x_56 == 0) { lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_inc(x_34); -x_57 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_34, x_55); +x_57 = l___private_Lean_MetavarContext_6__visit_x3f(x_34, x_55); x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); x_59 = lean_unbox(x_58); @@ -8380,7 +8380,7 @@ x_72 = lean_ctor_get(x_5, 2); lean_inc(x_72); lean_dec(x_5); lean_inc(x_71); -x_73 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_71, x_6); +x_73 = l___private_Lean_MetavarContext_6__visit_x3f(x_71, x_6); x_74 = lean_ctor_get(x_73, 0); lean_inc(x_74); x_75 = lean_unbox(x_74); @@ -8393,7 +8393,7 @@ x_76 = lean_ctor_get(x_73, 1); lean_inc(x_76); lean_dec(x_73); lean_inc(x_72); -x_77 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_76); +x_77 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_76); x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); x_79 = lean_unbox(x_78); @@ -8441,7 +8441,7 @@ x_86 = lean_ctor_get(x_73, 1); lean_inc(x_86); lean_dec(x_73); lean_inc(x_4); -x_87 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_71, x_86); +x_87 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_71, x_86); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_unbox(x_88); @@ -8453,7 +8453,7 @@ x_90 = lean_ctor_get(x_87, 1); lean_inc(x_90); lean_dec(x_87); lean_inc(x_72); -x_91 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_72, x_90); +x_91 = l___private_Lean_MetavarContext_6__visit_x3f(x_72, x_90); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_unbox(x_92); @@ -8530,7 +8530,7 @@ x_105 = lean_ctor_get(x_5, 2); lean_inc(x_105); lean_dec(x_5); lean_inc(x_104); -x_106 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_104, x_6); +x_106 = l___private_Lean_MetavarContext_6__visit_x3f(x_104, x_6); x_107 = lean_ctor_get(x_106, 0); lean_inc(x_107); x_108 = lean_unbox(x_107); @@ -8543,7 +8543,7 @@ x_109 = lean_ctor_get(x_106, 1); lean_inc(x_109); lean_dec(x_106); lean_inc(x_105); -x_110 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_109); +x_110 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_109); x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); x_112 = lean_unbox(x_111); @@ -8591,7 +8591,7 @@ x_119 = lean_ctor_get(x_106, 1); lean_inc(x_119); lean_dec(x_106); lean_inc(x_4); -x_120 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_104, x_119); +x_120 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_104, x_119); x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); x_122 = lean_unbox(x_121); @@ -8603,7 +8603,7 @@ x_123 = lean_ctor_get(x_120, 1); lean_inc(x_123); lean_dec(x_120); lean_inc(x_105); -x_124 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_105, x_123); +x_124 = l___private_Lean_MetavarContext_6__visit_x3f(x_105, x_123); x_125 = lean_ctor_get(x_124, 0); lean_inc(x_125); x_126 = lean_unbox(x_125); @@ -8682,7 +8682,7 @@ x_139 = lean_ctor_get(x_5, 3); lean_inc(x_139); lean_dec(x_5); lean_inc(x_137); -x_176 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_137, x_6); +x_176 = l___private_Lean_MetavarContext_6__visit_x3f(x_137, x_6); x_177 = lean_ctor_get(x_176, 0); lean_inc(x_177); x_178 = lean_unbox(x_177); @@ -8707,7 +8707,7 @@ x_181 = lean_ctor_get(x_176, 1); lean_inc(x_181); lean_dec(x_176); lean_inc(x_4); -x_182 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_137, x_181); +x_182 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_137, x_181); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_ctor_get(x_182, 1); @@ -8725,7 +8725,7 @@ if (x_140 == 0) { lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_inc(x_138); -x_142 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_138, x_141); +x_142 = l___private_Lean_MetavarContext_6__visit_x3f(x_138, x_141); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); x_144 = lean_unbox(x_143); @@ -8738,7 +8738,7 @@ x_145 = lean_ctor_get(x_142, 1); lean_inc(x_145); lean_dec(x_142); lean_inc(x_139); -x_146 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_145); +x_146 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_145); x_147 = lean_ctor_get(x_146, 0); lean_inc(x_147); x_148 = lean_unbox(x_147); @@ -8786,7 +8786,7 @@ x_155 = lean_ctor_get(x_142, 1); lean_inc(x_155); lean_dec(x_142); lean_inc(x_4); -x_156 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_138, x_155); +x_156 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_138, x_155); x_157 = lean_ctor_get(x_156, 0); lean_inc(x_157); x_158 = lean_unbox(x_157); @@ -8798,7 +8798,7 @@ x_159 = lean_ctor_get(x_156, 1); lean_inc(x_159); lean_dec(x_156); lean_inc(x_139); -x_160 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_139, x_159); +x_160 = l___private_Lean_MetavarContext_6__visit_x3f(x_139, x_159); x_161 = lean_ctor_get(x_160, 0); lean_inc(x_161); x_162 = lean_unbox(x_161); @@ -8887,7 +8887,7 @@ x_186 = lean_ctor_get(x_5, 1); lean_inc(x_186); lean_dec(x_5); lean_inc(x_186); -x_187 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_186, x_6); +x_187 = l___private_Lean_MetavarContext_6__visit_x3f(x_186, x_6); x_188 = lean_ctor_get(x_187, 0); lean_inc(x_188); x_189 = lean_unbox(x_188); @@ -8935,7 +8935,7 @@ x_196 = lean_ctor_get(x_5, 2); lean_inc(x_196); lean_dec(x_5); lean_inc(x_196); -x_197 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_196, x_6); +x_197 = l___private_Lean_MetavarContext_6__visit_x3f(x_196, x_6); x_198 = lean_ctor_get(x_197, 0); lean_inc(x_198); x_199 = lean_unbox(x_198); @@ -8991,7 +8991,7 @@ return x_208; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; @@ -9009,7 +9009,7 @@ else lean_object* x_11; uint8_t x_12; x_11 = lean_array_fget(x_6, x_8); lean_inc(x_4); -x_12 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(x_1, x_2, x_3, x_4, x_11); +x_12 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(x_1, x_2, x_3, x_4, x_11); lean_dec(x_11); if (x_12 == 0) { @@ -9029,7 +9029,7 @@ return x_12; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; @@ -9070,7 +9070,7 @@ if (x_19 == 0) { lean_object* x_20; uint8_t x_21; x_20 = lean_unsigned_to_nat(0u); -x_21 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(x_1, x_16, x_2, x_3, x_20); +x_21 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(x_1, x_16, x_2, x_3, x_20); lean_dec(x_16); if (x_21 == 0) { @@ -9099,7 +9099,7 @@ else lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; x_26 = l_HashSet_Inhabited___closed__1; lean_inc(x_4); -x_27 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_22, x_26); +x_27 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_22, x_26); x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); lean_dec(x_27); @@ -9129,7 +9129,7 @@ else lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; x_34 = l_HashSet_Inhabited___closed__1; lean_inc(x_4); -x_35 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_22, x_34); +x_35 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_22, x_34); x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); lean_dec(x_35); @@ -9182,7 +9182,7 @@ else lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; x_71 = l_HashSet_Inhabited___closed__1; lean_inc(x_4); -x_72 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_42, x_71); +x_72 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_42, x_71); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_ctor_get(x_72, 1); @@ -9200,7 +9200,7 @@ else lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; x_76 = l_HashSet_Inhabited___closed__1; lean_inc(x_4); -x_77 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_42, x_76); +x_77 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_42, x_76); x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); x_79 = lean_ctor_get(x_77, 1); @@ -9236,7 +9236,7 @@ else { lean_object* x_49; lean_object* x_50; uint8_t x_51; lean_inc(x_4); -x_49 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_43, x_45); +x_49 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_43, x_45); x_50 = lean_ctor_get(x_49, 0); lean_inc(x_50); lean_dec(x_49); @@ -9265,7 +9265,7 @@ else { lean_object* x_56; lean_object* x_57; uint8_t x_58; lean_inc(x_4); -x_56 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_43, x_45); +x_56 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_43, x_45); x_57 = lean_ctor_get(x_56, 0); lean_inc(x_57); lean_dec(x_56); @@ -9330,7 +9330,7 @@ goto _start; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_5) == 0) @@ -9339,7 +9339,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_6 = lean_ctor_get(x_5, 0); x_7 = lean_array_get_size(x_6); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44(x_1, x_2, x_3, x_4, x_6, x_6, x_7, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44(x_1, x_2, x_3, x_4, x_6, x_6, x_7, x_8); lean_dec(x_7); return x_9; } @@ -9349,13 +9349,13 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; x_10 = lean_ctor_get(x_5, 0); x_11 = lean_array_get_size(x_10); x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45(x_1, x_2, x_3, x_4, x_10, x_10, x_11, x_12); +x_13 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45(x_1, x_2, x_3, x_4, x_10, x_10, x_11, x_12); lean_dec(x_11); return x_13; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; @@ -9396,7 +9396,7 @@ if (x_19 == 0) { lean_object* x_20; uint8_t x_21; x_20 = lean_unsigned_to_nat(0u); -x_21 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(x_1, x_16, x_2, x_3, x_20); +x_21 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(x_1, x_16, x_2, x_3, x_20); lean_dec(x_16); if (x_21 == 0) { @@ -9425,7 +9425,7 @@ else lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; x_26 = l_HashSet_Inhabited___closed__1; lean_inc(x_4); -x_27 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_22, x_26); +x_27 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_22, x_26); x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); lean_dec(x_27); @@ -9455,7 +9455,7 @@ else lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; x_34 = l_HashSet_Inhabited___closed__1; lean_inc(x_4); -x_35 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_22, x_34); +x_35 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_22, x_34); x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); lean_dec(x_35); @@ -9508,7 +9508,7 @@ else lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; x_71 = l_HashSet_Inhabited___closed__1; lean_inc(x_4); -x_72 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_42, x_71); +x_72 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_42, x_71); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_ctor_get(x_72, 1); @@ -9526,7 +9526,7 @@ else lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; x_76 = l_HashSet_Inhabited___closed__1; lean_inc(x_4); -x_77 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_42, x_76); +x_77 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_42, x_76); x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); x_79 = lean_ctor_get(x_77, 1); @@ -9562,7 +9562,7 @@ else { lean_object* x_49; lean_object* x_50; uint8_t x_51; lean_inc(x_4); -x_49 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_43, x_45); +x_49 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_43, x_45); x_50 = lean_ctor_get(x_49, 0); lean_inc(x_50); lean_dec(x_49); @@ -9591,7 +9591,7 @@ else { lean_object* x_56; lean_object* x_57; uint8_t x_58; lean_inc(x_4); -x_56 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_43, x_45); +x_56 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_43, x_45); x_57 = lean_ctor_get(x_56, 0); lean_inc(x_57); lean_dec(x_56); @@ -9656,20 +9656,20 @@ goto _start; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42(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; x_6 = lean_ctor_get(x_5, 0); lean_inc(x_4); -x_7 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(x_1, x_2, x_3, x_4, x_6); +x_7 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(x_1, x_2, x_3, x_4, x_6); if (x_7 == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_ctor_get(x_5, 1); x_9 = lean_array_get_size(x_8); x_10 = lean_unsigned_to_nat(0u); -x_11 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_10); +x_11 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_10); lean_dec(x_9); return x_11; } @@ -9680,7 +9680,7 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -9691,12 +9691,12 @@ if (x_5 == 0) lean_object* x_6; lean_object* x_7; uint8_t x_8; x_6 = lean_array_get_size(x_4); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1(x_1, x_4, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1(x_1, x_4, x_6, x_7); if (x_8 == 0) { uint8_t x_9; lean_inc(x_6); -x_9 = l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3(x_4, x_6, x_6); +x_9 = l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3(x_4, x_6, x_6); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; @@ -9704,7 +9704,7 @@ x_10 = lean_ctor_get(x_2, 1); x_11 = lean_ctor_get(x_3, 1); lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); -x_13 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42(x_1, x_4, x_6, x_11, x_12); +x_13 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42(x_1, x_4, x_6, x_11, x_12); lean_dec(x_6); if (x_13 == 0) { @@ -9763,11 +9763,11 @@ return x_28; } } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -9775,11 +9775,11 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2(x_1, x_2, x_3, x_4); +x_5 = l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -9787,22 +9787,22 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l_Nat_anyAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3(x_1, x_2, x_3); +x_4 = l_Nat_anyAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__3(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); x_5 = lean_box(x_4); return x_5; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__4(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -9811,11 +9811,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___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* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___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_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__5(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -9824,11 +9824,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__9(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); @@ -9839,11 +9839,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__10(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); @@ -9854,11 +9854,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__8(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -9867,11 +9867,11 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__11(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); @@ -9882,11 +9882,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__7(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -9895,22 +9895,22 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__6(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__15(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); @@ -9921,11 +9921,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__16(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); @@ -9936,11 +9936,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__14(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -9949,11 +9949,11 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__17(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); @@ -9964,11 +9964,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__13(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -9977,22 +9977,22 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__12(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__21(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); @@ -10003,11 +10003,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__22(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); @@ -10018,11 +10018,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__20(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -10031,11 +10031,11 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__23(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); @@ -10046,11 +10046,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__19(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -10059,22 +10059,22 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__18(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__27(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); @@ -10085,11 +10085,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__28(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); @@ -10100,11 +10100,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__26(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -10113,11 +10113,11 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__29(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); @@ -10128,11 +10128,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__25(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -10141,22 +10141,22 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__24(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__33(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); @@ -10167,11 +10167,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__34(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); @@ -10182,11 +10182,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__32(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -10195,11 +10195,11 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__35(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); @@ -10210,11 +10210,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__31(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -10223,22 +10223,22 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__30(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__39(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); @@ -10249,11 +10249,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__40(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); @@ -10264,11 +10264,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__38(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -10277,11 +10277,11 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__41(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); @@ -10292,11 +10292,11 @@ x_9 = lean_box(x_8); return x_9; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__37(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -10305,22 +10305,22 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__36(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; lean_object* x_10; -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__44(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); @@ -10331,11 +10331,11 @@ x_10 = lean_box(x_9); return x_10; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; lean_object* x_10; -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__45(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); @@ -10346,11 +10346,11 @@ x_10 = lean_box(x_9); return x_10; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43___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_PersistentArray_anyMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(x_1, x_2, x_3, x_4, x_5); +x_6 = l_PersistentArray_anyMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__43(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); @@ -10359,11 +10359,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; lean_object* x_10; -x_9 = l_Array_anyRangeMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Array_anyRangeMAux___main___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__46(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); @@ -10374,11 +10374,11 @@ x_10 = lean_box(x_9); return x_10; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42___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_PersistentArray_anyM___at___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42(x_1, x_2, x_3, x_4, x_5); +x_6 = l_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___spec__42(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); @@ -10387,17 +10387,17 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -10504,7 +10504,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -10528,7 +10528,7 @@ x_11 = lean_array_fget(x_4, x_3); x_12 = lean_unsigned_to_nat(0u); x_13 = lean_array_fset(x_4, x_3, x_12); x_14 = x_11; -x_15 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1(x_1, x_2, x_12, x_14, x_5, x_6); +x_15 = l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1(x_1, x_2, x_12, x_14, x_5, x_6); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); @@ -10546,7 +10546,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices(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; @@ -10554,7 +10554,7 @@ x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); x_6 = x_2; x_7 = lean_unsigned_to_nat(0u); -x_8 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2___boxed), 6, 4); +x_8 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2___boxed), 6, 4); lean_closure_set(x_8, 0, x_1); lean_closure_set(x_8, 1, x_5); lean_closure_set(x_8, 2, x_7); @@ -10564,29 +10564,29 @@ x_10 = lean_apply_2(x_9, x_3, x_4); return x_10; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___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_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___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* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_7; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10623,36 +10623,36 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(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 = x_1; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1(x_2, x_4, x_3); +x_5 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1(x_2, x_4, x_3); x_6 = x_5; return x_6; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___spec__1(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_1, x_2); +x_3 = l___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10686,7 +10686,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10720,7 +10720,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10754,7 +10754,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10788,7 +10788,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10822,7 +10822,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10856,7 +10856,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10890,7 +10890,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10924,7 +10924,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10958,7 +10958,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10992,7 +10992,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11026,7 +11026,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11060,7 +11060,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11094,7 +11094,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11128,7 +11128,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -11136,17 +11136,17 @@ x_1 = lean_mk_string("cases"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___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_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1; +x_2 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___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* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___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) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; @@ -11167,7 +11167,7 @@ lean_dec(x_9); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_16 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2; +x_16 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2; x_17 = l_Lean_Meta_injectionCore___lambda__1___closed__2; x_18 = l_Lean_Meta_throwTacticEx___rarg(x_16, x_1, x_17, x_7, x_8); lean_dec(x_7); @@ -11246,7 +11246,7 @@ x_83 = lean_ctor_get(x_4, 1); lean_inc(x_83); x_84 = x_83; x_85 = lean_unsigned_to_nat(0u); -x_86 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2(x_81, x_85, x_84); +x_86 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2(x_81, x_85, x_84); x_87 = x_86; x_88 = lean_ctor_get(x_4, 2); lean_inc(x_88); @@ -11259,7 +11259,7 @@ lean_ctor_set(x_90, 2, 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_5); -x_92 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_91, x_7, x_80); +x_92 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_91, x_7, x_80); lean_dec(x_7); return x_92; } @@ -11334,7 +11334,7 @@ x_110 = lean_ctor_get(x_4, 1); lean_inc(x_110); x_111 = x_110; x_112 = lean_unsigned_to_nat(0u); -x_113 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3(x_108, x_112, x_111); +x_113 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3(x_108, x_112, x_111); x_114 = x_113; x_115 = lean_ctor_get(x_4, 2); lean_inc(x_115); @@ -11347,7 +11347,7 @@ lean_ctor_set(x_117, 2, x_116); x_118 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_118, 0, x_117); lean_ctor_set(x_118, 1, x_5); -x_119 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_118, x_7, x_107); +x_119 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_118, x_7, x_107); lean_dec(x_7); return x_119; } @@ -11459,7 +11459,7 @@ x_139 = lean_ctor_get(x_4, 1); lean_inc(x_139); x_140 = x_139; x_141 = lean_unsigned_to_nat(0u); -x_142 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4(x_137, x_141, x_140); +x_142 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4(x_137, x_141, x_140); x_143 = x_142; x_144 = lean_ctor_get(x_4, 2); lean_inc(x_144); @@ -11472,7 +11472,7 @@ lean_ctor_set(x_146, 2, x_145); x_147 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_147, 0, x_146); lean_ctor_set(x_147, 1, x_5); -x_148 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_147, x_7, x_136); +x_148 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_147, x_7, x_136); lean_dec(x_7); return x_148; } @@ -11527,7 +11527,7 @@ x_160 = lean_ctor_get(x_4, 1); lean_inc(x_160); x_161 = x_160; x_162 = lean_unsigned_to_nat(0u); -x_163 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5(x_158, x_162, x_161); +x_163 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5(x_158, x_162, x_161); x_164 = x_163; x_165 = lean_ctor_get(x_4, 2); lean_inc(x_165); @@ -11540,7 +11540,7 @@ lean_ctor_set(x_167, 2, x_166); x_168 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_168, 0, x_167); lean_ctor_set(x_168, 1, x_5); -x_169 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_168, x_7, x_157); +x_169 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_168, x_7, x_157); lean_dec(x_7); return x_169; } @@ -11595,7 +11595,7 @@ x_181 = lean_ctor_get(x_4, 1); lean_inc(x_181); x_182 = x_181; x_183 = lean_unsigned_to_nat(0u); -x_184 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6(x_179, x_183, x_182); +x_184 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6(x_179, x_183, x_182); x_185 = x_184; x_186 = lean_ctor_get(x_4, 2); lean_inc(x_186); @@ -11608,7 +11608,7 @@ lean_ctor_set(x_188, 2, x_187); x_189 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_189, 0, x_188); lean_ctor_set(x_189, 1, x_5); -x_190 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_189, x_7, x_178); +x_190 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_189, x_7, x_178); lean_dec(x_7); return x_190; } @@ -11663,7 +11663,7 @@ x_202 = lean_ctor_get(x_4, 1); lean_inc(x_202); x_203 = x_202; x_204 = lean_unsigned_to_nat(0u); -x_205 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7(x_200, x_204, x_203); +x_205 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7(x_200, x_204, x_203); x_206 = x_205; x_207 = lean_ctor_get(x_4, 2); lean_inc(x_207); @@ -11676,7 +11676,7 @@ lean_ctor_set(x_209, 2, x_208); x_210 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_210, 0, x_209); lean_ctor_set(x_210, 1, x_5); -x_211 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_210, x_7, x_199); +x_211 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_210, x_7, x_199); lean_dec(x_7); return x_211; } @@ -11731,7 +11731,7 @@ x_223 = lean_ctor_get(x_4, 1); lean_inc(x_223); x_224 = x_223; x_225 = lean_unsigned_to_nat(0u); -x_226 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8(x_221, x_225, x_224); +x_226 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8(x_221, x_225, x_224); x_227 = x_226; x_228 = lean_ctor_get(x_4, 2); lean_inc(x_228); @@ -11744,7 +11744,7 @@ lean_ctor_set(x_230, 2, x_229); x_231 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_231, 0, x_230); lean_ctor_set(x_231, 1, x_5); -x_232 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_231, x_7, x_220); +x_232 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_231, x_7, x_220); lean_dec(x_7); return x_232; } @@ -11799,7 +11799,7 @@ x_244 = lean_ctor_get(x_4, 1); lean_inc(x_244); x_245 = x_244; x_246 = lean_unsigned_to_nat(0u); -x_247 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9(x_242, x_246, x_245); +x_247 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9(x_242, x_246, x_245); x_248 = x_247; x_249 = lean_ctor_get(x_4, 2); lean_inc(x_249); @@ -11812,7 +11812,7 @@ lean_ctor_set(x_251, 2, x_250); x_252 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_252, 0, x_251); lean_ctor_set(x_252, 1, x_5); -x_253 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_252, x_7, x_241); +x_253 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_252, x_7, x_241); lean_dec(x_7); return x_253; } @@ -11867,7 +11867,7 @@ x_265 = lean_ctor_get(x_4, 1); lean_inc(x_265); x_266 = x_265; x_267 = lean_unsigned_to_nat(0u); -x_268 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10(x_263, x_267, x_266); +x_268 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10(x_263, x_267, x_266); x_269 = x_268; x_270 = lean_ctor_get(x_4, 2); lean_inc(x_270); @@ -11880,7 +11880,7 @@ lean_ctor_set(x_272, 2, x_271); x_273 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_273, 0, x_272); lean_ctor_set(x_273, 1, x_5); -x_274 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_273, x_7, x_262); +x_274 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_273, x_7, x_262); lean_dec(x_7); return x_274; } @@ -11935,7 +11935,7 @@ x_286 = lean_ctor_get(x_4, 1); lean_inc(x_286); x_287 = x_286; x_288 = lean_unsigned_to_nat(0u); -x_289 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11(x_284, x_288, x_287); +x_289 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11(x_284, x_288, x_287); x_290 = x_289; x_291 = lean_ctor_get(x_4, 2); lean_inc(x_291); @@ -11948,7 +11948,7 @@ lean_ctor_set(x_293, 2, x_292); x_294 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_294, 0, x_293); lean_ctor_set(x_294, 1, x_5); -x_295 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_294, x_7, x_283); +x_295 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_294, x_7, x_283); lean_dec(x_7); return x_295; } @@ -12003,7 +12003,7 @@ x_307 = lean_ctor_get(x_4, 1); lean_inc(x_307); x_308 = x_307; x_309 = lean_unsigned_to_nat(0u); -x_310 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12(x_305, x_309, x_308); +x_310 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12(x_305, x_309, x_308); x_311 = x_310; x_312 = lean_ctor_get(x_4, 2); lean_inc(x_312); @@ -12016,7 +12016,7 @@ lean_ctor_set(x_314, 2, x_313); x_315 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_315, 0, x_314); lean_ctor_set(x_315, 1, x_5); -x_316 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_315, x_7, x_304); +x_316 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_315, x_7, x_304); lean_dec(x_7); return x_316; } @@ -12071,7 +12071,7 @@ x_328 = lean_ctor_get(x_4, 1); lean_inc(x_328); x_329 = x_328; x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13(x_326, x_330, x_329); +x_331 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13(x_326, x_330, x_329); x_332 = x_331; x_333 = lean_ctor_get(x_4, 2); lean_inc(x_333); @@ -12084,7 +12084,7 @@ lean_ctor_set(x_335, 2, x_334); x_336 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_336, 0, x_335); lean_ctor_set(x_336, 1, x_5); -x_337 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_336, x_7, x_325); +x_337 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_336, x_7, x_325); lean_dec(x_7); return x_337; } @@ -12139,7 +12139,7 @@ x_349 = lean_ctor_get(x_4, 1); lean_inc(x_349); x_350 = x_349; x_351 = lean_unsigned_to_nat(0u); -x_352 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14(x_347, x_351, x_350); +x_352 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14(x_347, x_351, x_350); x_353 = x_352; x_354 = lean_ctor_get(x_4, 2); lean_inc(x_354); @@ -12152,7 +12152,7 @@ lean_ctor_set(x_356, 2, x_355); x_357 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_357, 0, x_356); lean_ctor_set(x_357, 1, x_5); -x_358 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_357, x_7, x_346); +x_358 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_357, x_7, x_346); lean_dec(x_7); return x_358; } @@ -12219,7 +12219,7 @@ x_40 = lean_ctor_get(x_4, 1); lean_inc(x_40); x_41 = x_40; x_42 = lean_unsigned_to_nat(0u); -x_43 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1(x_38, x_42, x_41); +x_43 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1(x_38, x_42, x_41); x_44 = x_43; x_45 = lean_ctor_get(x_4, 2); lean_inc(x_45); @@ -12232,7 +12232,7 @@ lean_ctor_set(x_47, 2, 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_5); -x_49 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_48, x_7, x_37); +x_49 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_48, x_7, x_37); lean_dec(x_7); return x_49; } @@ -12326,7 +12326,7 @@ lean_ctor_set(x_68, 2, 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_5); -x_70 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_65, x_69, x_7, x_62); +x_70 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_65, x_69, x_7, x_62); lean_dec(x_7); lean_dec(x_65); return x_70; @@ -12447,7 +12447,7 @@ lean_ctor_set(x_378, 2, x_377); x_379 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_379, 0, x_378); lean_ctor_set(x_379, 1, x_5); -x_380 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_379, x_7, x_375); +x_380 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_3, x_379, x_7, x_375); lean_dec(x_7); return x_380; } @@ -12574,7 +12574,7 @@ lean_ctor_set(x_411, 2, x_410); x_412 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_412, 0, x_411); lean_ctor_set(x_412, 1, x_5); -x_413 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_408, x_412, x_7, x_406); +x_413 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_408, x_412, x_7, x_406); lean_dec(x_7); lean_dec(x_408); return x_413; @@ -12693,17 +12693,17 @@ return x_429; } } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; -x_2 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1; +x_1 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_2 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2() { _start: { lean_object* x_1; @@ -12711,27 +12711,27 @@ x_1 = lean_mk_string("unifyEqs ["); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2; +x_1 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3; +x_1 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5() { _start: { lean_object* x_1; @@ -12739,27 +12739,27 @@ x_1 = lean_mk_string("] "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5; +x_1 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6; +x_1 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8() { _start: { lean_object* x_1; @@ -12767,27 +12767,27 @@ x_1 = lean_mk_string("unifyEqs "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8; +x_1 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10() { +lean_object* _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9; +x_1 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -12817,8 +12817,8 @@ goto block_36; else { lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_39 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; -x_40 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_39, x_3, x_4); +x_39 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; +x_40 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_39, x_3, x_4); x_41 = lean_ctor_get(x_40, 0); lean_inc(x_41); x_42 = lean_unbox(x_41); @@ -12844,11 +12844,11 @@ x_47 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_47, 0, x_46); x_48 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_48, 0, x_47); -x_49 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4; +x_49 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4; x_50 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); -x_51 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7; +x_51 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7; x_52 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_52, 0, x_50); lean_ctor_set(x_52, 1, x_51); @@ -12888,7 +12888,7 @@ lean_inc(x_17); x_19 = lean_alloc_closure((void*)(l_Lean_Meta_getLocalDecl), 3, 1); lean_closure_set(x_19, 0, x_17); lean_inc(x_18); -x_20 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___boxed), 8, 5); +x_20 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___boxed), 8, 5); lean_closure_set(x_20, 0, x_18); lean_closure_set(x_20, 1, x_17); lean_closure_set(x_20, 2, x_8); @@ -12987,8 +12987,8 @@ return x_60; else { lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; -x_61 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; -x_62 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_61, x_3, x_4); +x_61 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; +x_62 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_61, x_3, x_4); x_63 = lean_ctor_get(x_62, 0); lean_inc(x_63); x_64 = lean_unbox(x_63); @@ -13032,7 +13032,7 @@ lean_inc(x_71); lean_dec(x_69); x_72 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_72, 0, x_71); -x_73 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10; +x_73 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10; x_74 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); @@ -13062,171 +13062,171 @@ return x_79; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__1(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__2(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__3(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__4(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__5(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__6(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__7(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__8(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__9(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__10(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__11(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__12(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__13(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_umapMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14(x_1, x_2, x_3); +x_4 = l_Array_umapMAux___main___at___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___spec__14(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___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, lean_object* x_8) { +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___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, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_6); lean_dec(x_3); return x_9; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___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___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___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___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_1); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -13249,7 +13249,7 @@ x_11 = lean_array_fget(x_3, x_4); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_add(x_4, x_12); lean_dec(x_4); -x_14 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_1, x_11, x_6, x_7); +x_14 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main(x_1, x_11, x_6, x_7); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; @@ -13308,21 +13308,21 @@ return x_25; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Cases_9__unifyEqs(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; x_5 = lean_unsigned_to_nat(0u); x_6 = l_Array_empty___closed__1; -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1(x_1, x_2, x_2, x_5, x_6, x_3, x_4); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1(x_1, x_2, x_2, x_5, x_6, x_3, x_4); return x_7; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs___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* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Cases_9__unifyEqs___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); @@ -13330,11 +13330,11 @@ lean_dec(x_1); return x_8; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Cases_9__unifyEqs___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___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Tactic_Cases_9__unifyEqs(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -13424,7 +13424,7 @@ lean_inc(x_9); lean_dec(x_8); lean_inc(x_6); lean_inc(x_3); -x_10 = l___private_Init_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f(x_3, x_6, x_9); +x_10 = l___private_Lean_Meta_Tactic_Cases_4__mkCasesContext_x3f(x_3, x_6, x_9); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; @@ -13469,7 +13469,7 @@ lean_inc(x_23); lean_dec(x_22); x_24 = l_Lean_Meta_casesOnSuffix; x_25 = lean_name_mk_string(x_23, x_24); -x_26 = l___private_Init_Lean_Meta_Tactic_Cases_5__hasIndepIndices(x_16, x_6, x_15); +x_26 = l___private_Lean_Meta_Tactic_Cases_5__hasIndepIndices(x_16, x_6, x_15); lean_dec(x_16); x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); @@ -13509,8 +13509,8 @@ goto block_77; else { lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; -x_81 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; -x_82 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_81, x_6, x_32); +x_81 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; +x_82 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_81, x_6, x_32); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); x_84 = lean_ctor_get(x_82, 1); @@ -13538,7 +13538,7 @@ lean_inc(x_39); lean_dec(x_37); lean_inc(x_6); lean_inc(x_31); -x_40 = l___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices(x_31, x_38, x_6, x_39); +x_40 = l___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices(x_31, x_38, x_6, x_39); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; @@ -13547,12 +13547,12 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_40, 1); lean_inc(x_42); lean_dec(x_40); -x_43 = l___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_41, x_21); +x_43 = l___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_41, x_21); lean_dec(x_21); x_44 = lean_ctor_get(x_31, 3); lean_inc(x_44); lean_dec(x_31); -x_45 = l___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs(x_44, x_43, x_6, x_42); +x_45 = l___private_Lean_Meta_Tactic_Cases_9__unifyEqs(x_44, x_43, x_6, x_42); lean_dec(x_6); lean_dec(x_43); lean_dec(x_44); @@ -13620,7 +13620,7 @@ x_55 = l_Lean_Meta_Cases_cases___lambda__1___closed__7; x_56 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); -x_57 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; +x_57 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1; x_58 = l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isTypeCorrect___spec__1(x_57, x_56, x_6, x_36); x_59 = lean_ctor_get(x_58, 1); lean_inc(x_59); @@ -13636,7 +13636,7 @@ lean_inc(x_62); lean_dec(x_60); lean_inc(x_6); lean_inc(x_31); -x_63 = l___private_Init_Lean_Meta_Tactic_Cases_6__elimAuxIndices(x_31, x_61, x_6, x_62); +x_63 = l___private_Lean_Meta_Tactic_Cases_6__elimAuxIndices(x_31, x_61, x_6, x_62); if (lean_obj_tag(x_63) == 0) { lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; @@ -13645,12 +13645,12 @@ lean_inc(x_64); x_65 = lean_ctor_get(x_63, 1); lean_inc(x_65); lean_dec(x_63); -x_66 = l___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_64, x_21); +x_66 = l___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_64, x_21); lean_dec(x_21); x_67 = lean_ctor_get(x_31, 3); lean_inc(x_67); lean_dec(x_31); -x_68 = l___private_Init_Lean_Meta_Tactic_Cases_9__unifyEqs(x_67, x_66, x_6, x_65); +x_68 = l___private_Lean_Meta_Tactic_Cases_9__unifyEqs(x_67, x_66, x_6, x_65); lean_dec(x_6); lean_dec(x_66); lean_dec(x_67); @@ -13753,7 +13753,7 @@ if (x_92 == 0) { lean_object* x_93; lean_object* x_94; x_93 = lean_ctor_get(x_91, 0); -x_94 = l___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_93, x_21); +x_94 = l___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_93, x_21); lean_dec(x_21); lean_ctor_set(x_91, 0, x_94); return x_91; @@ -13766,7 +13766,7 @@ x_96 = lean_ctor_get(x_91, 1); lean_inc(x_96); lean_inc(x_95); lean_dec(x_91); -x_97 = l___private_Init_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_95, x_21); +x_97 = l___private_Lean_Meta_Tactic_Cases_7__toCasesSubgoals(x_95, x_21); lean_dec(x_21); x_98 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_98, 0, x_97); @@ -13861,7 +13861,7 @@ lean_object* l_Lean_Meta_Cases_cases(lean_object* x_1, lean_object* x_2, lean_ob _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_7 = l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2; +x_7 = l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2; x_8 = lean_box(x_4); lean_inc(x_1); x_9 = lean_alloc_closure((void*)(l_Lean_Meta_Cases_cases___lambda__1___boxed), 7, 5); @@ -13952,35 +13952,35 @@ lean_dec(x_5); return x_8; } } -lean_object* initialize_Init_Lean_Meta_AppBuilder(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Induction(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Injection(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Assert(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Subst(lean_object*); +lean_object* initialize_Lean_Meta_AppBuilder(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Induction(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Injection(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Assert(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Subst(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Cases(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Cases(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_AppBuilder(lean_io_mk_world()); +res = initialize_Lean_Meta_AppBuilder(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Induction(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Induction(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Injection(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Injection(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Assert(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Assert(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Subst(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Subst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1); -l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2 = _init_l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2); +l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1 = _init_l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__1); +l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2 = _init_l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_2__withNewIndexEqsAux___main___rarg___closed__2); l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__1 = _init_l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__1(); lean_mark_persistent(l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__1); l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__2 = _init_l_Lean_Expr_withAppAux___main___at_Lean_Meta_generalizeIndices___spec__1___closed__2(); @@ -14003,30 +14003,30 @@ l_Lean_Meta_generalizeIndices___lambda__1___closed__2 = _init_l_Lean_Meta_genera lean_mark_persistent(l_Lean_Meta_generalizeIndices___lambda__1___closed__2); l_Lean_Meta_generalizeIndices___closed__1 = _init_l_Lean_Meta_generalizeIndices___closed__1(); lean_mark_persistent(l_Lean_Meta_generalizeIndices___closed__1); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9); -l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10 = _init_l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__1); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___lambda__1___closed__2); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__1); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__2); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__3); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__4); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__5); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__6); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__7); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__8); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__9); +l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10 = _init_l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cases_8__unifyEqsAux___main___closed__10); l_Lean_Meta_Cases_cases___lambda__1___closed__1 = _init_l_Lean_Meta_Cases_cases___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Meta_Cases_cases___lambda__1___closed__1); l_Lean_Meta_Cases_cases___lambda__1___closed__2 = _init_l_Lean_Meta_Cases_cases___lambda__1___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Clear.c b/stage0/stdlib/Lean/Meta/Tactic/Clear.c similarity index 99% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Clear.c rename to stage0/stdlib/Lean/Meta/Tactic/Clear.c index e9f2e13b41..62cf86c389 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Clear.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Clear.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Clear -// Imports: Init.Lean.Meta.Tactic.Util +// Module: Lean.Meta.Tactic.Clear +// Imports: Lean.Meta.Tactic.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1239,13 +1239,13 @@ lean_dec(x_3); return x_5; } } -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Clear(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Clear(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Array_forMAux___main___at_Lean_Meta_clear___spec__5___closed__1 = _init_l_Array_forMAux___main___at_Lean_Meta_clear___spec__5___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/FVarSubst.c b/stage0/stdlib/Lean/Meta/Tactic/FVarSubst.c similarity index 98% rename from stage0/stdlib/Init/Lean/Meta/Tactic/FVarSubst.c rename to stage0/stdlib/Lean/Meta/Tactic/FVarSubst.c index 542cf9a4b2..fecff60497 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/FVarSubst.c +++ b/stage0/stdlib/Lean/Meta/Tactic/FVarSubst.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.FVarSubst -// Imports: Init.Lean.Expr Init.Lean.Util.ReplaceExpr +// Module: Lean.Meta.Tactic.FVarSubst +// Imports: Lean.Expr Lean.Util.ReplaceExpr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -992,17 +992,17 @@ return x_3; } } } -lean_object* initialize_Init_Lean_Expr(lean_object*); -lean_object* initialize_Init_Lean_Util_ReplaceExpr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Util_ReplaceExpr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_FVarSubst(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_FVarSubst(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_ReplaceExpr(lean_io_mk_world()); +res = initialize_Lean_Util_ReplaceExpr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_FVarSubst_empty = _init_l_Lean_Meta_FVarSubst_empty(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Generalize.c b/stage0/stdlib/Lean/Meta/Tactic/Generalize.c similarity index 97% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Generalize.c rename to stage0/stdlib/Lean/Meta/Tactic/Generalize.c index 8de89dc161..56c1f392b5 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Generalize.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Generalize.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Generalize -// Imports: Init.Lean.Meta.KAbstract Init.Lean.Meta.Tactic.Util +// Module: Lean.Meta.Tactic.Generalize +// Imports: Lean.Meta.KAbstract Lean.Meta.Tactic.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -537,17 +537,17 @@ lean_dec(x_4); return x_6; } } -lean_object* initialize_Init_Lean_Meta_KAbstract(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_KAbstract(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Generalize(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Generalize(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_KAbstract(lean_io_mk_world()); +res = initialize_Lean_Meta_KAbstract(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_generalize___lambda__1___closed__1 = _init_l_Lean_Meta_generalize___lambda__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Induction.c b/stage0/stdlib/Lean/Meta/Tactic/Induction.c similarity index 92% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Induction.c rename to stage0/stdlib/Lean/Meta/Tactic/Induction.c index 74022186f5..4c132525f9 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Induction.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Induction -// Imports: Init.Lean.Meta.RecursorInfo Init.Lean.Meta.SynthInstance Init.Lean.Meta.Tactic.Util Init.Lean.Meta.Tactic.Revert Init.Lean.Meta.Tactic.Intro Init.Lean.Meta.Tactic.Clear Init.Lean.Meta.Tactic.FVarSubst +// Module: Lean.Meta.Tactic.Induction +// Imports: Lean.Meta.RecursorInfo Lean.Meta.SynthInstance Lean.Meta.Tactic.Util Lean.Meta.Tactic.Revert Lean.Meta.Tactic.Intro Lean.Meta.Tactic.Clear Lean.Meta.Tactic.FVarSubst #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,24 +13,25 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_induction___boxed(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_Array_umapMAux___main___at_Lean_Meta_induction___spec__5___closed__4; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_1__getTargetArity(lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); lean_object* l_Lean_Meta_whnfForall(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Meta_induction___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7; -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Meta_induction___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_1__getTargetArity(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_induction___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +lean_object* l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3; extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Meta_getMVarTag(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2; lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Meta_induction___spec__5___closed__3; lean_object* l_Array_umapMAux___main___at_Lean_LocalContext_getFVars___spec__1(lean_object*, lean_object*); @@ -43,44 +44,42 @@ extern lean_object* l_Lean_Name_inhabited; extern lean_object* l_Lean_Level_Inhabited; lean_object* l_Array_iterateMAux___main___at_Lean_Meta_induction___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; -extern lean_object* l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1; -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___closed__4; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___closed__9; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___boxed(lean_object**); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___boxed(lean_object**); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___closed__8; -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___boxed(lean_object**); extern lean_object* l_Array_forMAux___main___at_Lean_Meta_clear___spec__5___closed__8; lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___closed__1; -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___closed__6; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__9___closed__3; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___closed__2; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_5__finalize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_tryClear(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_1__getTargetArity___main(lean_object*); lean_object* l_Lean_Expr_headBeta(lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___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* l___private_Init_Lean_Meta_Tactic_Induction_5__finalize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_elem___main___at_Lean_Meta_induction___spec__2___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7; uint8_t l_Lean_Expr_isHeadBetaTarget(lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_Meta_induction___spec__5___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_Meta_induction___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); @@ -88,51 +87,55 @@ lean_object* l_Array_umapMAux___main___at_Lean_Meta_induction___spec__5___closed lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3___closed__9; lean_object* l_Lean_Meta_getMVarType___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_revert(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_3__getTypeBody(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3; +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_3__getTypeBody___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1; lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3___closed__8; +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__9___closed__2; lean_object* l_Lean_MetavarContext_localDeclDependsOn(lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8; +lean_object* l___private_Lean_Meta_Tactic_Induction_5__finalize(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_synthInstance_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_List_redLength___main___rarg(lean_object*); lean_object* l_Lean_Meta_RecursorInfo_firstIndexPos(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isForall(lean_object*); uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___closed__7; lean_object* l_Lean_mkFVar(lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_InductionSubgoal_inhabited___closed__1; lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___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* l___private_Init_Lean_Meta_Tactic_Induction_1__getTargetArity___main(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4; +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___closed__5; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8___closed__3; lean_object* l_Lean_Meta_mkRecursorInfo(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; lean_object* l_List_foldlM___main___at_Lean_Meta_induction___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_5__finalize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* l_Lean_MetavarContext_exprDependsOn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4; lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_4__finalizeAux___boxed(lean_object**); +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__9___closed__1; lean_object* l_Lean_Meta_checkNotAssigned(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLocalDecl(lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6; +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprMVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___boxed(lean_object**); +lean_object* l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1; lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3___closed__6; -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType(lean_object*); lean_object* l_Lean_Meta_introNCore___at_Lean_Meta_introN___spec__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*); lean_object* l_List_forM___main___at_Lean_Meta_induction___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -141,16 +144,16 @@ lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__9___ uint8_t l_Lean_Expr_isFVar(lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_Meta_induction___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambda(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_intro1(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Induction_4__finalizeAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited; lean_object* lean_mk_array(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6; +lean_object* l___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Level_isZero(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3___closed__5; lean_object* l_Array_umapMAux___main___at_Lean_Meta_induction___spec__5___closed__6; extern lean_object* l_Lean_mkOptionalNode___closed__2; @@ -159,13 +162,10 @@ extern lean_object* l_Lean_Meta_isClassQuick___main___closed__1; lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3___closed__4; -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3___closed__1; lean_object* l_List_forM___main___at_Lean_Meta_induction___spec__1___closed__2; lean_object* l_Lean_Meta_InductionSubgoal_inhabited; -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1; lean_object* l_List_forM___main___at_Lean_Meta_induction___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3___closed__2; @@ -177,7 +177,7 @@ lean_object* l_Lean_Meta_whnfUntil(lean_object*, lean_object*, lean_object*, lea lean_object* l_Nat_forMAux___main___at_Lean_Meta_induction___spec__3___closed__7; lean_object* l_Lean_Meta_induction(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_1__getTargetArity___main(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Tactic_Induction_1__getTargetArity___main(lean_object* x_1) { _start: { lean_object* x_2; @@ -188,7 +188,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_8 = lean_ctor_get(x_1, 2); lean_inc(x_8); lean_dec(x_1); -x_9 = l___private_Init_Lean_Meta_Tactic_Induction_1__getTargetArity___main(x_8); +x_9 = l___private_Lean_Meta_Tactic_Induction_1__getTargetArity___main(x_8); x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_9, x_10); lean_dec(x_9); @@ -233,15 +233,15 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_1__getTargetArity(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Tactic_Induction_1__getTargetArity(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Meta_Tactic_Induction_1__getTargetArity___main(x_1); +x_2 = l___private_Lean_Meta_Tactic_Induction_1__getTargetArity___main(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1() { _start: { lean_object* x_1; @@ -249,17 +249,17 @@ x_1 = lean_mk_string("induction"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___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_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1; +x_2 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3() { _start: { lean_object* x_1; @@ -267,27 +267,27 @@ x_1 = lean_mk_string("ill-formed recursor"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3; +x_1 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4; +x_1 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6() { _start: { lean_object* x_1; @@ -295,27 +295,27 @@ x_1 = lean_mk_string("failed to generate type class instance parameter"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6; +x_1 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7; +x_1 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_3) == 0) @@ -386,8 +386,8 @@ lean_dec(x_4); x_22 = lean_ctor_get(x_17, 1); lean_inc(x_22); lean_dec(x_17); -x_23 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; -x_24 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8; +x_23 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_24 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8; x_25 = l_Lean_Meta_throwTacticEx___rarg(x_23, x_1, x_24, x_5, x_22); lean_dec(x_5); x_26 = !lean_is_exclusive(x_25); @@ -418,8 +418,8 @@ lean_dec(x_4); x_30 = lean_ctor_get(x_13, 1); lean_inc(x_30); lean_dec(x_13); -x_31 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; -x_32 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +x_31 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_32 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; x_33 = l_Lean_Meta_throwTacticEx___rarg(x_31, x_1, x_32, x_5, x_30); lean_dec(x_5); return x_33; @@ -489,8 +489,8 @@ if (x_45 == 0) { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_dec(x_4); -x_46 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; -x_47 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +x_46 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_47 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; x_48 = l_Lean_Meta_throwTacticEx___rarg(x_46, x_1, x_47, x_5, x_6); lean_dec(x_5); return x_48; @@ -508,29 +508,29 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_7; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Meta_Tactic_Induction_2__addRecParams___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_7; @@ -558,7 +558,7 @@ x_1 = l_Lean_Meta_InductionSubgoal_inhabited___closed__1; return x_1; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Tactic_Induction_3__getTypeBody(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; @@ -612,8 +612,8 @@ lean_dec(x_7); x_16 = lean_ctor_get(x_6, 1); lean_inc(x_16); lean_dec(x_6); -x_17 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; -x_18 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +x_17 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_18 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; x_19 = l_Lean_Meta_throwTacticEx___rarg(x_17, x_1, x_18, x_4, x_16); lean_dec(x_4); return x_19; @@ -645,16 +645,16 @@ return x_23; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Tactic_Induction_3__getTypeBody___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); return x_6; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Nat_foldAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -700,7 +700,7 @@ return x_7; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -735,7 +735,7 @@ lean_inc(x_11); x_17 = l_Lean_mkApp(x_15, x_11); lean_inc(x_6); lean_inc(x_1); -x_18 = l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_16, x_11, x_6, x_7); +x_18 = l___private_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_16, x_11, x_6, x_7); lean_dec(x_11); if (lean_obj_tag(x_18) == 0) { @@ -791,7 +791,7 @@ lean_inc(x_11); x_28 = l_Lean_mkApp(x_26, x_11); lean_inc(x_6); lean_inc(x_1); -x_29 = l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_27, x_11, x_6, x_7); +x_29 = l___private_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_27, x_11, x_6, x_7); lean_dec(x_11); if (lean_obj_tag(x_29) == 0) { @@ -841,7 +841,7 @@ return x_37; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +lean_object* l___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_18; @@ -868,8 +868,8 @@ if (x_14 == 0) lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_dec(x_15); lean_dec(x_12); -x_22 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; -x_23 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +x_22 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_23 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; x_24 = l_Lean_Meta_throwTacticEx___rarg(x_22, x_1, x_23, x_16, x_20); lean_dec(x_16); x_25 = !lean_is_exclusive(x_24); @@ -962,8 +962,8 @@ if (x_14 == 0) lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_dec(x_15); lean_dec(x_12); -x_40 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; -x_41 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +x_40 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_41 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; x_42 = l_Lean_Meta_throwTacticEx___rarg(x_40, x_1, x_41, x_16, x_20); lean_dec(x_16); x_43 = !lean_is_exclusive(x_42); @@ -1075,8 +1075,8 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_5); -x_193 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; -x_194 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +x_193 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_194 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; x_195 = l_Lean_Meta_throwTacticEx___rarg(x_193, x_1, x_194, x_16, x_60); lean_dec(x_16); x_196 = !lean_is_exclusive(x_195); @@ -1160,7 +1160,7 @@ lean_inc(x_152); x_154 = l_Lean_mkApp(x_12, x_152); lean_inc(x_16); lean_inc(x_1); -x_155 = l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_19, x_152, x_16, x_153); +x_155 = l___private_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_19, x_152, x_16, x_153); if (lean_obj_tag(x_155) == 0) { lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; @@ -1239,7 +1239,7 @@ lean_inc(x_172); x_173 = l_Lean_mkApp(x_12, x_172); lean_inc(x_16); lean_inc(x_1); -x_174 = l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_19, x_172, x_16, x_171); +x_174 = l___private_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_19, x_172, x_16, x_171); lean_dec(x_172); if (lean_obj_tag(x_174) == 0) { @@ -1334,7 +1334,7 @@ block_140: lean_object* x_68; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_dec(x_67); lean_inc(x_66); -x_68 = l___private_Init_Lean_Meta_Tactic_Induction_1__getTargetArity___main(x_66); +x_68 = l___private_Lean_Meta_Tactic_Induction_1__getTargetArity___main(x_66); x_69 = lean_nat_dec_lt(x_68, x_6); x_70 = lean_nat_sub(x_68, x_6); lean_dec(x_68); @@ -1388,8 +1388,8 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_5); -x_130 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; -x_131 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +x_130 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_131 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; x_132 = l_Lean_Meta_throwTacticEx___rarg(x_130, x_1, x_131, x_16, x_62); lean_dec(x_16); x_133 = !lean_is_exclusive(x_132); @@ -1426,7 +1426,7 @@ lean_inc(x_83); x_85 = l_Lean_mkApp(x_12, x_83); lean_inc(x_16); lean_inc(x_1); -x_86 = l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_19, x_83, x_16, x_84); +x_86 = l___private_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_19, x_83, x_16, x_84); 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; @@ -1480,7 +1480,7 @@ lean_inc(x_106); lean_dec(x_103); lean_inc(x_9); lean_inc(x_71); -x_107 = l_Nat_foldAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1(x_4, x_7, x_72, x_105, x_71, x_71, x_9); +x_107 = l_Nat_foldAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1(x_4, x_7, x_72, x_105, x_71, x_71, x_9); lean_dec(x_71); lean_dec(x_105); lean_dec(x_72); @@ -1708,7 +1708,7 @@ lean_ctor_set(x_204, 1, x_19); x_205 = lean_unsigned_to_nat(0u); lean_inc(x_16); lean_inc(x_1); -x_206 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2(x_1, x_7, x_7, x_205, x_204, x_16, x_20); +x_206 = l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2(x_1, x_7, x_7, x_205, x_204, x_16, x_20); if (lean_obj_tag(x_206) == 0) { lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; @@ -1726,7 +1726,7 @@ lean_inc(x_5); x_211 = l_Lean_mkApp(x_209, x_5); lean_inc(x_16); lean_inc(x_1); -x_212 = l___private_Init_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_210, x_5, x_16, x_208); +x_212 = l___private_Lean_Meta_Tactic_Induction_3__getTypeBody(x_1, x_210, x_5, x_16, x_208); if (lean_obj_tag(x_212) == 0) { lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; uint8_t x_219; @@ -1846,11 +1846,11 @@ return x_232; } } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___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* l_Nat_foldAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Nat_foldAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Nat_foldAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); @@ -1859,17 +1859,17 @@ lean_dec(x_1); return x_8; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___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* l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main___boxed(lean_object** _args) { +lean_object* l___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -1892,7 +1892,7 @@ _start: uint8_t x_18; lean_object* x_19; x_18 = lean_unbox(x_14); lean_dec(x_14); -x_19 = l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_18, x_15, x_16, x_17); +x_19 = l___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_18, x_15, x_16, x_17); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -1902,15 +1902,15 @@ lean_dec(x_2); return x_19; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +lean_object* l___private_Lean_Meta_Tactic_Induction_4__finalizeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_18; -x_18 = l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_18 = l___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_18; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___boxed(lean_object** _args) { +lean_object* l___private_Lean_Meta_Tactic_Induction_4__finalizeAux___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -1933,7 +1933,7 @@ _start: uint8_t x_18; lean_object* x_19; x_18 = lean_unbox(x_14); lean_dec(x_14); -x_19 = l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_18, x_15, x_16, x_17); +x_19 = l___private_Lean_Meta_Tactic_Induction_4__finalizeAux(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_18, x_15, x_16, x_17); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -1943,7 +1943,7 @@ lean_dec(x_2); return x_19; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_5__finalize(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_Tactic_Induction_5__finalize(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_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; @@ -1957,7 +1957,7 @@ lean_inc(x_12); x_13 = lean_ctor_get(x_11, 1); lean_inc(x_13); lean_dec(x_11); -x_14 = l___private_Init_Lean_Meta_Tactic_Induction_1__getTargetArity___main(x_12); +x_14 = l___private_Lean_Meta_Tactic_Induction_1__getTargetArity___main(x_12); lean_inc(x_9); lean_inc(x_8); x_15 = l_Lean_Meta_inferType(x_8, x_9, x_13); @@ -1979,7 +1979,7 @@ x_24 = lean_nat_add(x_22, x_23); lean_dec(x_22); x_25 = 0; x_26 = l_Array_empty___closed__1; -x_27 = l___private_Init_Lean_Meta_Tactic_Induction_4__finalizeAux___main(x_1, x_2, x_3, x_4, x_5, x_14, x_6, x_20, x_7, x_24, x_19, x_8, x_16, x_25, x_26, x_9, x_17); +x_27 = l___private_Lean_Meta_Tactic_Induction_4__finalizeAux___main(x_1, x_2, x_3, x_4, x_5, x_14, x_6, x_20, x_7, x_24, x_19, x_8, x_16, x_25, x_26, x_9, x_17); lean_dec(x_20); lean_dec(x_14); return x_27; @@ -2042,11 +2042,11 @@ return x_35; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_5__finalize___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Meta_Tactic_Induction_5__finalize___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Meta_Tactic_Induction_5__finalize(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Meta_Tactic_Induction_5__finalize(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); @@ -2054,7 +2054,7 @@ lean_dec(x_2); return x_11; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1() { _start: { lean_object* x_1; @@ -2062,55 +2062,55 @@ x_1 = lean_mk_string("unexpected major premise type "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1; +x_1 = l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3() { +lean_object* _init_l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2; +x_1 = l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___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; lean_object* x_10; x_5 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_5, 0, x_2); x_6 = l_Lean_indentExpr(x_5); -x_7 = l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3; +x_7 = l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3; x_8 = lean_alloc_ctor(9, 2, 0); lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_6); -x_9 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_9 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; x_10 = l_Lean_Meta_throwTacticEx___rarg(x_9, x_1, x_8, x_3, x_4); return x_10; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___boxed), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -3464,7 +3464,7 @@ else lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_dec(x_5); lean_dec(x_3); -x_36 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +x_36 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; x_37 = l_Lean_Meta_throwTacticEx___rarg(x_1, x_2, x_36, x_7, x_8); x_38 = !lean_is_exclusive(x_37); if (x_38 == 0) @@ -3516,7 +3516,7 @@ else lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_dec(x_51); lean_dec(x_3); -x_53 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; +x_53 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5; x_54 = l_Lean_Meta_throwTacticEx___rarg(x_1, x_2, x_53, x_7, x_8); x_55 = lean_ctor_get(x_54, 0); lean_inc(x_55); @@ -3644,7 +3644,7 @@ x_21 = lean_mk_empty_array_with_capacity(x_20); lean_dec(x_20); x_22 = l_List_toArrayAux___main___rarg(x_19, x_21); x_23 = lean_ctor_get(x_4, 2); -x_24 = l___private_Init_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1; +x_24 = l___private_Lean_Meta_RecursorInfo_10__getProduceMotiveAndRecursive___closed__1; lean_inc(x_13); lean_inc(x_8); lean_inc(x_3); @@ -3723,7 +3723,7 @@ lean_dec(x_3); lean_dec(x_1); lean_inc(x_17); lean_inc(x_8); -x_34 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main(x_8, x_15, x_5, x_31, x_17, x_27); +x_34 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main(x_8, x_15, x_5, x_31, x_17, x_27); lean_dec(x_15); if (lean_obj_tag(x_34) == 0) { @@ -3747,7 +3747,7 @@ x_39 = lean_ctor_get(x_37, 1); lean_inc(x_39); lean_dec(x_37); x_40 = l_Lean_mkApp(x_35, x_38); -x_41 = l___private_Init_Lean_Meta_Tactic_Induction_5__finalize(x_8, x_2, x_4, x_7, x_11, x_10, x_9, x_40, x_17, x_39); +x_41 = l___private_Lean_Meta_Tactic_Induction_5__finalize(x_8, x_2, x_4, x_7, x_11, x_10, x_9, x_40, x_17, x_39); lean_dec(x_10); return x_41; } @@ -3813,7 +3813,7 @@ x_55 = lean_ctor_get(x_53, 1); lean_inc(x_55); lean_dec(x_53); x_56 = l_Lean_mkApp(x_46, x_54); -x_57 = l___private_Init_Lean_Meta_Tactic_Induction_5__finalize(x_8, x_2, x_4, x_7, x_11, x_10, x_9, x_56, x_17, x_55); +x_57 = l___private_Lean_Meta_Tactic_Induction_5__finalize(x_8, x_2, x_4, x_7, x_11, x_10, x_9, x_56, x_17, x_55); lean_dec(x_10); return x_57; } @@ -4066,7 +4066,7 @@ lean_dec(x_4); x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); lean_dec(x_24); -x_27 = l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg(x_3, x_23, x_15, x_26); +x_27 = l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg(x_3, x_23, x_15, x_26); lean_dec(x_15); return x_27; } @@ -9714,7 +9714,7 @@ lean_dec(x_2); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg(x_1, x_17, x_6, x_21); +x_22 = l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg(x_1, x_17, x_6, x_21); lean_dec(x_6); return x_22; } @@ -9866,7 +9866,7 @@ lean_object* l_Lean_Meta_induction(lean_object* x_1, lean_object* x_2, lean_obje _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; +x_8 = l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2; lean_inc(x_1); x_9 = lean_alloc_closure((void*)(l_Lean_Meta_induction___lambda__1), 7, 5); lean_closure_set(x_9, 0, x_1); @@ -10055,65 +10055,65 @@ lean_dec(x_6); return x_9; } } -lean_object* initialize_Init_Lean_Meta_RecursorInfo(lean_object*); -lean_object* initialize_Init_Lean_Meta_SynthInstance(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Revert(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Intro(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Clear(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_FVarSubst(lean_object*); +lean_object* initialize_Lean_Meta_RecursorInfo(lean_object*); +lean_object* initialize_Lean_Meta_SynthInstance(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Revert(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Intro(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Clear(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_FVarSubst(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Induction(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Induction(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_RecursorInfo(lean_io_mk_world()); +res = initialize_Lean_Meta_RecursorInfo(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_SynthInstance(lean_io_mk_world()); +res = initialize_Lean_Meta_SynthInstance(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Revert(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Revert(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Intro(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Intro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Clear(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Clear(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_FVarSubst(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_FVarSubst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1); -l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2 = _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2); -l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3 = _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3); -l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4 = _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4); -l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5 = _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5); -l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6 = _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6); -l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7 = _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7); -l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8 = _init_l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8); +l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1 = _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__1); +l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2 = _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__2); +l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3 = _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__3); +l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4 = _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__4); +l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5 = _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__5); +l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6 = _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__6); +l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7 = _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__7); +l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8 = _init_l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_2__addRecParams___main___closed__8); l_Lean_Meta_InductionSubgoal_inhabited___closed__1 = _init_l_Lean_Meta_InductionSubgoal_inhabited___closed__1(); lean_mark_persistent(l_Lean_Meta_InductionSubgoal_inhabited___closed__1); l_Lean_Meta_InductionSubgoal_inhabited = _init_l_Lean_Meta_InductionSubgoal_inhabited(); lean_mark_persistent(l_Lean_Meta_InductionSubgoal_inhabited); -l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1); -l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2 = _init_l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2); -l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3 = _init_l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3); +l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1 = _init_l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__1); +l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2 = _init_l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__2); +l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3 = _init_l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Induction_6__throwUnexpectedMajorType___rarg___closed__3); l_List_forM___main___at_Lean_Meta_induction___spec__1___closed__1 = _init_l_List_forM___main___at_Lean_Meta_induction___spec__1___closed__1(); lean_mark_persistent(l_List_forM___main___at_Lean_Meta_induction___spec__1___closed__1); l_List_forM___main___at_Lean_Meta_induction___spec__1___closed__2 = _init_l_List_forM___main___at_Lean_Meta_induction___spec__1___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Injection.c b/stage0/stdlib/Lean/Meta/Tactic/Injection.c similarity index 93% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Injection.c rename to stage0/stdlib/Lean/Meta/Tactic/Injection.c index 625d19b92b..51a769cc29 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Injection.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Injection.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Injection -// Imports: Init.Lean.Meta.AppBuilder Init.Lean.Meta.Tactic.Clear Init.Lean.Meta.Tactic.Assert Init.Lean.Meta.Tactic.Intro +// Module: Lean.Meta.Tactic.Injection +// Imports: Lean.Meta.AppBuilder Lean.Meta.Tactic.Clear Lean.Meta.Tactic.Assert Lean.Meta.Tactic.Intro #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,11 +17,8 @@ lean_object* l_Lean_Meta_assert(lean_object*, lean_object*, lean_object*, lean_o lean_object* l_Lean_Meta_injectionCore___closed__1; extern lean_object* l_Lean_Expr_eq_x3f___closed__2; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_1__getConstructorVal(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__6; lean_object* l_Lean_Meta_withLocalContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; @@ -29,26 +26,28 @@ lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarTag(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_WHNF_toCtorIfLit___closed__5; +lean_object* l___private_Lean_Meta_Tactic_Injection_2__heqToEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Injection_2__heqToEq___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionIntro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_intro(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Injection_1__getConstructorVal___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_mkNoConfusion___closed__3; lean_object* l_Lean_Meta_tryClear(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_headBeta(lean_object*); extern lean_object* l_Lean_Expr_heq_x3f___closed__2; lean_object* l_Lean_Meta_injectionCore(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_1__getConstructorVal___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_clear(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_WHNF_toCtorIfLit___closed__2; +lean_object* l___private_Lean_Meta_Tactic_Injection_2__heqToEq(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Meta_constructorApp_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionIntro___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -56,7 +55,6 @@ lean_object* l_Lean_Meta_injectionIntro___main(lean_object*, lean_object*, lean_ lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); uint8_t l_Lean_Expr_isAppOfArity___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionCore___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -71,12 +69,14 @@ lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__7; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkNoConfusion(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_intro1(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Injection_2__heqToEq___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__3; lean_object* l_Lean_Meta_constructorApp_x3f___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionIntro___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__5; lean_object* l_Lean_Meta_injection(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Injection_1__getConstructorVal(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__2; lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__1; @@ -84,7 +84,7 @@ lean_object* l_Lean_Meta_mkEqOfHEq(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__4; lean_object* l_Lean_Meta_injectionCore___lambda__1___closed__8; lean_object* l_Lean_Meta_injectionCore___closed__2; -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_1__getConstructorVal(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Injection_1__getConstructorVal(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; @@ -212,11 +212,11 @@ return x_32; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_1__getConstructorVal___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Injection_1__getConstructorVal___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___private_Init_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); return x_5; @@ -240,14 +240,14 @@ if (x_7 == 0) lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = l_Lean_WHNF_toCtorIfLit___closed__2; x_9 = lean_unsigned_to_nat(1u); -x_10 = l___private_Init_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_8, x_9, x_2, x_3); +x_10 = l___private_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_8, x_9, x_2, x_3); return x_10; } else { lean_object* x_11; lean_object* x_12; x_11 = l_Lean_WHNF_toCtorIfLit___closed__5; -x_12 = l___private_Init_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_11, x_6, x_2, x_3); +x_12 = l___private_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_11, x_6, x_2, x_3); return x_12; } } @@ -263,7 +263,7 @@ lean_inc(x_14); lean_dec(x_13); x_15 = lean_unsigned_to_nat(0u); x_16 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_15); -x_17 = l___private_Init_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_14, x_16, x_2, x_3); +x_17 = l___private_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_14, x_16, x_2, x_3); lean_dec(x_16); return x_17; } @@ -291,7 +291,7 @@ lean_inc(x_21); lean_dec(x_20); x_22 = lean_unsigned_to_nat(0u); x_23 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_22); -x_24 = l___private_Init_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_21, x_23, x_2, x_3); +x_24 = l___private_Lean_Meta_Tactic_Injection_1__getConstructorVal(x_21, x_23, x_2, x_3); lean_dec(x_23); return x_24; } @@ -1150,7 +1150,7 @@ lean_dec(x_3); return x_5; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_Tactic_Injection_2__heqToEq___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; lean_object* x_7; @@ -1653,7 +1653,7 @@ return x_113; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Injection_2__heqToEq(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; @@ -1661,7 +1661,7 @@ lean_inc(x_2); x_5 = lean_alloc_closure((void*)(l_Lean_Meta_getLocalDecl), 3, 1); lean_closure_set(x_5, 0, x_2); lean_inc(x_1); -x_6 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq___lambda__1___boxed), 5, 2); +x_6 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Injection_2__heqToEq___lambda__1___boxed), 5, 2); lean_closure_set(x_6, 0, x_2); lean_closure_set(x_6, 1, x_1); x_7 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_isClassExpensive___main___spec__4___rarg), 4, 2); @@ -1709,20 +1709,20 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq___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* l___private_Lean_Meta_Tactic_Injection_2__heqToEq___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___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq___lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Meta_Tactic_Injection_2__heqToEq___lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); return x_6; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_Tactic_Injection_2__heqToEq___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___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_Tactic_Injection_2__heqToEq(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -1757,7 +1757,7 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_13, 1); lean_inc(x_16); lean_dec(x_13); -x_17 = l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq(x_16, x_15, x_5, x_14); +x_17 = l___private_Lean_Meta_Tactic_Injection_2__heqToEq(x_16, x_15, x_5, x_14); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; @@ -1850,7 +1850,7 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_35, 1); lean_inc(x_38); lean_dec(x_35); -x_39 = l___private_Init_Lean_Meta_Tactic_Injection_2__heqToEq(x_38, x_37, x_5, x_36); +x_39 = l___private_Lean_Meta_Tactic_Injection_2__heqToEq(x_38, x_37, x_5, x_36); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; @@ -2055,25 +2055,25 @@ lean_dec(x_5); return x_8; } } -lean_object* initialize_Init_Lean_Meta_AppBuilder(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Clear(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Assert(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Intro(lean_object*); +lean_object* initialize_Lean_Meta_AppBuilder(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Clear(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Assert(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Intro(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Injection(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Injection(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_AppBuilder(lean_io_mk_world()); +res = initialize_Lean_Meta_AppBuilder(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Clear(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Clear(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Assert(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Assert(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Intro(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Intro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_injectionCore___lambda__1___closed__1 = _init_l_Lean_Meta_injectionCore___lambda__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Intro.c b/stage0/stdlib/Lean/Meta/Tactic/Intro.c similarity index 99% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Intro.c rename to stage0/stdlib/Lean/Meta/Tactic/Intro.c index 878ede213d..668d9a87df 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Intro.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Intro.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Intro -// Imports: Init.Lean.Meta.Tactic.Util +// Module: Lean.Meta.Tactic.Intro +// Imports: Lean.Meta.Tactic.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -6331,13 +6331,13 @@ lean_dec(x_3); return x_6; } } -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Intro(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Intro(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_introNCoreAux___main___rarg___lambda__1___closed__1 = _init_l_Lean_Meta_introNCoreAux___main___rarg___lambda__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/LocalDecl.c b/stage0/stdlib/Lean/Meta/Tactic/LocalDecl.c similarity index 91% rename from stage0/stdlib/Init/Lean/Meta/Tactic/LocalDecl.c rename to stage0/stdlib/Lean/Meta/Tactic/LocalDecl.c index f8836aaca7..5c9d76162b 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/LocalDecl.c +++ b/stage0/stdlib/Lean/Meta/Tactic/LocalDecl.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.LocalDecl -// Imports: Init.Lean.Meta.AppBuilder Init.Lean.Meta.Tactic.Util Init.Lean.Meta.Tactic.Assert Init.Lean.Meta.Tactic.Intro Init.Lean.Meta.Tactic.Clear +// Module: Lean.Meta.Tactic.LocalDecl +// Imports: Lean.Meta.AppBuilder Lean.Meta.Tactic.Util Lean.Meta.Tactic.Assert Lean.Meta.Tactic.Intro Lean.Meta.Tactic.Clear #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -328,29 +328,29 @@ lean_dec(x_5); return x_7; } } -lean_object* initialize_Init_Lean_Meta_AppBuilder(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Assert(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Intro(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Clear(lean_object*); +lean_object* initialize_Lean_Meta_AppBuilder(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Assert(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Intro(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Clear(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_LocalDecl(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_LocalDecl(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_AppBuilder(lean_io_mk_world()); +res = initialize_Lean_Meta_AppBuilder(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Assert(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Assert(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Intro(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Intro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Clear(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Clear(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Revert.c b/stage0/stdlib/Lean/Meta/Tactic/Revert.c similarity index 97% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Revert.c rename to stage0/stdlib/Lean/Meta/Tactic/Revert.c index 9cd6bb815f..92ef3453ae 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Revert.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Revert.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Revert -// Imports: Init.Lean.Meta.Tactic.Util +// Module: Lean.Meta.Tactic.Revert +// Imports: Lean.Meta.Tactic.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -373,13 +373,13 @@ lean_dec(x_4); return x_7; } } -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Revert(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Revert(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_revert___lambda__1___closed__1 = _init_l_Lean_Meta_revert___lambda__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Rewrite.c b/stage0/stdlib/Lean/Meta/Tactic/Rewrite.c similarity index 98% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Rewrite.c rename to stage0/stdlib/Lean/Meta/Tactic/Rewrite.c index e70fc9fe14..0dedec4c3a 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Rewrite.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Rewrite.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Rewrite -// Imports: Init.Lean.Meta.AppBuilder Init.Lean.Meta.KAbstract Init.Lean.Meta.Check Init.Lean.Meta.Tactic.Apply +// Module: Lean.Meta.Tactic.Rewrite +// Imports: Lean.Meta.AppBuilder Lean.Meta.KAbstract Lean.Meta.Check Lean.Meta.Tactic.Apply #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -2441,25 +2441,25 @@ lean_dec(x_6); return x_9; } } -lean_object* initialize_Init_Lean_Meta_AppBuilder(lean_object*); -lean_object* initialize_Init_Lean_Meta_KAbstract(lean_object*); -lean_object* initialize_Init_Lean_Meta_Check(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Apply(lean_object*); +lean_object* initialize_Lean_Meta_AppBuilder(lean_object*); +lean_object* initialize_Lean_Meta_KAbstract(lean_object*); +lean_object* initialize_Lean_Meta_Check(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Apply(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Rewrite(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Rewrite(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_AppBuilder(lean_io_mk_world()); +res = initialize_Lean_Meta_AppBuilder(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_KAbstract(lean_io_mk_world()); +res = initialize_Lean_Meta_KAbstract(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Check(lean_io_mk_world()); +res = initialize_Lean_Meta_Check(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Apply(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Apply(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_rewriteCore___lambda__1___closed__1 = _init_l_Lean_Meta_rewriteCore___lambda__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Subst.c b/stage0/stdlib/Lean/Meta/Tactic/Subst.c similarity index 97% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Subst.c rename to stage0/stdlib/Lean/Meta/Tactic/Subst.c index eea706bb19..45d02a81c7 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Subst.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Subst.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Subst -// Imports: Init.Lean.Meta.AppBuilder Init.Lean.Meta.Message Init.Lean.Meta.Tactic.Util Init.Lean.Meta.Tactic.Revert Init.Lean.Meta.Tactic.Intro Init.Lean.Meta.Tactic.Clear Init.Lean.Meta.Tactic.FVarSubst +// Module: Lean.Meta.Tactic.Subst +// Imports: Lean.Meta.AppBuilder Lean.Meta.Message Lean.Meta.Tactic.Util Lean.Meta.Tactic.Revert Lean.Meta.Tactic.Intro Lean.Meta.Tactic.Clear Lean.Meta.Tactic.FVarSubst #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -65,6 +65,7 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_findSomeM_x3f___at_Lean_Meta_subst___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* l_Lean_Meta_clear(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1; lean_object* l_Lean_Meta_substCore___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_substCore___lambda__3___closed__9; lean_object* l_Lean_Meta_subst___lambda__1___closed__6; @@ -84,7 +85,6 @@ lean_object* l_Lean_Meta_substCore___lambda__3___closed__7; lean_object* l_Lean_Meta_getMVarDecl___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_fvarId(lean_object*); lean_object* l_Lean_Meta_substCore___lambda__3___closed__16; -lean_object* l___private_Init_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1; lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* l_Lean_MetavarContext_exprDependsOn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -114,7 +114,8 @@ lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_substCore___lambda__3___closed__14; lean_object* lean_expr_abstract(lean_object*, lean_object*); lean_object* l_Array_findSomeMAux___main___at_Lean_Meta_subst___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2; +extern lean_object* l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2; +lean_object* l___private_Lean_Meta_Tactic_Subst_1__regTraceClasses(lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; extern lean_object* l_Lean_Meta_isClassQuick___main___closed__1; lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*); @@ -124,7 +125,6 @@ lean_object* l_Lean_Meta_getMVarTag___boxed(lean_object*, lean_object*, lean_obj lean_object* l_Lean_Meta_substCore___lambda__3___closed__3; lean_object* l_Lean_Meta_substCore___lambda__3___closed__18; lean_object* l_Lean_Meta_substCore___lambda__3___closed__15; -lean_object* l___private_Init_Lean_Meta_Tactic_Subst_1__regTraceClasses(lean_object*); lean_object* l_Nat_foldMAux___main___at_Lean_Meta_substCore___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Nat_foldMAux___main___at_Lean_Meta_substCore___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { @@ -3434,56 +3434,56 @@ lean_dec(x_3); return x_5; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2; +x_1 = l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2; x_2 = l_Lean_Meta_substCore___lambda__3___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Subst_1__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Tactic_Subst_1__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1; +x_2 = l___private_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } } -lean_object* initialize_Init_Lean_Meta_AppBuilder(lean_object*); -lean_object* initialize_Init_Lean_Meta_Message(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Revert(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Intro(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Clear(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_FVarSubst(lean_object*); +lean_object* initialize_Lean_Meta_AppBuilder(lean_object*); +lean_object* initialize_Lean_Meta_Message(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Revert(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Intro(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Clear(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_FVarSubst(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Subst(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Subst(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_AppBuilder(lean_io_mk_world()); +res = initialize_Lean_Meta_AppBuilder(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Message(lean_io_mk_world()); +res = initialize_Lean_Meta_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Revert(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Revert(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Intro(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Intro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Clear(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Clear(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_FVarSubst(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_FVarSubst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_substCore___lambda__2___closed__1 = _init_l_Lean_Meta_substCore___lambda__2___closed__1(); @@ -3540,9 +3540,9 @@ l_Lean_Meta_subst___lambda__1___closed__5 = _init_l_Lean_Meta_subst___lambda__1_ lean_mark_persistent(l_Lean_Meta_subst___lambda__1___closed__5); l_Lean_Meta_subst___lambda__1___closed__6 = _init_l_Lean_Meta_subst___lambda__1___closed__6(); lean_mark_persistent(l_Lean_Meta_subst___lambda__1___closed__6); -l___private_Init_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1); -res = l___private_Init_Lean_Meta_Tactic_Subst_1__regTraceClasses(lean_io_mk_world()); +l___private_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1 = _init_l___private_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Subst_1__regTraceClasses___closed__1); +res = l___private_Lean_Meta_Tactic_Subst_1__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Target.c b/stage0/stdlib/Lean/Meta/Tactic/Target.c similarity index 97% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Target.c rename to stage0/stdlib/Lean/Meta/Tactic/Target.c index 4eaaba48c2..be6384c57e 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Target.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Target.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Target -// Imports: Init.Lean.Meta.AppBuilder Init.Lean.Meta.Tactic.Util +// Module: Lean.Meta.Tactic.Target +// Imports: Lean.Meta.AppBuilder Lean.Meta.Tactic.Util #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -860,17 +860,17 @@ lean_dec(x_3); return x_5; } } -lean_object* initialize_Init_Lean_Meta_AppBuilder(lean_object*); -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object*); +lean_object* initialize_Lean_Meta_AppBuilder(lean_object*); +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Target(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Target(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_AppBuilder(lean_io_mk_world()); +res = initialize_Lean_Meta_AppBuilder(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Tactic_Util(lean_io_mk_world()); +res = initialize_Lean_Meta_Tactic_Util(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_replaceTargetEq___closed__1 = _init_l_Lean_Meta_replaceTargetEq___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Meta/Tactic/Util.c b/stage0/stdlib/Lean/Meta/Tactic/Util.c similarity index 88% rename from stage0/stdlib/Init/Lean/Meta/Tactic/Util.c rename to stage0/stdlib/Lean/Meta/Tactic/Util.c index cd7eb98f43..4fa2b40ff5 100644 --- a/stage0/stdlib/Init/Lean/Meta/Tactic/Util.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Util.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.Tactic.Util -// Imports: Init.Lean.Meta.Basic Init.Lean.Meta.LevelDefEq +// Module: Lean.Meta.Tactic.Util +// Imports: Lean.Meta.Basic Lean.Meta.LevelDefEq #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -19,7 +19,6 @@ lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_Meta_throwTacticEx(lean_object*); lean_object* l_Lean_Meta_orelse___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_checkNotAssigned___closed__3; -extern lean_object* l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; lean_object* l_Lean_Meta_checkNotAssigned___closed__1; lean_object* l_Lean_Meta_getMVarTag(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_checkNotAssigned___closed__2; @@ -32,7 +31,7 @@ lean_object* l_Lean_Meta_ppGoal(lean_object*, lean_object*, lean_object*); uint8_t lean_metavar_ctx_is_expr_assigned(lean_object*, lean_object*); lean_object* l_Lean_ppGoal(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses(lean_object*); +lean_object* l___private_Lean_Meta_Tactic_Util_1__regTraceClasses(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarType___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -40,9 +39,10 @@ lean_object* l_Lean_Meta_checkNotAssigned(lean_object*, lean_object*, lean_objec lean_object* l_Lean_Meta_mkFreshExprMVar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_Meta_hasOrelse(lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1; -lean_object* l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2; +lean_object* l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2; lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; +lean_object* l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1; lean_object* l_Lean_Meta_getMVarTag___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setMVarTag(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarTag(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -446,7 +446,7 @@ x_2 = l_Lean_Meta_Meta_hasOrelse___closed__1; return x_2; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1() { +lean_object* _init_l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1() { _start: { lean_object* x_1; @@ -454,36 +454,36 @@ x_1 = lean_mk_string("Tactic"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2() { +lean_object* _init_l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Meta_Basic_10__regTraceClasses___closed__2; -x_2 = l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1; +x_1 = l___private_Lean_Meta_Basic_10__regTraceClasses___closed__2; +x_2 = l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_Meta_Tactic_Util_1__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2; +x_2 = l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } } -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); -lean_object* initialize_Init_Lean_Meta_LevelDefEq(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_LevelDefEq(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_Tactic_Util(lean_object* w) { +lean_object* initialize_Lean_Meta_Tactic_Util(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_LevelDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_LevelDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_checkNotAssigned___closed__1 = _init_l_Lean_Meta_checkNotAssigned___closed__1(); @@ -494,11 +494,11 @@ l_Lean_Meta_checkNotAssigned___closed__3 = _init_l_Lean_Meta_checkNotAssigned___ lean_mark_persistent(l_Lean_Meta_checkNotAssigned___closed__3); l_Lean_Meta_Meta_hasOrelse___closed__1 = _init_l_Lean_Meta_Meta_hasOrelse___closed__1(); lean_mark_persistent(l_Lean_Meta_Meta_hasOrelse___closed__1); -l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1 = _init_l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1); -l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2 = _init_l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2); -res = l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses(lean_io_mk_world()); +l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1 = _init_l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1); +l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2 = _init_l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__2); +res = l___private_Lean_Meta_Tactic_Util_1__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Meta/WHNF.c b/stage0/stdlib/Lean/Meta/WHNF.c similarity index 93% rename from stage0/stdlib/Init/Lean/Meta/WHNF.c rename to stage0/stdlib/Lean/Meta/WHNF.c index 7cafd01f78..ac132ac2ab 100644 --- a/stage0/stdlib/Init/Lean/Meta/WHNF.c +++ b/stage0/stdlib/Lean/Meta/WHNF.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Meta.WHNF -// Imports: Init.Lean.AuxRecursor Init.Lean.Util.WHNF Init.Lean.Meta.Basic Init.Lean.Meta.LevelDefEq +// Module: Lean.Meta.WHNF +// Imports: Lean.AuxRecursor Lean.Util.WHNF Lean.Meta.Basic Lean.Meta.LevelDefEq #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,34 +13,34 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNative_x3f___closed__1; size_t l_USize_add(size_t, size_t); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_unfoldDefinition_x3f___spec__14___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_whnfCore___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNative_x3f___closed__2; -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNative_x3f___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_unfoldDefinition_x3f___spec__14(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__7; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_6__extractIdRhs(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); +lean_object* l___private_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_whnfCore___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__3; lean_object* l_Lean_Meta_reduceNat_x3f___closed__16; lean_object* l_Lean_Meta_reduceNative_x3f___closed__6; +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNatValue(lean_object*); +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isExprDefEq___closed__2; extern lean_object* l_Lean_noConfusionExt; lean_object* l_Nat_beq___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___at_Lean_Meta_unfoldDefinition_x3f___spec__4(lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceProj_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l_Lean_WHNF_reduceRec___at_Lean_Meta_unfoldDefinition_x3f___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__5; @@ -52,13 +52,13 @@ size_t l_USize_sub(size_t, size_t); lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getStuckMVar_x3f(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNatValue___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Nat_HasMul___closed__1; lean_object* l_Lean_Meta_reduceBinNatPred(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Util_WHNF_5__isIdRhsApp(lean_object*); lean_object* l_Lean_WHNF_reduceRec___at_Lean_Meta_whnfCore___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__2(lean_object*, size_t, lean_object*); uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_2__cached_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNative_x3f___closed__5; lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_whnfCore___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setWHNFRef___closed__1; @@ -67,76 +67,78 @@ lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; lean_object* l_Lean_Meta_unfoldDefinition_x3f(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_whnfCore___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceQuotRec___at_Lean_Meta_unfoldDefinition_x3f___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___at_Lean_Meta_unfoldDefinition_x3f___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_Exception_Inhabited___closed__1; +lean_object* l___private_Lean_Util_WHNF_3__getRecRuleFor(lean_object*, lean_object*); lean_object* l_Lean_Meta_whnfUntil___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Lean_Meta_reduceNatNative___rarg(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_3__getRecRuleFor(lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___at_Lean_Meta_unfoldDefinition_x3f___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__6; extern lean_object* l_Lean_auxRecExt; lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_whnfCore___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_isRecStuck_x3f___at_Lean_Meta_getStuckMVar_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_getStuckMVar_x3f___main___at_Lean_Meta_unfoldDefinition_x3f___spec__15(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_isRecStuck_x3f___at_Lean_Meta_getStuckMVar_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNatNative___boxed(lean_object*, lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit(lean_object*); +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__12; +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBoolNative___rarg(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_3__cache___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_whnfCore___spec__8___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___at_Lean_Meta_unfoldDefinition_x3f___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_3__cache___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_isQuotRecStuck_x3f___at_Lean_Meta_unfoldDefinition_x3f___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_2__cached_x3f(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_RecursorVal_getMajorIdx(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_WHNF_isRecStuck_x3f___at_Lean_Meta_unfoldDefinition_x3f___spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_setWHNFRef(lean_object*); -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_2__cached_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_1__useWHNFCache___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_getConstNoEx___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasExprMVar(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__10; lean_object* l_Lean_Meta_reduceNat_x3f___closed__10; +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1___boxed(lean_object*, lean_object*); extern lean_object* l_Nat_HasAdd___closed__1; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__11; lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_6__extractIdRhs(lean_object*); extern lean_object* l_Lean_WHNF_toCtorIfLit___closed__2; lean_object* l_Lean_Expr_instantiateLevelParams(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_name(lean_object*); -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_1__useWHNFCache(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); lean_object* l_Lean_Meta_reduceUnaryNatOp(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentHashMap_insertAux___main___rarg___closed__3; -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_whnfCore___spec__8___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_Lean_Expr_hash(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_Literal_type___closed__1; -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_ConstantInfo_hasValue(lean_object*); lean_object* l_Lean_Meta_reduceNative_x3f___closed__3; lean_object* l_Lean_Meta_reduceBinNatOp___closed__7; +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_WHNF_toCtorIfLit___closed__4; lean_object* l_Lean_Meta_reduceBoolNativeUnsafe(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_whnfImpl___main___spec__1(lean_object*, lean_object*, lean_object*); @@ -145,10 +147,8 @@ uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_unfoldDefinition_x3f___spec__ extern lean_object* l_Lean_Literal_type___closed__2; lean_object* l_Lean_Meta_reduceNativeConst(lean_object*); uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_1__useWHNFCache___boxed(lean_object*, lean_object*, lean_object*); size_t l_USize_mul(size_t, size_t); lean_object* l_Lean_WHNF_reduceQuotRec___at_Lean_Meta_whnfCore___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__9; lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_WHNF_smartUnfoldingSuffix; @@ -162,29 +162,26 @@ size_t l_USize_land(size_t, size_t); lean_object* l_Lean_Environment_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_unfoldDefinition_x3f___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isAuxDef_x3f(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Util_WHNF_5__isIdRhsApp(lean_object*); extern lean_object* l_Lean_boolToExpr___lambda__1___closed__6; extern lean_object* l_Nat_HasDiv___closed__1; +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_whnfUntil___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_RecursorVal_getInduct(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_value_x3f(lean_object*); lean_object* l_Lean_ConstantInfo_lparams(lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__11; lean_object* l_Lean_Meta_whnfHeadPred(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_1__useWHNFCache(lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_unfoldDefinition_x3f___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_unfoldDefinition_x3f___spec__14___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2; lean_object* l_Lean_Meta_reduceNat_x3f___lambda__1(lean_object*); lean_object* lean_instantiate_value_lparams(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_Meta_whnfCore___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insert___at___private_Lean_Meta_WHNF_3__cache___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___at_Lean_Meta_whnfCore___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLocalDecl(lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1; -lean_object* l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); uint8_t lean_expr_equal(lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21___main(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_unfoldDefinition_x3f___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -193,17 +190,19 @@ lean_object* l_Lean_WHNF_reduceRec___at_Lean_Meta_unfoldDefinition_x3f___spec__8 lean_object* l_Lean_WHNF_getStuckMVar_x3f___main___at_Lean_Meta_getStuckMVar_x3f___spec__1(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t l_USize_decLe(size_t, size_t); -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*); extern lean_object* l_Nat_HasSub___closed__1; lean_object* l_Lean_Meta_reduceNatNative(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__11(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_getConstAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__13; lean_object* l_Lean_Meta_reduceNatNativeUnsafe___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_updateFn___main(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_whnfRef; lean_object* l_Lean_Meta_synthPending(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBoolNative___boxed(lean_object*, lean_object*); @@ -211,18 +210,16 @@ lean_object* l_Lean_Meta_reduceBinNatOp___closed__12; lean_object* l_Lean_Meta_getExprMVarAssignment_x3f___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceQuotRec___at_Lean_Meta_whnfCore___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnfImpl___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_2__cached_x3f(uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_object* l_Lean_Meta_reduceBinNatOp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_whnfImpl___main___spec__1___closed__1; -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*); lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__11(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_isQuotRecStuck_x3f___at_Lean_Meta_unfoldDefinition_x3f___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited; uint8_t l_Lean_TagDeclarationExtension_isTagged(lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); @@ -230,29 +227,30 @@ extern lean_object* l_Lean_boolToExpr___lambda__1___closed__4; lean_object* l_Lean_WHNF_isRecStuck_x3f___at_Lean_Meta_unfoldDefinition_x3f___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___lambda__1___boxed(lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__8; -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insert___at___private_Init_Lean_Meta_WHNF_3__cache___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNative_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNative_x3f___closed__4; lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_Meta_isLevelDefEqAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_3__cache(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnfCore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__1; lean_object* l_Lean_WHNF_reduceQuotRec___at_Lean_Meta_unfoldDefinition_x3f___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkNatLit(lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__2; +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1; lean_object* l_Lean_Meta_reduceNativeConst___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__15; +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__2; lean_object* lean_usize_to_nat(size_t); lean_object* l_Lean_Meta_reduceNat_x3f___closed__14; lean_object* l_Lean_Meta_reduceBoolNativeUnsafe___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_whnfCore___spec__8___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArgD___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__1; lean_object* l_Lean_Meta_whnfImpl(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Meta_WHNF_3__cache(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBoolNative(lean_object*, lean_object*); uint8_t l_Lean_Expr_hasFVar(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__2; @@ -261,21 +259,23 @@ lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceRec___at_Lean_Meta_whnfCore___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___at_Lean_Meta_unfoldDefinition_x3f___spec__14___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNatNativeUnsafe(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2; lean_object* l_Nat_ble___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__4; lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__3; -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__2(lean_object*, size_t, lean_object*); extern lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; lean_object* l_Array_anyRangeMAux___main___at_Lean_Meta_whnfCore___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceBinNatOp___closed__9; lean_object* l_Lean_Meta_whnfUntil(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceNat_x3f___closed__6; +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); extern lean_object* l_Lean_boolToExpr___lambda__1___closed__2; lean_object* l_monadInhabited___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isAuxDef_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -319,7 +319,7 @@ lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -344,7 +344,7 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_12 = lean_instantiate_value_lparams(x_1, x_2); -x_13 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_12); +x_13 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_12); x_14 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_14, 0, x_13); x_15 = lean_alloc_ctor(0, 2, 0); @@ -354,7 +354,7 @@ return x_15; } } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___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; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; @@ -381,7 +381,7 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean x_13 = lean_instantiate_value_lparams(x_1, x_2); x_14 = l_Lean_Expr_betaRev(x_13, x_3); lean_dec(x_13); -x_15 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_14); +x_15 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_14); x_16 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_16, 0, x_15); x_17 = lean_alloc_ctor(0, 2, 0); @@ -391,7 +391,7 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; @@ -433,7 +433,7 @@ lean_dec(x_1); x_18 = lean_instantiate_value_lparams(x_4, x_5); x_19 = l_Lean_Expr_betaRev(x_18, x_6); lean_dec(x_18); -x_20 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_19); +x_20 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_19); x_21 = l_Lean_WHNF_whnfCore___main___at_Lean_Meta_unfoldDefinition_x3f___spec__5(x_20, x_7, x_8); return x_21; } @@ -644,7 +644,7 @@ x_44 = lean_array_get(x_43, x_6, x_10); x_45 = l_Lean_mkApp(x_44, x_24); x_46 = lean_unsigned_to_nat(1u); x_47 = lean_nat_add(x_9, x_46); -x_48 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_11, x_6, x_47, x_45); +x_48 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_11, x_6, x_47, x_45); lean_dec(x_11); x_49 = l_Lean_WHNF_whnfCore___main___at_Lean_Meta_unfoldDefinition_x3f___spec__5(x_48, x_7, x_42); return x_49; @@ -1029,7 +1029,7 @@ return x_111; } } } -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -1287,7 +1287,7 @@ return x_54; } } } -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(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; @@ -1300,7 +1300,7 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_6, 1); lean_inc(x_8); lean_dec(x_6); -x_9 = l___private_Init_Lean_Util_WHNF_1__getFirstCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__11(x_1, x_7, x_4, x_5); +x_9 = l___private_Lean_Util_WHNF_1__getFirstCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__11(x_1, x_7, x_4, x_5); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; @@ -1357,7 +1357,7 @@ x_25 = lean_mk_array(x_23, x_24); x_26 = lean_unsigned_to_nat(1u); x_27 = lean_nat_sub(x_23, x_26); lean_dec(x_23); -x_28 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_25, x_27); +x_28 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_25, x_27); x_29 = l_Array_shrink___main___rarg(x_28, x_3); x_30 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_29, x_29, x_22, x_21); lean_dec(x_29); @@ -1379,7 +1379,7 @@ x_36 = lean_mk_array(x_34, x_35); x_37 = lean_unsigned_to_nat(1u); x_38 = lean_nat_sub(x_34, x_37); lean_dec(x_34); -x_39 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_36, x_38); +x_39 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_36, x_38); x_40 = l_Array_shrink___main___rarg(x_39, x_3); x_41 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_40, x_40, x_33, x_32); lean_dec(x_40); @@ -1413,7 +1413,7 @@ x_50 = lean_mk_array(x_48, x_49); x_51 = lean_unsigned_to_nat(1u); x_52 = lean_nat_sub(x_48, x_51); lean_dec(x_48); -x_53 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_50, x_52); +x_53 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_50, x_52); x_54 = l_Array_shrink___main___rarg(x_53, x_3); x_55 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_54, x_54, x_47, x_46); lean_dec(x_54); @@ -1541,7 +1541,7 @@ return x_9; } } } -lean_object* _init_l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1() { +lean_object* _init_l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1() { _start: { lean_object* x_1; @@ -1549,7 +1549,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Meta_getConstNoEx___boxed), 3, 0); return x_1; } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -1600,10 +1600,10 @@ lean_free_object(x_8); x_17 = lean_ctor_get(x_1, 2); lean_inc(x_17); lean_dec(x_1); -x_18 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_18 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_10); -x_19 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_18, x_10, x_17, x_3, x_11); +x_19 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_18, x_10, x_17, x_3, x_11); lean_dec(x_17); if (lean_obj_tag(x_19) == 0) { @@ -1937,7 +1937,7 @@ x_83 = lean_unsigned_to_nat(1u); x_84 = lean_nat_sub(x_80, x_83); lean_dec(x_80); lean_inc(x_10); -x_85 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_10, x_82, x_84); +x_85 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_82, x_84); x_86 = lean_ctor_get(x_1, 2); lean_inc(x_86); lean_dec(x_1); @@ -1954,10 +1954,10 @@ if (x_89 == 0) { lean_object* x_90; lean_object* x_91; lean_free_object(x_8); -x_90 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_90 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_10); -x_91 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_90, x_10, x_86, x_3, x_11); +x_91 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_90, x_10, x_86, x_3, x_11); lean_dec(x_86); if (lean_obj_tag(x_91) == 0) { @@ -2301,10 +2301,10 @@ if (x_152 == 0) { lean_object* x_153; lean_object* x_154; lean_free_object(x_8); -x_153 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_153 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_10); -x_154 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_153, x_10, x_86, x_3, x_11); +x_154 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_153, x_10, x_86, x_3, x_11); lean_dec(x_86); if (lean_obj_tag(x_154) == 0) { @@ -2675,10 +2675,10 @@ lean_object* x_223; lean_object* x_224; lean_object* x_225; x_223 = lean_ctor_get(x_1, 2); lean_inc(x_223); lean_dec(x_1); -x_224 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_224 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_215); -x_225 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_224, x_215, x_223, x_3, x_216); +x_225 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_224, x_215, x_223, x_3, x_216); lean_dec(x_223); if (lean_obj_tag(x_225) == 0) { @@ -2893,7 +2893,7 @@ x_263 = lean_unsigned_to_nat(1u); x_264 = lean_nat_sub(x_260, x_263); lean_dec(x_260); lean_inc(x_215); -x_265 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_215, x_262, x_264); +x_265 = l___private_Lean_Expr_3__getAppArgsAux___main(x_215, x_262, x_264); x_266 = lean_ctor_get(x_1, 2); lean_inc(x_266); lean_dec(x_1); @@ -2909,10 +2909,10 @@ lean_dec(x_265); if (x_269 == 0) { lean_object* x_270; lean_object* x_271; -x_270 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_270 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_215); -x_271 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_270, x_215, x_266, x_3, x_216); +x_271 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_270, x_215, x_266, x_3, x_216); lean_dec(x_266); if (lean_obj_tag(x_271) == 0) { @@ -3138,10 +3138,10 @@ lean_dec(x_265); if (x_307 == 0) { lean_object* x_308; lean_object* x_309; -x_308 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_308 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_215); -x_309 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_308, x_215, x_266, x_3, x_216); +x_309 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_308, x_215, x_266, x_3, x_216); lean_dec(x_266); if (lean_obj_tag(x_309) == 0) { @@ -3473,7 +3473,7 @@ lean_object* x_63; lean_object* x_64; lean_dec(x_20); x_63 = l_Lean_WHNF_toCtorIfLit(x_18); lean_inc(x_4); -x_64 = l___private_Init_Lean_Util_WHNF_3__getRecRuleFor(x_4, x_63); +x_64 = l___private_Lean_Util_WHNF_3__getRecRuleFor(x_4, x_63); if (lean_obj_tag(x_64) == 0) { uint8_t x_65; @@ -3515,7 +3515,7 @@ x_73 = lean_mk_array(x_71, x_72); x_74 = lean_unsigned_to_nat(1u); x_75 = lean_nat_sub(x_71, x_74); lean_dec(x_71); -x_76 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_63, x_73, x_75); +x_76 = l___private_Lean_Expr_3__getAppArgsAux___main(x_63, x_73, x_75); x_77 = l_List_lengthAux___main___rarg(x_5, x_70); x_78 = lean_ctor_get(x_4, 0); lean_inc(x_78); @@ -3576,7 +3576,7 @@ lean_dec(x_4); x_92 = lean_nat_add(x_90, x_91); lean_dec(x_91); lean_dec(x_90); -x_93 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_92, x_6, x_70, x_87); +x_93 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_92, x_6, x_70, x_87); lean_dec(x_92); x_94 = lean_array_get_size(x_76); x_95 = lean_ctor_get(x_69, 1); @@ -3584,12 +3584,12 @@ lean_inc(x_95); lean_dec(x_69); x_96 = lean_nat_sub(x_94, x_95); lean_dec(x_95); -x_97 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_94, x_76, x_96, x_93); +x_97 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_94, x_76, x_96, x_93); lean_dec(x_76); lean_dec(x_94); x_98 = lean_nat_add(x_9, x_74); lean_dec(x_9); -x_99 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_10, x_6, x_98, x_97); +x_99 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_10, x_6, x_98, x_97); lean_dec(x_10); x_100 = l_Lean_WHNF_whnfCore___main___at_Lean_Meta_unfoldDefinition_x3f___spec__5(x_99, x_7, x_19); return x_100; @@ -3602,7 +3602,7 @@ lean_object* x_101; lean_inc(x_7); lean_inc(x_18); lean_inc(x_4); -x_101 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9(x_4, x_18, x_7, x_19); +x_101 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9(x_4, x_18, x_7, x_19); if (lean_obj_tag(x_101) == 0) { lean_object* x_102; @@ -3668,7 +3668,7 @@ block_61: lean_object* x_23; lean_object* x_24; x_23 = l_Lean_WHNF_toCtorIfLit(x_21); lean_inc(x_4); -x_24 = l___private_Init_Lean_Util_WHNF_3__getRecRuleFor(x_4, x_23); +x_24 = l___private_Lean_Util_WHNF_3__getRecRuleFor(x_4, x_23); if (lean_obj_tag(x_24) == 0) { uint8_t x_25; @@ -3718,7 +3718,7 @@ x_33 = lean_mk_array(x_31, x_32); x_34 = lean_unsigned_to_nat(1u); x_35 = lean_nat_sub(x_31, x_34); lean_dec(x_31); -x_36 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_23, x_33, x_35); +x_36 = l___private_Lean_Expr_3__getAppArgsAux___main(x_23, x_33, x_35); x_37 = l_List_lengthAux___main___rarg(x_5, x_30); x_38 = lean_ctor_get(x_4, 0); lean_inc(x_38); @@ -3788,7 +3788,7 @@ lean_dec(x_4); x_52 = lean_nat_add(x_50, x_51); lean_dec(x_51); lean_dec(x_50); -x_53 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_52, x_6, x_30, x_47); +x_53 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_52, x_6, x_30, x_47); lean_dec(x_52); x_54 = lean_array_get_size(x_36); x_55 = lean_ctor_get(x_29, 1); @@ -3796,12 +3796,12 @@ lean_inc(x_55); lean_dec(x_29); x_56 = lean_nat_sub(x_54, x_55); lean_dec(x_55); -x_57 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_54, x_36, x_56, x_53); +x_57 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_54, x_36, x_56, x_53); lean_dec(x_36); lean_dec(x_54); x_58 = lean_nat_add(x_9, x_34); lean_dec(x_9); -x_59 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_10, x_6, x_58, x_57); +x_59 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_10, x_6, x_58, x_57); lean_dec(x_10); x_60 = l_Lean_WHNF_whnfCore___main___at_Lean_Meta_unfoldDefinition_x3f___spec__5(x_59, x_7, x_22); return x_60; @@ -4134,8 +4134,8 @@ x_63 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_62); x_64 = lean_mk_empty_array_with_capacity(x_63); lean_dec(x_63); lean_inc(x_2); -x_65 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_64); -x_66 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(x_2, x_26, x_29, x_46, x_33, x_65, x_3, x_61); +x_65 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_64); +x_66 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(x_2, x_26, x_29, x_46, x_33, x_65, x_3, x_61); lean_dec(x_65); lean_dec(x_33); lean_dec(x_46); @@ -4162,7 +4162,7 @@ x_73 = lean_unsigned_to_nat(1u); x_74 = lean_nat_sub(x_70, x_73); lean_dec(x_70); lean_inc(x_2); -x_75 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_72, x_74); +x_75 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_72, x_74); x_76 = l_Lean_WHNF_reduceQuotRec___at_Lean_Meta_unfoldDefinition_x3f___spec__7(x_2, x_26, x_29, x_68, x_33, x_75, x_3, x_67); lean_dec(x_75); lean_dec(x_33); @@ -4189,7 +4189,7 @@ x_83 = lean_unsigned_to_nat(1u); x_84 = lean_nat_sub(x_80, x_83); lean_dec(x_80); lean_inc(x_2); -x_85 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_82, x_84); +x_85 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_82, x_84); x_86 = l_Lean_WHNF_reduceRec___at_Lean_Meta_unfoldDefinition_x3f___spec__8(x_2, x_26, x_29, x_78, x_33, x_85, x_3, x_77); lean_dec(x_85); lean_dec(x_33); @@ -4317,7 +4317,7 @@ x_102 = lean_unsigned_to_nat(0u); x_103 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_102); x_104 = lean_mk_empty_array_with_capacity(x_103); lean_dec(x_103); -x_105 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_104); +x_105 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_104); x_106 = l_Lean_Expr_betaRev(x_29, x_105); lean_dec(x_105); lean_dec(x_29); @@ -4472,8 +4472,8 @@ x_136 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_135); x_137 = lean_mk_empty_array_with_capacity(x_136); lean_dec(x_136); lean_inc(x_2); -x_138 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_137); -x_139 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(x_2, x_26, x_108, x_122, x_112, x_138, x_3, x_134); +x_138 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_137); +x_139 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(x_2, x_26, x_108, x_122, x_112, x_138, x_3, x_134); lean_dec(x_138); lean_dec(x_112); lean_dec(x_122); @@ -4500,7 +4500,7 @@ x_146 = lean_unsigned_to_nat(1u); x_147 = lean_nat_sub(x_143, x_146); lean_dec(x_143); lean_inc(x_2); -x_148 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_145, x_147); +x_148 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_145, x_147); x_149 = l_Lean_WHNF_reduceQuotRec___at_Lean_Meta_unfoldDefinition_x3f___spec__7(x_2, x_26, x_108, x_141, x_112, x_148, x_3, x_140); lean_dec(x_148); lean_dec(x_112); @@ -4527,7 +4527,7 @@ x_156 = lean_unsigned_to_nat(1u); x_157 = lean_nat_sub(x_153, x_156); lean_dec(x_153); lean_inc(x_2); -x_158 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_155, x_157); +x_158 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_155, x_157); x_159 = l_Lean_WHNF_reduceRec___at_Lean_Meta_unfoldDefinition_x3f___spec__8(x_2, x_26, x_108, x_151, x_112, x_158, x_3, x_150); lean_dec(x_158); lean_dec(x_112); @@ -4649,7 +4649,7 @@ x_174 = lean_unsigned_to_nat(0u); x_175 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_174); x_176 = lean_mk_empty_array_with_capacity(x_175); lean_dec(x_175); -x_177 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_176); +x_177 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_176); x_178 = l_Lean_Expr_betaRev(x_108, x_177); lean_dec(x_177); lean_dec(x_108); @@ -5416,7 +5416,7 @@ x_29 = lean_mk_array(x_27, x_28); x_30 = lean_unsigned_to_nat(1u); x_31 = lean_nat_sub(x_27, x_30); lean_dec(x_27); -x_32 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_29, x_31); +x_32 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_29, x_31); x_33 = l_Lean_WHNF_isQuotRecStuck_x3f___at_Lean_Meta_unfoldDefinition_x3f___spec__16(x_25, x_13, x_32, x_2, x_24); lean_dec(x_32); lean_dec(x_13); @@ -5440,7 +5440,7 @@ x_39 = lean_mk_array(x_37, x_38); x_40 = lean_unsigned_to_nat(1u); x_41 = lean_nat_sub(x_37, x_40); lean_dec(x_37); -x_42 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_39, x_41); +x_42 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_39, x_41); x_43 = l_Lean_WHNF_isRecStuck_x3f___at_Lean_Meta_unfoldDefinition_x3f___spec__17(x_35, x_13, x_42, x_2, x_34); lean_dec(x_42); lean_dec(x_13); @@ -5587,7 +5587,7 @@ return x_68; } } } -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___at_Lean_Meta_unfoldDefinition_x3f___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___at_Lean_Meta_unfoldDefinition_x3f___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -5764,7 +5764,7 @@ return x_35; } } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; @@ -5792,8 +5792,8 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_13 = lean_instantiate_value_lparams(x_1, x_2); x_14 = l_Lean_Expr_betaRev(x_13, x_3); lean_dec(x_13); -x_15 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_14); -x_16 = l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___at_Lean_Meta_unfoldDefinition_x3f___spec__4(x_15, x_4, x_5); +x_15 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_14); +x_16 = l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___at_Lean_Meta_unfoldDefinition_x3f___spec__4(x_15, x_4, x_5); if (lean_obj_tag(x_16) == 0) { uint8_t x_17; @@ -5802,7 +5802,7 @@ if (x_17 == 0) { lean_object* x_18; uint8_t x_19; x_18 = lean_ctor_get(x_16, 0); -x_19 = l___private_Init_Lean_Util_WHNF_5__isIdRhsApp(x_18); +x_19 = l___private_Lean_Util_WHNF_5__isIdRhsApp(x_18); if (x_19 == 0) { lean_object* x_20; @@ -5814,7 +5814,7 @@ return x_16; else { lean_object* x_21; lean_object* x_22; -x_21 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_18); +x_21 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_18); x_22 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_16, 0, x_22); @@ -5829,7 +5829,7 @@ x_24 = lean_ctor_get(x_16, 1); lean_inc(x_24); lean_inc(x_23); lean_dec(x_16); -x_25 = l___private_Init_Lean_Util_WHNF_5__isIdRhsApp(x_23); +x_25 = l___private_Lean_Util_WHNF_5__isIdRhsApp(x_23); if (x_25 == 0) { lean_object* x_26; lean_object* x_27; @@ -5843,7 +5843,7 @@ return x_27; else { lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_23); +x_28 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_23); x_29 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_29, 0, x_28); x_30 = lean_alloc_ctor(0, 2, 0); @@ -5937,7 +5937,7 @@ lean_object* x_16; lean_object* x_17; x_16 = lean_ctor_get(x_7, 1); lean_inc(x_16); lean_dec(x_7); -x_17 = l___private_Init_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2(x_15, x_5, x_2, x_16); +x_17 = l___private_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2(x_15, x_5, x_2, x_16); lean_dec(x_2); lean_dec(x_5); lean_dec(x_15); @@ -6124,8 +6124,8 @@ lean_free_object(x_54); x_61 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_46); x_62 = lean_mk_empty_array_with_capacity(x_61); lean_dec(x_61); -x_63 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_62); -x_64 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_44, x_31, x_63, x_2, x_57); +x_63 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_62); +x_64 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_44, x_31, x_63, x_2, x_57); lean_dec(x_2); lean_dec(x_63); lean_dec(x_31); @@ -6159,8 +6159,8 @@ lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; x_69 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_46); x_70 = lean_mk_empty_array_with_capacity(x_69); lean_dec(x_69); -x_71 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_70); -x_72 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_44, x_31, x_71, x_2, x_65); +x_71 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_70); +x_72 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_44, x_31, x_71, x_2, x_65); lean_dec(x_2); lean_dec(x_71); lean_dec(x_31); @@ -6185,8 +6185,8 @@ lean_dec(x_54); x_75 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_46); x_76 = lean_mk_empty_array_with_capacity(x_75); lean_dec(x_75); -x_77 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_76); -x_78 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(x_73, x_31, x_77, x_2, x_74); +x_77 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_76); +x_78 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(x_73, x_31, x_77, x_2, x_74); lean_dec(x_77); lean_dec(x_31); lean_dec(x_73); @@ -6222,8 +6222,8 @@ lean_free_object(x_54); x_84 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_46); x_85 = lean_mk_empty_array_with_capacity(x_84); lean_dec(x_84); -x_86 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_85); -x_87 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_44, x_31, x_86, x_2, x_80); +x_86 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_85); +x_87 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_44, x_31, x_86, x_2, x_80); lean_dec(x_2); lean_dec(x_86); lean_dec(x_31); @@ -6257,8 +6257,8 @@ lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; x_92 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_46); x_93 = lean_mk_empty_array_with_capacity(x_92); lean_dec(x_92); -x_94 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_93); -x_95 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_44, x_31, x_94, x_2, x_88); +x_94 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_93); +x_95 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_44, x_31, x_94, x_2, x_88); lean_dec(x_2); lean_dec(x_94); lean_dec(x_31); @@ -6377,8 +6377,8 @@ lean_dec(x_115); x_119 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_103); x_120 = lean_mk_empty_array_with_capacity(x_119); lean_dec(x_119); -x_121 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_120); -x_122 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_101, x_31, x_121, x_2, x_114); +x_121 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_120); +x_122 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_101, x_31, x_121, x_2, x_114); lean_dec(x_2); lean_dec(x_121); lean_dec(x_31); @@ -6402,8 +6402,8 @@ lean_dec(x_112); x_125 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_103); x_126 = lean_mk_empty_array_with_capacity(x_125); lean_dec(x_125); -x_127 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_126); -x_128 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(x_123, x_31, x_127, x_2, x_124); +x_127 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_126); +x_128 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(x_123, x_31, x_127, x_2, x_124); lean_dec(x_127); lean_dec(x_31); lean_dec(x_123); @@ -6448,8 +6448,8 @@ lean_dec(x_130); x_134 = l_Lean_Expr_getAppNumArgsAux___main(x_1, x_103); x_135 = lean_mk_empty_array_with_capacity(x_134); lean_dec(x_134); -x_136 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_135); -x_137 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_101, x_31, x_136, x_2, x_129); +x_136 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_1, x_135); +x_137 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_101, x_31, x_136, x_2, x_129); lean_dec(x_2); lean_dec(x_136); lean_dec(x_31); @@ -6552,22 +6552,22 @@ x_4 = l_Lean_WHNF_unfoldDefinitionAux___at_Lean_Meta_unfoldDefinition_x3f___spec return x_4; } } -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___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___private_Init_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Util_WHNF_7__deltaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__2(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___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* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___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___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__3(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -6575,11 +6575,11 @@ lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -6601,11 +6601,11 @@ lean_dec(x_2); return x_9; } } -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); return x_6; } @@ -6677,18 +6677,18 @@ lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_unfoldDefinition_x3f___spec__18(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; @@ -6730,7 +6730,7 @@ lean_dec(x_1); x_18 = lean_instantiate_value_lparams(x_4, x_5); x_19 = l_Lean_Expr_betaRev(x_18, x_6); lean_dec(x_18); -x_20 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_19); +x_20 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_19); x_21 = l_Lean_WHNF_whnfCore___main___at_Lean_Meta_whnfCore___spec__1(x_20, x_7, x_8); return x_21; } @@ -6941,7 +6941,7 @@ x_44 = lean_array_get(x_43, x_6, x_10); x_45 = l_Lean_mkApp(x_44, x_24); x_46 = lean_unsigned_to_nat(1u); x_47 = lean_nat_add(x_9, x_46); -x_48 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_11, x_6, x_47, x_45); +x_48 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_11, x_6, x_47, x_45); lean_dec(x_11); x_49 = l_Lean_WHNF_whnfCore___main___at_Lean_Meta_whnfCore___spec__1(x_48, x_7, x_42); return x_49; @@ -7397,7 +7397,7 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_whnfCore___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_whnfCore___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -7448,10 +7448,10 @@ lean_free_object(x_8); x_17 = lean_ctor_get(x_1, 2); lean_inc(x_17); lean_dec(x_1); -x_18 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_18 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_10); -x_19 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_18, x_10, x_17, x_3, x_11); +x_19 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_18, x_10, x_17, x_3, x_11); lean_dec(x_17); if (lean_obj_tag(x_19) == 0) { @@ -7785,7 +7785,7 @@ x_83 = lean_unsigned_to_nat(1u); x_84 = lean_nat_sub(x_80, x_83); lean_dec(x_80); lean_inc(x_10); -x_85 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_10, x_82, x_84); +x_85 = l___private_Lean_Expr_3__getAppArgsAux___main(x_10, x_82, x_84); x_86 = lean_ctor_get(x_1, 2); lean_inc(x_86); lean_dec(x_1); @@ -7802,10 +7802,10 @@ if (x_89 == 0) { lean_object* x_90; lean_object* x_91; lean_free_object(x_8); -x_90 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_90 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_10); -x_91 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_90, x_10, x_86, x_3, x_11); +x_91 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_90, x_10, x_86, x_3, x_11); lean_dec(x_86); if (lean_obj_tag(x_91) == 0) { @@ -8149,10 +8149,10 @@ if (x_152 == 0) { lean_object* x_153; lean_object* x_154; lean_free_object(x_8); -x_153 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_153 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_10); -x_154 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_153, x_10, x_86, x_3, x_11); +x_154 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_153, x_10, x_86, x_3, x_11); lean_dec(x_86); if (lean_obj_tag(x_154) == 0) { @@ -8523,10 +8523,10 @@ lean_object* x_223; lean_object* x_224; lean_object* x_225; x_223 = lean_ctor_get(x_1, 2); lean_inc(x_223); lean_dec(x_1); -x_224 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_224 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_215); -x_225 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_224, x_215, x_223, x_3, x_216); +x_225 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_224, x_215, x_223, x_3, x_216); lean_dec(x_223); if (lean_obj_tag(x_225) == 0) { @@ -8741,7 +8741,7 @@ x_263 = lean_unsigned_to_nat(1u); x_264 = lean_nat_sub(x_260, x_263); lean_dec(x_260); lean_inc(x_215); -x_265 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_215, x_262, x_264); +x_265 = l___private_Lean_Expr_3__getAppArgsAux___main(x_215, x_262, x_264); x_266 = lean_ctor_get(x_1, 2); lean_inc(x_266); lean_dec(x_1); @@ -8757,10 +8757,10 @@ lean_dec(x_265); if (x_269 == 0) { lean_object* x_270; lean_object* x_271; -x_270 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_270 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_215); -x_271 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_270, x_215, x_266, x_3, x_216); +x_271 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_270, x_215, x_266, x_3, x_216); lean_dec(x_266); if (lean_obj_tag(x_271) == 0) { @@ -8986,10 +8986,10 @@ lean_dec(x_265); if (x_307 == 0) { lean_object* x_308; lean_object* x_309; -x_308 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; +x_308 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1; lean_inc(x_3); lean_inc(x_215); -x_309 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_308, x_215, x_266, x_3, x_216); +x_309 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___at_Lean_Meta_unfoldDefinition_x3f___spec__10(x_308, x_215, x_266, x_3, x_216); lean_dec(x_266); if (lean_obj_tag(x_309) == 0) { @@ -9321,7 +9321,7 @@ lean_object* x_63; lean_object* x_64; lean_dec(x_20); x_63 = l_Lean_WHNF_toCtorIfLit(x_18); lean_inc(x_4); -x_64 = l___private_Init_Lean_Util_WHNF_3__getRecRuleFor(x_4, x_63); +x_64 = l___private_Lean_Util_WHNF_3__getRecRuleFor(x_4, x_63); if (lean_obj_tag(x_64) == 0) { uint8_t x_65; @@ -9363,7 +9363,7 @@ x_73 = lean_mk_array(x_71, x_72); x_74 = lean_unsigned_to_nat(1u); x_75 = lean_nat_sub(x_71, x_74); lean_dec(x_71); -x_76 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_63, x_73, x_75); +x_76 = l___private_Lean_Expr_3__getAppArgsAux___main(x_63, x_73, x_75); x_77 = l_List_lengthAux___main___rarg(x_5, x_70); x_78 = lean_ctor_get(x_4, 0); lean_inc(x_78); @@ -9424,7 +9424,7 @@ lean_dec(x_4); x_92 = lean_nat_add(x_90, x_91); lean_dec(x_91); lean_dec(x_90); -x_93 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_92, x_6, x_70, x_87); +x_93 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_92, x_6, x_70, x_87); lean_dec(x_92); x_94 = lean_array_get_size(x_76); x_95 = lean_ctor_get(x_69, 1); @@ -9432,12 +9432,12 @@ lean_inc(x_95); lean_dec(x_69); x_96 = lean_nat_sub(x_94, x_95); lean_dec(x_95); -x_97 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_94, x_76, x_96, x_93); +x_97 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_94, x_76, x_96, x_93); lean_dec(x_76); lean_dec(x_94); x_98 = lean_nat_add(x_9, x_74); lean_dec(x_9); -x_99 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_10, x_6, x_98, x_97); +x_99 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_10, x_6, x_98, x_97); lean_dec(x_10); x_100 = l_Lean_WHNF_whnfCore___main___at_Lean_Meta_whnfCore___spec__1(x_99, x_7, x_19); return x_100; @@ -9450,7 +9450,7 @@ lean_object* x_101; lean_inc(x_7); lean_inc(x_18); lean_inc(x_4); -x_101 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_whnfCore___spec__5(x_4, x_18, x_7, x_19); +x_101 = l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_whnfCore___spec__5(x_4, x_18, x_7, x_19); if (lean_obj_tag(x_101) == 0) { lean_object* x_102; @@ -9516,7 +9516,7 @@ block_61: lean_object* x_23; lean_object* x_24; x_23 = l_Lean_WHNF_toCtorIfLit(x_21); lean_inc(x_4); -x_24 = l___private_Init_Lean_Util_WHNF_3__getRecRuleFor(x_4, x_23); +x_24 = l___private_Lean_Util_WHNF_3__getRecRuleFor(x_4, x_23); if (lean_obj_tag(x_24) == 0) { uint8_t x_25; @@ -9566,7 +9566,7 @@ x_33 = lean_mk_array(x_31, x_32); x_34 = lean_unsigned_to_nat(1u); x_35 = lean_nat_sub(x_31, x_34); lean_dec(x_31); -x_36 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_23, x_33, x_35); +x_36 = l___private_Lean_Expr_3__getAppArgsAux___main(x_23, x_33, x_35); x_37 = l_List_lengthAux___main___rarg(x_5, x_30); x_38 = lean_ctor_get(x_4, 0); lean_inc(x_38); @@ -9636,7 +9636,7 @@ lean_dec(x_4); x_52 = lean_nat_add(x_50, x_51); lean_dec(x_51); lean_dec(x_50); -x_53 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_52, x_6, x_30, x_47); +x_53 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_52, x_6, x_30, x_47); lean_dec(x_52); x_54 = lean_array_get_size(x_36); x_55 = lean_ctor_get(x_29, 1); @@ -9644,12 +9644,12 @@ lean_inc(x_55); lean_dec(x_29); x_56 = lean_nat_sub(x_54, x_55); lean_dec(x_55); -x_57 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_54, x_36, x_56, x_53); +x_57 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_54, x_36, x_56, x_53); lean_dec(x_36); lean_dec(x_54); x_58 = lean_nat_add(x_9, x_34); lean_dec(x_9); -x_59 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_10, x_6, x_58, x_57); +x_59 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_10, x_6, x_58, x_57); lean_dec(x_10); x_60 = l_Lean_WHNF_whnfCore___main___at_Lean_Meta_whnfCore___spec__1(x_59, x_7, x_22); return x_60; @@ -9982,8 +9982,8 @@ x_63 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_62); x_64 = lean_mk_empty_array_with_capacity(x_63); lean_dec(x_63); lean_inc(x_2); -x_65 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_64); -x_66 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(x_2, x_26, x_29, x_46, x_33, x_65, x_3, x_61); +x_65 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_64); +x_66 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(x_2, x_26, x_29, x_46, x_33, x_65, x_3, x_61); lean_dec(x_65); lean_dec(x_33); lean_dec(x_46); @@ -10010,7 +10010,7 @@ x_73 = lean_unsigned_to_nat(1u); x_74 = lean_nat_sub(x_70, x_73); lean_dec(x_70); lean_inc(x_2); -x_75 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_72, x_74); +x_75 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_72, x_74); x_76 = l_Lean_WHNF_reduceQuotRec___at_Lean_Meta_whnfCore___spec__3(x_2, x_26, x_29, x_68, x_33, x_75, x_3, x_67); lean_dec(x_75); lean_dec(x_33); @@ -10037,7 +10037,7 @@ x_83 = lean_unsigned_to_nat(1u); x_84 = lean_nat_sub(x_80, x_83); lean_dec(x_80); lean_inc(x_2); -x_85 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_82, x_84); +x_85 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_82, x_84); x_86 = l_Lean_WHNF_reduceRec___at_Lean_Meta_whnfCore___spec__4(x_2, x_26, x_29, x_78, x_33, x_85, x_3, x_77); lean_dec(x_85); lean_dec(x_33); @@ -10165,7 +10165,7 @@ x_102 = lean_unsigned_to_nat(0u); x_103 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_102); x_104 = lean_mk_empty_array_with_capacity(x_103); lean_dec(x_103); -x_105 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_104); +x_105 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_104); x_106 = l_Lean_Expr_betaRev(x_29, x_105); lean_dec(x_105); lean_dec(x_29); @@ -10320,8 +10320,8 @@ x_136 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_135); x_137 = lean_mk_empty_array_with_capacity(x_136); lean_dec(x_136); lean_inc(x_2); -x_138 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_137); -x_139 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(x_2, x_26, x_108, x_122, x_112, x_138, x_3, x_134); +x_138 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_137); +x_139 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(x_2, x_26, x_108, x_122, x_112, x_138, x_3, x_134); lean_dec(x_138); lean_dec(x_112); lean_dec(x_122); @@ -10348,7 +10348,7 @@ x_146 = lean_unsigned_to_nat(1u); x_147 = lean_nat_sub(x_143, x_146); lean_dec(x_143); lean_inc(x_2); -x_148 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_145, x_147); +x_148 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_145, x_147); x_149 = l_Lean_WHNF_reduceQuotRec___at_Lean_Meta_whnfCore___spec__3(x_2, x_26, x_108, x_141, x_112, x_148, x_3, x_140); lean_dec(x_148); lean_dec(x_112); @@ -10375,7 +10375,7 @@ x_156 = lean_unsigned_to_nat(1u); x_157 = lean_nat_sub(x_153, x_156); lean_dec(x_153); lean_inc(x_2); -x_158 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_2, x_155, x_157); +x_158 = l___private_Lean_Expr_3__getAppArgsAux___main(x_2, x_155, x_157); x_159 = l_Lean_WHNF_reduceRec___at_Lean_Meta_whnfCore___spec__4(x_2, x_26, x_108, x_151, x_112, x_158, x_3, x_150); lean_dec(x_158); lean_dec(x_112); @@ -10497,7 +10497,7 @@ x_174 = lean_unsigned_to_nat(0u); x_175 = l_Lean_Expr_getAppNumArgsAux___main(x_2, x_174); x_176 = lean_mk_empty_array_with_capacity(x_175); lean_dec(x_175); -x_177 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_176); +x_177 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_2, x_176); x_178 = l_Lean_Expr_betaRev(x_108, x_177); lean_dec(x_177); lean_dec(x_108); @@ -10992,11 +10992,11 @@ x_4 = l_Lean_WHNF_whnfCore___main___at_Lean_Meta_whnfCore___spec__1(x_1, x_2, x_ return x_4; } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___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* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___at_Lean_Meta_whnfCore___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -12480,7 +12480,7 @@ else lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_free_object(x_22); x_42 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_43 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_42, x_4, x_28); +x_43 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_42, x_4, x_28); x_44 = lean_ctor_get(x_43, 0); lean_inc(x_44); x_45 = lean_unbox(x_44); @@ -12611,7 +12611,7 @@ else { lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; x_73 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_74 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_73, x_4, x_57); +x_74 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_73, x_4, x_57); x_75 = lean_ctor_get(x_74, 0); lean_inc(x_75); x_76 = lean_unbox(x_75); @@ -12806,7 +12806,7 @@ else lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; lean_free_object(x_22); x_115 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_116 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_115, x_4, x_106); +x_116 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_115, x_4, x_106); x_117 = lean_ctor_get(x_116, 0); lean_inc(x_117); x_118 = lean_unbox(x_117); @@ -12910,7 +12910,7 @@ else { lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; x_143 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_144 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_143, x_4, x_134); +x_144 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_143, x_4, x_134); x_145 = lean_ctor_get(x_144, 0); lean_inc(x_145); x_146 = lean_unbox(x_145); @@ -13226,7 +13226,7 @@ else lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; lean_dec(x_193); x_209 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_210 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_209, x_4, x_192); +x_210 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_209, x_4, x_192); x_211 = lean_ctor_get(x_210, 0); lean_inc(x_211); x_212 = lean_unbox(x_211); @@ -13421,7 +13421,7 @@ else lean_object* x_245; lean_object* x_246; lean_object* x_247; uint8_t x_248; lean_dec(x_236); x_245 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_246 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_245, x_4, x_235); +x_246 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_245, x_4, x_235); x_247 = lean_ctor_get(x_246, 0); lean_inc(x_247); x_248 = lean_unbox(x_247); @@ -13779,7 +13779,7 @@ else lean_object* x_317; lean_object* x_318; lean_object* x_319; uint8_t x_320; lean_free_object(x_295); x_317 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_318 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_317, x_4, x_301); +x_318 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_317, x_4, x_301); x_319 = lean_ctor_get(x_318, 0); lean_inc(x_319); x_320 = lean_unbox(x_319); @@ -13929,7 +13929,7 @@ else { lean_object* x_356; lean_object* x_357; lean_object* x_358; uint8_t x_359; x_356 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_357 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_356, x_4, x_338); +x_357 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_356, x_4, x_338); x_358 = lean_ctor_get(x_357, 0); lean_inc(x_358); x_359 = lean_unbox(x_358); @@ -14141,7 +14141,7 @@ else lean_object* x_403; lean_object* x_404; lean_object* x_405; uint8_t x_406; lean_free_object(x_295); x_403 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_404 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_403, x_4, x_395); +x_404 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_403, x_4, x_395); x_405 = lean_ctor_get(x_404, 0); lean_inc(x_405); x_406 = lean_unbox(x_405); @@ -14255,7 +14255,7 @@ else { lean_object* x_434; lean_object* x_435; lean_object* x_436; uint8_t x_437; x_434 = l_Lean_Meta_reduceBinNatOp___closed__4; -x_435 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_434, x_4, x_426); +x_435 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___main___spec__2(x_434, x_4, x_426); x_436 = lean_ctor_get(x_435, 0); lean_inc(x_436); x_437 = lean_unbox(x_436); @@ -16384,7 +16384,7 @@ lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Meta_WHNF_1__useWHNFCache(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_WHNF_1__useWHNFCache(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -16414,17 +16414,17 @@ return x_13; } } } -lean_object* l___private_Init_Lean_Meta_WHNF_1__useWHNFCache___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Meta_WHNF_1__useWHNFCache___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Meta_WHNF_1__useWHNFCache(x_1, x_2, x_3); +x_4 = l___private_Lean_Meta_WHNF_1__useWHNFCache(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___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; @@ -16466,7 +16466,7 @@ return x_15; } } } -lean_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -16537,14 +16537,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_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__3(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___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_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -16552,11 +16552,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Expr_hash(x_2); -x_5 = l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__2(x_3, x_4, x_2); +x_5 = l_PersistentHashMap_findAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__2(x_3, x_4, x_2); return x_5; } } -lean_object* l___private_Init_Lean_Meta_WHNF_2__cached_x3f(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_WHNF_2__cached_x3f(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (x_1 == 0) @@ -16576,7 +16576,7 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); lean_dec(x_7); -x_9 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_8, x_2); +x_9 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_8, x_2); x_10 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_4); @@ -16584,50 +16584,50 @@ return x_10; } } } -lean_object* l_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___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* l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___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_PersistentHashMap_findAtAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_PersistentHashMap_findAtAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___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_object* l_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_findAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___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_PersistentHashMap_findAux___main___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__2(x_1, x_4, x_3); +x_5 = l_PersistentHashMap_findAux___main___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__2(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_1, x_2); +x_3 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Meta_WHNF_2__cached_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_WHNF_2__cached_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_1); lean_dec(x_1); -x_6 = l___private_Init_Lean_Meta_WHNF_2__cached_x3f(x_5, x_2, x_3, x_4); +x_6 = l___private_Lean_Meta_WHNF_2__cached_x3f(x_5, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__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; lean_object* x_7; uint8_t x_8; @@ -16719,7 +16719,7 @@ return x_29; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___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_object* l_Array_iterateMAux___main___at___private_Lean_Meta_WHNF_3__cache___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) { _start: { lean_object* x_7; uint8_t x_8; @@ -16742,7 +16742,7 @@ x_13 = x_1 - x_12; x_14 = 5; x_15 = x_14 * x_13; x_16 = x_11 >> x_15; -x_17 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2(x_6, x_16, x_1, x_9, x_10); +x_17 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__2(x_6, x_16, x_1, x_9, x_10); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_add(x_5, x_18); lean_dec(x_5); @@ -16752,7 +16752,7 @@ goto _start; } } } -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___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) @@ -16865,7 +16865,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 = x_2 >> x_9; x_37 = x_3 + x_8; -x_38 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2(x_35, x_36, x_37, x_4, x_5); +x_38 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___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); @@ -16880,7 +16880,7 @@ lean_inc(x_40); lean_dec(x_15); x_41 = x_2 >> x_9; x_42 = x_3 + x_8; -x_43 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2(x_40, x_41, x_42, x_4, x_5); +x_43 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___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); @@ -16996,7 +16996,7 @@ if (lean_is_exclusive(x_57)) { } x_73 = x_2 >> x_50; x_74 = x_3 + x_49; -x_75 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2(x_71, x_73, x_74, x_4, x_5); +x_75 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___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 { @@ -17029,7 +17029,7 @@ else { lean_object* x_82; lean_object* x_83; size_t x_84; uint8_t x_85; x_82 = lean_unsigned_to_nat(0u); -x_83 = l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__3(x_1, x_82, x_4, x_5); +x_83 = l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__3(x_1, x_82, x_4, x_5); x_84 = 7; x_85 = x_84 <= x_3; if (x_85 == 0) @@ -17048,7 +17048,7 @@ x_90 = lean_ctor_get(x_83, 1); lean_inc(x_90); lean_dec(x_83); x_91 = l_PersistentHashMap_insertAux___main___rarg___closed__3; -x_92 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__4(x_3, x_89, x_90, x_89, x_82, x_91); +x_92 = l_Array_iterateMAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__4(x_3, x_89, x_90, x_89, x_82, x_91); lean_dec(x_90); lean_dec(x_89); return x_92; @@ -17065,7 +17065,7 @@ return x_83; } } } -lean_object* l_PersistentHashMap_insert___at___private_Init_Lean_Meta_WHNF_3__cache___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_insert___at___private_Lean_Meta_WHNF_3__cache___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -17077,7 +17077,7 @@ x_5 = lean_ctor_get(x_1, 0); x_6 = lean_ctor_get(x_1, 1); x_7 = l_Lean_Expr_hash(x_2); x_8 = 1; -x_9 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2(x_5, x_7, x_8, x_2, x_3); +x_9 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__2(x_5, x_7, x_8, x_2, x_3); x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_6, x_10); lean_dec(x_6); @@ -17095,7 +17095,7 @@ lean_inc(x_12); lean_dec(x_1); x_14 = l_Lean_Expr_hash(x_2); x_15 = 1; -x_16 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2(x_12, x_14, x_15, x_2, x_3); +x_16 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__2(x_12, x_14, x_15, x_2, x_3); x_17 = lean_unsigned_to_nat(1u); x_18 = lean_nat_add(x_13, x_17); lean_dec(x_13); @@ -17106,7 +17106,7 @@ return x_19; } } } -lean_object* l___private_Init_Lean_Meta_WHNF_3__cache(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_WHNF_3__cache(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (x_1 == 0) @@ -17132,7 +17132,7 @@ if (x_9 == 0) lean_object* x_10; lean_object* x_11; lean_object* x_12; x_10 = lean_ctor_get(x_8, 3); lean_inc(x_3); -x_11 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_WHNF_3__cache___spec__1(x_10, x_2, x_3); +x_11 = l_PersistentHashMap_insert___at___private_Lean_Meta_WHNF_3__cache___spec__1(x_10, x_2, x_3); lean_ctor_set(x_8, 3, x_11); x_12 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_12, 0, x_3); @@ -17152,7 +17152,7 @@ lean_inc(x_14); lean_inc(x_13); lean_dec(x_8); lean_inc(x_3); -x_17 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_WHNF_3__cache___spec__1(x_16, x_2, x_3); +x_17 = l_PersistentHashMap_insert___at___private_Lean_Meta_WHNF_3__cache___spec__1(x_16, x_2, x_3); x_18 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_18, 0, x_13); lean_ctor_set(x_18, 1, x_14); @@ -17200,7 +17200,7 @@ if (lean_is_exclusive(x_20)) { x_30 = lean_box(0); } lean_inc(x_3); -x_31 = l_PersistentHashMap_insert___at___private_Init_Lean_Meta_WHNF_3__cache___spec__1(x_29, x_2, x_3); +x_31 = l_PersistentHashMap_insert___at___private_Lean_Meta_WHNF_3__cache___spec__1(x_29, x_2, x_3); if (lean_is_scalar(x_30)) { x_32 = lean_alloc_ctor(0, 4, 0); } else { @@ -17225,20 +17225,20 @@ return x_34; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Meta_WHNF_3__cache___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) { _start: { size_t x_7; lean_object* x_8; x_7 = lean_unbox_usize(x_1); lean_dec(x_1); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__4(x_7, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__4(x_7, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___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* l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___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; @@ -17246,17 +17246,17 @@ 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_PersistentHashMap_insertAux___main___at___private_Init_Lean_Meta_WHNF_3__cache___spec__2(x_1, x_6, x_7, x_4, x_5); +x_8 = l_PersistentHashMap_insertAux___main___at___private_Lean_Meta_WHNF_3__cache___spec__2(x_1, x_6, x_7, x_4, x_5); return x_8; } } -lean_object* l___private_Init_Lean_Meta_WHNF_3__cache___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Meta_WHNF_3__cache___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_1); lean_dec(x_1); -x_7 = l___private_Init_Lean_Meta_WHNF_3__cache(x_6, x_2, x_3, x_4, x_5); +x_7 = l___private_Lean_Meta_WHNF_3__cache(x_6, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_7; } @@ -17450,7 +17450,7 @@ lean_inc(x_77); x_78 = lean_ctor_get(x_77, 3); lean_inc(x_78); lean_dec(x_77); -x_79 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_78, x_1); +x_79 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_78, x_1); x_33 = x_79; x_34 = x_32; goto block_75; @@ -17512,7 +17512,7 @@ lean_object* x_46; lean_object* x_47; x_46 = lean_ctor_get(x_44, 1); lean_inc(x_46); lean_dec(x_44); -x_47 = l___private_Init_Lean_Meta_WHNF_3__cache(x_31, x_1, x_36, x_2, x_46); +x_47 = l___private_Lean_Meta_WHNF_3__cache(x_31, x_1, x_36, x_2, x_46); lean_dec(x_2); return x_47; } @@ -17568,7 +17568,7 @@ lean_dec(x_41); x_56 = lean_ctor_get(x_42, 0); lean_inc(x_56); lean_dec(x_42); -x_57 = l___private_Init_Lean_Meta_WHNF_3__cache(x_31, x_1, x_56, x_2, x_55); +x_57 = l___private_Lean_Meta_WHNF_3__cache(x_31, x_1, x_56, x_2, x_55); lean_dec(x_2); return x_57; } @@ -17609,7 +17609,7 @@ lean_dec(x_38); x_63 = lean_ctor_get(x_39, 0); lean_inc(x_63); lean_dec(x_39); -x_64 = l___private_Init_Lean_Meta_WHNF_3__cache(x_31, x_1, x_63, x_2, x_62); +x_64 = l___private_Lean_Meta_WHNF_3__cache(x_31, x_1, x_63, x_2, x_62); lean_dec(x_2); return x_64; } @@ -17725,7 +17725,7 @@ lean_inc(x_133); x_134 = lean_ctor_get(x_133, 3); lean_inc(x_134); lean_dec(x_133); -x_135 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_134, x_1); +x_135 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_134, x_1); x_89 = x_135; x_90 = x_88; goto block_131; @@ -17787,7 +17787,7 @@ lean_object* x_102; lean_object* x_103; x_102 = lean_ctor_get(x_100, 1); lean_inc(x_102); lean_dec(x_100); -x_103 = l___private_Init_Lean_Meta_WHNF_3__cache(x_87, x_1, x_92, x_2, x_102); +x_103 = l___private_Lean_Meta_WHNF_3__cache(x_87, x_1, x_92, x_2, x_102); lean_dec(x_2); return x_103; } @@ -17843,7 +17843,7 @@ lean_dec(x_97); x_112 = lean_ctor_get(x_98, 0); lean_inc(x_112); lean_dec(x_98); -x_113 = l___private_Init_Lean_Meta_WHNF_3__cache(x_87, x_1, x_112, x_2, x_111); +x_113 = l___private_Lean_Meta_WHNF_3__cache(x_87, x_1, x_112, x_2, x_111); lean_dec(x_2); return x_113; } @@ -17884,7 +17884,7 @@ lean_dec(x_94); x_119 = lean_ctor_get(x_95, 0); lean_inc(x_119); lean_dec(x_95); -x_120 = l___private_Init_Lean_Meta_WHNF_3__cache(x_87, x_1, x_119, x_2, x_118); +x_120 = l___private_Lean_Meta_WHNF_3__cache(x_87, x_1, x_119, x_2, x_118); lean_dec(x_2); return x_120; } @@ -18000,7 +18000,7 @@ lean_inc(x_189); x_190 = lean_ctor_get(x_189, 3); lean_inc(x_190); lean_dec(x_189); -x_191 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_190, x_1); +x_191 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_190, x_1); x_145 = x_191; x_146 = x_144; goto block_187; @@ -18062,7 +18062,7 @@ lean_object* x_158; lean_object* x_159; x_158 = lean_ctor_get(x_156, 1); lean_inc(x_158); lean_dec(x_156); -x_159 = l___private_Init_Lean_Meta_WHNF_3__cache(x_143, x_1, x_148, x_2, x_158); +x_159 = l___private_Lean_Meta_WHNF_3__cache(x_143, x_1, x_148, x_2, x_158); lean_dec(x_2); return x_159; } @@ -18118,7 +18118,7 @@ lean_dec(x_153); x_168 = lean_ctor_get(x_154, 0); lean_inc(x_168); lean_dec(x_154); -x_169 = l___private_Init_Lean_Meta_WHNF_3__cache(x_143, x_1, x_168, x_2, x_167); +x_169 = l___private_Lean_Meta_WHNF_3__cache(x_143, x_1, x_168, x_2, x_167); lean_dec(x_2); return x_169; } @@ -18159,7 +18159,7 @@ lean_dec(x_150); x_175 = lean_ctor_get(x_151, 0); lean_inc(x_175); lean_dec(x_151); -x_176 = l___private_Init_Lean_Meta_WHNF_3__cache(x_143, x_1, x_175, x_2, x_174); +x_176 = l___private_Lean_Meta_WHNF_3__cache(x_143, x_1, x_175, x_2, x_174); lean_dec(x_2); return x_176; } @@ -18284,7 +18284,7 @@ lean_inc(x_247); x_248 = lean_ctor_get(x_247, 3); lean_inc(x_248); lean_dec(x_247); -x_249 = l_PersistentHashMap_find_x3f___at___private_Init_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_248, x_1); +x_249 = l_PersistentHashMap_find_x3f___at___private_Lean_Meta_WHNF_2__cached_x3f___spec__1(x_248, x_1); x_203 = x_249; x_204 = x_202; goto block_245; @@ -18346,7 +18346,7 @@ lean_object* x_216; lean_object* x_217; x_216 = lean_ctor_get(x_214, 1); lean_inc(x_216); lean_dec(x_214); -x_217 = l___private_Init_Lean_Meta_WHNF_3__cache(x_201, x_1, x_206, x_2, x_216); +x_217 = l___private_Lean_Meta_WHNF_3__cache(x_201, x_1, x_206, x_2, x_216); lean_dec(x_2); return x_217; } @@ -18402,7 +18402,7 @@ lean_dec(x_211); x_226 = lean_ctor_get(x_212, 0); lean_inc(x_226); lean_dec(x_212); -x_227 = l___private_Init_Lean_Meta_WHNF_3__cache(x_201, x_1, x_226, x_2, x_225); +x_227 = l___private_Lean_Meta_WHNF_3__cache(x_201, x_1, x_226, x_2, x_225); lean_dec(x_2); return x_227; } @@ -18443,7 +18443,7 @@ lean_dec(x_208); x_233 = lean_ctor_get(x_209, 0); lean_inc(x_233); lean_dec(x_209); -x_234 = l___private_Init_Lean_Meta_WHNF_3__cache(x_201, x_1, x_233, x_2, x_232); +x_234 = l___private_Lean_Meta_WHNF_3__cache(x_201, x_1, x_233, x_2, x_232); lean_dec(x_2); return x_234; } @@ -18881,7 +18881,7 @@ lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -18982,7 +18982,7 @@ lean_dec(x_16); x_23 = lean_ctor_get(x_17, 0); lean_inc(x_23); lean_dec(x_17); -x_24 = l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main(x_1, x_23, x_3, x_22); +x_24 = l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main(x_1, x_23, x_3, x_22); return x_24; } } @@ -19065,7 +19065,7 @@ return x_36; } } } -lean_object* _init_l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1() { +lean_object* _init_l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1() { _start: { lean_object* x_1; @@ -19073,7 +19073,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Meta_getLocalDecl), 3, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2() { +lean_object* _init_l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2() { _start: { lean_object* x_1; @@ -19081,25 +19081,25 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Meta_getExprMVarAssignment_x3f___boxed), return x_1; } } -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main(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; -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___lambda__1), 4, 1); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___lambda__1), 4, 1); lean_closure_set(x_5, 0, x_1); x_6 = l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; -x_7 = l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1; -x_8 = l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2; +x_7 = l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1; +x_8 = l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2; x_9 = l_Lean_WHNF_whnfEasyCases___main___rarg(x_6, x_7, x_8, x_2, x_5); x_10 = lean_apply_2(x_9, x_3, x_4); return x_10; } } -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main(x_1, x_2, x_3, x_4); return x_5; } } @@ -19107,7 +19107,7 @@ lean_object* l_Lean_Meta_whnfHeadPred(lean_object* x_1, lean_object* x_2, lean_o _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main(x_2, x_1, x_3, x_4); +x_5 = l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main(x_2, x_1, x_3, x_4); return x_5; } } @@ -20148,7 +20148,7 @@ return x_189; } } } -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -20251,11 +20251,11 @@ lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___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___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___spec__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___at_Lean_Meta_whnfUntil___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -20549,7 +20549,7 @@ x_29 = lean_mk_array(x_27, x_28); x_30 = lean_unsigned_to_nat(1u); x_31 = lean_nat_sub(x_27, x_30); lean_dec(x_27); -x_32 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_29, x_31); +x_32 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_29, x_31); x_33 = l_Lean_WHNF_isQuotRecStuck_x3f___at_Lean_Meta_getStuckMVar_x3f___spec__2(x_25, x_13, x_32, x_2, x_24); lean_dec(x_32); lean_dec(x_13); @@ -20573,7 +20573,7 @@ x_39 = lean_mk_array(x_37, x_38); x_40 = lean_unsigned_to_nat(1u); x_41 = lean_nat_sub(x_37, x_40); lean_dec(x_37); -x_42 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_39, x_41); +x_42 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_39, x_41); x_43 = l_Lean_WHNF_isRecStuck_x3f___at_Lean_Meta_getStuckMVar_x3f___spec__3(x_35, x_13, x_42, x_2, x_34); lean_dec(x_42); lean_dec(x_13); @@ -20750,29 +20750,29 @@ lean_dec(x_1); return x_6; } } -lean_object* initialize_Init_Lean_AuxRecursor(lean_object*); -lean_object* initialize_Init_Lean_Util_WHNF(lean_object*); -lean_object* initialize_Init_Lean_Meta_Basic(lean_object*); -lean_object* initialize_Init_Lean_Meta_LevelDefEq(lean_object*); +lean_object* initialize_Lean_AuxRecursor(lean_object*); +lean_object* initialize_Lean_Util_WHNF(lean_object*); +lean_object* initialize_Lean_Meta_Basic(lean_object*); +lean_object* initialize_Lean_Meta_LevelDefEq(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Meta_WHNF(lean_object* w) { +lean_object* initialize_Lean_Meta_WHNF(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_AuxRecursor(lean_io_mk_world()); +res = initialize_Lean_AuxRecursor(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_WHNF(lean_io_mk_world()); +res = initialize_Lean_Util_WHNF(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_Basic(lean_io_mk_world()); +res = initialize_Lean_Meta_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Meta_LevelDefEq(lean_io_mk_world()); +res = initialize_Lean_Meta_LevelDefEq(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1 = _init_l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1); +l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1 = _init_l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1(); +lean_mark_persistent(l___private_Lean_Util_WHNF_4__toCtorWhenK___at_Lean_Meta_unfoldDefinition_x3f___spec__9___closed__1); l_Lean_Meta_reduceNative_x3f___closed__1 = _init_l_Lean_Meta_reduceNative_x3f___closed__1(); lean_mark_persistent(l_Lean_Meta_reduceNative_x3f___closed__1); l_Lean_Meta_reduceNative_x3f___closed__2 = _init_l_Lean_Meta_reduceNative_x3f___closed__2(); @@ -20850,10 +20850,10 @@ lean_mark_persistent(l_Lean_Meta_setWHNFRef___closed__1); res = l_Lean_Meta_setWHNFRef(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1 = _init_l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1); -l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2 = _init_l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2); +l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1 = _init_l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__1); +l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2 = _init_l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Meta_WHNF_4__whnfHeadPredAux___main___closed__2); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/MetavarContext.c b/stage0/stdlib/Lean/MetavarContext.c similarity index 85% rename from stage0/stdlib/Init/Lean/MetavarContext.c rename to stage0/stdlib/Lean/MetavarContext.c index b311eab4a2..b45285d8bd 100644 --- a/stage0/stdlib/Init/Lean/MetavarContext.c +++ b/stage0/stdlib/Lean/MetavarContext.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.MetavarContext -// Imports: Init.Control.Reader Init.Data.Nat Init.Data.Option Init.Lean.Util.MonadCache Init.Lean.LocalContext +// Module: Lean.MetavarContext +// Imports: Init.Control.Reader Init.Data.Nat Init.Data.Option Lean.Util.MonadCache Lean.LocalContext #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,41 +13,38 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_foldr___main___at_Lean_MetavarContext_hasAssignedMVar___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_InstantiateExprMVars_main(lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* lean_expr_update_forall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__3(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__45___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_14__getInScope___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_23__abstractRange___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashSetImp_insert___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__3(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_HashMapImp_moveEntries___main___at___private_Lean_MetavarContext_2__visit___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_containsAux___main___at_Lean_MetavarContext_isLevelAssigned___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_MetavarContext_assignExprCore___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toString___at_Lean_MetavarContext_MkBinding_Exception_toString___spec__2(lean_object*); lean_object* l_ReaderT_lift___at_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___spec__1(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_mkHashSetImp___rarg(lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___closed__2; +lean_object* l___private_Lean_MetavarContext_8__dep___main___lambda__1(lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_mkHashMap___at_Lean_MetavarContext_instantiateMVars___spec__1(lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_findLevelDepth_x3f(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_15__withFreshCache(lean_object*); -lean_object* l_Nat_foldRevMAux___main___at___private_Init_Lean_MetavarContext_17__mkAuxMVarType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_assignDelayed___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__36___boxed(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___closed__1; -lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42(lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_16__abstractRangeAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_instantiateMVars(lean_object*, lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_findLevelDepth_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_findLevelDepth_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_mkParamName___main___boxed(lean_object*); @@ -56,41 +53,39 @@ lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___lambda__2(lean_object*, uint8_t, lean_object*); extern lean_object* l_List_repr___rarg___closed__1; uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_addLevelMVarDecl(lean_object*, lean_object*); lean_object* lean_expr_update_mdata(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_findDecl_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentHashMap_containsAux___main___at_Lean_MetavarContext_isDelayedAssigned___spec__2(lean_object*, size_t, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__44___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_EIO_Monad___closed__1; +uint8_t l_Nat_anyAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_19__mkAuxMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__17___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__21___boxed(lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_mk_let_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_12__visit___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateMData_x21___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_MetavarContext_setMVarKind___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_assignDelayed___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); -lean_object* l_HashSetImp_contains___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_11__reduceLocalContext(lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_metavar_ctx(lean_object*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__23___boxed(lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_20__anyDependsOn___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__47___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_List_elem___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__2(lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_get_expr_assignment(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_addExprMVarDecl___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashMapImp_expand___at___private_Init_Lean_MetavarContext_2__visit___spec__5(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldRevMAux___main___at___private_Lean_MetavarContext_17__mkAuxMVarType___spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* lean_local_ctx_erase(lean_object*, lean_object*); lean_object* l_List_mapM___main___at_Lean_MetavarContext_InstantiateExprMVars_main___main___spec__1(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_contains___at_Lean_MetavarContext_isExprAssigned___spec__1___boxed(lean_object*, lean_object*); lean_object* l_mkHashSet___at_Lean_MetavarContext_findExprDependsOn___spec__1(lean_object*); lean_object* l_Lean_mkMVar(lean_object*); @@ -102,87 +97,84 @@ lean_object* l_Lean_MetavarContext_mkLambda(lean_object*, lean_object*, lean_obj lean_object* l___private_Init_Util_1__mkPanicMessage(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_setMVarKind(lean_object*, lean_object*, uint8_t); uint8_t l_PersistentHashMap_contains___at_Lean_MetavarContext_isDelayedAssigned___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Level_hasMVar(lean_object*); lean_object* l_Lean_MetavarContext_getDecl___closed__2; -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_11__reduceLocalContext(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_assignExprCore___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_mkBinding(uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getDecl___closed__1; -lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_getExprAssignment_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_14__getInScope___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_reverseAux___main___rarg(lean_object*, lean_object*); uint8_t l_Lean_Expr_isApp(lean_object*); +lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42(lean_object*); lean_object* l_Lean_MetavarContext_isDelayedAssigned___boxed(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_22__elimMVarDepsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_get_delayed_assignment(lean_object*, lean_object*); lean_object* l_ReaderT_Monad___rarg(lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_addExprMVarDecl___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_findDecl_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__44(lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Exception_toString___closed__2; -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_isUnaryNode___rarg(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_instantiateLCtxMVars___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___boxed(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__26(lean_object*, lean_object*); lean_object* lean_expr_lift_loose_bvars(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__47(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__44___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +lean_object* l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_setMVarUserName(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_19__mkAuxMVar(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__11___boxed(lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__6(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__36___boxed(lean_object*, lean_object*); uint8_t l_PersistentHashMap_contains___at_Lean_MetavarContext_isLevelAssigned___spec__1(lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__35(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_getExprAssignment_x3f___spec__2(lean_object*, size_t, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_MetavarContext_exprDependsOn___spec__8___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; extern lean_object* l_Lean_Expr_getAppArgs___closed__1; -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_4__modifyCtx(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_renameMVar(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__48(lean_object*); lean_object* l_PersistentArray_foldlM___at_Lean_MetavarContext_instantiateLCtxMVars___spec__2___boxed(lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__3; -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_MetavarContext_2__visit___spec__2___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_getDelayedAssignment_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_findLevelDepth_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_18__mkMVarApp(lean_object*, lean_object*, lean_object*, uint8_t); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__6(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___closed__4; +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_getDelayedAssignment_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_contains___at_Lean_MetavarContext_isLevelAssigned___spec__1___boxed(lean_object*, lean_object*); extern lean_object* l_Id_monad; -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_20__anyDependsOn___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MetavarContext_exprDependsOn___spec__2(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_isAnonymousMVar___boxed(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_instantiateLCtxMVars___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentHashMap_contains___at_Lean_MetavarContext_isExprAssigned___spec__1(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_mkForallUsedOnly(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_4__modifyCtx(lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__18___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_getLevelAssignment_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_isLevelAssignable___boxed(lean_object*, lean_object*); uint8_t l_Lean_LocalContext_contains(lean_object*, lean_object*); -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__17(lean_object*, lean_object*); +lean_object* l_HashMapImp_expand___at___private_Lean_MetavarContext_2__visit___spec__5(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_addExprMVarDecl___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__36(lean_object*, lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__2(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_instantiateLCtxMVars___boxed(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__46___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__11(lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_eraseAux___main___at_Lean_MetavarContext_eraseDelayed___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_getLevelAssignment_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___lambda__2___boxed(lean_object*, lean_object*, lean_object*); @@ -190,278 +182,294 @@ lean_object* l_PersistentHashMap_eraseAux___main___at_Lean_MetavarContext_eraseD lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_getExprAssignment_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MetavarContext_exprDependsOn___spec__8(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_13__getMCtx___boxed(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_19__mkAuxMVar(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__20___boxed(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__31(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_exprDependsOn___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___closed__5; extern lean_object* l_Lean_Expr_updateLambdaE_x21___closed__1; +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_20__anyDependsOn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_AssocList_replace___main___at___private_Lean_MetavarContext_2__visit___spec__8(lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_assign_delayed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__9___boxed(lean_object*, lean_object*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__29___boxed(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_findLevelDepth_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_has_loose_bvar(lean_object*, lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_MetavarContext_exprDependsOn___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignableMVar___main(lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_13__getMCtx___rarg(lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_21__elimMVarDepsApp___main(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_MetavarContext_11__reduceLocalContext___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_findIdxAux___main___at_Lean_LocalInstances_erase___spec__1(lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); uint8_t lean_metavar_ctx_is_expr_assigned(lean_object*, lean_object*); extern lean_object* l_Lean_LocalContext_Inhabited___closed__2; +lean_object* l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__46(lean_object*); extern lean_object* l_PersistentArray_getAux___main___rarg___closed__1; -uint8_t l_List_elem___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__2(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_mkParamName___rarg(lean_object*, lean_object*); lean_object* lean_expr_lower_loose_bvars(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_findDecl_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_MetavarContext_11__reduceLocalContext___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_hasAssignableLevelMVar___main(lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__30___boxed(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__29(lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_assignLevel___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_HasRepr___rarg___closed__1; uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_3__getMCtx(lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_20__anyDependsOn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__46___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_elimMVarDeps___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__47___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_List_foldr___main___at_Lean_MetavarContext_hasAssignableMVar___main___spec__1(lean_object*, uint8_t, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_elimMVarDeps___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__23(lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev_range(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited___closed__1; lean_object* l_Lean_MetavarDecl_Inhabited___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___spec__2(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__46___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_23__abstractRange(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_replace___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__7(lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_instantiateMVars___closed__1; uint8_t l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__21(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___lambda__1(lean_object*, uint8_t, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__8___boxed(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_MetavarContext_11__reduceLocalContext___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_14__getInScope(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_22__elimMVarDepsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_MetavarContext_levelMVarToParam(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_MetavarContext_assignExprCore___spec__1(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_assignExprCore___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__12___boxed(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_main(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_assignDelayed___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_13__getMCtx(uint8_t); lean_object* lean_metavar_ctx_get_level_assignment(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_12__visit___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_6__visit_x3f(lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__29___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_getLevelAssignment_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_instantiateLevelMVars___main(lean_object*, lean_object*); +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_assignExprCore___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Exception_toString___closed__5; lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldRevMAux___main___at___private_Lean_MetavarContext_17__mkAuxMVarType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_AssocList_contains___main___at___private_Init_Lean_MetavarContext_2__visit___spec__4___boxed(lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__18(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_14__getInScope___boxed(lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_hasAssignedLevelMVar(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_visitLevel(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_isExprAssignable___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_getDelayedAssignment_x3f___spec__2(lean_object*, size_t, lean_object*); lean_object* lean_level_update_max(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_getLevelAssignment_x3f___spec__2(lean_object*, size_t, lean_object*); +lean_object* l___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx(lean_object*, lean_object*); lean_object* l_PersistentHashMap_erase___at_Lean_MetavarContext_eraseDelayed___spec__1___boxed(lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__36(lean_object*, lean_object*); uint8_t l_Lean_Expr_hasExprMVar(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__49___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__49___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l___private_Lean_MetavarContext_21__elimMVarDepsApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_21__elimMVarDepsApp(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_getDelayedAssignment_x3f___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* lean_metavar_ctx_assign_expr(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__20(lean_object*, lean_object*); +lean_object* l_AssocList_foldlM___main___at___private_Lean_MetavarContext_2__visit___spec__7(lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_lift___at_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_HashSetImp_expand___at___private_Lean_MetavarContext_6__visit_x3f___spec__4(lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__48___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_mkParamName(lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_MetavarContext_addLevelMVarDecl___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_MetavarContext_2__visit___spec__7(lean_object*, lean_object*); lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_visitLevel___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_elimMVarDeps(lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__47(lean_object*); lean_object* l_Lean_MetavarContext_isWellFormed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_mkParamName___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_isLevelAssigned___boxed(lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_findExprDependsOn(lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_MetavarContext_20__anyDependsOn(lean_object*, lean_object*, lean_object*); +lean_object* l_List_replace___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__7___boxed(lean_object*, lean_object*, lean_object*); size_t l_Lean_Name_hash(lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Exception_toString(lean_object*); extern lean_object* l_Char_HasRepr___closed__1; -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__9(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_MetavarContext_assignLevel___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getDecl___closed__3; lean_object* l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__14___boxed(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_instantiateLevelMVars(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_15__withFreshCache___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_instantiateLCtxMVars___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); lean_object* l_Lean_MetavarContext_elimMVarDeps(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__41___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_13__getMCtx___boxed(lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__35___boxed(lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentHashMap_insertAux___main___rarg___closed__3; lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_Inhabited; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__46(lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_findDecl_x3f___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_14__getInScope___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_Lean_Expr_hash(lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__18___boxed(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__48___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_abstract_range(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_List_reprAux___main___rarg___closed__1; uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignableLevelMVar___boxed(lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_getFVar_x21(lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___spec__2___rarg(lean_object*, lean_object*, uint8_t, lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__32(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_16__abstractRangeAux(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_AssocList_find_x3f___main___at___private_Lean_MetavarContext_2__visit___spec__2___boxed(lean_object*, lean_object*); size_t l_USize_shiftLeft(size_t, size_t); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_findDecl_x3f___spec__2(lean_object*, size_t, lean_object*); lean_object* l_Lean_MetavarContext_assignExpr(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__3(lean_object*, lean_object*); lean_object* l_Array_indexOfAux___main___at_Lean_MetavarContext_eraseDelayed___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_isWellFormed___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___lambda__1___boxed(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentHashMap_containsAux___main___at_Lean_MetavarContext_isExprAssigned___spec__2(lean_object*, size_t, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__45___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalInstances_erase(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__15(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_16__abstractRangeAux(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__11(lean_object*, lean_object*); lean_object* l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__27___boxed(lean_object*, lean_object*); +uint8_t l_AssocList_contains___main___at___private_Lean_MetavarContext_2__visit___spec__4(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_localDeclDependsOn(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_14__getInScope___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_modn(size_t, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l_HashMapImp_moveEntries___main___at___private_Init_Lean_MetavarContext_2__visit___spec__6(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_10__collectDeps(lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__5___boxed(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateApp_x21___closed__1; lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_MetavarContext_11__reduceLocalContext___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLevelMVar(lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__24(lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_toExpr(lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux(lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_MetavarContext_addLevelMVarDecl___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLambda(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_BinderInfo_isAuxDecl(uint8_t); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_10__collectDeps(lean_object*, lean_object*, lean_object*, uint8_t); size_t l_USize_mul(size_t, size_t); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__12(lean_object*, lean_object*); lean_object* l_mkHashMapImp___rarg(lean_object*); lean_object* l_Lean_LocalContext_foldlM___at_Lean_MetavarContext_instantiateLCtxMVars___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Nat_foldRevMAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__30___boxed(lean_object*, lean_object*); lean_object* lean_expr_update_let(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__26___boxed(lean_object*, lean_object*); -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_MetavarContext_20__anyDependsOn(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41(lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___closed__3; +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_20__anyDependsOn___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__49(lean_object*); lean_object* l_PersistentArray_foldlMAux___main___at_Lean_MetavarContext_instantiateLCtxMVars___spec__3(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_instantiateLCtxMVars___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__46___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__24(lean_object*, lean_object*); uint8_t l_Lean_Expr_isLambda(lean_object*); uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_MetavarContext_isLevelAssigned___spec__3(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__9___boxed(lean_object*, lean_object*); extern lean_object* l_HashSet_Inhabited___closed__1; lean_object* l_ReaderT_bind___at_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_23__abstractRange(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* lean_expr_update_proj(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_24__visit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_assignExprCore___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_land(size_t, size_t); lean_object* l_Lean_LocalDecl_fvarId(lean_object*); lean_object* l_Lean_MetavarContext_findLevelDepth_x3f___boxed(lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__12(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__6___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateProj_x21___closed__2; -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__5(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_HashSetImp_contains___at___private_Lean_MetavarContext_6__visit_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Lean_LocalInstance_beq___boxed(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_assignLevel___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_findLevelDepth_x3f___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Exception_toString___closed__3; +lean_object* l___private_Lean_MetavarContext_17__mkAuxMVarType(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_instantiateLCtxMVars(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_containsAtAux___main___at_Lean_MetavarContext_isLevelAssigned___spec__3___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__45(lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__23(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_exprDependsOn(lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__45___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_assignDelayed___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Exception_hasToString; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashSetImp_expand___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__4(lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__11___boxed(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignedLevelMVar___main___boxed(lean_object*, lean_object*); -lean_object* l_AssocList_replace___main___at___private_Init_Lean_MetavarContext_2__visit___spec__8(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignableLevelMVar___main___boxed(lean_object*, lean_object*); lean_object* lean_level_update_imax(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_13__getMCtx___rarg(lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter; +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__48___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__33___boxed(lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__29(lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_isAnonymousMVar(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_15__withFreshCache___rarg(lean_object*, uint8_t, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_index(lean_object*); uint8_t l_Lean_MetavarKind_isSyntheticOpaque(uint8_t); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_getLevelAssignment_x3f___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_assignLevel___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_preserveOrder(uint8_t, lean_object*); +lean_object* l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignableMVar___boxed(lean_object*, lean_object*); uint8_t l_PersistentHashMap_containsAux___main___at_Lean_MetavarContext_isLevelAssigned___spec__2(lean_object*, size_t, lean_object*); lean_object* l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__3___boxed(lean_object*, lean_object*); @@ -469,252 +477,244 @@ uint8_t lean_expr_eqv(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_addLevelMVarDecl___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_MetavarContext_addExprMVarDecl___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Exception_hasToString___closed__1; uint8_t l_Lean_Expr_isMVar(lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_sort(lean_object*, lean_object*); lean_object* l_Lean_MetavarDecl_Inhabited; lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_addLevelMVarDecl___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_getExprAssignment_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t l_USize_decLe(size_t, size_t); uint8_t l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_exprDependsOn___spec__9(lean_object*, lean_object*); +lean_object* l_AssocList_find_x3f___main___at___private_Lean_MetavarContext_2__visit___spec__2(lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__48(lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); +lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__51(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__14(lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_hasAssignableLevelMVar(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_isExprAssigned___boxed(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isAnonymous(lean_object*); lean_object* l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_mk_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern uint8_t l_Bool_Inhabited; lean_object* l_Lean_mkMetavarDeclEx___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_17__mkAuxMVarType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* lean_metavar_ctx_assign_level(lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_addLevelMVarDecl___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__6(lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__41(lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_MetavarContext_assignLevel___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__51(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__51___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_containsAux___main___at_Lean_MetavarContext_isExprAssigned___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_incDepth(lean_object*); lean_object* l_Lean_MetavarContext_localDeclDependsOn___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___main___at_Lean_MetavarContext_InstantiateExprMVars_main___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_HashSetImp_contains___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_15__withFreshCache___rarg(lean_object*, uint8_t, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_renameMVar___closed__1; -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_AssocList_contains___main___at___private_Lean_MetavarContext_2__visit___spec__4___boxed(lean_object*, lean_object*); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__30(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_eraseIdx_x27___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); lean_object* lean_metavar_ctx_find_decl(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_18__mkMVarApp(lean_object*, lean_object*, lean_object*, uint8_t); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_isLevelAssignable___closed__2; -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalInstance_hasBeq___closed__1; lean_object* l_Lean_LocalInstance_hasBeq; uint8_t l_Lean_MetavarContext_isLevelAssignable(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_19__mkAuxMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__45(lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_PersistentHashMap_erase___at_Lean_MetavarContext_eraseDelayed___spec__1(lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_MetavarContext_assignDelayed___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__8(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_17__mkAuxMVarType(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*); -lean_object* l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_10__collectDeps___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_MetavarContext_assignDelayed___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAux___main___at_Lean_MetavarContext_findLevelDepth_x3f___spec__2(lean_object*, size_t, lean_object*); extern lean_object* l_Lean_Expr_updateLet_x21___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__44___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_lambda(lean_object*, uint8_t, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__31(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43(lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_7__visit(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__27(lean_object*, lean_object*); lean_object* lean_level_update_succ(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getDecl___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_assignLevel___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_MetavarContext_addExprMVarDecl___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_24__visit(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_containsAux___main___at_Lean_MetavarContext_isDelayedAssigned___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___lambda__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__6___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_getExprAssignment_x3f___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__24___boxed(lean_object*, lean_object*); +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__18(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLet(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l_List_replace___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__7(lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__44___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__32___boxed(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getLevelDepth(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_18__mkMVarApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_instantiateLCtxMVars___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_mkBinding(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); extern lean_object* l_Lean_Expr_Inhabited; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_getLevelAssignment_x3f___spec__1(lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); lean_object* l_Lean_LocalInstances_erase___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___lambda__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_HashSetImp_insert___at___private_Lean_MetavarContext_6__visit_x3f___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_2__visit(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_anyAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__49(lean_object*); lean_object* lean_expr_abstract(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Exception_toString___closed__1; -lean_object* l___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx(lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__17___boxed(lean_object*, lean_object*); uint8_t l_List_foldr___main___at_Lean_MetavarContext_hasAssignedMVar___main___spec__1(lean_object*, uint8_t, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_HashSetImp_contains___at___private_Lean_MetavarContext_6__visit_x3f___spec__1___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_contains___at_Lean_MetavarContext_isDelayedAssigned___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Array_findIdxAux___main___at_Lean_LocalInstances_erase___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__44(lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_7__visit(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_10__collectDeps___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_12__visit(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_MetavarContext_instantiateMVarDeclMVars(lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_metavar_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_getDelayedAssignment_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Lean_LocalContext_foldlM___at_Lean_MetavarContext_instantiateLCtxMVars___spec__1(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_preserveOrder___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_20__anyDependsOn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashSetImp_moveEntries___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_16__abstractRangeAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__23___boxed(lean_object*, lean_object*); +lean_object* l_HashSetImp_moveEntries___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__5(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_isLevelAssignable___closed__1; lean_object* l_Array_indexOfAux___main___at_Lean_MetavarContext_eraseDelayed___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_findExprDependsOn___closed__1; lean_object* l_Lean_MetavarContext_addExprMVarDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_isExprAssignable(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignedLevelMVar___boxed(lean_object*, lean_object*); -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43(lean_object*); -lean_object* l_Nat_foldRevMAux___main___at___private_Init_Lean_MetavarContext_17__mkAuxMVarType___spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__49___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__24___boxed(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_Inhabited___closed__1; lean_object* l_Lean_MetavarContext_mkForall(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_14__getInScope___boxed(lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__6(lean_object*, lean_object*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__35___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_18__mkMVarApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_foldlM___at_Lean_MetavarContext_instantiateLCtxMVars___spec__2(lean_object*, lean_object*); -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1___boxed(lean_object*, lean_object*); uint8_t l_Lean_LocalInstance_beq(lean_object*, lean_object*); lean_object* l_PersistentArray_anyM___at_Lean_MetavarContext_localDeclDependsOn___spec__2___boxed(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_mkParamName___main(lean_object*); -lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_MetavarContext_MkBinding_Exception_toString___spec__1(lean_object*, lean_object*, lean_object*); lean_object* lean_metavar_ctx_erase_delayed(lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__51___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_11__reduceLocalContext___boxed(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getLevelDepth___closed__1; extern lean_object* l_Nat_Inhabited; extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_Lean_MetavarContext_findLocalDeclDependsOn(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_22__elimMVarDepsAux(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_ReaderT_lift___at_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___spec__1___rarg(lean_object*, uint8_t, lean_object*); lean_object* l_List_foldr___main___at_Lean_MetavarContext_hasAssignableMVar___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_11__reduceLocalContext___boxed(lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_hasAssignedLevelMVar___main(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__47___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__45___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__48___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getLevelDepth___boxed(lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLevelParam(lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_instantiateLCtxMVars___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_InstantiateExprMVars_instantiateLevelMVars(lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l_Lean_MetavarContext_hasAssignableMVar___main___boxed(lean_object*, lean_object*); lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_12__visit(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_MetavarKind_isSyntheticOpaque___boxed(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__49___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__47___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_HashMap_Inhabited___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_MetavarContext_addLevelMVarDecl___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_replace___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__7___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_13__getMCtx(uint8_t); +lean_object* l___private_Lean_MetavarContext_14__getInScope(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_23__abstractRange___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_DependsOn_main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_mkBinding___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasFVar(lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_17__mkAuxMVarType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__12___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_metavar_ctx_is_level_assigned(lean_object*, lean_object*); -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__5___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_2__visit(lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_anyMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__15___boxed(lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_15__withFreshCache___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_List_elem___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__2___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_MetavarContext_getDelayedAssignment_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__41___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_MetavarContext_InstantiateExprMVars_main___main___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_InstantiateExprMVars_main___main(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_mkParamName___boxed(lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignedMVar___main(lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_21__elimMVarDepsApp___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_EStateM_MonadState___closed__2; +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_MetavarContext_MkBinding_Exception_toString___spec__3(uint8_t, lean_object*); +lean_object* l___private_Lean_MetavarContext_15__withFreshCache(lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateForallE_x21___closed__1; lean_object* lean_name_mk_numeral(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___lambda__1___boxed(lean_object*, lean_object*); -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_MetavarContext_2__visit___spec__2(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_LevelMVarToParam_main___main(lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__30(lean_object*, lean_object*); lean_object* lean_expr_update_const(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalContext_isSubPrefixOf(lean_object*, lean_object*, lean_object*); lean_object* l_List_mapM___main___at_Lean_MetavarContext_LevelMVarToParam_main___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_6__visit_x3f(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_elem___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__2___boxed(lean_object*, lean_object*); +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_findDecl_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__35(lean_object*, lean_object*); +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_foldlMAux___main___at_Lean_MetavarContext_instantiateLCtxMVars___spec__3___boxed(lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_MetavarContext_getExprAssignment_x3f___spec__1(lean_object*, lean_object*); +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__17(lean_object*, lean_object*); lean_object* l_List_toStringAux___main___at_Lean_MetavarContext_MkBinding_Exception_toString___spec__3___boxed(lean_object*, lean_object*); -uint8_t l_AssocList_contains___main___at___private_Init_Lean_MetavarContext_2__visit___spec__4(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_isLet(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignableMVar(lean_object*, lean_object*); uint8_t l_Array_anyRangeMAux___main___at_Lean_MetavarContext_localDeclDependsOn___spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_MkBinding_Exception_toString___closed__4; +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_hasAssignedMVar(lean_object*, lean_object*); +lean_object* l___private_Lean_MetavarContext_3__getMCtx(lean_object*); +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_MetavarContext_addExprMVarDecl___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalInstance_beq(lean_object* x_1, lean_object* x_2) { _start: @@ -2253,7 +2253,7 @@ lean_object* _init_l_Lean_MetavarContext_getDecl___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.MetavarContext"); +x_1 = lean_mk_string("Lean.MetavarContext"); return x_1; } } @@ -8018,7 +8018,7 @@ return x_18; } } } -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_MetavarContext_2__visit___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_find_x3f___main___at___private_Lean_MetavarContext_2__visit___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8050,7 +8050,7 @@ return x_9; } } } -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -8060,12 +8060,12 @@ x_5 = l_Lean_Expr_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_AssocList_find_x3f___main___at___private_Init_Lean_MetavarContext_2__visit___spec__2(x_2, x_7); +x_8 = l_AssocList_find_x3f___main___at___private_Lean_MetavarContext_2__visit___spec__2(x_2, x_7); lean_dec(x_7); return x_8; } } -uint8_t l_AssocList_contains___main___at___private_Init_Lean_MetavarContext_2__visit___spec__4(lean_object* x_1, lean_object* x_2) { +uint8_t l_AssocList_contains___main___at___private_Lean_MetavarContext_2__visit___spec__4(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8094,7 +8094,7 @@ return x_8; } } } -lean_object* l_AssocList_foldlM___main___at___private_Init_Lean_MetavarContext_2__visit___spec__7(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_foldlM___main___at___private_Lean_MetavarContext_2__visit___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8148,7 +8148,7 @@ goto _start; } } } -lean_object* l_HashMapImp_moveEntries___main___at___private_Init_Lean_MetavarContext_2__visit___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_HashMapImp_moveEntries___main___at___private_Lean_MetavarContext_2__visit___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -8167,7 +8167,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj 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_AssocList_foldlM___main___at___private_Init_Lean_MetavarContext_2__visit___spec__7(x_3, x_6); +x_9 = l_AssocList_foldlM___main___at___private_Lean_MetavarContext_2__visit___spec__7(x_3, x_6); x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_1, x_10); lean_dec(x_1); @@ -8178,7 +8178,7 @@ goto _start; } } } -lean_object* l_HashMapImp_expand___at___private_Init_Lean_MetavarContext_2__visit___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_expand___at___private_Lean_MetavarContext_2__visit___spec__5(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; @@ -8189,14 +8189,14 @@ 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_HashMapImp_moveEntries___main___at___private_Init_Lean_MetavarContext_2__visit___spec__6(x_8, x_2, x_7); +x_9 = l_HashMapImp_moveEntries___main___at___private_Lean_MetavarContext_2__visit___spec__6(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; } } -lean_object* l_AssocList_replace___main___at___private_Init_Lean_MetavarContext_2__visit___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_AssocList_replace___main___at___private_Lean_MetavarContext_2__visit___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -8219,7 +8219,7 @@ x_8 = lean_expr_eqv(x_5, x_1); if (x_8 == 0) { lean_object* x_9; -x_9 = l_AssocList_replace___main___at___private_Init_Lean_MetavarContext_2__visit___spec__8(x_1, x_2, x_7); +x_9 = l_AssocList_replace___main___at___private_Lean_MetavarContext_2__visit___spec__8(x_1, x_2, x_7); lean_ctor_set(x_3, 2, x_9); return x_3; } @@ -8246,7 +8246,7 @@ x_13 = lean_expr_eqv(x_10, x_1); if (x_13 == 0) { lean_object* x_14; lean_object* x_15; -x_14 = l_AssocList_replace___main___at___private_Init_Lean_MetavarContext_2__visit___spec__8(x_1, x_2, x_12); +x_14 = l_AssocList_replace___main___at___private_Lean_MetavarContext_2__visit___spec__8(x_1, x_2, x_12); x_15 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_15, 0, x_10); lean_ctor_set(x_15, 1, x_11); @@ -8268,7 +8268,7 @@ return x_16; } } } -lean_object* l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -8282,7 +8282,7 @@ x_7 = lean_array_get_size(x_6); x_8 = l_Lean_Expr_hash(x_2); x_9 = lean_usize_modn(x_8, x_7); x_10 = lean_array_uget(x_6, x_9); -x_11 = l_AssocList_contains___main___at___private_Init_Lean_MetavarContext_2__visit___spec__4(x_2, x_10); +x_11 = l_AssocList_contains___main___at___private_Lean_MetavarContext_2__visit___spec__4(x_2, x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -8300,7 +8300,7 @@ if (x_16 == 0) { lean_object* x_17; lean_free_object(x_1); -x_17 = l_HashMapImp_expand___at___private_Init_Lean_MetavarContext_2__visit___spec__5(x_13, x_15); +x_17 = l_HashMapImp_expand___at___private_Lean_MetavarContext_2__visit___spec__5(x_13, x_15); return x_17; } else @@ -8314,7 +8314,7 @@ else { lean_object* x_18; lean_object* x_19; lean_dec(x_7); -x_18 = l_AssocList_replace___main___at___private_Init_Lean_MetavarContext_2__visit___spec__8(x_2, x_3, x_10); +x_18 = l_AssocList_replace___main___at___private_Lean_MetavarContext_2__visit___spec__8(x_2, x_3, x_10); x_19 = lean_array_uset(x_6, x_9, x_18); lean_ctor_set(x_1, 1, x_19); return x_1; @@ -8332,7 +8332,7 @@ x_22 = lean_array_get_size(x_21); x_23 = l_Lean_Expr_hash(x_2); x_24 = lean_usize_modn(x_23, x_22); x_25 = lean_array_uget(x_21, x_24); -x_26 = l_AssocList_contains___main___at___private_Init_Lean_MetavarContext_2__visit___spec__4(x_2, x_25); +x_26 = l_AssocList_contains___main___at___private_Lean_MetavarContext_2__visit___spec__4(x_2, x_25); if (x_26 == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; @@ -8349,7 +8349,7 @@ lean_dec(x_22); if (x_31 == 0) { lean_object* x_32; -x_32 = l_HashMapImp_expand___at___private_Init_Lean_MetavarContext_2__visit___spec__5(x_28, x_30); +x_32 = l_HashMapImp_expand___at___private_Lean_MetavarContext_2__visit___spec__5(x_28, x_30); return x_32; } else @@ -8365,7 +8365,7 @@ else { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_22); -x_34 = l_AssocList_replace___main___at___private_Init_Lean_MetavarContext_2__visit___spec__8(x_2, x_3, x_25); +x_34 = l_AssocList_replace___main___at___private_Lean_MetavarContext_2__visit___spec__8(x_2, x_3, x_25); x_35 = lean_array_uset(x_21, x_24, x_34); x_36 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_36, 0, x_20); @@ -8375,7 +8375,7 @@ return x_36; } } } -lean_object* l___private_Init_Lean_MetavarContext_2__visit(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_MetavarContext_2__visit(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -8394,7 +8394,7 @@ else lean_object* x_6; lean_object* x_7; x_6 = lean_ctor_get(x_3, 1); lean_inc(x_6); -x_7 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_6, x_2); +x_7 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_6, x_2); lean_dec(x_6); if (lean_obj_tag(x_7) == 0) { @@ -8413,7 +8413,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_8, 0); x_13 = lean_ctor_get(x_10, 1); lean_inc(x_12); -x_14 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_13, x_2, x_12); +x_14 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_13, x_2, x_12); lean_ctor_set(x_10, 1, x_14); return x_8; } @@ -8427,7 +8427,7 @@ lean_inc(x_17); lean_inc(x_16); lean_dec(x_10); lean_inc(x_15); -x_18 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_17, x_2, x_15); +x_18 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_17, x_2, x_15); x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_16); lean_ctor_set(x_19, 1, x_18); @@ -8456,7 +8456,7 @@ if (lean_is_exclusive(x_20)) { x_24 = lean_box(0); } lean_inc(x_21); -x_25 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_23, x_2, x_21); +x_25 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_23, x_2, x_21); if (lean_is_scalar(x_24)) { x_26 = lean_alloc_ctor(0, 2, 0); } else { @@ -8486,38 +8486,38 @@ return x_29; } } } -lean_object* l_AssocList_find_x3f___main___at___private_Init_Lean_MetavarContext_2__visit___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_find_x3f___main___at___private_Lean_MetavarContext_2__visit___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_AssocList_find_x3f___main___at___private_Init_Lean_MetavarContext_2__visit___spec__2(x_1, x_2); +x_3 = l_AssocList_find_x3f___main___at___private_Lean_MetavarContext_2__visit___spec__2(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_1, x_2); +x_3 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_AssocList_contains___main___at___private_Init_Lean_MetavarContext_2__visit___spec__4___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_AssocList_contains___main___at___private_Lean_MetavarContext_2__visit___spec__4___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_AssocList_contains___main___at___private_Init_Lean_MetavarContext_2__visit___spec__4(x_1, x_2); +x_3 = l_AssocList_contains___main___at___private_Lean_MetavarContext_2__visit___spec__4(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_3__getMCtx(lean_object* x_1) { +lean_object* l___private_Lean_MetavarContext_3__getMCtx(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -8529,7 +8529,7 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l___private_Init_Lean_MetavarContext_4__modifyCtx(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_4__modifyCtx(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -8773,7 +8773,7 @@ else lean_object* x_18; lean_object* x_19; x_18 = lean_ctor_get(x_3, 1); lean_inc(x_18); -x_19 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_18, x_11); +x_19 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_18, x_11); lean_dec(x_18); if (lean_obj_tag(x_19) == 0) { @@ -8791,7 +8791,7 @@ if (x_23 == 0) lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; x_24 = lean_ctor_get(x_21, 1); lean_inc(x_22); -x_25 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_24, x_11, x_22); +x_25 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_24, x_11, x_22); lean_ctor_set(x_21, 1, x_25); x_26 = lean_unsigned_to_nat(1u); x_27 = lean_nat_add(x_1, x_26); @@ -8812,7 +8812,7 @@ lean_inc(x_32); lean_inc(x_31); lean_dec(x_21); lean_inc(x_22); -x_33 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_32, x_11, x_22); +x_33 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_32, x_11, x_22); x_34 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_34, 0, x_31); lean_ctor_set(x_34, 1, x_33); @@ -8868,7 +8868,7 @@ else lean_object* x_56; lean_object* x_57; x_56 = lean_ctor_get(x_4, 1); lean_inc(x_56); -x_57 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_56, x_1); +x_57 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_56, x_1); lean_dec(x_56); if (lean_obj_tag(x_57) == 0) { @@ -8886,7 +8886,7 @@ if (x_61 == 0) lean_object* x_62; lean_object* x_63; x_62 = lean_ctor_get(x_59, 1); lean_inc(x_60); -x_63 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_62, x_1, x_60); +x_63 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_62, x_1, x_60); lean_ctor_set(x_59, 1, x_63); x_6 = x_60; x_7 = x_59; @@ -8901,7 +8901,7 @@ lean_inc(x_65); lean_inc(x_64); lean_dec(x_59); lean_inc(x_60); -x_66 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_65, x_1, x_60); +x_66 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_65, x_1, x_60); x_67 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_67, 0, x_64); lean_ctor_set(x_67, 1, x_66); @@ -8965,7 +8965,7 @@ else lean_object* x_30; lean_object* x_31; x_30 = lean_ctor_get(x_7, 1); lean_inc(x_30); -x_31 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_30, x_27); +x_31 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_30, x_27); lean_dec(x_30); if (lean_obj_tag(x_31) == 0) { @@ -8984,7 +8984,7 @@ lean_object* x_36; lean_object* x_37; lean_object* x_38; x_36 = lean_ctor_get(x_32, 0); x_37 = lean_ctor_get(x_34, 1); lean_inc(x_36); -x_38 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_37, x_27, x_36); +x_38 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_37, x_27, x_36); lean_ctor_set(x_34, 1, x_38); return x_32; } @@ -8998,7 +8998,7 @@ lean_inc(x_41); lean_inc(x_40); lean_dec(x_34); lean_inc(x_39); -x_42 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_41, x_27, x_39); +x_42 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_41, x_27, x_39); x_43 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_43, 0, x_40); lean_ctor_set(x_43, 1, x_42); @@ -9027,7 +9027,7 @@ if (lean_is_exclusive(x_44)) { x_48 = lean_box(0); } lean_inc(x_45); -x_49 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_47, x_27, x_45); +x_49 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_47, x_27, x_45); if (lean_is_scalar(x_48)) { x_50 = lean_alloc_ctor(0, 2, 0); } else { @@ -9112,7 +9112,7 @@ else lean_object* x_120; lean_object* x_121; x_120 = lean_ctor_get(x_4, 1); lean_inc(x_120); -x_121 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_120, x_1); +x_121 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_120, x_1); lean_dec(x_120); if (lean_obj_tag(x_121) == 0) { @@ -9130,7 +9130,7 @@ if (x_125 == 0) lean_object* x_126; lean_object* x_127; x_126 = lean_ctor_get(x_123, 1); lean_inc(x_124); -x_127 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_126, x_1, x_124); +x_127 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_126, x_1, x_124); lean_ctor_set(x_123, 1, x_127); x_70 = x_124; x_71 = x_123; @@ -9145,7 +9145,7 @@ lean_inc(x_129); lean_inc(x_128); lean_dec(x_123); lean_inc(x_124); -x_130 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_129, x_1, x_124); +x_130 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_129, x_1, x_124); x_131 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_131, 0, x_128); lean_ctor_set(x_131, 1, x_130); @@ -9209,7 +9209,7 @@ else lean_object* x_94; lean_object* x_95; x_94 = lean_ctor_get(x_71, 1); lean_inc(x_94); -x_95 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_94, x_91); +x_95 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_94, x_91); lean_dec(x_94); if (lean_obj_tag(x_95) == 0) { @@ -9228,7 +9228,7 @@ lean_object* x_100; lean_object* x_101; lean_object* x_102; x_100 = lean_ctor_get(x_96, 0); x_101 = lean_ctor_get(x_98, 1); lean_inc(x_100); -x_102 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_101, x_91, x_100); +x_102 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_101, x_91, x_100); lean_ctor_set(x_98, 1, x_102); return x_96; } @@ -9242,7 +9242,7 @@ lean_inc(x_105); lean_inc(x_104); lean_dec(x_98); lean_inc(x_103); -x_106 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_105, x_91, x_103); +x_106 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_105, x_91, x_103); x_107 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_107, 0, x_104); lean_ctor_set(x_107, 1, x_106); @@ -9271,7 +9271,7 @@ if (lean_is_exclusive(x_108)) { x_112 = lean_box(0); } lean_inc(x_109); -x_113 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_111, x_91, x_109); +x_113 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_111, x_91, x_109); if (lean_is_scalar(x_112)) { x_114 = lean_alloc_ctor(0, 2, 0); } else { @@ -9364,7 +9364,7 @@ else lean_object* x_187; lean_object* x_188; x_187 = lean_ctor_get(x_4, 1); lean_inc(x_187); -x_188 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_187, x_1); +x_188 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_187, x_1); lean_dec(x_187); if (lean_obj_tag(x_188) == 0) { @@ -9382,7 +9382,7 @@ if (x_192 == 0) lean_object* x_193; lean_object* x_194; x_193 = lean_ctor_get(x_190, 1); lean_inc(x_191); -x_194 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_193, x_1, x_191); +x_194 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_193, x_1, x_191); lean_ctor_set(x_190, 1, x_194); x_135 = x_191; x_136 = x_190; @@ -9397,7 +9397,7 @@ lean_inc(x_196); lean_inc(x_195); lean_dec(x_190); lean_inc(x_191); -x_197 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_196, x_1, x_191); +x_197 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_196, x_1, x_191); x_198 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_198, 0, x_195); lean_ctor_set(x_198, 1, x_197); @@ -9449,7 +9449,7 @@ else lean_object* x_241; lean_object* x_242; x_241 = lean_ctor_get(x_4, 1); lean_inc(x_241); -x_242 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_241, x_202); +x_242 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_241, x_202); lean_dec(x_241); if (lean_obj_tag(x_242) == 0) { @@ -9467,7 +9467,7 @@ if (x_246 == 0) lean_object* x_247; lean_object* x_248; x_247 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_248 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_247, x_202, x_245); +x_248 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_247, x_202, x_245); lean_ctor_set(x_244, 1, x_248); x_205 = x_245; x_206 = x_244; @@ -9482,7 +9482,7 @@ lean_inc(x_250); lean_inc(x_249); lean_dec(x_244); lean_inc(x_245); -x_251 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_250, x_202, x_245); +x_251 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_250, x_202, x_245); x_252 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_252, 0, x_249); lean_ctor_set(x_252, 1, x_251); @@ -9569,7 +9569,7 @@ lean_dec(x_205); x_216 = lean_expr_instantiate_rev_range(x_215, x_209, x_204, x_214); lean_dec(x_215); x_217 = lean_array_get_size(x_214); -x_218 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_217, x_214, x_204, x_216); +x_218 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_217, x_214, x_204, x_216); lean_dec(x_214); lean_dec(x_217); lean_ctor_set(x_212, 0, x_218); @@ -9589,7 +9589,7 @@ lean_dec(x_205); x_222 = lean_expr_instantiate_rev_range(x_221, x_209, x_204, x_219); lean_dec(x_221); x_223 = lean_array_get_size(x_219); -x_224 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_223, x_219, x_204, x_222); +x_224 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_223, x_219, x_204, x_222); lean_dec(x_219); lean_dec(x_223); x_225 = lean_alloc_ctor(0, 2, 0); @@ -9682,7 +9682,7 @@ else lean_object* x_159; lean_object* x_160; x_159 = lean_ctor_get(x_136, 1); lean_inc(x_159); -x_160 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_159, x_156); +x_160 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_159, x_156); lean_dec(x_159); if (lean_obj_tag(x_160) == 0) { @@ -9701,7 +9701,7 @@ lean_object* x_165; lean_object* x_166; lean_object* x_167; x_165 = lean_ctor_get(x_161, 0); x_166 = lean_ctor_get(x_163, 1); lean_inc(x_165); -x_167 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_166, x_156, x_165); +x_167 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_166, x_156, x_165); lean_ctor_set(x_163, 1, x_167); return x_161; } @@ -9715,7 +9715,7 @@ lean_inc(x_170); lean_inc(x_169); lean_dec(x_163); lean_inc(x_168); -x_171 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_170, x_156, x_168); +x_171 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_170, x_156, x_168); x_172 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_172, 0, x_169); lean_ctor_set(x_172, 1, x_171); @@ -9744,7 +9744,7 @@ if (lean_is_exclusive(x_173)) { x_177 = lean_box(0); } lean_inc(x_174); -x_178 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_176, x_156, x_174); +x_178 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_176, x_156, x_174); if (lean_is_scalar(x_177)) { x_179 = lean_alloc_ctor(0, 2, 0); } else { @@ -9829,7 +9829,7 @@ else lean_object* x_317; lean_object* x_318; x_317 = lean_ctor_get(x_4, 1); lean_inc(x_317); -x_318 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_317, x_1); +x_318 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_317, x_1); lean_dec(x_317); if (lean_obj_tag(x_318) == 0) { @@ -9847,7 +9847,7 @@ if (x_322 == 0) lean_object* x_323; lean_object* x_324; x_323 = lean_ctor_get(x_320, 1); lean_inc(x_321); -x_324 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_323, x_1, x_321); +x_324 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_323, x_1, x_321); lean_ctor_set(x_320, 1, x_324); x_267 = x_321; x_268 = x_320; @@ -9862,7 +9862,7 @@ lean_inc(x_326); lean_inc(x_325); lean_dec(x_320); lean_inc(x_321); -x_327 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_326, x_1, x_321); +x_327 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_326, x_1, x_321); x_328 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_328, 0, x_325); lean_ctor_set(x_328, 1, x_327); @@ -9926,7 +9926,7 @@ else lean_object* x_291; lean_object* x_292; x_291 = lean_ctor_get(x_268, 1); lean_inc(x_291); -x_292 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_291, x_288); +x_292 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_291, x_288); lean_dec(x_291); if (lean_obj_tag(x_292) == 0) { @@ -9945,7 +9945,7 @@ lean_object* x_297; lean_object* x_298; lean_object* x_299; x_297 = lean_ctor_get(x_293, 0); x_298 = lean_ctor_get(x_295, 1); lean_inc(x_297); -x_299 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_298, x_288, x_297); +x_299 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_298, x_288, x_297); lean_ctor_set(x_295, 1, x_299); return x_293; } @@ -9959,7 +9959,7 @@ lean_inc(x_302); lean_inc(x_301); lean_dec(x_295); lean_inc(x_300); -x_303 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_302, x_288, x_300); +x_303 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_302, x_288, x_300); x_304 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_304, 0, x_301); lean_ctor_set(x_304, 1, x_303); @@ -9988,7 +9988,7 @@ if (lean_is_exclusive(x_305)) { x_309 = lean_box(0); } lean_inc(x_306); -x_310 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_308, x_288, x_306); +x_310 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_308, x_288, x_306); if (lean_is_scalar(x_309)) { x_311 = lean_alloc_ctor(0, 2, 0); } else { @@ -10073,7 +10073,7 @@ else lean_object* x_381; lean_object* x_382; x_381 = lean_ctor_get(x_4, 1); lean_inc(x_381); -x_382 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_381, x_1); +x_382 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_381, x_1); lean_dec(x_381); if (lean_obj_tag(x_382) == 0) { @@ -10091,7 +10091,7 @@ if (x_386 == 0) lean_object* x_387; lean_object* x_388; x_387 = lean_ctor_get(x_384, 1); lean_inc(x_385); -x_388 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_387, x_1, x_385); +x_388 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_387, x_1, x_385); lean_ctor_set(x_384, 1, x_388); x_331 = x_385; x_332 = x_384; @@ -10106,7 +10106,7 @@ lean_inc(x_390); lean_inc(x_389); lean_dec(x_384); lean_inc(x_385); -x_391 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_390, x_1, x_385); +x_391 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_390, x_1, x_385); x_392 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_392, 0, x_389); lean_ctor_set(x_392, 1, x_391); @@ -10170,7 +10170,7 @@ else lean_object* x_355; lean_object* x_356; x_355 = lean_ctor_get(x_332, 1); lean_inc(x_355); -x_356 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_355, x_352); +x_356 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_355, x_352); lean_dec(x_355); if (lean_obj_tag(x_356) == 0) { @@ -10189,7 +10189,7 @@ lean_object* x_361; lean_object* x_362; lean_object* x_363; x_361 = lean_ctor_get(x_357, 0); x_362 = lean_ctor_get(x_359, 1); lean_inc(x_361); -x_363 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_362, x_352, x_361); +x_363 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_362, x_352, x_361); lean_ctor_set(x_359, 1, x_363); return x_357; } @@ -10203,7 +10203,7 @@ lean_inc(x_366); lean_inc(x_365); lean_dec(x_359); lean_inc(x_364); -x_367 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_366, x_352, x_364); +x_367 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_366, x_352, x_364); x_368 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_368, 0, x_365); lean_ctor_set(x_368, 1, x_367); @@ -10232,7 +10232,7 @@ if (lean_is_exclusive(x_369)) { x_373 = lean_box(0); } lean_inc(x_370); -x_374 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_372, x_352, x_370); +x_374 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_372, x_352, x_370); if (lean_is_scalar(x_373)) { x_375 = lean_alloc_ctor(0, 2, 0); } else { @@ -10334,7 +10334,7 @@ else lean_object* x_451; lean_object* x_452; x_451 = lean_ctor_get(x_4, 1); lean_inc(x_451); -x_452 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_451, x_1); +x_452 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_451, x_1); lean_dec(x_451); if (lean_obj_tag(x_452) == 0) { @@ -10352,7 +10352,7 @@ if (x_456 == 0) lean_object* x_457; lean_object* x_458; x_457 = lean_ctor_get(x_454, 1); lean_inc(x_455); -x_458 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_457, x_1, x_455); +x_458 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_457, x_1, x_455); lean_ctor_set(x_454, 1, x_458); x_401 = x_455; x_402 = x_454; @@ -10367,7 +10367,7 @@ lean_inc(x_460); lean_inc(x_459); lean_dec(x_454); lean_inc(x_455); -x_461 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_460, x_1, x_455); +x_461 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_460, x_1, x_455); x_462 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_462, 0, x_459); lean_ctor_set(x_462, 1, x_461); @@ -10431,7 +10431,7 @@ else lean_object* x_425; lean_object* x_426; x_425 = lean_ctor_get(x_402, 1); lean_inc(x_425); -x_426 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_425, x_422); +x_426 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_425, x_422); lean_dec(x_425); if (lean_obj_tag(x_426) == 0) { @@ -10450,7 +10450,7 @@ lean_object* x_431; lean_object* x_432; lean_object* x_433; x_431 = lean_ctor_get(x_427, 0); x_432 = lean_ctor_get(x_429, 1); lean_inc(x_431); -x_433 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_432, x_422, x_431); +x_433 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_432, x_422, x_431); lean_ctor_set(x_429, 1, x_433); return x_427; } @@ -10464,7 +10464,7 @@ lean_inc(x_436); lean_inc(x_435); lean_dec(x_429); lean_inc(x_434); -x_437 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_436, x_422, x_434); +x_437 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_436, x_422, x_434); x_438 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_438, 0, x_435); lean_ctor_set(x_438, 1, x_437); @@ -10493,7 +10493,7 @@ if (lean_is_exclusive(x_439)) { x_443 = lean_box(0); } lean_inc(x_440); -x_444 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_442, x_422, x_440); +x_444 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_442, x_422, x_440); if (lean_is_scalar(x_443)) { x_445 = lean_alloc_ctor(0, 2, 0); } else { @@ -10578,7 +10578,7 @@ else lean_object* x_515; lean_object* x_516; x_515 = lean_ctor_get(x_4, 1); lean_inc(x_515); -x_516 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_515, x_1); +x_516 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_515, x_1); lean_dec(x_515); if (lean_obj_tag(x_516) == 0) { @@ -10596,7 +10596,7 @@ if (x_520 == 0) lean_object* x_521; lean_object* x_522; x_521 = lean_ctor_get(x_518, 1); lean_inc(x_519); -x_522 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_521, x_1, x_519); +x_522 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_521, x_1, x_519); lean_ctor_set(x_518, 1, x_522); x_465 = x_519; x_466 = x_518; @@ -10611,7 +10611,7 @@ lean_inc(x_524); lean_inc(x_523); lean_dec(x_518); lean_inc(x_519); -x_525 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_524, x_1, x_519); +x_525 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_524, x_1, x_519); x_526 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_526, 0, x_523); lean_ctor_set(x_526, 1, x_525); @@ -10675,7 +10675,7 @@ else lean_object* x_489; lean_object* x_490; x_489 = lean_ctor_get(x_466, 1); lean_inc(x_489); -x_490 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_489, x_486); +x_490 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_489, x_486); lean_dec(x_489); if (lean_obj_tag(x_490) == 0) { @@ -10694,7 +10694,7 @@ lean_object* x_495; lean_object* x_496; lean_object* x_497; x_495 = lean_ctor_get(x_491, 0); x_496 = lean_ctor_get(x_493, 1); lean_inc(x_495); -x_497 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_496, x_486, x_495); +x_497 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_496, x_486, x_495); lean_ctor_set(x_493, 1, x_497); return x_491; } @@ -10708,7 +10708,7 @@ lean_inc(x_500); lean_inc(x_499); lean_dec(x_493); lean_inc(x_498); -x_501 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_500, x_486, x_498); +x_501 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_500, x_486, x_498); x_502 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_502, 0, x_499); lean_ctor_set(x_502, 1, x_501); @@ -10737,7 +10737,7 @@ if (lean_is_exclusive(x_503)) { x_507 = lean_box(0); } lean_inc(x_504); -x_508 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_506, x_486, x_504); +x_508 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_506, x_486, x_504); if (lean_is_scalar(x_507)) { x_509 = lean_alloc_ctor(0, 2, 0); } else { @@ -10822,7 +10822,7 @@ else lean_object* x_579; lean_object* x_580; x_579 = lean_ctor_get(x_4, 1); lean_inc(x_579); -x_580 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_579, x_1); +x_580 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_579, x_1); lean_dec(x_579); if (lean_obj_tag(x_580) == 0) { @@ -10840,7 +10840,7 @@ if (x_584 == 0) lean_object* x_585; lean_object* x_586; x_585 = lean_ctor_get(x_582, 1); lean_inc(x_583); -x_586 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_585, x_1, x_583); +x_586 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_585, x_1, x_583); lean_ctor_set(x_582, 1, x_586); x_529 = x_583; x_530 = x_582; @@ -10855,7 +10855,7 @@ lean_inc(x_588); lean_inc(x_587); lean_dec(x_582); lean_inc(x_583); -x_589 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_588, x_1, x_583); +x_589 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_588, x_1, x_583); x_590 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_590, 0, x_587); lean_ctor_set(x_590, 1, x_589); @@ -10919,7 +10919,7 @@ else lean_object* x_553; lean_object* x_554; x_553 = lean_ctor_get(x_530, 1); lean_inc(x_553); -x_554 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_553, x_550); +x_554 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_553, x_550); lean_dec(x_553); if (lean_obj_tag(x_554) == 0) { @@ -10938,7 +10938,7 @@ lean_object* x_559; lean_object* x_560; lean_object* x_561; x_559 = lean_ctor_get(x_555, 0); x_560 = lean_ctor_get(x_557, 1); lean_inc(x_559); -x_561 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_560, x_550, x_559); +x_561 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_560, x_550, x_559); lean_ctor_set(x_557, 1, x_561); return x_555; } @@ -10952,7 +10952,7 @@ lean_inc(x_564); lean_inc(x_563); lean_dec(x_557); lean_inc(x_562); -x_565 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_564, x_550, x_562); +x_565 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_564, x_550, x_562); x_566 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_566, 0, x_563); lean_ctor_set(x_566, 1, x_565); @@ -10981,7 +10981,7 @@ if (lean_is_exclusive(x_567)) { x_571 = lean_box(0); } lean_inc(x_568); -x_572 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_570, x_550, x_568); +x_572 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_570, x_550, x_568); if (lean_is_scalar(x_571)) { x_573 = lean_alloc_ctor(0, 2, 0); } else { @@ -11066,7 +11066,7 @@ else lean_object* x_643; lean_object* x_644; x_643 = lean_ctor_get(x_4, 1); lean_inc(x_643); -x_644 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_643, x_1); +x_644 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_643, x_1); lean_dec(x_643); if (lean_obj_tag(x_644) == 0) { @@ -11084,7 +11084,7 @@ if (x_648 == 0) lean_object* x_649; lean_object* x_650; x_649 = lean_ctor_get(x_646, 1); lean_inc(x_647); -x_650 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_649, x_1, x_647); +x_650 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_649, x_1, x_647); lean_ctor_set(x_646, 1, x_650); x_593 = x_647; x_594 = x_646; @@ -11099,7 +11099,7 @@ lean_inc(x_652); lean_inc(x_651); lean_dec(x_646); lean_inc(x_647); -x_653 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_652, x_1, x_647); +x_653 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_652, x_1, x_647); x_654 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_654, 0, x_651); lean_ctor_set(x_654, 1, x_653); @@ -11163,7 +11163,7 @@ else lean_object* x_617; lean_object* x_618; x_617 = lean_ctor_get(x_594, 1); lean_inc(x_617); -x_618 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_617, x_614); +x_618 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_617, x_614); lean_dec(x_617); if (lean_obj_tag(x_618) == 0) { @@ -11182,7 +11182,7 @@ lean_object* x_623; lean_object* x_624; lean_object* x_625; x_623 = lean_ctor_get(x_619, 0); x_624 = lean_ctor_get(x_621, 1); lean_inc(x_623); -x_625 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_624, x_614, x_623); +x_625 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_624, x_614, x_623); lean_ctor_set(x_621, 1, x_625); return x_619; } @@ -11196,7 +11196,7 @@ lean_inc(x_628); lean_inc(x_627); lean_dec(x_621); lean_inc(x_626); -x_629 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_628, x_614, x_626); +x_629 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_628, x_614, x_626); x_630 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_630, 0, x_627); lean_ctor_set(x_630, 1, x_629); @@ -11225,7 +11225,7 @@ if (lean_is_exclusive(x_631)) { x_635 = lean_box(0); } lean_inc(x_632); -x_636 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_634, x_614, x_632); +x_636 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_634, x_614, x_632); if (lean_is_scalar(x_635)) { x_637 = lean_alloc_ctor(0, 2, 0); } else { @@ -11310,7 +11310,7 @@ else lean_object* x_707; lean_object* x_708; x_707 = lean_ctor_get(x_4, 1); lean_inc(x_707); -x_708 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_707, x_1); +x_708 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_707, x_1); lean_dec(x_707); if (lean_obj_tag(x_708) == 0) { @@ -11328,7 +11328,7 @@ if (x_712 == 0) lean_object* x_713; lean_object* x_714; x_713 = lean_ctor_get(x_710, 1); lean_inc(x_711); -x_714 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_713, x_1, x_711); +x_714 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_713, x_1, x_711); lean_ctor_set(x_710, 1, x_714); x_657 = x_711; x_658 = x_710; @@ -11343,7 +11343,7 @@ lean_inc(x_716); lean_inc(x_715); lean_dec(x_710); lean_inc(x_711); -x_717 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_716, x_1, x_711); +x_717 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_716, x_1, x_711); x_718 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_718, 0, x_715); lean_ctor_set(x_718, 1, x_717); @@ -11407,7 +11407,7 @@ else lean_object* x_681; lean_object* x_682; x_681 = lean_ctor_get(x_658, 1); lean_inc(x_681); -x_682 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_681, x_678); +x_682 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_681, x_678); lean_dec(x_681); if (lean_obj_tag(x_682) == 0) { @@ -11426,7 +11426,7 @@ lean_object* x_687; lean_object* x_688; lean_object* x_689; x_687 = lean_ctor_get(x_683, 0); x_688 = lean_ctor_get(x_685, 1); lean_inc(x_687); -x_689 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_688, x_678, x_687); +x_689 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_688, x_678, x_687); lean_ctor_set(x_685, 1, x_689); return x_683; } @@ -11440,7 +11440,7 @@ lean_inc(x_692); lean_inc(x_691); lean_dec(x_685); lean_inc(x_690); -x_693 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_692, x_678, x_690); +x_693 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_692, x_678, x_690); x_694 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_694, 0, x_691); lean_ctor_set(x_694, 1, x_693); @@ -11469,7 +11469,7 @@ if (lean_is_exclusive(x_695)) { x_699 = lean_box(0); } lean_inc(x_696); -x_700 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_698, x_678, x_696); +x_700 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_698, x_678, x_696); if (lean_is_scalar(x_699)) { x_701 = lean_alloc_ctor(0, 2, 0); } else { @@ -11554,7 +11554,7 @@ else lean_object* x_771; lean_object* x_772; x_771 = lean_ctor_get(x_4, 1); lean_inc(x_771); -x_772 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_771, x_1); +x_772 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_771, x_1); lean_dec(x_771); if (lean_obj_tag(x_772) == 0) { @@ -11572,7 +11572,7 @@ if (x_776 == 0) lean_object* x_777; lean_object* x_778; x_777 = lean_ctor_get(x_774, 1); lean_inc(x_775); -x_778 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_777, x_1, x_775); +x_778 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_777, x_1, x_775); lean_ctor_set(x_774, 1, x_778); x_721 = x_775; x_722 = x_774; @@ -11587,7 +11587,7 @@ lean_inc(x_780); lean_inc(x_779); lean_dec(x_774); lean_inc(x_775); -x_781 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_780, x_1, x_775); +x_781 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_780, x_1, x_775); x_782 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_782, 0, x_779); lean_ctor_set(x_782, 1, x_781); @@ -11651,7 +11651,7 @@ else lean_object* x_745; lean_object* x_746; x_745 = lean_ctor_get(x_722, 1); lean_inc(x_745); -x_746 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_745, x_742); +x_746 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_745, x_742); lean_dec(x_745); if (lean_obj_tag(x_746) == 0) { @@ -11670,7 +11670,7 @@ lean_object* x_751; lean_object* x_752; lean_object* x_753; x_751 = lean_ctor_get(x_747, 0); x_752 = lean_ctor_get(x_749, 1); lean_inc(x_751); -x_753 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_752, x_742, x_751); +x_753 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_752, x_742, x_751); lean_ctor_set(x_749, 1, x_753); return x_747; } @@ -11684,7 +11684,7 @@ lean_inc(x_756); lean_inc(x_755); lean_dec(x_749); lean_inc(x_754); -x_757 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_756, x_742, x_754); +x_757 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_756, x_742, x_754); x_758 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_758, 0, x_755); lean_ctor_set(x_758, 1, x_757); @@ -11713,7 +11713,7 @@ if (lean_is_exclusive(x_759)) { x_763 = lean_box(0); } lean_inc(x_760); -x_764 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_762, x_742, x_760); +x_764 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_762, x_742, x_760); if (lean_is_scalar(x_763)) { x_765 = lean_alloc_ctor(0, 2, 0); } else { @@ -11798,7 +11798,7 @@ else lean_object* x_835; lean_object* x_836; x_835 = lean_ctor_get(x_4, 1); lean_inc(x_835); -x_836 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_835, x_1); +x_836 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_835, x_1); lean_dec(x_835); if (lean_obj_tag(x_836) == 0) { @@ -11816,7 +11816,7 @@ if (x_840 == 0) lean_object* x_841; lean_object* x_842; x_841 = lean_ctor_get(x_838, 1); lean_inc(x_839); -x_842 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_841, x_1, x_839); +x_842 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_841, x_1, x_839); lean_ctor_set(x_838, 1, x_842); x_785 = x_839; x_786 = x_838; @@ -11831,7 +11831,7 @@ lean_inc(x_844); lean_inc(x_843); lean_dec(x_838); lean_inc(x_839); -x_845 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_844, x_1, x_839); +x_845 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_844, x_1, x_839); x_846 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_846, 0, x_843); lean_ctor_set(x_846, 1, x_845); @@ -11895,7 +11895,7 @@ else lean_object* x_809; lean_object* x_810; x_809 = lean_ctor_get(x_786, 1); lean_inc(x_809); -x_810 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_809, x_806); +x_810 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_809, x_806); lean_dec(x_809); if (lean_obj_tag(x_810) == 0) { @@ -11914,7 +11914,7 @@ lean_object* x_815; lean_object* x_816; lean_object* x_817; x_815 = lean_ctor_get(x_811, 0); x_816 = lean_ctor_get(x_813, 1); lean_inc(x_815); -x_817 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_816, x_806, x_815); +x_817 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_816, x_806, x_815); lean_ctor_set(x_813, 1, x_817); return x_811; } @@ -11928,7 +11928,7 @@ lean_inc(x_820); lean_inc(x_819); lean_dec(x_813); lean_inc(x_818); -x_821 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_820, x_806, x_818); +x_821 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_820, x_806, x_818); x_822 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_822, 0, x_819); lean_ctor_set(x_822, 1, x_821); @@ -11957,7 +11957,7 @@ if (lean_is_exclusive(x_823)) { x_827 = lean_box(0); } lean_inc(x_824); -x_828 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_826, x_806, x_824); +x_828 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_826, x_806, x_824); if (lean_is_scalar(x_827)) { x_829 = lean_alloc_ctor(0, 2, 0); } else { @@ -12042,7 +12042,7 @@ x_34 = lean_ctor_get(x_2, 0); lean_inc(x_34); x_35 = lean_ctor_get(x_2, 1); lean_inc(x_35); -x_36 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_35, x_1); +x_36 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_35, x_1); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; @@ -12101,7 +12101,7 @@ goto block_14; else { lean_object* x_46; -x_46 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_35, x_38); +x_46 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_35, x_38); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; uint8_t x_48; @@ -12129,7 +12129,7 @@ x_54 = lean_ctor_get(x_52, 1); lean_inc(x_54); lean_dec(x_52); lean_inc(x_51); -x_55 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_54, x_38, x_51); +x_55 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_54, x_38, x_51); lean_inc(x_51); x_56 = l_Lean_MetavarContext_assignExpr(x_53, x_33, x_51); lean_ctor_set(x_2, 1, x_55); @@ -12153,7 +12153,7 @@ x_60 = lean_ctor_get(x_58, 1); lean_inc(x_60); lean_dec(x_58); lean_inc(x_57); -x_61 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_60, x_38, x_57); +x_61 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_60, x_38, x_57); lean_inc(x_57); x_62 = l_Lean_MetavarContext_assignExpr(x_59, x_33, x_57); x_63 = lean_alloc_ctor(0, 2, 0); @@ -12359,7 +12359,7 @@ else lean_object* x_142; lean_object* x_143; x_142 = lean_ctor_get(x_2, 1); lean_inc(x_142); -x_143 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_142, x_111); +x_143 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_142, x_111); lean_dec(x_142); if (lean_obj_tag(x_143) == 0) { @@ -12377,7 +12377,7 @@ if (x_147 == 0) lean_object* x_148; lean_object* x_149; x_148 = lean_ctor_get(x_145, 1); lean_inc(x_146); -x_149 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_148, x_111, x_146); +x_149 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_148, x_111, x_146); lean_ctor_set(x_145, 1, x_149); x_113 = x_146; x_114 = x_145; @@ -12392,7 +12392,7 @@ lean_inc(x_151); lean_inc(x_150); lean_dec(x_145); lean_inc(x_146); -x_152 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_151, x_111, x_146); +x_152 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_151, x_111, x_146); x_153 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_153, 0, x_150); lean_ctor_set(x_153, 1, x_152); @@ -12428,7 +12428,7 @@ else lean_object* x_127; lean_object* x_128; x_127 = lean_ctor_get(x_114, 1); lean_inc(x_127); -x_128 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_127, x_112); +x_128 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_127, x_112); lean_dec(x_127); if (lean_obj_tag(x_128) == 0) { @@ -12446,7 +12446,7 @@ if (x_132 == 0) lean_object* x_133; lean_object* x_134; x_133 = lean_ctor_get(x_130, 1); lean_inc(x_131); -x_134 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_133, x_112, x_131); +x_134 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_133, x_112, x_131); lean_ctor_set(x_130, 1, x_134); x_115 = x_131; x_116 = x_130; @@ -12461,7 +12461,7 @@ lean_inc(x_136); lean_inc(x_135); lean_dec(x_130); lean_inc(x_131); -x_137 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_136, x_112, x_131); +x_137 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_136, x_112, x_131); x_138 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_138, 0, x_135); lean_ctor_set(x_138, 1, x_137); @@ -12531,7 +12531,7 @@ else lean_object* x_186; lean_object* x_187; x_186 = lean_ctor_get(x_2, 1); lean_inc(x_186); -x_187 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_186, x_155); +x_187 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_186, x_155); lean_dec(x_186); if (lean_obj_tag(x_187) == 0) { @@ -12549,7 +12549,7 @@ if (x_191 == 0) lean_object* x_192; lean_object* x_193; x_192 = lean_ctor_get(x_189, 1); lean_inc(x_190); -x_193 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_192, x_155, x_190); +x_193 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_192, x_155, x_190); lean_ctor_set(x_189, 1, x_193); x_157 = x_190; x_158 = x_189; @@ -12564,7 +12564,7 @@ lean_inc(x_195); lean_inc(x_194); lean_dec(x_189); lean_inc(x_190); -x_196 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_195, x_155, x_190); +x_196 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_195, x_155, x_190); x_197 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_197, 0, x_194); lean_ctor_set(x_197, 1, x_196); @@ -12600,7 +12600,7 @@ else lean_object* x_171; lean_object* x_172; x_171 = lean_ctor_get(x_158, 1); lean_inc(x_171); -x_172 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_171, x_156); +x_172 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_171, x_156); lean_dec(x_171); if (lean_obj_tag(x_172) == 0) { @@ -12618,7 +12618,7 @@ if (x_176 == 0) lean_object* x_177; lean_object* x_178; x_177 = lean_ctor_get(x_174, 1); lean_inc(x_175); -x_178 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_177, x_156, x_175); +x_178 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_177, x_156, x_175); lean_ctor_set(x_174, 1, x_178); x_159 = x_175; x_160 = x_174; @@ -12633,7 +12633,7 @@ lean_inc(x_180); lean_inc(x_179); lean_dec(x_174); lean_inc(x_175); -x_181 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_180, x_156, x_175); +x_181 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_180, x_156, x_175); x_182 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_182, 0, x_179); lean_ctor_set(x_182, 1, x_181); @@ -12705,7 +12705,7 @@ else lean_object* x_246; lean_object* x_247; x_246 = lean_ctor_get(x_2, 1); lean_inc(x_246); -x_247 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_246, x_199); +x_247 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_246, x_199); lean_dec(x_246); if (lean_obj_tag(x_247) == 0) { @@ -12723,7 +12723,7 @@ if (x_251 == 0) lean_object* x_252; lean_object* x_253; x_252 = lean_ctor_get(x_249, 1); lean_inc(x_250); -x_253 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_252, x_199, x_250); +x_253 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_252, x_199, x_250); lean_ctor_set(x_249, 1, x_253); x_202 = x_250; x_203 = x_249; @@ -12738,7 +12738,7 @@ lean_inc(x_255); lean_inc(x_254); lean_dec(x_249); lean_inc(x_250); -x_256 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_255, x_199, x_250); +x_256 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_255, x_199, x_250); x_257 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_257, 0, x_254); lean_ctor_set(x_257, 1, x_256); @@ -12774,7 +12774,7 @@ else lean_object* x_231; lean_object* x_232; x_231 = lean_ctor_get(x_203, 1); lean_inc(x_231); -x_232 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_231, x_200); +x_232 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_231, x_200); lean_dec(x_231); if (lean_obj_tag(x_232) == 0) { @@ -12792,7 +12792,7 @@ if (x_236 == 0) lean_object* x_237; lean_object* x_238; x_237 = lean_ctor_get(x_234, 1); lean_inc(x_235); -x_238 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_237, x_200, x_235); +x_238 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_237, x_200, x_235); lean_ctor_set(x_234, 1, x_238); x_204 = x_235; x_205 = x_234; @@ -12807,7 +12807,7 @@ lean_inc(x_240); lean_inc(x_239); lean_dec(x_234); lean_inc(x_235); -x_241 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_240, x_200, x_235); +x_241 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_240, x_200, x_235); x_242 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_242, 0, x_239); lean_ctor_set(x_242, 1, x_241); @@ -12843,7 +12843,7 @@ else lean_object* x_216; lean_object* x_217; x_216 = lean_ctor_get(x_205, 1); lean_inc(x_216); -x_217 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_216, x_201); +x_217 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_216, x_201); lean_dec(x_216); if (lean_obj_tag(x_217) == 0) { @@ -12861,7 +12861,7 @@ if (x_221 == 0) lean_object* x_222; lean_object* x_223; x_222 = lean_ctor_get(x_219, 1); lean_inc(x_220); -x_223 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_222, x_201, x_220); +x_223 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_222, x_201, x_220); lean_ctor_set(x_219, 1, x_223); x_206 = x_220; x_207 = x_219; @@ -12876,7 +12876,7 @@ lean_inc(x_225); lean_inc(x_224); lean_dec(x_219); lean_inc(x_220); -x_226 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_225, x_201, x_220); +x_226 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_225, x_201, x_220); x_227 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_227, 0, x_224); lean_ctor_set(x_227, 1, x_226); @@ -12944,7 +12944,7 @@ else lean_object* x_261; lean_object* x_262; x_261 = lean_ctor_get(x_2, 1); lean_inc(x_261); -x_262 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_261, x_259); +x_262 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_261, x_259); lean_dec(x_261); if (lean_obj_tag(x_262) == 0) { @@ -12962,7 +12962,7 @@ if (x_266 == 0) lean_object* x_267; lean_object* x_268; x_267 = lean_ctor_get(x_264, 1); lean_inc(x_265); -x_268 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_267, x_259, x_265); +x_268 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_267, x_259, x_265); lean_ctor_set(x_264, 1, x_268); x_15 = x_265; x_16 = x_264; @@ -12977,7 +12977,7 @@ lean_inc(x_270); lean_inc(x_269); lean_dec(x_264); lean_inc(x_265); -x_271 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_270, x_259, x_265); +x_271 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_270, x_259, x_265); x_272 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_272, 0, x_269); lean_ctor_set(x_272, 1, x_271); @@ -13016,7 +13016,7 @@ else lean_object* x_276; lean_object* x_277; x_276 = lean_ctor_get(x_2, 1); lean_inc(x_276); -x_277 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_276, x_274); +x_277 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_276, x_274); lean_dec(x_276); if (lean_obj_tag(x_277) == 0) { @@ -13034,7 +13034,7 @@ if (x_281 == 0) lean_object* x_282; lean_object* x_283; x_282 = lean_ctor_get(x_279, 1); lean_inc(x_280); -x_283 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_282, x_274, x_280); +x_283 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_282, x_274, x_280); lean_ctor_set(x_279, 1, x_283); x_24 = x_280; x_25 = x_279; @@ -13049,7 +13049,7 @@ lean_inc(x_285); lean_inc(x_284); lean_dec(x_279); lean_inc(x_280); -x_286 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_285, x_274, x_280); +x_286 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_285, x_274, x_280); x_287 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_287, 0, x_284); lean_ctor_set(x_287, 1, x_286); @@ -13089,7 +13089,7 @@ if (x_5 == 0) lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = lean_ctor_get(x_4, 1); lean_inc(x_3); -x_7 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_6, x_1, x_3); +x_7 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_6, x_1, x_3); lean_ctor_set(x_4, 1, x_7); x_8 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_8, 0, x_3); @@ -13105,7 +13105,7 @@ lean_inc(x_10); lean_inc(x_9); lean_dec(x_4); lean_inc(x_3); -x_11 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_10, x_1, x_3); +x_11 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_10, x_1, x_3); x_12 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_12, 0, x_9); lean_ctor_set(x_12, 1, x_11); @@ -13792,7 +13792,7 @@ return x_45; } } } -uint8_t l_List_elem___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__2(lean_object* x_1, lean_object* x_2) { +uint8_t l_List_elem___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -13821,7 +13821,7 @@ return x_8; } } } -uint8_t l_HashSetImp_contains___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__1(lean_object* x_1, lean_object* x_2) { +uint8_t l_HashSetImp_contains___at___private_Lean_MetavarContext_6__visit_x3f___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; uint8_t x_8; @@ -13831,12 +13831,12 @@ x_5 = l_Lean_Expr_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_List_elem___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__2(x_2, x_7); +x_8 = l_List_elem___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__2(x_2, x_7); lean_dec(x_7); return x_8; } } -lean_object* l_List_foldl___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__6(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__6(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -13887,7 +13887,7 @@ goto _start; } } } -lean_object* l_HashSetImp_moveEntries___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_HashSetImp_moveEntries___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -13906,7 +13906,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj 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_List_foldl___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__6(x_3, x_6); +x_9 = l_List_foldl___main___at___private_Lean_MetavarContext_6__visit_x3f___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); @@ -13917,7 +13917,7 @@ goto _start; } } } -lean_object* l_HashSetImp_expand___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__4(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashSetImp_expand___at___private_Lean_MetavarContext_6__visit_x3f___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; @@ -13928,14 +13928,14 @@ 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_HashSetImp_moveEntries___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__5(x_8, x_2, x_7); +x_9 = l_HashSetImp_moveEntries___main___at___private_Lean_MetavarContext_6__visit_x3f___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; } } -lean_object* l_List_replace___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_replace___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -13956,7 +13956,7 @@ x_7 = lean_expr_eqv(x_5, x_2); if (x_7 == 0) { lean_object* x_8; -x_8 = l_List_replace___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__7(x_6, x_2, x_3); +x_8 = l_List_replace___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__7(x_6, x_2, x_3); lean_ctor_set(x_1, 1, x_8); return x_1; } @@ -13979,7 +13979,7 @@ x_11 = lean_expr_eqv(x_9, x_2); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; -x_12 = l_List_replace___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__7(x_10, x_2, x_3); +x_12 = l_List_replace___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__7(x_10, x_2, x_3); x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_9); lean_ctor_set(x_13, 1, x_12); @@ -13998,7 +13998,7 @@ return x_14; } } } -lean_object* l_HashSetImp_insert___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashSetImp_insert___at___private_Lean_MetavarContext_6__visit_x3f___spec__3(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -14012,7 +14012,7 @@ x_6 = lean_array_get_size(x_5); x_7 = l_Lean_Expr_hash(x_2); x_8 = lean_usize_modn(x_7, x_6); x_9 = lean_array_uget(x_5, x_8); -x_10 = l_List_elem___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__2(x_2, x_9); +x_10 = l_List_elem___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__2(x_2, x_9); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -14029,7 +14029,7 @@ if (x_15 == 0) { lean_object* x_16; lean_free_object(x_1); -x_16 = l_HashSetImp_expand___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__4(x_12, x_14); +x_16 = l_HashSetImp_expand___at___private_Lean_MetavarContext_6__visit_x3f___spec__4(x_12, x_14); return x_16; } else @@ -14044,7 +14044,7 @@ else lean_object* x_17; lean_object* x_18; lean_dec(x_6); lean_inc(x_2); -x_17 = l_List_replace___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__7(x_9, x_2, x_2); +x_17 = l_List_replace___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__7(x_9, x_2, x_2); lean_dec(x_2); x_18 = lean_array_uset(x_5, x_8, x_17); lean_ctor_set(x_1, 1, x_18); @@ -14063,7 +14063,7 @@ x_21 = lean_array_get_size(x_20); x_22 = l_Lean_Expr_hash(x_2); x_23 = lean_usize_modn(x_22, x_21); x_24 = lean_array_uget(x_20, x_23); -x_25 = l_List_elem___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__2(x_2, x_24); +x_25 = l_List_elem___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__2(x_2, 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; @@ -14079,7 +14079,7 @@ lean_dec(x_21); if (x_30 == 0) { lean_object* x_31; -x_31 = l_HashSetImp_expand___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__4(x_27, x_29); +x_31 = l_HashSetImp_expand___at___private_Lean_MetavarContext_6__visit_x3f___spec__4(x_27, x_29); return x_31; } else @@ -14096,7 +14096,7 @@ else lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_dec(x_21); lean_inc(x_2); -x_33 = l_List_replace___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__7(x_24, x_2, x_2); +x_33 = l_List_replace___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__7(x_24, x_2, x_2); lean_dec(x_2); x_34 = lean_array_uset(x_20, x_23, x_33); x_35 = lean_alloc_ctor(0, 2, 0); @@ -14107,7 +14107,7 @@ return x_35; } } } -lean_object* l___private_Init_Lean_MetavarContext_6__visit_x3f(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_6__visit_x3f(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -14130,11 +14130,11 @@ return x_7; else { uint8_t x_8; -x_8 = l_HashSetImp_contains___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__1(x_2, x_1); +x_8 = l_HashSetImp_contains___at___private_Lean_MetavarContext_6__visit_x3f___spec__1(x_2, x_1); if (x_8 == 0) { lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; -x_9 = l_HashSetImp_insert___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__3(x_2, x_1); +x_9 = l_HashSetImp_insert___at___private_Lean_MetavarContext_6__visit_x3f___spec__3(x_2, x_1); x_10 = 1; x_11 = lean_box(x_10); x_12 = lean_alloc_ctor(0, 2, 0); @@ -14158,11 +14158,11 @@ return x_15; else { uint8_t x_16; -x_16 = l_HashSetImp_contains___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__1(x_2, x_1); +x_16 = l_HashSetImp_contains___at___private_Lean_MetavarContext_6__visit_x3f___spec__1(x_2, x_1); if (x_16 == 0) { lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; -x_17 = l_HashSetImp_insert___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__3(x_2, x_1); +x_17 = l_HashSetImp_insert___at___private_Lean_MetavarContext_6__visit_x3f___spec__3(x_2, x_1); x_18 = 1; x_19 = lean_box(x_18); x_20 = lean_alloc_ctor(0, 2, 0); @@ -14184,43 +14184,43 @@ return x_23; } } } -lean_object* l_List_elem___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_elem___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_List_elem___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__2(x_1, x_2); +x_3 = l_List_elem___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__2(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_HashSetImp_contains___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_HashSetImp_contains___at___private_Lean_MetavarContext_6__visit_x3f___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_HashSetImp_contains___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__1(x_1, x_2); +x_3 = l_HashSetImp_contains___at___private_Lean_MetavarContext_6__visit_x3f___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_List_replace___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_replace___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_replace___main___at___private_Init_Lean_MetavarContext_6__visit_x3f___spec__7(x_1, x_2, x_3); +x_4 = l_List_replace___main___at___private_Lean_MetavarContext_6__visit_x3f___spec__7(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_7__visit(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_MetavarContext_7__visit(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_inc(x_2); -x_4 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_2, x_3); +x_4 = l___private_Lean_MetavarContext_6__visit_x3f(x_2, x_3); x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); x_6 = lean_unbox(x_5); @@ -14261,7 +14261,7 @@ return x_12; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___lambda__1(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___lambda__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -14282,7 +14282,7 @@ return x_7; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -14322,7 +14322,7 @@ lean_dec(x_12); x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); -x_15 = lean_alloc_closure((void*)(l___private_Init_Lean_MetavarContext_8__dep___main___lambda__1___boxed), 2, 1); +x_15 = lean_alloc_closure((void*)(l___private_Lean_MetavarContext_8__dep___main___lambda__1___boxed), 2, 1); lean_closure_set(x_15, 0, x_2); x_16 = l_Id_monad; x_17 = l_PersistentArray_anyM___rarg(x_16, x_14, x_15); @@ -14342,7 +14342,7 @@ x_21 = lean_ctor_get(x_11, 0); lean_inc(x_21); lean_dec(x_11); lean_inc(x_21); -x_22 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_21, x_4); +x_22 = l___private_Lean_MetavarContext_6__visit_x3f(x_21, x_4); x_23 = lean_ctor_get(x_22, 0); lean_inc(x_23); x_24 = lean_unbox(x_23); @@ -14394,7 +14394,7 @@ x_32 = lean_ctor_get(x_3, 1); lean_inc(x_32); lean_dec(x_3); lean_inc(x_32); -x_33 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_32, x_4); +x_33 = l___private_Lean_MetavarContext_6__visit_x3f(x_32, x_4); x_34 = lean_ctor_get(x_33, 0); lean_inc(x_34); x_35 = lean_unbox(x_34); @@ -14411,7 +14411,7 @@ if (x_37 == 0) { lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_inc(x_31); -x_38 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_31, x_36); +x_38 = l___private_Lean_MetavarContext_6__visit_x3f(x_31, x_36); x_39 = lean_ctor_get(x_38, 0); lean_inc(x_39); x_40 = lean_unbox(x_39); @@ -14468,7 +14468,7 @@ lean_inc(x_48); lean_dec(x_33); lean_inc(x_2); lean_inc(x_1); -x_49 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_2, x_32, x_48); +x_49 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_2, x_32, x_48); x_50 = lean_ctor_get(x_49, 0); lean_inc(x_50); x_51 = lean_unbox(x_50); @@ -14484,7 +14484,7 @@ if (x_53 == 0) { lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_inc(x_31); -x_54 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_31, x_52); +x_54 = l___private_Lean_MetavarContext_6__visit_x3f(x_31, x_52); x_55 = lean_ctor_get(x_54, 0); lean_inc(x_55); x_56 = lean_unbox(x_55); @@ -14570,7 +14570,7 @@ x_69 = lean_ctor_get(x_3, 2); lean_inc(x_69); lean_dec(x_3); lean_inc(x_68); -x_70 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_68, x_4); +x_70 = l___private_Lean_MetavarContext_6__visit_x3f(x_68, x_4); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_unbox(x_71); @@ -14583,7 +14583,7 @@ x_73 = lean_ctor_get(x_70, 1); lean_inc(x_73); lean_dec(x_70); lean_inc(x_69); -x_74 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_69, x_73); +x_74 = l___private_Lean_MetavarContext_6__visit_x3f(x_69, x_73); x_75 = lean_ctor_get(x_74, 0); lean_inc(x_75); x_76 = lean_unbox(x_75); @@ -14633,7 +14633,7 @@ lean_inc(x_83); lean_dec(x_70); lean_inc(x_2); lean_inc(x_1); -x_84 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_2, x_68, x_83); +x_84 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_2, x_68, x_83); x_85 = lean_ctor_get(x_84, 0); lean_inc(x_85); x_86 = lean_unbox(x_85); @@ -14645,7 +14645,7 @@ x_87 = lean_ctor_get(x_84, 1); lean_inc(x_87); lean_dec(x_84); lean_inc(x_69); -x_88 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_69, x_87); +x_88 = l___private_Lean_MetavarContext_6__visit_x3f(x_69, x_87); x_89 = lean_ctor_get(x_88, 0); lean_inc(x_89); x_90 = lean_unbox(x_89); @@ -14724,7 +14724,7 @@ x_102 = lean_ctor_get(x_3, 2); lean_inc(x_102); lean_dec(x_3); lean_inc(x_101); -x_103 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_101, x_4); +x_103 = l___private_Lean_MetavarContext_6__visit_x3f(x_101, x_4); x_104 = lean_ctor_get(x_103, 0); lean_inc(x_104); x_105 = lean_unbox(x_104); @@ -14737,7 +14737,7 @@ x_106 = lean_ctor_get(x_103, 1); lean_inc(x_106); lean_dec(x_103); lean_inc(x_102); -x_107 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_102, x_106); +x_107 = l___private_Lean_MetavarContext_6__visit_x3f(x_102, x_106); x_108 = lean_ctor_get(x_107, 0); lean_inc(x_108); x_109 = lean_unbox(x_108); @@ -14787,7 +14787,7 @@ lean_inc(x_116); lean_dec(x_103); lean_inc(x_2); lean_inc(x_1); -x_117 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_2, x_101, x_116); +x_117 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_2, x_101, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_unbox(x_118); @@ -14799,7 +14799,7 @@ x_120 = lean_ctor_get(x_117, 1); lean_inc(x_120); lean_dec(x_117); lean_inc(x_102); -x_121 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_102, x_120); +x_121 = l___private_Lean_MetavarContext_6__visit_x3f(x_102, x_120); x_122 = lean_ctor_get(x_121, 0); lean_inc(x_122); x_123 = lean_unbox(x_122); @@ -14880,7 +14880,7 @@ x_136 = lean_ctor_get(x_3, 3); lean_inc(x_136); lean_dec(x_3); lean_inc(x_134); -x_173 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_4); +x_173 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_4); x_174 = lean_ctor_get(x_173, 0); lean_inc(x_174); x_175 = lean_unbox(x_174); @@ -14906,7 +14906,7 @@ lean_inc(x_178); lean_dec(x_173); lean_inc(x_2); lean_inc(x_1); -x_179 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_2, x_134, x_178); +x_179 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_2, x_134, x_178); x_180 = lean_ctor_get(x_179, 0); lean_inc(x_180); x_181 = lean_ctor_get(x_179, 1); @@ -14924,7 +14924,7 @@ if (x_137 == 0) { lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_inc(x_135); -x_139 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_135, x_138); +x_139 = l___private_Lean_MetavarContext_6__visit_x3f(x_135, x_138); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_unbox(x_140); @@ -14937,7 +14937,7 @@ x_142 = lean_ctor_get(x_139, 1); lean_inc(x_142); lean_dec(x_139); lean_inc(x_136); -x_143 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_136, x_142); +x_143 = l___private_Lean_MetavarContext_6__visit_x3f(x_136, x_142); x_144 = lean_ctor_get(x_143, 0); lean_inc(x_144); x_145 = lean_unbox(x_144); @@ -14987,7 +14987,7 @@ lean_inc(x_152); lean_dec(x_139); lean_inc(x_2); lean_inc(x_1); -x_153 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_2, x_135, x_152); +x_153 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_2, x_135, x_152); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -14999,7 +14999,7 @@ x_156 = lean_ctor_get(x_153, 1); lean_inc(x_156); lean_dec(x_153); lean_inc(x_136); -x_157 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_136, x_156); +x_157 = l___private_Lean_MetavarContext_6__visit_x3f(x_136, x_156); x_158 = lean_ctor_get(x_157, 0); lean_inc(x_158); x_159 = lean_unbox(x_158); @@ -15091,7 +15091,7 @@ x_183 = lean_ctor_get(x_3, 1); lean_inc(x_183); lean_dec(x_3); lean_inc(x_183); -x_184 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_183, x_4); +x_184 = l___private_Lean_MetavarContext_6__visit_x3f(x_183, x_4); x_185 = lean_ctor_get(x_184, 0); lean_inc(x_185); x_186 = lean_unbox(x_185); @@ -15140,7 +15140,7 @@ x_193 = lean_ctor_get(x_3, 2); lean_inc(x_193); lean_dec(x_3); lean_inc(x_193); -x_194 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_193, x_4); +x_194 = l___private_Lean_MetavarContext_6__visit_x3f(x_193, x_4); x_195 = lean_ctor_get(x_194, 0); lean_inc(x_195); x_196 = lean_unbox(x_195); @@ -15198,20 +15198,20 @@ return x_205; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_MetavarContext_8__dep___main___lambda__1(x_1, x_2); +x_3 = l___private_Lean_MetavarContext_8__dep___main___lambda__1(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_2, x_3, x_4); return x_5; } } @@ -15240,14 +15240,14 @@ return x_9; else { lean_object* x_10; -x_10 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_2, x_3, x_4); +x_10 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_2, x_3, x_4); return x_10; } } else { lean_object* x_11; -x_11 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_2, x_3, x_4); +x_11 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_2, x_3, x_4); return x_11; } } @@ -15292,7 +15292,7 @@ else { lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = l_Lean_MetavarContext_findExprDependsOn___closed__1; -x_9 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_3, x_2, x_8); +x_9 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_3, x_2, x_8); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); lean_dec(x_9); @@ -15303,7 +15303,7 @@ else { lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = l_Lean_MetavarContext_findExprDependsOn___closed__1; -x_12 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_3, x_2, x_11); +x_12 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_3, x_2, x_11); x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); lean_dec(x_12); @@ -15339,7 +15339,7 @@ else { lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = l_HashSet_Inhabited___closed__1; -x_10 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_3, x_4, x_9); +x_10 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_3, x_4, x_9); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); lean_dec(x_10); @@ -15350,7 +15350,7 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = l_HashSet_Inhabited___closed__1; -x_13 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_3, x_4, x_12); +x_13 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_3, x_4, x_12); x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); lean_dec(x_13); @@ -15386,7 +15386,7 @@ lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint x_33 = l_HashSet_Inhabited___closed__1; lean_inc(x_3); lean_inc(x_1); -x_34 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_3, x_15, x_33); +x_34 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_3, x_15, x_33); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); @@ -15405,7 +15405,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint x_38 = l_HashSet_Inhabited___closed__1; lean_inc(x_3); lean_inc(x_1); -x_39 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_3, x_15, x_38); +x_39 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_3, x_15, x_38); x_40 = lean_ctor_get(x_39, 0); lean_inc(x_40); x_41 = lean_ctor_get(x_39, 1); @@ -15441,7 +15441,7 @@ return x_22; else { lean_object* x_23; lean_object* x_24; -x_23 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_3, x_16, x_18); +x_23 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_3, x_16, x_18); x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); lean_dec(x_23); @@ -15451,7 +15451,7 @@ return x_24; else { lean_object* x_25; lean_object* x_26; -x_25 = l___private_Init_Lean_MetavarContext_8__dep___main(x_1, x_3, x_16, x_18); +x_25 = l___private_Lean_MetavarContext_8__dep___main(x_1, x_3, x_16, x_18); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); lean_dec(x_25); @@ -15660,7 +15660,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -15715,7 +15715,7 @@ x_17 = lean_ctor_get(x_10, 0); lean_inc(x_17); lean_dec(x_10); lean_inc(x_17); -x_18 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_17, x_4); +x_18 = l___private_Lean_MetavarContext_6__visit_x3f(x_17, x_4); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_unbox(x_19); @@ -15766,7 +15766,7 @@ x_28 = lean_ctor_get(x_3, 1); lean_inc(x_28); lean_dec(x_3); lean_inc(x_28); -x_29 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_28, x_4); +x_29 = l___private_Lean_MetavarContext_6__visit_x3f(x_28, x_4); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -15783,7 +15783,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_inc(x_27); -x_34 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_32); +x_34 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_32); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_unbox(x_35); @@ -15838,7 +15838,7 @@ x_44 = lean_ctor_get(x_29, 1); lean_inc(x_44); lean_dec(x_29); lean_inc(x_2); -x_45 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_28, x_44); +x_45 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_28, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -15854,7 +15854,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_inc(x_27); -x_50 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_48); +x_50 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_48); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_unbox(x_51); @@ -15938,7 +15938,7 @@ x_65 = lean_ctor_get(x_3, 2); lean_inc(x_65); lean_dec(x_3); lean_inc(x_64); -x_66 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_64, x_4); +x_66 = l___private_Lean_MetavarContext_6__visit_x3f(x_64, x_4); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_unbox(x_67); @@ -15951,7 +15951,7 @@ x_69 = lean_ctor_get(x_66, 1); lean_inc(x_69); lean_dec(x_66); lean_inc(x_65); -x_70 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_69); +x_70 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_69); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_unbox(x_71); @@ -15999,7 +15999,7 @@ x_79 = lean_ctor_get(x_66, 1); lean_inc(x_79); lean_dec(x_66); lean_inc(x_2); -x_80 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_64, x_79); +x_80 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_64, x_79); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_unbox(x_81); @@ -16011,7 +16011,7 @@ x_83 = lean_ctor_get(x_80, 1); lean_inc(x_83); lean_dec(x_80); lean_inc(x_65); -x_84 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_83); +x_84 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_83); x_85 = lean_ctor_get(x_84, 0); lean_inc(x_85); x_86 = lean_unbox(x_85); @@ -16088,7 +16088,7 @@ x_98 = lean_ctor_get(x_3, 2); lean_inc(x_98); lean_dec(x_3); lean_inc(x_97); -x_99 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_97, x_4); +x_99 = l___private_Lean_MetavarContext_6__visit_x3f(x_97, x_4); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_unbox(x_100); @@ -16101,7 +16101,7 @@ x_102 = lean_ctor_get(x_99, 1); lean_inc(x_102); lean_dec(x_99); lean_inc(x_98); -x_103 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_102); +x_103 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_102); x_104 = lean_ctor_get(x_103, 0); lean_inc(x_104); x_105 = lean_unbox(x_104); @@ -16149,7 +16149,7 @@ x_112 = lean_ctor_get(x_99, 1); lean_inc(x_112); lean_dec(x_99); lean_inc(x_2); -x_113 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_97, x_112); +x_113 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_97, x_112); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_unbox(x_114); @@ -16161,7 +16161,7 @@ x_116 = lean_ctor_get(x_113, 1); lean_inc(x_116); lean_dec(x_113); lean_inc(x_98); -x_117 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_116); +x_117 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_unbox(x_118); @@ -16240,7 +16240,7 @@ x_132 = lean_ctor_get(x_3, 3); lean_inc(x_132); lean_dec(x_3); lean_inc(x_130); -x_169 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_130, x_4); +x_169 = l___private_Lean_MetavarContext_6__visit_x3f(x_130, x_4); x_170 = lean_ctor_get(x_169, 0); lean_inc(x_170); x_171 = lean_unbox(x_170); @@ -16265,7 +16265,7 @@ x_174 = lean_ctor_get(x_169, 1); lean_inc(x_174); lean_dec(x_169); lean_inc(x_2); -x_175 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_130, x_174); +x_175 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_130, x_174); x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); x_177 = lean_ctor_get(x_175, 1); @@ -16283,7 +16283,7 @@ if (x_133 == 0) { lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_inc(x_131); -x_135 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_131, x_134); +x_135 = l___private_Lean_MetavarContext_6__visit_x3f(x_131, x_134); x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); x_137 = lean_unbox(x_136); @@ -16296,7 +16296,7 @@ x_138 = lean_ctor_get(x_135, 1); lean_inc(x_138); lean_dec(x_135); lean_inc(x_132); -x_139 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_138); +x_139 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_138); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_unbox(x_140); @@ -16344,7 +16344,7 @@ x_148 = lean_ctor_get(x_135, 1); lean_inc(x_148); lean_dec(x_135); lean_inc(x_2); -x_149 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_131, x_148); +x_149 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_131, x_148); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_unbox(x_150); @@ -16356,7 +16356,7 @@ x_152 = lean_ctor_get(x_149, 1); lean_inc(x_152); lean_dec(x_149); lean_inc(x_132); -x_153 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_152); +x_153 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_152); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -16445,7 +16445,7 @@ x_179 = lean_ctor_get(x_3, 1); lean_inc(x_179); lean_dec(x_3); lean_inc(x_179); -x_180 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_179, x_4); +x_180 = l___private_Lean_MetavarContext_6__visit_x3f(x_179, x_4); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_unbox(x_181); @@ -16493,7 +16493,7 @@ x_189 = lean_ctor_get(x_3, 2); lean_inc(x_189); lean_dec(x_3); lean_inc(x_189); -x_190 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_189, x_4); +x_190 = l___private_Lean_MetavarContext_6__visit_x3f(x_189, x_4); x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); x_192 = lean_unbox(x_191); @@ -16737,7 +16737,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -16792,7 +16792,7 @@ x_17 = lean_ctor_get(x_10, 0); lean_inc(x_17); lean_dec(x_10); lean_inc(x_17); -x_18 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_17, x_4); +x_18 = l___private_Lean_MetavarContext_6__visit_x3f(x_17, x_4); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_unbox(x_19); @@ -16843,7 +16843,7 @@ x_28 = lean_ctor_get(x_3, 1); lean_inc(x_28); lean_dec(x_3); lean_inc(x_28); -x_29 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_28, x_4); +x_29 = l___private_Lean_MetavarContext_6__visit_x3f(x_28, x_4); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -16860,7 +16860,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_inc(x_27); -x_34 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_32); +x_34 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_32); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_unbox(x_35); @@ -16915,7 +16915,7 @@ x_44 = lean_ctor_get(x_29, 1); lean_inc(x_44); lean_dec(x_29); lean_inc(x_2); -x_45 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_28, x_44); +x_45 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_28, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -16931,7 +16931,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_inc(x_27); -x_50 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_48); +x_50 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_48); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_unbox(x_51); @@ -17015,7 +17015,7 @@ x_65 = lean_ctor_get(x_3, 2); lean_inc(x_65); lean_dec(x_3); lean_inc(x_64); -x_66 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_64, x_4); +x_66 = l___private_Lean_MetavarContext_6__visit_x3f(x_64, x_4); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_unbox(x_67); @@ -17028,7 +17028,7 @@ x_69 = lean_ctor_get(x_66, 1); lean_inc(x_69); lean_dec(x_66); lean_inc(x_65); -x_70 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_69); +x_70 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_69); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_unbox(x_71); @@ -17076,7 +17076,7 @@ x_79 = lean_ctor_get(x_66, 1); lean_inc(x_79); lean_dec(x_66); lean_inc(x_2); -x_80 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_64, x_79); +x_80 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_64, x_79); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_unbox(x_81); @@ -17088,7 +17088,7 @@ x_83 = lean_ctor_get(x_80, 1); lean_inc(x_83); lean_dec(x_80); lean_inc(x_65); -x_84 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_83); +x_84 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_83); x_85 = lean_ctor_get(x_84, 0); lean_inc(x_85); x_86 = lean_unbox(x_85); @@ -17165,7 +17165,7 @@ x_98 = lean_ctor_get(x_3, 2); lean_inc(x_98); lean_dec(x_3); lean_inc(x_97); -x_99 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_97, x_4); +x_99 = l___private_Lean_MetavarContext_6__visit_x3f(x_97, x_4); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_unbox(x_100); @@ -17178,7 +17178,7 @@ x_102 = lean_ctor_get(x_99, 1); lean_inc(x_102); lean_dec(x_99); lean_inc(x_98); -x_103 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_102); +x_103 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_102); x_104 = lean_ctor_get(x_103, 0); lean_inc(x_104); x_105 = lean_unbox(x_104); @@ -17226,7 +17226,7 @@ x_112 = lean_ctor_get(x_99, 1); lean_inc(x_112); lean_dec(x_99); lean_inc(x_2); -x_113 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_97, x_112); +x_113 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_97, x_112); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_unbox(x_114); @@ -17238,7 +17238,7 @@ x_116 = lean_ctor_get(x_113, 1); lean_inc(x_116); lean_dec(x_113); lean_inc(x_98); -x_117 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_116); +x_117 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_unbox(x_118); @@ -17317,7 +17317,7 @@ x_132 = lean_ctor_get(x_3, 3); lean_inc(x_132); lean_dec(x_3); lean_inc(x_130); -x_169 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_130, x_4); +x_169 = l___private_Lean_MetavarContext_6__visit_x3f(x_130, x_4); x_170 = lean_ctor_get(x_169, 0); lean_inc(x_170); x_171 = lean_unbox(x_170); @@ -17342,7 +17342,7 @@ x_174 = lean_ctor_get(x_169, 1); lean_inc(x_174); lean_dec(x_169); lean_inc(x_2); -x_175 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_130, x_174); +x_175 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_130, x_174); x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); x_177 = lean_ctor_get(x_175, 1); @@ -17360,7 +17360,7 @@ if (x_133 == 0) { lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_inc(x_131); -x_135 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_131, x_134); +x_135 = l___private_Lean_MetavarContext_6__visit_x3f(x_131, x_134); x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); x_137 = lean_unbox(x_136); @@ -17373,7 +17373,7 @@ x_138 = lean_ctor_get(x_135, 1); lean_inc(x_138); lean_dec(x_135); lean_inc(x_132); -x_139 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_138); +x_139 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_138); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_unbox(x_140); @@ -17421,7 +17421,7 @@ x_148 = lean_ctor_get(x_135, 1); lean_inc(x_148); lean_dec(x_135); lean_inc(x_2); -x_149 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_131, x_148); +x_149 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_131, x_148); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_unbox(x_150); @@ -17433,7 +17433,7 @@ x_152 = lean_ctor_get(x_149, 1); lean_inc(x_152); lean_dec(x_149); lean_inc(x_132); -x_153 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_152); +x_153 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_152); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -17522,7 +17522,7 @@ x_179 = lean_ctor_get(x_3, 1); lean_inc(x_179); lean_dec(x_3); lean_inc(x_179); -x_180 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_179, x_4); +x_180 = l___private_Lean_MetavarContext_6__visit_x3f(x_179, x_4); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_unbox(x_181); @@ -17570,7 +17570,7 @@ x_189 = lean_ctor_get(x_3, 2); lean_inc(x_189); lean_dec(x_3); lean_inc(x_189); -x_190 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_189, x_4); +x_190 = l___private_Lean_MetavarContext_6__visit_x3f(x_189, x_4); x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); x_192 = lean_unbox(x_191); @@ -17648,7 +17648,7 @@ else { lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = l_HashSet_Inhabited___closed__1; -x_9 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_3, x_1, x_2, x_8); +x_9 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_3, x_1, x_2, x_8); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); lean_dec(x_9); @@ -17659,7 +17659,7 @@ else { lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = l_HashSet_Inhabited___closed__1; -x_12 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_3, x_1, x_2, x_11); +x_12 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_3, x_1, x_2, x_11); x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); lean_dec(x_12); @@ -17728,11 +17728,11 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___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___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -17798,11 +17798,11 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_exprDependsOn___spec__7(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -18004,7 +18004,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -18059,7 +18059,7 @@ x_17 = lean_ctor_get(x_10, 0); lean_inc(x_17); lean_dec(x_10); lean_inc(x_17); -x_18 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_17, x_4); +x_18 = l___private_Lean_MetavarContext_6__visit_x3f(x_17, x_4); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_unbox(x_19); @@ -18110,7 +18110,7 @@ x_28 = lean_ctor_get(x_3, 1); lean_inc(x_28); lean_dec(x_3); lean_inc(x_28); -x_29 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_28, x_4); +x_29 = l___private_Lean_MetavarContext_6__visit_x3f(x_28, x_4); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -18127,7 +18127,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_inc(x_27); -x_34 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_32); +x_34 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_32); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_unbox(x_35); @@ -18182,7 +18182,7 @@ x_44 = lean_ctor_get(x_29, 1); lean_inc(x_44); lean_dec(x_29); lean_inc(x_2); -x_45 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_28, x_44); +x_45 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_28, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -18198,7 +18198,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_inc(x_27); -x_50 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_48); +x_50 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_48); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_unbox(x_51); @@ -18282,7 +18282,7 @@ x_65 = lean_ctor_get(x_3, 2); lean_inc(x_65); lean_dec(x_3); lean_inc(x_64); -x_66 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_64, x_4); +x_66 = l___private_Lean_MetavarContext_6__visit_x3f(x_64, x_4); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_unbox(x_67); @@ -18295,7 +18295,7 @@ x_69 = lean_ctor_get(x_66, 1); lean_inc(x_69); lean_dec(x_66); lean_inc(x_65); -x_70 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_69); +x_70 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_69); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_unbox(x_71); @@ -18343,7 +18343,7 @@ x_79 = lean_ctor_get(x_66, 1); lean_inc(x_79); lean_dec(x_66); lean_inc(x_2); -x_80 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_64, x_79); +x_80 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_64, x_79); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_unbox(x_81); @@ -18355,7 +18355,7 @@ x_83 = lean_ctor_get(x_80, 1); lean_inc(x_83); lean_dec(x_80); lean_inc(x_65); -x_84 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_83); +x_84 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_83); x_85 = lean_ctor_get(x_84, 0); lean_inc(x_85); x_86 = lean_unbox(x_85); @@ -18432,7 +18432,7 @@ x_98 = lean_ctor_get(x_3, 2); lean_inc(x_98); lean_dec(x_3); lean_inc(x_97); -x_99 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_97, x_4); +x_99 = l___private_Lean_MetavarContext_6__visit_x3f(x_97, x_4); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_unbox(x_100); @@ -18445,7 +18445,7 @@ x_102 = lean_ctor_get(x_99, 1); lean_inc(x_102); lean_dec(x_99); lean_inc(x_98); -x_103 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_102); +x_103 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_102); x_104 = lean_ctor_get(x_103, 0); lean_inc(x_104); x_105 = lean_unbox(x_104); @@ -18493,7 +18493,7 @@ x_112 = lean_ctor_get(x_99, 1); lean_inc(x_112); lean_dec(x_99); lean_inc(x_2); -x_113 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_97, x_112); +x_113 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_97, x_112); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_unbox(x_114); @@ -18505,7 +18505,7 @@ x_116 = lean_ctor_get(x_113, 1); lean_inc(x_116); lean_dec(x_113); lean_inc(x_98); -x_117 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_116); +x_117 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_unbox(x_118); @@ -18584,7 +18584,7 @@ x_132 = lean_ctor_get(x_3, 3); lean_inc(x_132); lean_dec(x_3); lean_inc(x_130); -x_169 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_130, x_4); +x_169 = l___private_Lean_MetavarContext_6__visit_x3f(x_130, x_4); x_170 = lean_ctor_get(x_169, 0); lean_inc(x_170); x_171 = lean_unbox(x_170); @@ -18609,7 +18609,7 @@ x_174 = lean_ctor_get(x_169, 1); lean_inc(x_174); lean_dec(x_169); lean_inc(x_2); -x_175 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_130, x_174); +x_175 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_130, x_174); x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); x_177 = lean_ctor_get(x_175, 1); @@ -18627,7 +18627,7 @@ if (x_133 == 0) { lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_inc(x_131); -x_135 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_131, x_134); +x_135 = l___private_Lean_MetavarContext_6__visit_x3f(x_131, x_134); x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); x_137 = lean_unbox(x_136); @@ -18640,7 +18640,7 @@ x_138 = lean_ctor_get(x_135, 1); lean_inc(x_138); lean_dec(x_135); lean_inc(x_132); -x_139 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_138); +x_139 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_138); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_unbox(x_140); @@ -18688,7 +18688,7 @@ x_148 = lean_ctor_get(x_135, 1); lean_inc(x_148); lean_dec(x_135); lean_inc(x_2); -x_149 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_131, x_148); +x_149 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_131, x_148); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_unbox(x_150); @@ -18700,7 +18700,7 @@ x_152 = lean_ctor_get(x_149, 1); lean_inc(x_152); lean_dec(x_149); lean_inc(x_132); -x_153 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_152); +x_153 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_152); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -18789,7 +18789,7 @@ x_179 = lean_ctor_get(x_3, 1); lean_inc(x_179); lean_dec(x_3); lean_inc(x_179); -x_180 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_179, x_4); +x_180 = l___private_Lean_MetavarContext_6__visit_x3f(x_179, x_4); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_unbox(x_181); @@ -18837,7 +18837,7 @@ x_189 = lean_ctor_get(x_3, 2); lean_inc(x_189); lean_dec(x_3); lean_inc(x_189); -x_190 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_189, x_4); +x_190 = l___private_Lean_MetavarContext_6__visit_x3f(x_189, x_4); x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); x_192 = lean_unbox(x_191); @@ -19081,7 +19081,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -19136,7 +19136,7 @@ x_17 = lean_ctor_get(x_10, 0); lean_inc(x_17); lean_dec(x_10); lean_inc(x_17); -x_18 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_17, x_4); +x_18 = l___private_Lean_MetavarContext_6__visit_x3f(x_17, x_4); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_unbox(x_19); @@ -19187,7 +19187,7 @@ x_28 = lean_ctor_get(x_3, 1); lean_inc(x_28); lean_dec(x_3); lean_inc(x_28); -x_29 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_28, x_4); +x_29 = l___private_Lean_MetavarContext_6__visit_x3f(x_28, x_4); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -19204,7 +19204,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_inc(x_27); -x_34 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_32); +x_34 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_32); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_unbox(x_35); @@ -19259,7 +19259,7 @@ x_44 = lean_ctor_get(x_29, 1); lean_inc(x_44); lean_dec(x_29); lean_inc(x_2); -x_45 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_28, x_44); +x_45 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_28, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -19275,7 +19275,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_inc(x_27); -x_50 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_48); +x_50 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_48); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_unbox(x_51); @@ -19359,7 +19359,7 @@ x_65 = lean_ctor_get(x_3, 2); lean_inc(x_65); lean_dec(x_3); lean_inc(x_64); -x_66 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_64, x_4); +x_66 = l___private_Lean_MetavarContext_6__visit_x3f(x_64, x_4); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_unbox(x_67); @@ -19372,7 +19372,7 @@ x_69 = lean_ctor_get(x_66, 1); lean_inc(x_69); lean_dec(x_66); lean_inc(x_65); -x_70 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_69); +x_70 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_69); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_unbox(x_71); @@ -19420,7 +19420,7 @@ x_79 = lean_ctor_get(x_66, 1); lean_inc(x_79); lean_dec(x_66); lean_inc(x_2); -x_80 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_64, x_79); +x_80 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_64, x_79); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_unbox(x_81); @@ -19432,7 +19432,7 @@ x_83 = lean_ctor_get(x_80, 1); lean_inc(x_83); lean_dec(x_80); lean_inc(x_65); -x_84 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_83); +x_84 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_83); x_85 = lean_ctor_get(x_84, 0); lean_inc(x_85); x_86 = lean_unbox(x_85); @@ -19509,7 +19509,7 @@ x_98 = lean_ctor_get(x_3, 2); lean_inc(x_98); lean_dec(x_3); lean_inc(x_97); -x_99 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_97, x_4); +x_99 = l___private_Lean_MetavarContext_6__visit_x3f(x_97, x_4); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_unbox(x_100); @@ -19522,7 +19522,7 @@ x_102 = lean_ctor_get(x_99, 1); lean_inc(x_102); lean_dec(x_99); lean_inc(x_98); -x_103 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_102); +x_103 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_102); x_104 = lean_ctor_get(x_103, 0); lean_inc(x_104); x_105 = lean_unbox(x_104); @@ -19570,7 +19570,7 @@ x_112 = lean_ctor_get(x_99, 1); lean_inc(x_112); lean_dec(x_99); lean_inc(x_2); -x_113 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_97, x_112); +x_113 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_97, x_112); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_unbox(x_114); @@ -19582,7 +19582,7 @@ x_116 = lean_ctor_get(x_113, 1); lean_inc(x_116); lean_dec(x_113); lean_inc(x_98); -x_117 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_116); +x_117 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_unbox(x_118); @@ -19661,7 +19661,7 @@ x_132 = lean_ctor_get(x_3, 3); lean_inc(x_132); lean_dec(x_3); lean_inc(x_130); -x_169 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_130, x_4); +x_169 = l___private_Lean_MetavarContext_6__visit_x3f(x_130, x_4); x_170 = lean_ctor_get(x_169, 0); lean_inc(x_170); x_171 = lean_unbox(x_170); @@ -19686,7 +19686,7 @@ x_174 = lean_ctor_get(x_169, 1); lean_inc(x_174); lean_dec(x_169); lean_inc(x_2); -x_175 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_130, x_174); +x_175 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_130, x_174); x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); x_177 = lean_ctor_get(x_175, 1); @@ -19704,7 +19704,7 @@ if (x_133 == 0) { lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_inc(x_131); -x_135 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_131, x_134); +x_135 = l___private_Lean_MetavarContext_6__visit_x3f(x_131, x_134); x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); x_137 = lean_unbox(x_136); @@ -19717,7 +19717,7 @@ x_138 = lean_ctor_get(x_135, 1); lean_inc(x_138); lean_dec(x_135); lean_inc(x_132); -x_139 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_138); +x_139 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_138); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_unbox(x_140); @@ -19765,7 +19765,7 @@ x_148 = lean_ctor_get(x_135, 1); lean_inc(x_148); lean_dec(x_135); lean_inc(x_2); -x_149 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_131, x_148); +x_149 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_131, x_148); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_unbox(x_150); @@ -19777,7 +19777,7 @@ x_152 = lean_ctor_get(x_149, 1); lean_inc(x_152); lean_dec(x_149); lean_inc(x_132); -x_153 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_152); +x_153 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_152); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -19866,7 +19866,7 @@ x_179 = lean_ctor_get(x_3, 1); lean_inc(x_179); lean_dec(x_3); lean_inc(x_179); -x_180 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_179, x_4); +x_180 = l___private_Lean_MetavarContext_6__visit_x3f(x_179, x_4); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_unbox(x_181); @@ -19914,7 +19914,7 @@ x_189 = lean_ctor_get(x_3, 2); lean_inc(x_189); lean_dec(x_3); lean_inc(x_189); -x_190 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_189, x_4); +x_190 = l___private_Lean_MetavarContext_6__visit_x3f(x_189, x_4); x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); x_192 = lean_unbox(x_191); @@ -20158,7 +20158,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -20213,7 +20213,7 @@ x_17 = lean_ctor_get(x_10, 0); lean_inc(x_17); lean_dec(x_10); lean_inc(x_17); -x_18 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_17, x_4); +x_18 = l___private_Lean_MetavarContext_6__visit_x3f(x_17, x_4); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_unbox(x_19); @@ -20264,7 +20264,7 @@ x_28 = lean_ctor_get(x_3, 1); lean_inc(x_28); lean_dec(x_3); lean_inc(x_28); -x_29 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_28, x_4); +x_29 = l___private_Lean_MetavarContext_6__visit_x3f(x_28, x_4); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -20281,7 +20281,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_inc(x_27); -x_34 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_32); +x_34 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_32); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_unbox(x_35); @@ -20336,7 +20336,7 @@ x_44 = lean_ctor_get(x_29, 1); lean_inc(x_44); lean_dec(x_29); lean_inc(x_2); -x_45 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_28, x_44); +x_45 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_28, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -20352,7 +20352,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_inc(x_27); -x_50 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_48); +x_50 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_48); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_unbox(x_51); @@ -20436,7 +20436,7 @@ x_65 = lean_ctor_get(x_3, 2); lean_inc(x_65); lean_dec(x_3); lean_inc(x_64); -x_66 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_64, x_4); +x_66 = l___private_Lean_MetavarContext_6__visit_x3f(x_64, x_4); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_unbox(x_67); @@ -20449,7 +20449,7 @@ x_69 = lean_ctor_get(x_66, 1); lean_inc(x_69); lean_dec(x_66); lean_inc(x_65); -x_70 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_69); +x_70 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_69); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_unbox(x_71); @@ -20497,7 +20497,7 @@ x_79 = lean_ctor_get(x_66, 1); lean_inc(x_79); lean_dec(x_66); lean_inc(x_2); -x_80 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_64, x_79); +x_80 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_64, x_79); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_unbox(x_81); @@ -20509,7 +20509,7 @@ x_83 = lean_ctor_get(x_80, 1); lean_inc(x_83); lean_dec(x_80); lean_inc(x_65); -x_84 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_83); +x_84 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_83); x_85 = lean_ctor_get(x_84, 0); lean_inc(x_85); x_86 = lean_unbox(x_85); @@ -20586,7 +20586,7 @@ x_98 = lean_ctor_get(x_3, 2); lean_inc(x_98); lean_dec(x_3); lean_inc(x_97); -x_99 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_97, x_4); +x_99 = l___private_Lean_MetavarContext_6__visit_x3f(x_97, x_4); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_unbox(x_100); @@ -20599,7 +20599,7 @@ x_102 = lean_ctor_get(x_99, 1); lean_inc(x_102); lean_dec(x_99); lean_inc(x_98); -x_103 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_102); +x_103 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_102); x_104 = lean_ctor_get(x_103, 0); lean_inc(x_104); x_105 = lean_unbox(x_104); @@ -20647,7 +20647,7 @@ x_112 = lean_ctor_get(x_99, 1); lean_inc(x_112); lean_dec(x_99); lean_inc(x_2); -x_113 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_97, x_112); +x_113 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_97, x_112); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_unbox(x_114); @@ -20659,7 +20659,7 @@ x_116 = lean_ctor_get(x_113, 1); lean_inc(x_116); lean_dec(x_113); lean_inc(x_98); -x_117 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_116); +x_117 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_unbox(x_118); @@ -20738,7 +20738,7 @@ x_132 = lean_ctor_get(x_3, 3); lean_inc(x_132); lean_dec(x_3); lean_inc(x_130); -x_169 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_130, x_4); +x_169 = l___private_Lean_MetavarContext_6__visit_x3f(x_130, x_4); x_170 = lean_ctor_get(x_169, 0); lean_inc(x_170); x_171 = lean_unbox(x_170); @@ -20763,7 +20763,7 @@ x_174 = lean_ctor_get(x_169, 1); lean_inc(x_174); lean_dec(x_169); lean_inc(x_2); -x_175 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_130, x_174); +x_175 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_130, x_174); x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); x_177 = lean_ctor_get(x_175, 1); @@ -20781,7 +20781,7 @@ if (x_133 == 0) { lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_inc(x_131); -x_135 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_131, x_134); +x_135 = l___private_Lean_MetavarContext_6__visit_x3f(x_131, x_134); x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); x_137 = lean_unbox(x_136); @@ -20794,7 +20794,7 @@ x_138 = lean_ctor_get(x_135, 1); lean_inc(x_138); lean_dec(x_135); lean_inc(x_132); -x_139 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_138); +x_139 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_138); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_unbox(x_140); @@ -20842,7 +20842,7 @@ x_148 = lean_ctor_get(x_135, 1); lean_inc(x_148); lean_dec(x_135); lean_inc(x_2); -x_149 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_131, x_148); +x_149 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_131, x_148); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_unbox(x_150); @@ -20854,7 +20854,7 @@ x_152 = lean_ctor_get(x_149, 1); lean_inc(x_152); lean_dec(x_149); lean_inc(x_132); -x_153 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_152); +x_153 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_152); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -20943,7 +20943,7 @@ x_179 = lean_ctor_get(x_3, 1); lean_inc(x_179); lean_dec(x_3); lean_inc(x_179); -x_180 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_179, x_4); +x_180 = l___private_Lean_MetavarContext_6__visit_x3f(x_179, x_4); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_unbox(x_181); @@ -20991,7 +20991,7 @@ x_189 = lean_ctor_get(x_3, 2); lean_inc(x_189); lean_dec(x_3); lean_inc(x_189); -x_190 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_189, x_4); +x_190 = l___private_Lean_MetavarContext_6__visit_x3f(x_189, x_4); x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); x_192 = lean_unbox(x_191); @@ -21235,7 +21235,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -21290,7 +21290,7 @@ x_17 = lean_ctor_get(x_10, 0); lean_inc(x_17); lean_dec(x_10); lean_inc(x_17); -x_18 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_17, x_4); +x_18 = l___private_Lean_MetavarContext_6__visit_x3f(x_17, x_4); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_unbox(x_19); @@ -21341,7 +21341,7 @@ x_28 = lean_ctor_get(x_3, 1); lean_inc(x_28); lean_dec(x_3); lean_inc(x_28); -x_29 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_28, x_4); +x_29 = l___private_Lean_MetavarContext_6__visit_x3f(x_28, x_4); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -21358,7 +21358,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_inc(x_27); -x_34 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_32); +x_34 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_32); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_unbox(x_35); @@ -21413,7 +21413,7 @@ x_44 = lean_ctor_get(x_29, 1); lean_inc(x_44); lean_dec(x_29); lean_inc(x_2); -x_45 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_28, x_44); +x_45 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_28, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -21429,7 +21429,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_inc(x_27); -x_50 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_48); +x_50 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_48); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_unbox(x_51); @@ -21513,7 +21513,7 @@ x_65 = lean_ctor_get(x_3, 2); lean_inc(x_65); lean_dec(x_3); lean_inc(x_64); -x_66 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_64, x_4); +x_66 = l___private_Lean_MetavarContext_6__visit_x3f(x_64, x_4); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_unbox(x_67); @@ -21526,7 +21526,7 @@ x_69 = lean_ctor_get(x_66, 1); lean_inc(x_69); lean_dec(x_66); lean_inc(x_65); -x_70 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_69); +x_70 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_69); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_unbox(x_71); @@ -21574,7 +21574,7 @@ x_79 = lean_ctor_get(x_66, 1); lean_inc(x_79); lean_dec(x_66); lean_inc(x_2); -x_80 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_64, x_79); +x_80 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_64, x_79); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_unbox(x_81); @@ -21586,7 +21586,7 @@ x_83 = lean_ctor_get(x_80, 1); lean_inc(x_83); lean_dec(x_80); lean_inc(x_65); -x_84 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_83); +x_84 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_83); x_85 = lean_ctor_get(x_84, 0); lean_inc(x_85); x_86 = lean_unbox(x_85); @@ -21663,7 +21663,7 @@ x_98 = lean_ctor_get(x_3, 2); lean_inc(x_98); lean_dec(x_3); lean_inc(x_97); -x_99 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_97, x_4); +x_99 = l___private_Lean_MetavarContext_6__visit_x3f(x_97, x_4); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_unbox(x_100); @@ -21676,7 +21676,7 @@ x_102 = lean_ctor_get(x_99, 1); lean_inc(x_102); lean_dec(x_99); lean_inc(x_98); -x_103 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_102); +x_103 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_102); x_104 = lean_ctor_get(x_103, 0); lean_inc(x_104); x_105 = lean_unbox(x_104); @@ -21724,7 +21724,7 @@ x_112 = lean_ctor_get(x_99, 1); lean_inc(x_112); lean_dec(x_99); lean_inc(x_2); -x_113 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_97, x_112); +x_113 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_97, x_112); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_unbox(x_114); @@ -21736,7 +21736,7 @@ x_116 = lean_ctor_get(x_113, 1); lean_inc(x_116); lean_dec(x_113); lean_inc(x_98); -x_117 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_116); +x_117 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_unbox(x_118); @@ -21815,7 +21815,7 @@ x_132 = lean_ctor_get(x_3, 3); lean_inc(x_132); lean_dec(x_3); lean_inc(x_130); -x_169 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_130, x_4); +x_169 = l___private_Lean_MetavarContext_6__visit_x3f(x_130, x_4); x_170 = lean_ctor_get(x_169, 0); lean_inc(x_170); x_171 = lean_unbox(x_170); @@ -21840,7 +21840,7 @@ x_174 = lean_ctor_get(x_169, 1); lean_inc(x_174); lean_dec(x_169); lean_inc(x_2); -x_175 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_130, x_174); +x_175 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_130, x_174); x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); x_177 = lean_ctor_get(x_175, 1); @@ -21858,7 +21858,7 @@ if (x_133 == 0) { lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_inc(x_131); -x_135 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_131, x_134); +x_135 = l___private_Lean_MetavarContext_6__visit_x3f(x_131, x_134); x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); x_137 = lean_unbox(x_136); @@ -21871,7 +21871,7 @@ x_138 = lean_ctor_get(x_135, 1); lean_inc(x_138); lean_dec(x_135); lean_inc(x_132); -x_139 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_138); +x_139 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_138); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_unbox(x_140); @@ -21919,7 +21919,7 @@ x_148 = lean_ctor_get(x_135, 1); lean_inc(x_148); lean_dec(x_135); lean_inc(x_2); -x_149 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_131, x_148); +x_149 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_131, x_148); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_unbox(x_150); @@ -21931,7 +21931,7 @@ x_152 = lean_ctor_get(x_149, 1); lean_inc(x_152); lean_dec(x_149); lean_inc(x_132); -x_153 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_152); +x_153 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_152); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -22020,7 +22020,7 @@ x_179 = lean_ctor_get(x_3, 1); lean_inc(x_179); lean_dec(x_3); lean_inc(x_179); -x_180 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_179, x_4); +x_180 = l___private_Lean_MetavarContext_6__visit_x3f(x_179, x_4); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_unbox(x_181); @@ -22068,7 +22068,7 @@ x_189 = lean_ctor_get(x_3, 2); lean_inc(x_189); lean_dec(x_3); lean_inc(x_189); -x_190 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_189, x_4); +x_190 = l___private_Lean_MetavarContext_6__visit_x3f(x_189, x_4); x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); x_192 = lean_unbox(x_191); @@ -22312,7 +22312,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -22367,7 +22367,7 @@ x_17 = lean_ctor_get(x_10, 0); lean_inc(x_17); lean_dec(x_10); lean_inc(x_17); -x_18 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_17, x_4); +x_18 = l___private_Lean_MetavarContext_6__visit_x3f(x_17, x_4); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_unbox(x_19); @@ -22418,7 +22418,7 @@ x_28 = lean_ctor_get(x_3, 1); lean_inc(x_28); lean_dec(x_3); lean_inc(x_28); -x_29 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_28, x_4); +x_29 = l___private_Lean_MetavarContext_6__visit_x3f(x_28, x_4); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -22435,7 +22435,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_inc(x_27); -x_34 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_32); +x_34 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_32); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_unbox(x_35); @@ -22490,7 +22490,7 @@ x_44 = lean_ctor_get(x_29, 1); lean_inc(x_44); lean_dec(x_29); lean_inc(x_2); -x_45 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_28, x_44); +x_45 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_28, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -22506,7 +22506,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_inc(x_27); -x_50 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_48); +x_50 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_48); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_unbox(x_51); @@ -22590,7 +22590,7 @@ x_65 = lean_ctor_get(x_3, 2); lean_inc(x_65); lean_dec(x_3); lean_inc(x_64); -x_66 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_64, x_4); +x_66 = l___private_Lean_MetavarContext_6__visit_x3f(x_64, x_4); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_unbox(x_67); @@ -22603,7 +22603,7 @@ x_69 = lean_ctor_get(x_66, 1); lean_inc(x_69); lean_dec(x_66); lean_inc(x_65); -x_70 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_69); +x_70 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_69); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_unbox(x_71); @@ -22651,7 +22651,7 @@ x_79 = lean_ctor_get(x_66, 1); lean_inc(x_79); lean_dec(x_66); lean_inc(x_2); -x_80 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_64, x_79); +x_80 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_64, x_79); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_unbox(x_81); @@ -22663,7 +22663,7 @@ x_83 = lean_ctor_get(x_80, 1); lean_inc(x_83); lean_dec(x_80); lean_inc(x_65); -x_84 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_83); +x_84 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_83); x_85 = lean_ctor_get(x_84, 0); lean_inc(x_85); x_86 = lean_unbox(x_85); @@ -22740,7 +22740,7 @@ x_98 = lean_ctor_get(x_3, 2); lean_inc(x_98); lean_dec(x_3); lean_inc(x_97); -x_99 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_97, x_4); +x_99 = l___private_Lean_MetavarContext_6__visit_x3f(x_97, x_4); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_unbox(x_100); @@ -22753,7 +22753,7 @@ x_102 = lean_ctor_get(x_99, 1); lean_inc(x_102); lean_dec(x_99); lean_inc(x_98); -x_103 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_102); +x_103 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_102); x_104 = lean_ctor_get(x_103, 0); lean_inc(x_104); x_105 = lean_unbox(x_104); @@ -22801,7 +22801,7 @@ x_112 = lean_ctor_get(x_99, 1); lean_inc(x_112); lean_dec(x_99); lean_inc(x_2); -x_113 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_97, x_112); +x_113 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_97, x_112); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_unbox(x_114); @@ -22813,7 +22813,7 @@ x_116 = lean_ctor_get(x_113, 1); lean_inc(x_116); lean_dec(x_113); lean_inc(x_98); -x_117 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_116); +x_117 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_unbox(x_118); @@ -22892,7 +22892,7 @@ x_132 = lean_ctor_get(x_3, 3); lean_inc(x_132); lean_dec(x_3); lean_inc(x_130); -x_169 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_130, x_4); +x_169 = l___private_Lean_MetavarContext_6__visit_x3f(x_130, x_4); x_170 = lean_ctor_get(x_169, 0); lean_inc(x_170); x_171 = lean_unbox(x_170); @@ -22917,7 +22917,7 @@ x_174 = lean_ctor_get(x_169, 1); lean_inc(x_174); lean_dec(x_169); lean_inc(x_2); -x_175 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_130, x_174); +x_175 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_130, x_174); x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); x_177 = lean_ctor_get(x_175, 1); @@ -22935,7 +22935,7 @@ if (x_133 == 0) { lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_inc(x_131); -x_135 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_131, x_134); +x_135 = l___private_Lean_MetavarContext_6__visit_x3f(x_131, x_134); x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); x_137 = lean_unbox(x_136); @@ -22948,7 +22948,7 @@ x_138 = lean_ctor_get(x_135, 1); lean_inc(x_138); lean_dec(x_135); lean_inc(x_132); -x_139 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_138); +x_139 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_138); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_unbox(x_140); @@ -22996,7 +22996,7 @@ x_148 = lean_ctor_get(x_135, 1); lean_inc(x_148); lean_dec(x_135); lean_inc(x_2); -x_149 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_131, x_148); +x_149 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_131, x_148); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_unbox(x_150); @@ -23008,7 +23008,7 @@ x_152 = lean_ctor_get(x_149, 1); lean_inc(x_152); lean_dec(x_149); lean_inc(x_132); -x_153 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_152); +x_153 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_152); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -23097,7 +23097,7 @@ x_179 = lean_ctor_get(x_3, 1); lean_inc(x_179); lean_dec(x_3); lean_inc(x_179); -x_180 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_179, x_4); +x_180 = l___private_Lean_MetavarContext_6__visit_x3f(x_179, x_4); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_unbox(x_181); @@ -23145,7 +23145,7 @@ x_189 = lean_ctor_get(x_3, 2); lean_inc(x_189); lean_dec(x_3); lean_inc(x_189); -x_190 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_189, x_4); +x_190 = l___private_Lean_MetavarContext_6__visit_x3f(x_189, x_4); x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); x_192 = lean_unbox(x_191); @@ -23389,7 +23389,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -23444,7 +23444,7 @@ x_17 = lean_ctor_get(x_10, 0); lean_inc(x_17); lean_dec(x_10); lean_inc(x_17); -x_18 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_17, x_4); +x_18 = l___private_Lean_MetavarContext_6__visit_x3f(x_17, x_4); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_unbox(x_19); @@ -23495,7 +23495,7 @@ x_28 = lean_ctor_get(x_3, 1); lean_inc(x_28); lean_dec(x_3); lean_inc(x_28); -x_29 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_28, x_4); +x_29 = l___private_Lean_MetavarContext_6__visit_x3f(x_28, x_4); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -23512,7 +23512,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_inc(x_27); -x_34 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_32); +x_34 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_32); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_unbox(x_35); @@ -23567,7 +23567,7 @@ x_44 = lean_ctor_get(x_29, 1); lean_inc(x_44); lean_dec(x_29); lean_inc(x_2); -x_45 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_28, x_44); +x_45 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_28, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -23583,7 +23583,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_inc(x_27); -x_50 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_27, x_48); +x_50 = l___private_Lean_MetavarContext_6__visit_x3f(x_27, x_48); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_unbox(x_51); @@ -23667,7 +23667,7 @@ x_65 = lean_ctor_get(x_3, 2); lean_inc(x_65); lean_dec(x_3); lean_inc(x_64); -x_66 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_64, x_4); +x_66 = l___private_Lean_MetavarContext_6__visit_x3f(x_64, x_4); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_unbox(x_67); @@ -23680,7 +23680,7 @@ x_69 = lean_ctor_get(x_66, 1); lean_inc(x_69); lean_dec(x_66); lean_inc(x_65); -x_70 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_69); +x_70 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_69); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_unbox(x_71); @@ -23728,7 +23728,7 @@ x_79 = lean_ctor_get(x_66, 1); lean_inc(x_79); lean_dec(x_66); lean_inc(x_2); -x_80 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_64, x_79); +x_80 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_64, x_79); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_unbox(x_81); @@ -23740,7 +23740,7 @@ x_83 = lean_ctor_get(x_80, 1); lean_inc(x_83); lean_dec(x_80); lean_inc(x_65); -x_84 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_65, x_83); +x_84 = l___private_Lean_MetavarContext_6__visit_x3f(x_65, x_83); x_85 = lean_ctor_get(x_84, 0); lean_inc(x_85); x_86 = lean_unbox(x_85); @@ -23817,7 +23817,7 @@ x_98 = lean_ctor_get(x_3, 2); lean_inc(x_98); lean_dec(x_3); lean_inc(x_97); -x_99 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_97, x_4); +x_99 = l___private_Lean_MetavarContext_6__visit_x3f(x_97, x_4); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_unbox(x_100); @@ -23830,7 +23830,7 @@ x_102 = lean_ctor_get(x_99, 1); lean_inc(x_102); lean_dec(x_99); lean_inc(x_98); -x_103 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_102); +x_103 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_102); x_104 = lean_ctor_get(x_103, 0); lean_inc(x_104); x_105 = lean_unbox(x_104); @@ -23878,7 +23878,7 @@ x_112 = lean_ctor_get(x_99, 1); lean_inc(x_112); lean_dec(x_99); lean_inc(x_2); -x_113 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_97, x_112); +x_113 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_97, x_112); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_unbox(x_114); @@ -23890,7 +23890,7 @@ x_116 = lean_ctor_get(x_113, 1); lean_inc(x_116); lean_dec(x_113); lean_inc(x_98); -x_117 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_98, x_116); +x_117 = l___private_Lean_MetavarContext_6__visit_x3f(x_98, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_unbox(x_118); @@ -23969,7 +23969,7 @@ x_132 = lean_ctor_get(x_3, 3); lean_inc(x_132); lean_dec(x_3); lean_inc(x_130); -x_169 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_130, x_4); +x_169 = l___private_Lean_MetavarContext_6__visit_x3f(x_130, x_4); x_170 = lean_ctor_get(x_169, 0); lean_inc(x_170); x_171 = lean_unbox(x_170); @@ -23994,7 +23994,7 @@ x_174 = lean_ctor_get(x_169, 1); lean_inc(x_174); lean_dec(x_169); lean_inc(x_2); -x_175 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_130, x_174); +x_175 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_130, x_174); x_176 = lean_ctor_get(x_175, 0); lean_inc(x_176); x_177 = lean_ctor_get(x_175, 1); @@ -24012,7 +24012,7 @@ if (x_133 == 0) { lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_inc(x_131); -x_135 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_131, x_134); +x_135 = l___private_Lean_MetavarContext_6__visit_x3f(x_131, x_134); x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); x_137 = lean_unbox(x_136); @@ -24025,7 +24025,7 @@ x_138 = lean_ctor_get(x_135, 1); lean_inc(x_138); lean_dec(x_135); lean_inc(x_132); -x_139 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_138); +x_139 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_138); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_unbox(x_140); @@ -24073,7 +24073,7 @@ x_148 = lean_ctor_get(x_135, 1); lean_inc(x_148); lean_dec(x_135); lean_inc(x_2); -x_149 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_131, x_148); +x_149 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_131, x_148); x_150 = lean_ctor_get(x_149, 0); lean_inc(x_150); x_151 = lean_unbox(x_150); @@ -24085,7 +24085,7 @@ x_152 = lean_ctor_get(x_149, 1); lean_inc(x_152); lean_dec(x_149); lean_inc(x_132); -x_153 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_152); +x_153 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_152); x_154 = lean_ctor_get(x_153, 0); lean_inc(x_154); x_155 = lean_unbox(x_154); @@ -24174,7 +24174,7 @@ x_179 = lean_ctor_get(x_3, 1); lean_inc(x_179); lean_dec(x_3); lean_inc(x_179); -x_180 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_179, x_4); +x_180 = l___private_Lean_MetavarContext_6__visit_x3f(x_179, x_4); x_181 = lean_ctor_get(x_180, 0); lean_inc(x_181); x_182 = lean_unbox(x_181); @@ -24222,7 +24222,7 @@ x_189 = lean_ctor_get(x_3, 2); lean_inc(x_189); lean_dec(x_3); lean_inc(x_189); -x_190 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_189, x_4); +x_190 = l___private_Lean_MetavarContext_6__visit_x3f(x_189, x_4); x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); x_192 = lean_unbox(x_191); @@ -24305,7 +24305,7 @@ else { lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = l_HashSet_Inhabited___closed__1; -x_10 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_3, x_1, x_4, x_9); +x_10 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_3, x_1, x_4, x_9); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); lean_dec(x_10); @@ -24316,7 +24316,7 @@ else { lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = l_HashSet_Inhabited___closed__1; -x_13 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_3, x_1, x_4, x_12); +x_13 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_3, x_1, x_4, x_12); x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); lean_dec(x_13); @@ -24351,7 +24351,7 @@ else lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; x_33 = l_HashSet_Inhabited___closed__1; lean_inc(x_1); -x_34 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_3, x_1, x_15, x_33); +x_34 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_3, x_1, x_15, x_33); x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); @@ -24369,7 +24369,7 @@ else lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; x_38 = l_HashSet_Inhabited___closed__1; lean_inc(x_1); -x_39 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_3, x_1, x_15, x_38); +x_39 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_3, x_1, x_15, x_38); x_40 = lean_ctor_get(x_39, 0); lean_inc(x_40); x_41 = lean_ctor_get(x_39, 1); @@ -24404,7 +24404,7 @@ return x_22; else { lean_object* x_23; lean_object* x_24; -x_23 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_3, x_1, x_16, x_18); +x_23 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_3, x_1, x_16, x_18); x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); lean_dec(x_23); @@ -24414,7 +24414,7 @@ return x_24; else { lean_object* x_25; lean_object* x_26; -x_25 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_3, x_1, x_16, x_18); +x_25 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_3, x_1, x_16, x_18); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); lean_dec(x_25); @@ -24495,11 +24495,11 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___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___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -24565,11 +24565,11 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__7(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -24635,11 +24635,11 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__13(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -24705,11 +24705,11 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19___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___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__19(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -24775,11 +24775,11 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25___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___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__25(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -24845,11 +24845,11 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31___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___private_Init_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at_Lean_MetavarContext_localDeclDependsOn___spec__31(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -25330,7 +25330,7 @@ x_5 = l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___lambda__2( return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -25374,7 +25374,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx(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; @@ -25385,30 +25385,30 @@ lean_inc(x_1); x_6 = l_Lean_LocalContext_getFVar_x21(x_1, x_5); lean_dec(x_5); x_7 = lean_unsigned_to_nat(1u); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1(x_1, x_2, x_2, x_7, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1(x_1, x_2, x_2, x_7, x_6); return x_8; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___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* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx(x_1, x_2); +x_3 = l___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx(x_1, x_2); lean_dec(x_2); return x_3; } } -uint8_t l_Nat_anyAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +uint8_t l_Nat_anyAux___main___at___private_Lean_MetavarContext_10__collectDeps___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_6; @@ -25452,7 +25452,7 @@ return x_17; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__2(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; @@ -25491,7 +25491,7 @@ return x_11; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(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; @@ -25528,7 +25528,7 @@ return x_10; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__7(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; @@ -25544,7 +25544,7 @@ else { lean_object* x_8; uint8_t x_9; x_8 = lean_array_fget(x_3, x_5); -x_9 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__6(x_1, x_8); +x_9 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__6(x_1, x_8); lean_dec(x_8); if (x_9 == 0) { @@ -25563,7 +25563,7 @@ return x_9; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__8(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; @@ -25598,7 +25598,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -25619,7 +25619,7 @@ return x_16; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__6(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__6(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -25628,7 +25628,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; x_3 = lean_ctor_get(x_2, 0); x_4 = lean_array_get_size(x_3); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__7(x_1, x_3, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__7(x_1, x_3, x_3, x_4, x_5); lean_dec(x_4); return x_6; } @@ -25638,13 +25638,13 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_2, 0); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__8(x_1, x_7, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__8(x_1, x_7, x_7, x_8, x_9); lean_dec(x_8); return x_10; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__9(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; @@ -25679,7 +25679,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -25700,19 +25700,19 @@ return x_16; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__5(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__5(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; x_3 = lean_ctor_get(x_2, 0); -x_4 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__6(x_1, x_3); +x_4 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__6(x_1, x_3); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_2, 1); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__9(x_1, x_2, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__9(x_1, x_2, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -25722,7 +25722,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -25735,7 +25735,7 @@ lean_inc(x_5); lean_dec(x_3); x_6 = lean_array_get_size(x_1); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); lean_dec(x_6); lean_dec(x_5); x_9 = lean_box(x_8); @@ -25764,7 +25764,7 @@ lean_dec(x_13); x_15 = lean_ctor_get(x_14, 1); lean_inc(x_15); lean_dec(x_14); -x_16 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__5(x_1, x_15); +x_16 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__5(x_1, x_15); lean_dec(x_15); x_17 = lean_box(x_16); x_18 = lean_alloc_ctor(0, 2, 0); @@ -25780,7 +25780,7 @@ x_19 = lean_ctor_get(x_12, 0); lean_inc(x_19); lean_dec(x_12); lean_inc(x_19); -x_20 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_19, x_4); +x_20 = l___private_Lean_MetavarContext_6__visit_x3f(x_19, x_4); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); x_22 = lean_unbox(x_21); @@ -25831,7 +25831,7 @@ x_30 = lean_ctor_get(x_3, 1); lean_inc(x_30); lean_dec(x_3); lean_inc(x_30); -x_31 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_30, x_4); +x_31 = l___private_Lean_MetavarContext_6__visit_x3f(x_30, x_4); x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_unbox(x_32); @@ -25848,7 +25848,7 @@ if (x_35 == 0) { lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_inc(x_29); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_34); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_34); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -25903,7 +25903,7 @@ x_46 = lean_ctor_get(x_31, 1); lean_inc(x_46); lean_dec(x_31); lean_inc(x_2); -x_47 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_30, x_46); +x_47 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_30, x_46); x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); x_49 = lean_unbox(x_48); @@ -25919,7 +25919,7 @@ if (x_51 == 0) { lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_inc(x_29); -x_52 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_50); +x_52 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_50); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -26003,7 +26003,7 @@ x_67 = lean_ctor_get(x_3, 2); lean_inc(x_67); lean_dec(x_3); lean_inc(x_66); -x_68 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_66, x_4); +x_68 = l___private_Lean_MetavarContext_6__visit_x3f(x_66, x_4); x_69 = lean_ctor_get(x_68, 0); lean_inc(x_69); x_70 = lean_unbox(x_69); @@ -26016,7 +26016,7 @@ x_71 = lean_ctor_get(x_68, 1); lean_inc(x_71); lean_dec(x_68); lean_inc(x_67); -x_72 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_71); +x_72 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_71); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_unbox(x_73); @@ -26064,7 +26064,7 @@ x_81 = lean_ctor_get(x_68, 1); lean_inc(x_81); lean_dec(x_68); lean_inc(x_2); -x_82 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_66, x_81); +x_82 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_66, x_81); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); x_84 = lean_unbox(x_83); @@ -26076,7 +26076,7 @@ x_85 = lean_ctor_get(x_82, 1); lean_inc(x_85); lean_dec(x_82); lean_inc(x_67); -x_86 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_85); +x_86 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_85); x_87 = lean_ctor_get(x_86, 0); lean_inc(x_87); x_88 = lean_unbox(x_87); @@ -26153,7 +26153,7 @@ x_100 = lean_ctor_get(x_3, 2); lean_inc(x_100); lean_dec(x_3); lean_inc(x_99); -x_101 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_99, x_4); +x_101 = l___private_Lean_MetavarContext_6__visit_x3f(x_99, x_4); x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); x_103 = lean_unbox(x_102); @@ -26166,7 +26166,7 @@ x_104 = lean_ctor_get(x_101, 1); lean_inc(x_104); lean_dec(x_101); lean_inc(x_100); -x_105 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_104); +x_105 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_104); x_106 = lean_ctor_get(x_105, 0); lean_inc(x_106); x_107 = lean_unbox(x_106); @@ -26214,7 +26214,7 @@ x_114 = lean_ctor_get(x_101, 1); lean_inc(x_114); lean_dec(x_101); lean_inc(x_2); -x_115 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_99, x_114); +x_115 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_99, x_114); x_116 = lean_ctor_get(x_115, 0); lean_inc(x_116); x_117 = lean_unbox(x_116); @@ -26226,7 +26226,7 @@ x_118 = lean_ctor_get(x_115, 1); lean_inc(x_118); lean_dec(x_115); lean_inc(x_100); -x_119 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_118); +x_119 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_118); x_120 = lean_ctor_get(x_119, 0); lean_inc(x_120); x_121 = lean_unbox(x_120); @@ -26305,7 +26305,7 @@ x_134 = lean_ctor_get(x_3, 3); lean_inc(x_134); lean_dec(x_3); lean_inc(x_132); -x_171 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_4); +x_171 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_4); x_172 = lean_ctor_get(x_171, 0); lean_inc(x_172); x_173 = lean_unbox(x_172); @@ -26330,7 +26330,7 @@ x_176 = lean_ctor_get(x_171, 1); lean_inc(x_176); lean_dec(x_171); lean_inc(x_2); -x_177 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_132, x_176); +x_177 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_132, x_176); x_178 = lean_ctor_get(x_177, 0); lean_inc(x_178); x_179 = lean_ctor_get(x_177, 1); @@ -26348,7 +26348,7 @@ if (x_135 == 0) { lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_inc(x_133); -x_137 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_133, x_136); +x_137 = l___private_Lean_MetavarContext_6__visit_x3f(x_133, x_136); x_138 = lean_ctor_get(x_137, 0); lean_inc(x_138); x_139 = lean_unbox(x_138); @@ -26361,7 +26361,7 @@ x_140 = lean_ctor_get(x_137, 1); lean_inc(x_140); lean_dec(x_137); lean_inc(x_134); -x_141 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_140); +x_141 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_140); x_142 = lean_ctor_get(x_141, 0); lean_inc(x_142); x_143 = lean_unbox(x_142); @@ -26409,7 +26409,7 @@ x_150 = lean_ctor_get(x_137, 1); lean_inc(x_150); lean_dec(x_137); lean_inc(x_2); -x_151 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_133, x_150); +x_151 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_133, x_150); x_152 = lean_ctor_get(x_151, 0); lean_inc(x_152); x_153 = lean_unbox(x_152); @@ -26421,7 +26421,7 @@ x_154 = lean_ctor_get(x_151, 1); lean_inc(x_154); lean_dec(x_151); lean_inc(x_134); -x_155 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_154); +x_155 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_154); x_156 = lean_ctor_get(x_155, 0); lean_inc(x_156); x_157 = lean_unbox(x_156); @@ -26510,7 +26510,7 @@ x_181 = lean_ctor_get(x_3, 1); lean_inc(x_181); lean_dec(x_3); lean_inc(x_181); -x_182 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_181, x_4); +x_182 = l___private_Lean_MetavarContext_6__visit_x3f(x_181, x_4); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_unbox(x_183); @@ -26558,7 +26558,7 @@ x_191 = lean_ctor_get(x_3, 2); lean_inc(x_191); lean_dec(x_3); lean_inc(x_191); -x_192 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_191, x_4); +x_192 = l___private_Lean_MetavarContext_6__visit_x3f(x_191, x_4); x_193 = lean_ctor_get(x_192, 0); lean_inc(x_193); x_194 = lean_unbox(x_193); @@ -26614,7 +26614,7 @@ return x_203; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__13(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; @@ -26630,7 +26630,7 @@ else { lean_object* x_8; uint8_t x_9; x_8 = lean_array_fget(x_3, x_5); -x_9 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__12(x_1, x_8); +x_9 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__12(x_1, x_8); lean_dec(x_8); if (x_9 == 0) { @@ -26649,7 +26649,7 @@ return x_9; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__14(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; @@ -26684,7 +26684,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -26705,7 +26705,7 @@ return x_16; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__12(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__12(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -26714,7 +26714,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; x_3 = lean_ctor_get(x_2, 0); x_4 = lean_array_get_size(x_3); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__13(x_1, x_3, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__13(x_1, x_3, x_3, x_4, x_5); lean_dec(x_4); return x_6; } @@ -26724,13 +26724,13 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_2, 0); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__14(x_1, x_7, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__14(x_1, x_7, x_7, x_8, x_9); lean_dec(x_8); return x_10; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__15(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; @@ -26765,7 +26765,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -26786,19 +26786,19 @@ return x_16; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__11(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__11(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; x_3 = lean_ctor_get(x_2, 0); -x_4 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__12(x_1, x_3); +x_4 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__12(x_1, x_3); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_2, 1); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__15(x_1, x_2, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__15(x_1, x_2, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -26808,7 +26808,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -26821,7 +26821,7 @@ lean_inc(x_5); lean_dec(x_3); x_6 = lean_array_get_size(x_1); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); lean_dec(x_6); lean_dec(x_5); x_9 = lean_box(x_8); @@ -26850,7 +26850,7 @@ lean_dec(x_13); x_15 = lean_ctor_get(x_14, 1); lean_inc(x_15); lean_dec(x_14); -x_16 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__11(x_1, x_15); +x_16 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__11(x_1, x_15); lean_dec(x_15); x_17 = lean_box(x_16); x_18 = lean_alloc_ctor(0, 2, 0); @@ -26866,7 +26866,7 @@ x_19 = lean_ctor_get(x_12, 0); lean_inc(x_19); lean_dec(x_12); lean_inc(x_19); -x_20 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_19, x_4); +x_20 = l___private_Lean_MetavarContext_6__visit_x3f(x_19, x_4); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); x_22 = lean_unbox(x_21); @@ -26917,7 +26917,7 @@ x_30 = lean_ctor_get(x_3, 1); lean_inc(x_30); lean_dec(x_3); lean_inc(x_30); -x_31 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_30, x_4); +x_31 = l___private_Lean_MetavarContext_6__visit_x3f(x_30, x_4); x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_unbox(x_32); @@ -26934,7 +26934,7 @@ if (x_35 == 0) { lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_inc(x_29); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_34); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_34); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -26989,7 +26989,7 @@ x_46 = lean_ctor_get(x_31, 1); lean_inc(x_46); lean_dec(x_31); lean_inc(x_2); -x_47 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_30, x_46); +x_47 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_30, x_46); x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); x_49 = lean_unbox(x_48); @@ -27005,7 +27005,7 @@ if (x_51 == 0) { lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_inc(x_29); -x_52 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_50); +x_52 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_50); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -27089,7 +27089,7 @@ x_67 = lean_ctor_get(x_3, 2); lean_inc(x_67); lean_dec(x_3); lean_inc(x_66); -x_68 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_66, x_4); +x_68 = l___private_Lean_MetavarContext_6__visit_x3f(x_66, x_4); x_69 = lean_ctor_get(x_68, 0); lean_inc(x_69); x_70 = lean_unbox(x_69); @@ -27102,7 +27102,7 @@ x_71 = lean_ctor_get(x_68, 1); lean_inc(x_71); lean_dec(x_68); lean_inc(x_67); -x_72 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_71); +x_72 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_71); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_unbox(x_73); @@ -27150,7 +27150,7 @@ x_81 = lean_ctor_get(x_68, 1); lean_inc(x_81); lean_dec(x_68); lean_inc(x_2); -x_82 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_66, x_81); +x_82 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_66, x_81); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); x_84 = lean_unbox(x_83); @@ -27162,7 +27162,7 @@ x_85 = lean_ctor_get(x_82, 1); lean_inc(x_85); lean_dec(x_82); lean_inc(x_67); -x_86 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_85); +x_86 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_85); x_87 = lean_ctor_get(x_86, 0); lean_inc(x_87); x_88 = lean_unbox(x_87); @@ -27239,7 +27239,7 @@ x_100 = lean_ctor_get(x_3, 2); lean_inc(x_100); lean_dec(x_3); lean_inc(x_99); -x_101 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_99, x_4); +x_101 = l___private_Lean_MetavarContext_6__visit_x3f(x_99, x_4); x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); x_103 = lean_unbox(x_102); @@ -27252,7 +27252,7 @@ x_104 = lean_ctor_get(x_101, 1); lean_inc(x_104); lean_dec(x_101); lean_inc(x_100); -x_105 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_104); +x_105 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_104); x_106 = lean_ctor_get(x_105, 0); lean_inc(x_106); x_107 = lean_unbox(x_106); @@ -27300,7 +27300,7 @@ x_114 = lean_ctor_get(x_101, 1); lean_inc(x_114); lean_dec(x_101); lean_inc(x_2); -x_115 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_99, x_114); +x_115 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_99, x_114); x_116 = lean_ctor_get(x_115, 0); lean_inc(x_116); x_117 = lean_unbox(x_116); @@ -27312,7 +27312,7 @@ x_118 = lean_ctor_get(x_115, 1); lean_inc(x_118); lean_dec(x_115); lean_inc(x_100); -x_119 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_118); +x_119 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_118); x_120 = lean_ctor_get(x_119, 0); lean_inc(x_120); x_121 = lean_unbox(x_120); @@ -27391,7 +27391,7 @@ x_134 = lean_ctor_get(x_3, 3); lean_inc(x_134); lean_dec(x_3); lean_inc(x_132); -x_171 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_4); +x_171 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_4); x_172 = lean_ctor_get(x_171, 0); lean_inc(x_172); x_173 = lean_unbox(x_172); @@ -27416,7 +27416,7 @@ x_176 = lean_ctor_get(x_171, 1); lean_inc(x_176); lean_dec(x_171); lean_inc(x_2); -x_177 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_132, x_176); +x_177 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_132, x_176); x_178 = lean_ctor_get(x_177, 0); lean_inc(x_178); x_179 = lean_ctor_get(x_177, 1); @@ -27434,7 +27434,7 @@ if (x_135 == 0) { lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_inc(x_133); -x_137 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_133, x_136); +x_137 = l___private_Lean_MetavarContext_6__visit_x3f(x_133, x_136); x_138 = lean_ctor_get(x_137, 0); lean_inc(x_138); x_139 = lean_unbox(x_138); @@ -27447,7 +27447,7 @@ x_140 = lean_ctor_get(x_137, 1); lean_inc(x_140); lean_dec(x_137); lean_inc(x_134); -x_141 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_140); +x_141 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_140); x_142 = lean_ctor_get(x_141, 0); lean_inc(x_142); x_143 = lean_unbox(x_142); @@ -27495,7 +27495,7 @@ x_150 = lean_ctor_get(x_137, 1); lean_inc(x_150); lean_dec(x_137); lean_inc(x_2); -x_151 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_133, x_150); +x_151 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_133, x_150); x_152 = lean_ctor_get(x_151, 0); lean_inc(x_152); x_153 = lean_unbox(x_152); @@ -27507,7 +27507,7 @@ x_154 = lean_ctor_get(x_151, 1); lean_inc(x_154); lean_dec(x_151); lean_inc(x_134); -x_155 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_154); +x_155 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_154); x_156 = lean_ctor_get(x_155, 0); lean_inc(x_156); x_157 = lean_unbox(x_156); @@ -27596,7 +27596,7 @@ x_181 = lean_ctor_get(x_3, 1); lean_inc(x_181); lean_dec(x_3); lean_inc(x_181); -x_182 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_181, x_4); +x_182 = l___private_Lean_MetavarContext_6__visit_x3f(x_181, x_4); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_unbox(x_183); @@ -27644,7 +27644,7 @@ x_191 = lean_ctor_get(x_3, 2); lean_inc(x_191); lean_dec(x_3); lean_inc(x_191); -x_192 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_191, x_4); +x_192 = l___private_Lean_MetavarContext_6__visit_x3f(x_191, x_4); x_193 = lean_ctor_get(x_192, 0); lean_inc(x_193); x_194 = lean_unbox(x_193); @@ -27700,7 +27700,7 @@ return x_203; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__19(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; @@ -27716,7 +27716,7 @@ else { lean_object* x_8; uint8_t x_9; x_8 = lean_array_fget(x_3, x_5); -x_9 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__18(x_1, x_8); +x_9 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__18(x_1, x_8); lean_dec(x_8); if (x_9 == 0) { @@ -27735,7 +27735,7 @@ return x_9; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__20(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; @@ -27770,7 +27770,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -27791,7 +27791,7 @@ return x_16; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__18(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__18(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -27800,7 +27800,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; x_3 = lean_ctor_get(x_2, 0); x_4 = lean_array_get_size(x_3); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__19(x_1, x_3, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__19(x_1, x_3, x_3, x_4, x_5); lean_dec(x_4); return x_6; } @@ -27810,13 +27810,13 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_2, 0); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__20(x_1, x_7, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__20(x_1, x_7, x_7, x_8, x_9); lean_dec(x_8); return x_10; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__21(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; @@ -27851,7 +27851,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -27872,19 +27872,19 @@ return x_16; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__17(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__17(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; x_3 = lean_ctor_get(x_2, 0); -x_4 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__18(x_1, x_3); +x_4 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__18(x_1, x_3); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_2, 1); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__21(x_1, x_2, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__21(x_1, x_2, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -27894,7 +27894,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -27907,7 +27907,7 @@ lean_inc(x_5); lean_dec(x_3); x_6 = lean_array_get_size(x_1); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); lean_dec(x_6); lean_dec(x_5); x_9 = lean_box(x_8); @@ -27936,7 +27936,7 @@ lean_dec(x_13); x_15 = lean_ctor_get(x_14, 1); lean_inc(x_15); lean_dec(x_14); -x_16 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__17(x_1, x_15); +x_16 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__17(x_1, x_15); lean_dec(x_15); x_17 = lean_box(x_16); x_18 = lean_alloc_ctor(0, 2, 0); @@ -27952,7 +27952,7 @@ x_19 = lean_ctor_get(x_12, 0); lean_inc(x_19); lean_dec(x_12); lean_inc(x_19); -x_20 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_19, x_4); +x_20 = l___private_Lean_MetavarContext_6__visit_x3f(x_19, x_4); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); x_22 = lean_unbox(x_21); @@ -28003,7 +28003,7 @@ x_30 = lean_ctor_get(x_3, 1); lean_inc(x_30); lean_dec(x_3); lean_inc(x_30); -x_31 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_30, x_4); +x_31 = l___private_Lean_MetavarContext_6__visit_x3f(x_30, x_4); x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_unbox(x_32); @@ -28020,7 +28020,7 @@ if (x_35 == 0) { lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_inc(x_29); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_34); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_34); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -28075,7 +28075,7 @@ x_46 = lean_ctor_get(x_31, 1); lean_inc(x_46); lean_dec(x_31); lean_inc(x_2); -x_47 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_30, x_46); +x_47 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_30, x_46); x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); x_49 = lean_unbox(x_48); @@ -28091,7 +28091,7 @@ if (x_51 == 0) { lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_inc(x_29); -x_52 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_50); +x_52 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_50); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -28175,7 +28175,7 @@ x_67 = lean_ctor_get(x_3, 2); lean_inc(x_67); lean_dec(x_3); lean_inc(x_66); -x_68 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_66, x_4); +x_68 = l___private_Lean_MetavarContext_6__visit_x3f(x_66, x_4); x_69 = lean_ctor_get(x_68, 0); lean_inc(x_69); x_70 = lean_unbox(x_69); @@ -28188,7 +28188,7 @@ x_71 = lean_ctor_get(x_68, 1); lean_inc(x_71); lean_dec(x_68); lean_inc(x_67); -x_72 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_71); +x_72 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_71); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_unbox(x_73); @@ -28236,7 +28236,7 @@ x_81 = lean_ctor_get(x_68, 1); lean_inc(x_81); lean_dec(x_68); lean_inc(x_2); -x_82 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_66, x_81); +x_82 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_66, x_81); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); x_84 = lean_unbox(x_83); @@ -28248,7 +28248,7 @@ x_85 = lean_ctor_get(x_82, 1); lean_inc(x_85); lean_dec(x_82); lean_inc(x_67); -x_86 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_85); +x_86 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_85); x_87 = lean_ctor_get(x_86, 0); lean_inc(x_87); x_88 = lean_unbox(x_87); @@ -28325,7 +28325,7 @@ x_100 = lean_ctor_get(x_3, 2); lean_inc(x_100); lean_dec(x_3); lean_inc(x_99); -x_101 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_99, x_4); +x_101 = l___private_Lean_MetavarContext_6__visit_x3f(x_99, x_4); x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); x_103 = lean_unbox(x_102); @@ -28338,7 +28338,7 @@ x_104 = lean_ctor_get(x_101, 1); lean_inc(x_104); lean_dec(x_101); lean_inc(x_100); -x_105 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_104); +x_105 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_104); x_106 = lean_ctor_get(x_105, 0); lean_inc(x_106); x_107 = lean_unbox(x_106); @@ -28386,7 +28386,7 @@ x_114 = lean_ctor_get(x_101, 1); lean_inc(x_114); lean_dec(x_101); lean_inc(x_2); -x_115 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_99, x_114); +x_115 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_99, x_114); x_116 = lean_ctor_get(x_115, 0); lean_inc(x_116); x_117 = lean_unbox(x_116); @@ -28398,7 +28398,7 @@ x_118 = lean_ctor_get(x_115, 1); lean_inc(x_118); lean_dec(x_115); lean_inc(x_100); -x_119 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_118); +x_119 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_118); x_120 = lean_ctor_get(x_119, 0); lean_inc(x_120); x_121 = lean_unbox(x_120); @@ -28477,7 +28477,7 @@ x_134 = lean_ctor_get(x_3, 3); lean_inc(x_134); lean_dec(x_3); lean_inc(x_132); -x_171 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_4); +x_171 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_4); x_172 = lean_ctor_get(x_171, 0); lean_inc(x_172); x_173 = lean_unbox(x_172); @@ -28502,7 +28502,7 @@ x_176 = lean_ctor_get(x_171, 1); lean_inc(x_176); lean_dec(x_171); lean_inc(x_2); -x_177 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_132, x_176); +x_177 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_132, x_176); x_178 = lean_ctor_get(x_177, 0); lean_inc(x_178); x_179 = lean_ctor_get(x_177, 1); @@ -28520,7 +28520,7 @@ if (x_135 == 0) { lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_inc(x_133); -x_137 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_133, x_136); +x_137 = l___private_Lean_MetavarContext_6__visit_x3f(x_133, x_136); x_138 = lean_ctor_get(x_137, 0); lean_inc(x_138); x_139 = lean_unbox(x_138); @@ -28533,7 +28533,7 @@ x_140 = lean_ctor_get(x_137, 1); lean_inc(x_140); lean_dec(x_137); lean_inc(x_134); -x_141 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_140); +x_141 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_140); x_142 = lean_ctor_get(x_141, 0); lean_inc(x_142); x_143 = lean_unbox(x_142); @@ -28581,7 +28581,7 @@ x_150 = lean_ctor_get(x_137, 1); lean_inc(x_150); lean_dec(x_137); lean_inc(x_2); -x_151 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_133, x_150); +x_151 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_133, x_150); x_152 = lean_ctor_get(x_151, 0); lean_inc(x_152); x_153 = lean_unbox(x_152); @@ -28593,7 +28593,7 @@ x_154 = lean_ctor_get(x_151, 1); lean_inc(x_154); lean_dec(x_151); lean_inc(x_134); -x_155 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_154); +x_155 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_154); x_156 = lean_ctor_get(x_155, 0); lean_inc(x_156); x_157 = lean_unbox(x_156); @@ -28682,7 +28682,7 @@ x_181 = lean_ctor_get(x_3, 1); lean_inc(x_181); lean_dec(x_3); lean_inc(x_181); -x_182 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_181, x_4); +x_182 = l___private_Lean_MetavarContext_6__visit_x3f(x_181, x_4); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_unbox(x_183); @@ -28730,7 +28730,7 @@ x_191 = lean_ctor_get(x_3, 2); lean_inc(x_191); lean_dec(x_3); lean_inc(x_191); -x_192 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_191, x_4); +x_192 = l___private_Lean_MetavarContext_6__visit_x3f(x_191, x_4); x_193 = lean_ctor_get(x_192, 0); lean_inc(x_193); x_194 = lean_unbox(x_193); @@ -28786,7 +28786,7 @@ return x_203; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__25(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; @@ -28802,7 +28802,7 @@ else { lean_object* x_8; uint8_t x_9; x_8 = lean_array_fget(x_3, x_5); -x_9 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__24(x_1, x_8); +x_9 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__24(x_1, x_8); lean_dec(x_8); if (x_9 == 0) { @@ -28821,7 +28821,7 @@ return x_9; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__26(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__26(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; @@ -28856,7 +28856,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -28877,7 +28877,7 @@ return x_16; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__24(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__24(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -28886,7 +28886,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; x_3 = lean_ctor_get(x_2, 0); x_4 = lean_array_get_size(x_3); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__25(x_1, x_3, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__25(x_1, x_3, x_3, x_4, x_5); lean_dec(x_4); return x_6; } @@ -28896,13 +28896,13 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_2, 0); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__26(x_1, x_7, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__26(x_1, x_7, x_7, x_8, x_9); lean_dec(x_8); return x_10; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__27(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__27(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; @@ -28937,7 +28937,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -28958,19 +28958,19 @@ return x_16; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__23(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__23(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; x_3 = lean_ctor_get(x_2, 0); -x_4 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__24(x_1, x_3); +x_4 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__24(x_1, x_3); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_2, 1); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__27(x_1, x_2, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__27(x_1, x_2, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -28980,7 +28980,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -28993,7 +28993,7 @@ lean_inc(x_5); lean_dec(x_3); x_6 = lean_array_get_size(x_1); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); lean_dec(x_6); lean_dec(x_5); x_9 = lean_box(x_8); @@ -29022,7 +29022,7 @@ lean_dec(x_13); x_15 = lean_ctor_get(x_14, 1); lean_inc(x_15); lean_dec(x_14); -x_16 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__23(x_1, x_15); +x_16 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__23(x_1, x_15); lean_dec(x_15); x_17 = lean_box(x_16); x_18 = lean_alloc_ctor(0, 2, 0); @@ -29038,7 +29038,7 @@ x_19 = lean_ctor_get(x_12, 0); lean_inc(x_19); lean_dec(x_12); lean_inc(x_19); -x_20 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_19, x_4); +x_20 = l___private_Lean_MetavarContext_6__visit_x3f(x_19, x_4); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); x_22 = lean_unbox(x_21); @@ -29089,7 +29089,7 @@ x_30 = lean_ctor_get(x_3, 1); lean_inc(x_30); lean_dec(x_3); lean_inc(x_30); -x_31 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_30, x_4); +x_31 = l___private_Lean_MetavarContext_6__visit_x3f(x_30, x_4); x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_unbox(x_32); @@ -29106,7 +29106,7 @@ if (x_35 == 0) { lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_inc(x_29); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_34); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_34); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -29161,7 +29161,7 @@ x_46 = lean_ctor_get(x_31, 1); lean_inc(x_46); lean_dec(x_31); lean_inc(x_2); -x_47 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_30, x_46); +x_47 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_30, x_46); x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); x_49 = lean_unbox(x_48); @@ -29177,7 +29177,7 @@ if (x_51 == 0) { lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_inc(x_29); -x_52 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_50); +x_52 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_50); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -29261,7 +29261,7 @@ x_67 = lean_ctor_get(x_3, 2); lean_inc(x_67); lean_dec(x_3); lean_inc(x_66); -x_68 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_66, x_4); +x_68 = l___private_Lean_MetavarContext_6__visit_x3f(x_66, x_4); x_69 = lean_ctor_get(x_68, 0); lean_inc(x_69); x_70 = lean_unbox(x_69); @@ -29274,7 +29274,7 @@ x_71 = lean_ctor_get(x_68, 1); lean_inc(x_71); lean_dec(x_68); lean_inc(x_67); -x_72 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_71); +x_72 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_71); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_unbox(x_73); @@ -29322,7 +29322,7 @@ x_81 = lean_ctor_get(x_68, 1); lean_inc(x_81); lean_dec(x_68); lean_inc(x_2); -x_82 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_66, x_81); +x_82 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_66, x_81); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); x_84 = lean_unbox(x_83); @@ -29334,7 +29334,7 @@ x_85 = lean_ctor_get(x_82, 1); lean_inc(x_85); lean_dec(x_82); lean_inc(x_67); -x_86 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_85); +x_86 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_85); x_87 = lean_ctor_get(x_86, 0); lean_inc(x_87); x_88 = lean_unbox(x_87); @@ -29411,7 +29411,7 @@ x_100 = lean_ctor_get(x_3, 2); lean_inc(x_100); lean_dec(x_3); lean_inc(x_99); -x_101 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_99, x_4); +x_101 = l___private_Lean_MetavarContext_6__visit_x3f(x_99, x_4); x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); x_103 = lean_unbox(x_102); @@ -29424,7 +29424,7 @@ x_104 = lean_ctor_get(x_101, 1); lean_inc(x_104); lean_dec(x_101); lean_inc(x_100); -x_105 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_104); +x_105 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_104); x_106 = lean_ctor_get(x_105, 0); lean_inc(x_106); x_107 = lean_unbox(x_106); @@ -29472,7 +29472,7 @@ x_114 = lean_ctor_get(x_101, 1); lean_inc(x_114); lean_dec(x_101); lean_inc(x_2); -x_115 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_99, x_114); +x_115 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_99, x_114); x_116 = lean_ctor_get(x_115, 0); lean_inc(x_116); x_117 = lean_unbox(x_116); @@ -29484,7 +29484,7 @@ x_118 = lean_ctor_get(x_115, 1); lean_inc(x_118); lean_dec(x_115); lean_inc(x_100); -x_119 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_118); +x_119 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_118); x_120 = lean_ctor_get(x_119, 0); lean_inc(x_120); x_121 = lean_unbox(x_120); @@ -29563,7 +29563,7 @@ x_134 = lean_ctor_get(x_3, 3); lean_inc(x_134); lean_dec(x_3); lean_inc(x_132); -x_171 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_4); +x_171 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_4); x_172 = lean_ctor_get(x_171, 0); lean_inc(x_172); x_173 = lean_unbox(x_172); @@ -29588,7 +29588,7 @@ x_176 = lean_ctor_get(x_171, 1); lean_inc(x_176); lean_dec(x_171); lean_inc(x_2); -x_177 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_132, x_176); +x_177 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_132, x_176); x_178 = lean_ctor_get(x_177, 0); lean_inc(x_178); x_179 = lean_ctor_get(x_177, 1); @@ -29606,7 +29606,7 @@ if (x_135 == 0) { lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_inc(x_133); -x_137 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_133, x_136); +x_137 = l___private_Lean_MetavarContext_6__visit_x3f(x_133, x_136); x_138 = lean_ctor_get(x_137, 0); lean_inc(x_138); x_139 = lean_unbox(x_138); @@ -29619,7 +29619,7 @@ x_140 = lean_ctor_get(x_137, 1); lean_inc(x_140); lean_dec(x_137); lean_inc(x_134); -x_141 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_140); +x_141 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_140); x_142 = lean_ctor_get(x_141, 0); lean_inc(x_142); x_143 = lean_unbox(x_142); @@ -29667,7 +29667,7 @@ x_150 = lean_ctor_get(x_137, 1); lean_inc(x_150); lean_dec(x_137); lean_inc(x_2); -x_151 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_133, x_150); +x_151 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_133, x_150); x_152 = lean_ctor_get(x_151, 0); lean_inc(x_152); x_153 = lean_unbox(x_152); @@ -29679,7 +29679,7 @@ x_154 = lean_ctor_get(x_151, 1); lean_inc(x_154); lean_dec(x_151); lean_inc(x_134); -x_155 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_154); +x_155 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_154); x_156 = lean_ctor_get(x_155, 0); lean_inc(x_156); x_157 = lean_unbox(x_156); @@ -29768,7 +29768,7 @@ x_181 = lean_ctor_get(x_3, 1); lean_inc(x_181); lean_dec(x_3); lean_inc(x_181); -x_182 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_181, x_4); +x_182 = l___private_Lean_MetavarContext_6__visit_x3f(x_181, x_4); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_unbox(x_183); @@ -29816,7 +29816,7 @@ x_191 = lean_ctor_get(x_3, 2); lean_inc(x_191); lean_dec(x_3); lean_inc(x_191); -x_192 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_191, x_4); +x_192 = l___private_Lean_MetavarContext_6__visit_x3f(x_191, x_4); x_193 = lean_ctor_get(x_192, 0); lean_inc(x_193); x_194 = lean_unbox(x_193); @@ -29872,7 +29872,7 @@ return x_203; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__31(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; @@ -29888,7 +29888,7 @@ else { lean_object* x_8; uint8_t x_9; x_8 = lean_array_fget(x_3, x_5); -x_9 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__30(x_1, x_8); +x_9 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__30(x_1, x_8); lean_dec(x_8); if (x_9 == 0) { @@ -29907,7 +29907,7 @@ return x_9; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__32(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; @@ -29942,7 +29942,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -29963,7 +29963,7 @@ return x_16; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__30(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__30(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -29972,7 +29972,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; x_3 = lean_ctor_get(x_2, 0); x_4 = lean_array_get_size(x_3); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__31(x_1, x_3, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__31(x_1, x_3, x_3, x_4, x_5); lean_dec(x_4); return x_6; } @@ -29982,13 +29982,13 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_2, 0); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__32(x_1, x_7, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__32(x_1, x_7, x_7, x_8, x_9); lean_dec(x_8); return x_10; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__33(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__33(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; @@ -30023,7 +30023,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -30044,19 +30044,19 @@ return x_16; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__29(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__29(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; x_3 = lean_ctor_get(x_2, 0); -x_4 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__30(x_1, x_3); +x_4 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__30(x_1, x_3); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_2, 1); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__33(x_1, x_2, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__33(x_1, x_2, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -30066,7 +30066,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -30079,7 +30079,7 @@ lean_inc(x_5); lean_dec(x_3); x_6 = lean_array_get_size(x_1); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); lean_dec(x_6); lean_dec(x_5); x_9 = lean_box(x_8); @@ -30108,7 +30108,7 @@ lean_dec(x_13); x_15 = lean_ctor_get(x_14, 1); lean_inc(x_15); lean_dec(x_14); -x_16 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__29(x_1, x_15); +x_16 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__29(x_1, x_15); lean_dec(x_15); x_17 = lean_box(x_16); x_18 = lean_alloc_ctor(0, 2, 0); @@ -30124,7 +30124,7 @@ x_19 = lean_ctor_get(x_12, 0); lean_inc(x_19); lean_dec(x_12); lean_inc(x_19); -x_20 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_19, x_4); +x_20 = l___private_Lean_MetavarContext_6__visit_x3f(x_19, x_4); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); x_22 = lean_unbox(x_21); @@ -30175,7 +30175,7 @@ x_30 = lean_ctor_get(x_3, 1); lean_inc(x_30); lean_dec(x_3); lean_inc(x_30); -x_31 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_30, x_4); +x_31 = l___private_Lean_MetavarContext_6__visit_x3f(x_30, x_4); x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_unbox(x_32); @@ -30192,7 +30192,7 @@ if (x_35 == 0) { lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_inc(x_29); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_34); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_34); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -30247,7 +30247,7 @@ x_46 = lean_ctor_get(x_31, 1); lean_inc(x_46); lean_dec(x_31); lean_inc(x_2); -x_47 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_30, x_46); +x_47 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_30, x_46); x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); x_49 = lean_unbox(x_48); @@ -30263,7 +30263,7 @@ if (x_51 == 0) { lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_inc(x_29); -x_52 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_50); +x_52 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_50); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -30347,7 +30347,7 @@ x_67 = lean_ctor_get(x_3, 2); lean_inc(x_67); lean_dec(x_3); lean_inc(x_66); -x_68 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_66, x_4); +x_68 = l___private_Lean_MetavarContext_6__visit_x3f(x_66, x_4); x_69 = lean_ctor_get(x_68, 0); lean_inc(x_69); x_70 = lean_unbox(x_69); @@ -30360,7 +30360,7 @@ x_71 = lean_ctor_get(x_68, 1); lean_inc(x_71); lean_dec(x_68); lean_inc(x_67); -x_72 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_71); +x_72 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_71); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_unbox(x_73); @@ -30408,7 +30408,7 @@ x_81 = lean_ctor_get(x_68, 1); lean_inc(x_81); lean_dec(x_68); lean_inc(x_2); -x_82 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_66, x_81); +x_82 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_66, x_81); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); x_84 = lean_unbox(x_83); @@ -30420,7 +30420,7 @@ x_85 = lean_ctor_get(x_82, 1); lean_inc(x_85); lean_dec(x_82); lean_inc(x_67); -x_86 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_85); +x_86 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_85); x_87 = lean_ctor_get(x_86, 0); lean_inc(x_87); x_88 = lean_unbox(x_87); @@ -30497,7 +30497,7 @@ x_100 = lean_ctor_get(x_3, 2); lean_inc(x_100); lean_dec(x_3); lean_inc(x_99); -x_101 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_99, x_4); +x_101 = l___private_Lean_MetavarContext_6__visit_x3f(x_99, x_4); x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); x_103 = lean_unbox(x_102); @@ -30510,7 +30510,7 @@ x_104 = lean_ctor_get(x_101, 1); lean_inc(x_104); lean_dec(x_101); lean_inc(x_100); -x_105 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_104); +x_105 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_104); x_106 = lean_ctor_get(x_105, 0); lean_inc(x_106); x_107 = lean_unbox(x_106); @@ -30558,7 +30558,7 @@ x_114 = lean_ctor_get(x_101, 1); lean_inc(x_114); lean_dec(x_101); lean_inc(x_2); -x_115 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_99, x_114); +x_115 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_99, x_114); x_116 = lean_ctor_get(x_115, 0); lean_inc(x_116); x_117 = lean_unbox(x_116); @@ -30570,7 +30570,7 @@ x_118 = lean_ctor_get(x_115, 1); lean_inc(x_118); lean_dec(x_115); lean_inc(x_100); -x_119 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_118); +x_119 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_118); x_120 = lean_ctor_get(x_119, 0); lean_inc(x_120); x_121 = lean_unbox(x_120); @@ -30649,7 +30649,7 @@ x_134 = lean_ctor_get(x_3, 3); lean_inc(x_134); lean_dec(x_3); lean_inc(x_132); -x_171 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_4); +x_171 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_4); x_172 = lean_ctor_get(x_171, 0); lean_inc(x_172); x_173 = lean_unbox(x_172); @@ -30674,7 +30674,7 @@ x_176 = lean_ctor_get(x_171, 1); lean_inc(x_176); lean_dec(x_171); lean_inc(x_2); -x_177 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_132, x_176); +x_177 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_132, x_176); x_178 = lean_ctor_get(x_177, 0); lean_inc(x_178); x_179 = lean_ctor_get(x_177, 1); @@ -30692,7 +30692,7 @@ if (x_135 == 0) { lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_inc(x_133); -x_137 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_133, x_136); +x_137 = l___private_Lean_MetavarContext_6__visit_x3f(x_133, x_136); x_138 = lean_ctor_get(x_137, 0); lean_inc(x_138); x_139 = lean_unbox(x_138); @@ -30705,7 +30705,7 @@ x_140 = lean_ctor_get(x_137, 1); lean_inc(x_140); lean_dec(x_137); lean_inc(x_134); -x_141 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_140); +x_141 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_140); x_142 = lean_ctor_get(x_141, 0); lean_inc(x_142); x_143 = lean_unbox(x_142); @@ -30753,7 +30753,7 @@ x_150 = lean_ctor_get(x_137, 1); lean_inc(x_150); lean_dec(x_137); lean_inc(x_2); -x_151 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_133, x_150); +x_151 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_133, x_150); x_152 = lean_ctor_get(x_151, 0); lean_inc(x_152); x_153 = lean_unbox(x_152); @@ -30765,7 +30765,7 @@ x_154 = lean_ctor_get(x_151, 1); lean_inc(x_154); lean_dec(x_151); lean_inc(x_134); -x_155 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_154); +x_155 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_154); x_156 = lean_ctor_get(x_155, 0); lean_inc(x_156); x_157 = lean_unbox(x_156); @@ -30854,7 +30854,7 @@ x_181 = lean_ctor_get(x_3, 1); lean_inc(x_181); lean_dec(x_3); lean_inc(x_181); -x_182 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_181, x_4); +x_182 = l___private_Lean_MetavarContext_6__visit_x3f(x_181, x_4); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_unbox(x_183); @@ -30902,7 +30902,7 @@ x_191 = lean_ctor_get(x_3, 2); lean_inc(x_191); lean_dec(x_3); lean_inc(x_191); -x_192 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_191, x_4); +x_192 = l___private_Lean_MetavarContext_6__visit_x3f(x_191, x_4); x_193 = lean_ctor_get(x_192, 0); lean_inc(x_193); x_194 = lean_unbox(x_193); @@ -30958,7 +30958,7 @@ return x_203; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__37(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__37(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; @@ -30974,7 +30974,7 @@ else { lean_object* x_8; uint8_t x_9; x_8 = lean_array_fget(x_3, x_5); -x_9 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__36(x_1, x_8); +x_9 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__36(x_1, x_8); lean_dec(x_8); if (x_9 == 0) { @@ -30993,7 +30993,7 @@ return x_9; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__38(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; @@ -31028,7 +31028,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -31049,7 +31049,7 @@ return x_16; } } } -uint8_t l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__36(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__36(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -31058,7 +31058,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; x_3 = lean_ctor_get(x_2, 0); x_4 = lean_array_get_size(x_3); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__37(x_1, x_3, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__37(x_1, x_3, x_3, x_4, x_5); lean_dec(x_4); return x_6; } @@ -31068,13 +31068,13 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_ctor_get(x_2, 0); x_8 = lean_array_get_size(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__38(x_1, x_7, x_7, x_8, x_9); +x_10 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__38(x_1, x_7, x_7, x_8, x_9); lean_dec(x_8); return x_10; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__39(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__39(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; @@ -31109,7 +31109,7 @@ x_13 = l_Lean_LocalDecl_fvarId(x_12); lean_dec(x_12); x_14 = lean_array_get_size(x_1); x_15 = lean_unsigned_to_nat(0u); -x_16 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); +x_16 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_13, x_1, x_14, x_15); lean_dec(x_14); lean_dec(x_13); if (x_16 == 0) @@ -31130,19 +31130,19 @@ return x_16; } } } -uint8_t l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__35(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__35(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; x_3 = lean_ctor_get(x_2, 0); -x_4 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__36(x_1, x_3); +x_4 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__36(x_1, x_3); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_ctor_get(x_2, 1); x_6 = lean_array_get_size(x_5); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__39(x_1, x_2, x_5, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__39(x_1, x_2, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -31152,7 +31152,7 @@ return x_4; } } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { switch (lean_obj_tag(x_3)) { @@ -31165,7 +31165,7 @@ lean_inc(x_5); lean_dec(x_3); x_6 = lean_array_get_size(x_1); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); +x_8 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_5, x_1, x_6, x_7); lean_dec(x_6); lean_dec(x_5); x_9 = lean_box(x_8); @@ -31194,7 +31194,7 @@ lean_dec(x_13); x_15 = lean_ctor_get(x_14, 1); lean_inc(x_15); lean_dec(x_14); -x_16 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__35(x_1, x_15); +x_16 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__35(x_1, x_15); lean_dec(x_15); x_17 = lean_box(x_16); x_18 = lean_alloc_ctor(0, 2, 0); @@ -31210,7 +31210,7 @@ x_19 = lean_ctor_get(x_12, 0); lean_inc(x_19); lean_dec(x_12); lean_inc(x_19); -x_20 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_19, x_4); +x_20 = l___private_Lean_MetavarContext_6__visit_x3f(x_19, x_4); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); x_22 = lean_unbox(x_21); @@ -31261,7 +31261,7 @@ x_30 = lean_ctor_get(x_3, 1); lean_inc(x_30); lean_dec(x_3); lean_inc(x_30); -x_31 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_30, x_4); +x_31 = l___private_Lean_MetavarContext_6__visit_x3f(x_30, x_4); x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_unbox(x_32); @@ -31278,7 +31278,7 @@ if (x_35 == 0) { lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_inc(x_29); -x_36 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_34); +x_36 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_34); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_unbox(x_37); @@ -31333,7 +31333,7 @@ x_46 = lean_ctor_get(x_31, 1); lean_inc(x_46); lean_dec(x_31); lean_inc(x_2); -x_47 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_30, x_46); +x_47 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_30, x_46); x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); x_49 = lean_unbox(x_48); @@ -31349,7 +31349,7 @@ if (x_51 == 0) { lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_inc(x_29); -x_52 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_29, x_50); +x_52 = l___private_Lean_MetavarContext_6__visit_x3f(x_29, x_50); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_unbox(x_53); @@ -31433,7 +31433,7 @@ x_67 = lean_ctor_get(x_3, 2); lean_inc(x_67); lean_dec(x_3); lean_inc(x_66); -x_68 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_66, x_4); +x_68 = l___private_Lean_MetavarContext_6__visit_x3f(x_66, x_4); x_69 = lean_ctor_get(x_68, 0); lean_inc(x_69); x_70 = lean_unbox(x_69); @@ -31446,7 +31446,7 @@ x_71 = lean_ctor_get(x_68, 1); lean_inc(x_71); lean_dec(x_68); lean_inc(x_67); -x_72 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_71); +x_72 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_71); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_unbox(x_73); @@ -31494,7 +31494,7 @@ x_81 = lean_ctor_get(x_68, 1); lean_inc(x_81); lean_dec(x_68); lean_inc(x_2); -x_82 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_66, x_81); +x_82 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_66, x_81); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); x_84 = lean_unbox(x_83); @@ -31506,7 +31506,7 @@ x_85 = lean_ctor_get(x_82, 1); lean_inc(x_85); lean_dec(x_82); lean_inc(x_67); -x_86 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_67, x_85); +x_86 = l___private_Lean_MetavarContext_6__visit_x3f(x_67, x_85); x_87 = lean_ctor_get(x_86, 0); lean_inc(x_87); x_88 = lean_unbox(x_87); @@ -31583,7 +31583,7 @@ x_100 = lean_ctor_get(x_3, 2); lean_inc(x_100); lean_dec(x_3); lean_inc(x_99); -x_101 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_99, x_4); +x_101 = l___private_Lean_MetavarContext_6__visit_x3f(x_99, x_4); x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); x_103 = lean_unbox(x_102); @@ -31596,7 +31596,7 @@ x_104 = lean_ctor_get(x_101, 1); lean_inc(x_104); lean_dec(x_101); lean_inc(x_100); -x_105 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_104); +x_105 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_104); x_106 = lean_ctor_get(x_105, 0); lean_inc(x_106); x_107 = lean_unbox(x_106); @@ -31644,7 +31644,7 @@ x_114 = lean_ctor_get(x_101, 1); lean_inc(x_114); lean_dec(x_101); lean_inc(x_2); -x_115 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_99, x_114); +x_115 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_99, x_114); x_116 = lean_ctor_get(x_115, 0); lean_inc(x_116); x_117 = lean_unbox(x_116); @@ -31656,7 +31656,7 @@ x_118 = lean_ctor_get(x_115, 1); lean_inc(x_118); lean_dec(x_115); lean_inc(x_100); -x_119 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_100, x_118); +x_119 = l___private_Lean_MetavarContext_6__visit_x3f(x_100, x_118); x_120 = lean_ctor_get(x_119, 0); lean_inc(x_120); x_121 = lean_unbox(x_120); @@ -31735,7 +31735,7 @@ x_134 = lean_ctor_get(x_3, 3); lean_inc(x_134); lean_dec(x_3); lean_inc(x_132); -x_171 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_132, x_4); +x_171 = l___private_Lean_MetavarContext_6__visit_x3f(x_132, x_4); x_172 = lean_ctor_get(x_171, 0); lean_inc(x_172); x_173 = lean_unbox(x_172); @@ -31760,7 +31760,7 @@ x_176 = lean_ctor_get(x_171, 1); lean_inc(x_176); lean_dec(x_171); lean_inc(x_2); -x_177 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_132, x_176); +x_177 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_132, x_176); x_178 = lean_ctor_get(x_177, 0); lean_inc(x_178); x_179 = lean_ctor_get(x_177, 1); @@ -31778,7 +31778,7 @@ if (x_135 == 0) { lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_inc(x_133); -x_137 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_133, x_136); +x_137 = l___private_Lean_MetavarContext_6__visit_x3f(x_133, x_136); x_138 = lean_ctor_get(x_137, 0); lean_inc(x_138); x_139 = lean_unbox(x_138); @@ -31791,7 +31791,7 @@ x_140 = lean_ctor_get(x_137, 1); lean_inc(x_140); lean_dec(x_137); lean_inc(x_134); -x_141 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_140); +x_141 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_140); x_142 = lean_ctor_get(x_141, 0); lean_inc(x_142); x_143 = lean_unbox(x_142); @@ -31839,7 +31839,7 @@ x_150 = lean_ctor_get(x_137, 1); lean_inc(x_150); lean_dec(x_137); lean_inc(x_2); -x_151 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_133, x_150); +x_151 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_133, x_150); x_152 = lean_ctor_get(x_151, 0); lean_inc(x_152); x_153 = lean_unbox(x_152); @@ -31851,7 +31851,7 @@ x_154 = lean_ctor_get(x_151, 1); lean_inc(x_154); lean_dec(x_151); lean_inc(x_134); -x_155 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_134, x_154); +x_155 = l___private_Lean_MetavarContext_6__visit_x3f(x_134, x_154); x_156 = lean_ctor_get(x_155, 0); lean_inc(x_156); x_157 = lean_unbox(x_156); @@ -31940,7 +31940,7 @@ x_181 = lean_ctor_get(x_3, 1); lean_inc(x_181); lean_dec(x_3); lean_inc(x_181); -x_182 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_181, x_4); +x_182 = l___private_Lean_MetavarContext_6__visit_x3f(x_181, x_4); x_183 = lean_ctor_get(x_182, 0); lean_inc(x_183); x_184 = lean_unbox(x_183); @@ -31988,7 +31988,7 @@ x_191 = lean_ctor_get(x_3, 2); lean_inc(x_191); lean_dec(x_3); lean_inc(x_191); -x_192 = l___private_Init_Lean_MetavarContext_6__visit_x3f(x_191, x_4); +x_192 = l___private_Lean_MetavarContext_6__visit_x3f(x_191, x_4); x_193 = lean_ctor_get(x_192, 0); lean_inc(x_193); x_194 = lean_unbox(x_193); @@ -32044,7 +32044,7 @@ return x_203; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__44___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__44___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -32065,7 +32065,7 @@ else lean_object* x_9; lean_object* x_10; x_9 = lean_array_fget(x_3, x_4); lean_inc(x_1); -x_10 = l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43___rarg(x_1, x_9, x_5); +x_10 = l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43___rarg(x_1, x_9, x_5); lean_dec(x_9); if (lean_obj_tag(x_10) == 0) { @@ -32104,15 +32104,15 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__44(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__44(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__44___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__44___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__45___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__45___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -32171,15 +32171,15 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__45(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__45(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__45___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__45___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -32187,7 +32187,7 @@ if (lean_obj_tag(x_2) == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_2, 0); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__44___rarg(x_1, x_4, x_4, x_5, x_3); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__44___rarg(x_1, x_4, x_4, x_5, x_3); return x_6; } else @@ -32195,20 +32195,20 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_2, 0); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__45___rarg(x_1, x_7, x_7, x_8, x_3); +x_9 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__45___rarg(x_1, x_7, x_7, x_8, x_3); return x_9; } } } -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43(lean_object* x_1) { +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43___rarg___boxed), 3, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__46___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__46___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -32229,7 +32229,7 @@ else lean_object* x_9; lean_object* x_10; x_9 = lean_array_fget(x_3, x_4); lean_inc(x_1); -x_10 = l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43___rarg(x_1, x_9, x_5); +x_10 = l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43___rarg(x_1, x_9, x_5); lean_dec(x_9); if (lean_obj_tag(x_10) == 0) { @@ -32268,15 +32268,15 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__46(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__46(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__46___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__46___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__47___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__47___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -32335,15 +32335,15 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__47(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__47(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__47___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__47___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42___rarg(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42___rarg(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_2) == 0) @@ -32361,7 +32361,7 @@ x_14 = x_3 & x_13; x_15 = 5; x_16 = x_4 - x_15; lean_inc(x_1); -x_17 = l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42___rarg(x_1, x_10, x_14, x_16, x_5); +x_17 = l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42___rarg(x_1, x_10, x_14, x_16, x_5); lean_dec(x_10); if (lean_obj_tag(x_17) == 0) { @@ -32393,7 +32393,7 @@ lean_dec(x_17); x_22 = lean_unsigned_to_nat(1u); x_23 = lean_nat_add(x_8, x_22); lean_dec(x_8); -x_24 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__46___rarg(x_1, x_6, x_6, x_23, x_21); +x_24 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__46___rarg(x_1, x_6, x_6, x_23, x_21); return x_24; } } @@ -32402,20 +32402,20 @@ else lean_object* x_25; lean_object* x_26; lean_object* x_27; x_25 = lean_ctor_get(x_2, 0); x_26 = lean_usize_to_nat(x_3); -x_27 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__47___rarg(x_1, x_25, x_25, x_26, x_5); +x_27 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__47___rarg(x_1, x_25, x_25, x_26, x_5); return x_27; } } } -lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42(lean_object* x_1) { +lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__48___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__48___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -32474,15 +32474,15 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__48(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__48(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__48___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__48___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__49___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__49___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -32541,15 +32541,15 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__49(lean_object* x_1) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__49(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__49___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__49___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_PersistentArray_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__41___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -32562,7 +32562,7 @@ x_7 = lean_ctor_get(x_1, 0); x_8 = lean_usize_of_nat(x_4); x_9 = lean_ctor_get_usize(x_1, 4); lean_inc(x_2); -x_10 = l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42___rarg(x_2, x_7, x_8, x_9, x_3); +x_10 = l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42___rarg(x_2, x_7, x_8, x_9, x_3); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -32591,7 +32591,7 @@ lean_inc(x_14); lean_dec(x_10); x_15 = lean_ctor_get(x_1, 1); x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__48___rarg(x_1, x_2, x_15, x_16, x_14); +x_17 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__48___rarg(x_1, x_2, x_15, x_16, x_14); return x_17; } } @@ -32600,20 +32600,20 @@ else lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_1, 1); x_19 = lean_nat_sub(x_4, x_5); -x_20 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__49___rarg(x_1, x_2, x_18, x_19, x_3); +x_20 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__49___rarg(x_1, x_2, x_18, x_19, x_3); return x_20; } } } -lean_object* l_PersistentArray_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41(lean_object* x_1) { +lean_object* l_PersistentArray_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__41(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_PersistentArray_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_PersistentArray_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__41___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40___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* l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40___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: { if (lean_obj_tag(x_7) == 0) @@ -32634,13 +32634,13 @@ x_9 = lean_ctor_get(x_7, 0); lean_inc(x_9); lean_dec(x_7); lean_inc(x_4); -x_19 = l_Nat_anyAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__1(x_6, x_9, x_4, x_4); +x_19 = l_Nat_anyAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__1(x_6, x_9, x_4, x_4); lean_dec(x_4); if (x_19 == 0) { lean_object* x_20; uint8_t x_21; x_20 = lean_unsigned_to_nat(0u); -x_21 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__2(x_3, x_9, x_3, x_5, x_20); +x_21 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__2(x_3, x_9, x_3, x_5, x_20); if (x_21 == 0) { if (lean_obj_tag(x_9) == 0) @@ -32670,7 +32670,7 @@ else lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; x_26 = l_HashSet_Inhabited___closed__1; lean_inc(x_1); -x_27 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4(x_6, x_1, x_22, x_26); +x_27 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4(x_6, x_1, x_22, x_26); x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); lean_dec(x_27); @@ -32701,7 +32701,7 @@ else lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; x_32 = l_HashSet_Inhabited___closed__1; lean_inc(x_1); -x_33 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10(x_6, x_1, x_22, x_32); +x_33 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10(x_6, x_1, x_22, x_32); x_34 = lean_ctor_get(x_33, 0); lean_inc(x_34); lean_dec(x_33); @@ -32754,7 +32754,7 @@ else lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; uint8_t x_65; x_61 = l_HashSet_Inhabited___closed__1; lean_inc(x_1); -x_62 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28(x_6, x_1, x_38, x_61); +x_62 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28(x_6, x_1, x_38, x_61); x_63 = lean_ctor_get(x_62, 0); lean_inc(x_63); x_64 = lean_ctor_get(x_62, 1); @@ -32772,7 +32772,7 @@ else lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; x_66 = l_HashSet_Inhabited___closed__1; lean_inc(x_1); -x_67 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34(x_6, x_1, x_38, x_66); +x_67 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34(x_6, x_1, x_38, x_66); x_68 = lean_ctor_get(x_67, 0); lean_inc(x_68); x_69 = lean_ctor_get(x_67, 1); @@ -32811,7 +32811,7 @@ else { lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_inc(x_1); -x_45 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16(x_6, x_1, x_39, x_41); +x_45 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16(x_6, x_1, x_39, x_41); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); lean_dec(x_45); @@ -32841,7 +32841,7 @@ else { lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_inc(x_1); -x_50 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22(x_6, x_1, x_39, x_41); +x_50 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22(x_6, x_1, x_39, x_41); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); lean_dec(x_50); @@ -32940,24 +32940,24 @@ return x_17; } } } -lean_object* l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; x_9 = lean_ctor_get(x_6, 1); -x_10 = lean_alloc_closure((void*)(l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40___lambda__1___boxed), 7, 5); +x_10 = lean_alloc_closure((void*)(l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40___lambda__1___boxed), 7, 5); lean_closure_set(x_10, 0, x_1); lean_closure_set(x_10, 1, x_2); lean_closure_set(x_10, 2, x_3); lean_closure_set(x_10, 3, x_5); lean_closure_set(x_10, 4, x_4); x_11 = l_Lean_LocalDecl_index(x_8); -x_12 = l_PersistentArray_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41___rarg(x_9, x_10, x_7, x_11); +x_12 = l_PersistentArray_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__41___rarg(x_9, x_10, x_7, x_11); lean_dec(x_11); return x_12; } } -lean_object* _init_l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___closed__1() { +lean_object* _init_l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -32967,7 +32967,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -33022,12 +33022,12 @@ lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_22 = l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; +x_22 = l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; return x_22; } } } -lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__51(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__51(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; @@ -33056,7 +33056,7 @@ lean_inc(x_11); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_17 = l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50(x_1, x_2, x_3, x_13, x_11, x_11); +x_17 = l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50(x_1, x_2, x_3, x_13, x_11, x_11); lean_dec(x_11); lean_dec(x_13); if (lean_obj_tag(x_17) == 0) @@ -33112,12 +33112,12 @@ lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_24 = l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; +x_24 = l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___closed__1; return x_24; } } } -lean_object* l___private_Init_Lean_MetavarContext_10__collectDeps(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { +lean_object* l___private_Lean_MetavarContext_10__collectDeps(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -33141,7 +33141,7 @@ lean_inc(x_5); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_14 = l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__51(x_1, x_2, x_3, x_5, x_5); +x_14 = l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__51(x_1, x_2, x_3, x_5, x_5); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; @@ -33177,10 +33177,10 @@ block_12: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_inc(x_2); -x_9 = l___private_Init_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx(x_2, x_3); +x_9 = l___private_Lean_MetavarContext_9__getLocalDeclWithSmallestIdx(x_2, x_3); x_10 = lean_array_get_size(x_8); lean_inc(x_2); -x_11 = l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40(x_1, x_2, x_3, x_5, x_10, x_2, x_8, x_9); +x_11 = l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40(x_1, x_2, x_3, x_5, x_10, x_2, x_8, x_9); lean_dec(x_9); lean_dec(x_2); return x_11; @@ -33198,11 +33198,11 @@ return x_18; } } } -lean_object* l_Nat_anyAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Nat_anyAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; -x_5 = l_Nat_anyAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__1(x_1, x_2, x_3, x_4); +x_5 = l_Nat_anyAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__1(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -33210,11 +33210,11 @@ x_6 = lean_box(x_5); return x_6; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___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* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33223,11 +33223,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___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* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__3(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33236,11 +33236,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__7(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__7(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33249,11 +33249,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__8(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__8(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33262,22 +33262,22 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__6___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__6___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__6(x_1, x_2); +x_3 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__6(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__9(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__9(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33286,31 +33286,31 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__5___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__5___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__5(x_1, x_2); +x_3 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__5(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4___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___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__4(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__13(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__13(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33319,11 +33319,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__14(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__14(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33332,22 +33332,22 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__12___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__12___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__12(x_1, x_2); +x_3 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__12(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__15(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__15(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33356,31 +33356,31 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__11___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__11___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__11(x_1, x_2); +x_3 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__11(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10___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___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__10(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__19(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__19(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33389,11 +33389,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__20(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__20(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33402,22 +33402,22 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__18___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__18___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__18(x_1, x_2); +x_3 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__18(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__21(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__21(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33426,31 +33426,31 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__17___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__17___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__17(x_1, x_2); +x_3 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__17(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16___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___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__16(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__25(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__25(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33459,11 +33459,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__26___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__26___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__26(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__26(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33472,22 +33472,22 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__24___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__24___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__24(x_1, x_2); +x_3 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__24(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__27(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__27(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33496,31 +33496,31 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__23___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__23___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__23(x_1, x_2); +x_3 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__23(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22___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___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__22(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__31(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__31(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33529,11 +33529,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__32(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__32(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33542,22 +33542,22 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__30___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__30___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__30(x_1, x_2); +x_3 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__30(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__33(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__33(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33566,31 +33566,31 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__29___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__29___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__29(x_1, x_2); +x_3 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__29(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28___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___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__28(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__37___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__37___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__37(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__37(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33599,11 +33599,11 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__38___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__38___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__38(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__38(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33612,22 +33612,22 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__36___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__36___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__36(x_1, x_2); +x_3 = l_PersistentArray_anyMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__36(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__39(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__39(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -33636,76 +33636,76 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__35___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__35___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentArray_anyM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__35(x_1, x_2); +x_3 = l_PersistentArray_anyM___at___private_Lean_MetavarContext_10__collectDeps___spec__35(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_MetavarContext_8__dep___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_8__dep___main___at___private_Lean_MetavarContext_10__collectDeps___spec__34(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__44___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__44___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__44___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__44___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__45___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__45___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__45___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__45___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_PersistentArray_foldlMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__43___rarg(x_1, x_2, x_3); +x_4 = l_PersistentArray_foldlMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__43___rarg(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__46___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__46___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__46___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__46___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__47___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__47___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__47___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__47___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42___rarg___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; @@ -33713,90 +33713,90 @@ x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = lean_unbox_usize(x_4); lean_dec(x_4); -x_8 = l_PersistentArray_foldlFromMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__42___rarg(x_1, x_2, x_6, x_7, x_5); +x_8 = l_PersistentArray_foldlFromMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__42___rarg(x_1, x_2, x_6, x_7, x_5); lean_dec(x_2); return x_8; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__48___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__48___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__48___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__48___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_1); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__49___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__49___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__49___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__49___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_1); return x_6; } } -lean_object* l_PersistentArray_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentArray_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__41___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_PersistentArray_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__41___rarg(x_1, x_2, x_3, x_4); +x_5 = l_PersistentArray_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__41___rarg(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40___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) { +lean_object* l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40___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_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_5); return x_8; } } -lean_object* l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_LocalContext_foldlFromM___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__40(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_LocalContext_foldlFromM___at___private_Lean_MetavarContext_10__collectDeps___spec__40(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec(x_6); return x_9; } } -lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_4); return x_7; } } -lean_object* l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__51___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__51___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_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__51(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__51(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_10__collectDeps___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_10__collectDeps___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_4); lean_dec(x_4); -x_6 = l___private_Init_Lean_MetavarContext_10__collectDeps(x_1, x_2, x_3, x_5); +x_6 = l___private_Lean_MetavarContext_10__collectDeps(x_1, x_2, x_3, x_5); return x_6; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_MetavarContext_11__reduceLocalContext___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_MetavarContext_11__reduceLocalContext___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -33824,35 +33824,35 @@ return x_5; } } } -lean_object* l___private_Init_Lean_MetavarContext_11__reduceLocalContext(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_11__reduceLocalContext(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_array_get_size(x_2); -x_4 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_MetavarContext_11__reduceLocalContext___spec__1(x_2, x_2, x_3, lean_box(0), x_1); +x_4 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_MetavarContext_11__reduceLocalContext___spec__1(x_2, x_2, x_3, lean_box(0), x_1); return x_4; } } -lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_MetavarContext_11__reduceLocalContext___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* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_MetavarContext_11__reduceLocalContext___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Init_Lean_MetavarContext_11__reduceLocalContext___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at___private_Lean_MetavarContext_11__reduceLocalContext___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_11__reduceLocalContext___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_11__reduceLocalContext___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_MetavarContext_11__reduceLocalContext(x_1, x_2); +x_3 = l___private_Lean_MetavarContext_11__reduceLocalContext(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_MetavarContext_12__visit(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_12__visit(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -33871,7 +33871,7 @@ else lean_object* x_7; lean_object* x_8; x_7 = lean_ctor_get(x_4, 2); lean_inc(x_7); -x_8 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_7, x_2); +x_8 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_7, x_2); lean_dec(x_7); if (lean_obj_tag(x_8) == 0) { @@ -33894,7 +33894,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_ctor_get(x_10, 0); x_15 = lean_ctor_get(x_12, 2); lean_inc(x_14); -x_16 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_15, x_2, x_14); +x_16 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_15, x_2, x_14); lean_ctor_set(x_12, 2, x_16); return x_10; } @@ -33910,7 +33910,7 @@ lean_inc(x_19); lean_inc(x_18); lean_dec(x_12); lean_inc(x_17); -x_21 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_20, x_2, x_17); +x_21 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_20, x_2, x_17); x_22 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_22, 0, x_18); lean_ctor_set(x_22, 1, x_19); @@ -33943,7 +33943,7 @@ if (lean_is_exclusive(x_23)) { x_28 = lean_box(0); } lean_inc(x_24); -x_29 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_27, x_2, x_24); +x_29 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_27, x_2, x_24); if (lean_is_scalar(x_28)) { x_30 = lean_alloc_ctor(0, 3, 0); } else { @@ -33998,17 +33998,17 @@ return x_37; } } } -lean_object* l___private_Init_Lean_MetavarContext_12__visit___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_12__visit___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_3); lean_dec(x_3); -x_6 = l___private_Init_Lean_MetavarContext_12__visit(x_1, x_2, x_5, x_4); +x_6 = l___private_Lean_MetavarContext_12__visit(x_1, x_2, x_5, x_4); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_13__getMCtx___rarg(lean_object* x_1) { +lean_object* l___private_Lean_MetavarContext_13__getMCtx___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -34020,25 +34020,25 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l___private_Init_Lean_MetavarContext_13__getMCtx(uint8_t x_1) { +lean_object* l___private_Lean_MetavarContext_13__getMCtx(uint8_t x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_MetavarContext_13__getMCtx___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_MetavarContext_13__getMCtx___rarg), 1, 0); return x_2; } } -lean_object* l___private_Init_Lean_MetavarContext_13__getMCtx___boxed(lean_object* x_1) { +lean_object* l___private_Lean_MetavarContext_13__getMCtx___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; x_2 = lean_unbox(x_1); lean_dec(x_1); -x_3 = l___private_Init_Lean_MetavarContext_13__getMCtx(x_2); +x_3 = l___private_Lean_MetavarContext_13__getMCtx(x_2); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_14__getInScope___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_14__getInScope___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -34079,36 +34079,36 @@ goto _start; } } } -lean_object* l___private_Init_Lean_MetavarContext_14__getInScope(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_14__getInScope(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; x_3 = lean_unsigned_to_nat(0u); x_4 = l_Array_empty___closed__1; -x_5 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_14__getInScope___spec__1(x_1, x_2, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_14__getInScope___spec__1(x_1, x_2, x_2, x_3, x_4); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_14__getInScope___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* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_14__getInScope___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_14__getInScope___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_14__getInScope___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_14__getInScope___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_MetavarContext_14__getInScope___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_MetavarContext_14__getInScope(x_1, x_2); +x_3 = l___private_Lean_MetavarContext_14__getInScope(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_MetavarContext_15__withFreshCache___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +lean_object* l___private_Lean_MetavarContext_15__withFreshCache___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -34303,25 +34303,25 @@ return x_45; } } } -lean_object* l___private_Init_Lean_MetavarContext_15__withFreshCache(lean_object* x_1) { +lean_object* l___private_Lean_MetavarContext_15__withFreshCache(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_MetavarContext_15__withFreshCache___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_MetavarContext_15__withFreshCache___rarg___boxed), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_MetavarContext_15__withFreshCache___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_MetavarContext_15__withFreshCache___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Lean_MetavarContext_15__withFreshCache___rarg(x_1, x_4, x_3); +x_5 = l___private_Lean_MetavarContext_15__withFreshCache___rarg(x_1, x_4, x_3); return x_5; } } -lean_object* l___private_Init_Lean_MetavarContext_16__abstractRangeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_16__abstractRangeAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; @@ -34380,19 +34380,19 @@ return x_19; } } } -lean_object* l___private_Init_Lean_MetavarContext_16__abstractRangeAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_16__abstractRangeAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_5); lean_dec(x_5); -x_8 = l___private_Init_Lean_MetavarContext_16__abstractRangeAux(x_1, x_2, x_3, x_4, x_7, x_6); +x_8 = l___private_Lean_MetavarContext_16__abstractRangeAux(x_1, x_2, x_3, x_4, x_7, x_6); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* l_Nat_foldRevMAux___main___at___private_Init_Lean_MetavarContext_17__mkAuxMVarType___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8) { +lean_object* l_Nat_foldRevMAux___main___at___private_Lean_MetavarContext_17__mkAuxMVarType___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8) { _start: { lean_object* x_9; uint8_t x_10; @@ -34602,7 +34602,7 @@ return x_59; } } } -lean_object* l___private_Init_Lean_MetavarContext_17__mkAuxMVarType(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { +lean_object* l___private_Lean_MetavarContext_17__mkAuxMVarType(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -34620,7 +34620,7 @@ lean_inc(x_12); lean_dec(x_10); x_13 = lean_expr_abstract_range(x_11, x_8, x_3); lean_dec(x_11); -x_14 = l_Nat_foldRevMAux___main___at___private_Init_Lean_MetavarContext_17__mkAuxMVarType___spec__1(x_1, x_2, x_3, x_4, x_8, x_13, x_6, x_12); +x_14 = l_Nat_foldRevMAux___main___at___private_Lean_MetavarContext_17__mkAuxMVarType___spec__1(x_1, x_2, x_3, x_4, x_8, x_13, x_6, x_12); return x_14; } else @@ -34650,7 +34650,7 @@ return x_18; } } } -lean_object* l_Nat_foldRevMAux___main___at___private_Init_Lean_MetavarContext_17__mkAuxMVarType___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* l_Nat_foldRevMAux___main___at___private_Lean_MetavarContext_17__mkAuxMVarType___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; lean_object* x_11; @@ -34658,12 +34658,12 @@ x_9 = lean_unbox(x_4); lean_dec(x_4); x_10 = lean_unbox(x_7); lean_dec(x_7); -x_11 = l_Nat_foldRevMAux___main___at___private_Init_Lean_MetavarContext_17__mkAuxMVarType___spec__1(x_1, x_2, x_3, x_9, x_5, x_6, x_10, x_8); +x_11 = l_Nat_foldRevMAux___main___at___private_Lean_MetavarContext_17__mkAuxMVarType___spec__1(x_1, x_2, x_3, x_9, x_5, x_6, x_10, x_8); lean_dec(x_3); return x_11; } } -lean_object* l___private_Init_Lean_MetavarContext_17__mkAuxMVarType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_MetavarContext_17__mkAuxMVarType___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -34671,12 +34671,12 @@ x_8 = lean_unbox(x_4); lean_dec(x_4); x_9 = lean_unbox(x_6); lean_dec(x_6); -x_10 = l___private_Init_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_2, x_3, x_8, x_5, x_9, x_7); +x_10 = l___private_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_2, x_3, x_8, x_5, x_9, x_7); lean_dec(x_3); return x_10; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -34739,39 +34739,39 @@ goto _start; } } } -lean_object* l___private_Init_Lean_MetavarContext_18__mkMVarApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { +lean_object* l___private_Lean_MetavarContext_18__mkMVarApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { _start: { lean_object* x_5; lean_object* x_6; x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_1, x_3, x_4, x_3, x_5, x_2); +x_6 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_1, x_3, x_4, x_3, x_5, x_2); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___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: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_3); lean_dec(x_3); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_1, x_2, x_7, x_4, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_1, x_2, x_7, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_2); return x_8; } } -lean_object* l___private_Init_Lean_MetavarContext_18__mkMVarApp___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_18__mkMVarApp___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_4); lean_dec(x_4); -x_6 = l___private_Init_Lean_MetavarContext_18__mkMVarApp(x_1, x_2, x_3, x_5); +x_6 = l___private_Lean_MetavarContext_18__mkMVarApp(x_1, x_2, x_3, x_5); lean_dec(x_3); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_19__mkAuxMVar(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_19__mkAuxMVar(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6) { _start: { uint8_t x_7; @@ -34881,7 +34881,7 @@ return x_42; } } } -lean_object* l___private_Init_Lean_MetavarContext_19__mkAuxMVar___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_19__mkAuxMVar___boxed(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; uint8_t x_8; lean_object* x_9; @@ -34889,11 +34889,11 @@ x_7 = lean_unbox(x_4); lean_dec(x_4); x_8 = lean_unbox(x_5); lean_dec(x_5); -x_9 = l___private_Init_Lean_MetavarContext_19__mkAuxMVar(x_1, x_2, x_3, x_7, x_8, x_6); +x_9 = l___private_Lean_MetavarContext_19__mkAuxMVar(x_1, x_2, x_3, x_7, x_8, x_6); return x_9; } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_20__anyDependsOn___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_20__anyDependsOn___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; @@ -34932,22 +34932,22 @@ return x_11; } } } -uint8_t l___private_Init_Lean_MetavarContext_20__anyDependsOn(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +uint8_t l___private_Lean_MetavarContext_20__anyDependsOn(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; x_4 = lean_array_get_size(x_2); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_20__anyDependsOn___spec__1(x_1, x_2, x_3, x_2, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_20__anyDependsOn___spec__1(x_1, x_2, x_3, x_2, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_20__anyDependsOn___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_20__anyDependsOn___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: { uint8_t x_7; lean_object* x_8; -x_7 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_20__anyDependsOn___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_20__anyDependsOn___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); @@ -34956,18 +34956,18 @@ x_8 = lean_box(x_7); return x_8; } } -lean_object* l___private_Init_Lean_MetavarContext_20__anyDependsOn___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_MetavarContext_20__anyDependsOn___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_MetavarContext_20__anyDependsOn(x_1, x_2, x_3); +x_4 = l___private_Lean_MetavarContext_20__anyDependsOn(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); x_5 = lean_box(x_4); return x_5; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -35010,7 +35010,7 @@ else lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_5, 2); lean_inc(x_20); -x_21 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); +x_21 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -35033,7 +35033,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_27 = lean_ctor_get(x_24, 2); lean_inc(x_25); -x_28 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); +x_28 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); lean_ctor_set(x_24, 2, x_28); x_29 = lean_unsigned_to_nat(1u); x_30 = lean_nat_add(x_2, x_29); @@ -35056,7 +35056,7 @@ lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); lean_inc(x_25); -x_37 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); +x_37 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); x_38 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_38, 0, x_34); lean_ctor_set(x_38, 1, x_35); @@ -35119,7 +35119,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -35162,7 +35162,7 @@ else lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_5, 2); lean_inc(x_20); -x_21 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); +x_21 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -35185,7 +35185,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_27 = lean_ctor_get(x_24, 2); lean_inc(x_25); -x_28 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); +x_28 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); lean_ctor_set(x_24, 2, x_28); x_29 = lean_unsigned_to_nat(1u); x_30 = lean_nat_add(x_2, x_29); @@ -35208,7 +35208,7 @@ lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); lean_inc(x_25); -x_37 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); +x_37 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); x_38 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_38, 0, x_34); lean_ctor_set(x_38, 1, x_35); @@ -35271,7 +35271,7 @@ goto _start; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3(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; @@ -35309,7 +35309,7 @@ return x_14; } } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -35330,7 +35330,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_array_fget(x_2, x_3); x_9 = lean_array_get_size(x_1); x_10 = lean_unsigned_to_nat(0u); -x_11 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3(x_1, x_8, x_1, x_9, x_10); +x_11 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3(x_1, x_8, x_1, x_9, x_10); lean_dec(x_9); lean_dec(x_8); if (x_11 == 0) @@ -35376,7 +35376,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -35419,7 +35419,7 @@ else lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_5, 2); lean_inc(x_20); -x_21 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); +x_21 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -35442,7 +35442,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_27 = lean_ctor_get(x_24, 2); lean_inc(x_25); -x_28 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); +x_28 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); lean_ctor_set(x_24, 2, x_28); x_29 = lean_unsigned_to_nat(1u); x_30 = lean_nat_add(x_2, x_29); @@ -35465,7 +35465,7 @@ lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); lean_inc(x_25); -x_37 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); +x_37 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); x_38 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_38, 0, x_34); lean_ctor_set(x_38, 1, x_35); @@ -35528,7 +35528,7 @@ goto _start; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6(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; @@ -35566,7 +35566,7 @@ return x_14; } } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -35587,7 +35587,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_array_fget(x_2, x_3); x_9 = lean_array_get_size(x_1); x_10 = lean_unsigned_to_nat(0u); -x_11 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6(x_1, x_8, x_1, x_9, x_10); +x_11 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6(x_1, x_8, x_1, x_9, x_10); lean_dec(x_9); lean_dec(x_8); if (x_11 == 0) @@ -35633,7 +35633,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -35676,7 +35676,7 @@ else lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_5, 2); lean_inc(x_20); -x_21 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); +x_21 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -35699,7 +35699,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_27 = lean_ctor_get(x_24, 2); lean_inc(x_25); -x_28 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); +x_28 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); lean_ctor_set(x_24, 2, x_28); x_29 = lean_unsigned_to_nat(1u); x_30 = lean_nat_add(x_2, x_29); @@ -35722,7 +35722,7 @@ lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); lean_inc(x_25); -x_37 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); +x_37 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); x_38 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_38, 0, x_34); lean_ctor_set(x_38, 1, x_35); @@ -35785,7 +35785,7 @@ goto _start; } } } -uint8_t l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9(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; @@ -35823,7 +35823,7 @@ return x_14; } } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -35844,7 +35844,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_array_fget(x_2, x_3); x_9 = lean_array_get_size(x_1); x_10 = lean_unsigned_to_nat(0u); -x_11 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9(x_1, x_8, x_1, x_9, x_10); +x_11 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9(x_1, x_8, x_1, x_9, x_10); lean_dec(x_9); lean_dec(x_8); if (x_11 == 0) @@ -35890,7 +35890,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -35933,7 +35933,7 @@ else lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_5, 2); lean_inc(x_20); -x_21 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); +x_21 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -35956,7 +35956,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_27 = lean_ctor_get(x_24, 2); lean_inc(x_25); -x_28 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); +x_28 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); lean_ctor_set(x_24, 2, x_28); x_29 = lean_unsigned_to_nat(1u); x_30 = lean_nat_add(x_2, x_29); @@ -35979,7 +35979,7 @@ lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); lean_inc(x_25); -x_37 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); +x_37 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); x_38 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_38, 0, x_34); lean_ctor_set(x_38, 1, x_35); @@ -36042,7 +36042,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -36085,7 +36085,7 @@ else lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_5, 2); lean_inc(x_20); -x_21 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); +x_21 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -36108,7 +36108,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_27 = lean_ctor_get(x_24, 2); lean_inc(x_25); -x_28 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); +x_28 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); lean_ctor_set(x_24, 2, x_28); x_29 = lean_unsigned_to_nat(1u); x_30 = lean_nat_add(x_2, x_29); @@ -36131,7 +36131,7 @@ lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); lean_inc(x_25); -x_37 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); +x_37 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); x_38 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_38, 0, x_34); lean_ctor_set(x_38, 1, x_35); @@ -36194,7 +36194,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -36237,7 +36237,7 @@ else lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_5, 2); lean_inc(x_20); -x_21 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); +x_21 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -36260,7 +36260,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_27 = lean_ctor_get(x_24, 2); lean_inc(x_25); -x_28 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); +x_28 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); lean_ctor_set(x_24, 2, x_28); x_29 = lean_unsigned_to_nat(1u); x_30 = lean_nat_add(x_2, x_29); @@ -36283,7 +36283,7 @@ lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); lean_inc(x_25); -x_37 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); +x_37 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); x_38 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_38, 0, x_34); lean_ctor_set(x_38, 1, x_35); @@ -36346,7 +36346,7 @@ goto _start; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -36389,7 +36389,7 @@ else lean_object* x_20; lean_object* x_21; x_20 = lean_ctor_get(x_5, 2); lean_inc(x_20); -x_21 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); +x_21 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_20, x_13); lean_dec(x_20); if (lean_obj_tag(x_21) == 0) { @@ -36412,7 +36412,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_27 = lean_ctor_get(x_24, 2); lean_inc(x_25); -x_28 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); +x_28 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_27, x_13, x_25); lean_ctor_set(x_24, 2, x_28); x_29 = lean_unsigned_to_nat(1u); x_30 = lean_nat_add(x_2, x_29); @@ -36435,7 +36435,7 @@ lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); lean_inc(x_25); -x_37 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); +x_37 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_36, x_13, x_25); x_38 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_38, 0, x_34); lean_ctor_set(x_38, 1, x_35); @@ -36498,7 +36498,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_21__elimMVarDepsApp___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6) { _start: { lean_object* x_7; @@ -36520,7 +36520,7 @@ x_52 = l_Lean_MetavarContext_getDecl(x_50, x_49); x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); lean_inc(x_53); -x_54 = l___private_Init_Lean_MetavarContext_14__getInScope(x_53, x_2); +x_54 = l___private_Lean_MetavarContext_14__getInScope(x_53, x_2); x_55 = lean_array_get_size(x_54); x_56 = lean_unsigned_to_nat(0u); x_57 = lean_nat_dec_eq(x_55, x_56); @@ -36551,7 +36551,7 @@ if (x_60 == 0) lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; x_62 = x_4; lean_inc(x_1); -x_63 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2___boxed), 5, 3); +x_63 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2___boxed), 5, 3); lean_closure_set(x_63, 0, x_1); lean_closure_set(x_63, 1, x_56); lean_closure_set(x_63, 2, x_62); @@ -36568,7 +36568,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; x_68 = lean_ctor_get(x_66, 0); x_69 = lean_ctor_get(x_66, 1); lean_inc(x_53); -x_70 = l___private_Init_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); +x_70 = l___private_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); if (lean_obj_tag(x_70) == 0) { lean_object* x_71; @@ -36593,15 +36593,15 @@ x_72 = lean_ctor_get(x_70, 0); lean_inc(x_72); lean_dec(x_70); lean_inc(x_53); -x_73 = l___private_Init_Lean_MetavarContext_11__reduceLocalContext(x_53, x_72); +x_73 = l___private_Lean_MetavarContext_11__reduceLocalContext(x_53, x_72); x_74 = lean_ctor_get(x_52, 4); lean_inc(x_74); -x_75 = l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(x_72, x_74, x_56, x_56); +x_75 = l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(x_72, x_74, x_56, x_56); x_76 = lean_ctor_get(x_52, 2); lean_inc(x_76); lean_dec(x_52); lean_inc(x_53); -x_77 = l___private_Init_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_72, x_61, x_76, x_5, x_69); +x_77 = l___private_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_72, x_61, x_76, x_5, x_69); if (lean_obj_tag(x_77) == 0) { lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; @@ -36610,7 +36610,7 @@ lean_inc(x_78); x_79 = lean_ctor_get(x_77, 1); lean_inc(x_79); lean_dec(x_77); -x_80 = l___private_Init_Lean_MetavarContext_19__mkAuxMVar(x_73, x_75, x_78, x_61, x_5, x_79); +x_80 = l___private_Lean_MetavarContext_19__mkAuxMVar(x_73, x_75, x_78, x_61, x_5, x_79); x_81 = !lean_is_exclusive(x_80); if (x_81 == 0) { @@ -36620,7 +36620,7 @@ x_83 = lean_ctor_get(x_80, 1); lean_inc(x_82); x_84 = l_Lean_mkMVar(x_82); lean_inc(x_53); -x_85 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_72, x_61, x_72, x_56, x_84); +x_85 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_72, x_61, x_72, x_56, x_84); lean_inc(x_85); x_86 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_68, x_68, x_56, x_85); lean_dec(x_68); @@ -36716,7 +36716,7 @@ lean_dec(x_80); lean_inc(x_110); x_112 = l_Lean_mkMVar(x_110); lean_inc(x_53); -x_113 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_72, x_61, x_72, x_56, x_112); +x_113 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_72, x_61, x_72, x_56, x_112); lean_inc(x_113); x_114 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_68, x_68, x_56, x_113); lean_dec(x_68); @@ -36837,7 +36837,7 @@ lean_inc(x_138); lean_inc(x_137); lean_dec(x_66); lean_inc(x_53); -x_139 = l___private_Init_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); +x_139 = l___private_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); if (lean_obj_tag(x_139) == 0) { lean_object* x_140; lean_object* x_141; @@ -36862,15 +36862,15 @@ x_142 = lean_ctor_get(x_139, 0); lean_inc(x_142); lean_dec(x_139); lean_inc(x_53); -x_143 = l___private_Init_Lean_MetavarContext_11__reduceLocalContext(x_53, x_142); +x_143 = l___private_Lean_MetavarContext_11__reduceLocalContext(x_53, x_142); x_144 = lean_ctor_get(x_52, 4); lean_inc(x_144); -x_145 = l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(x_142, x_144, x_56, x_56); +x_145 = l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(x_142, x_144, x_56, x_56); x_146 = lean_ctor_get(x_52, 2); lean_inc(x_146); lean_dec(x_52); lean_inc(x_53); -x_147 = l___private_Init_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_142, x_61, x_146, x_5, x_138); +x_147 = l___private_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_142, x_61, x_146, x_5, x_138); if (lean_obj_tag(x_147) == 0) { lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; @@ -36879,7 +36879,7 @@ lean_inc(x_148); x_149 = lean_ctor_get(x_147, 1); lean_inc(x_149); lean_dec(x_147); -x_150 = l___private_Init_Lean_MetavarContext_19__mkAuxMVar(x_143, x_145, x_148, x_61, x_5, x_149); +x_150 = l___private_Lean_MetavarContext_19__mkAuxMVar(x_143, x_145, x_148, x_61, x_5, x_149); x_151 = lean_ctor_get(x_150, 0); lean_inc(x_151); x_152 = lean_ctor_get(x_150, 1); @@ -36895,7 +36895,7 @@ if (lean_is_exclusive(x_150)) { lean_inc(x_151); x_154 = l_Lean_mkMVar(x_151); lean_inc(x_53); -x_155 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_142, x_61, x_142, x_56, x_154); +x_155 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_142, x_61, x_142, x_56, x_154); lean_inc(x_155); x_156 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_137, x_137, x_56, x_155); lean_dec(x_137); @@ -37058,7 +37058,7 @@ if (lean_obj_tag(x_183) == 0) lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; x_184 = x_4; lean_inc(x_1); -x_185 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5___boxed), 5, 3); +x_185 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5___boxed), 5, 3); lean_closure_set(x_185, 0, x_1); lean_closure_set(x_185, 1, x_56); lean_closure_set(x_185, 2, x_184); @@ -37075,7 +37075,7 @@ lean_object* x_190; lean_object* x_191; lean_object* x_192; x_190 = lean_ctor_get(x_188, 0); x_191 = lean_ctor_get(x_188, 1); lean_inc(x_53); -x_192 = l___private_Init_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); +x_192 = l___private_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); if (lean_obj_tag(x_192) == 0) { lean_object* x_193; @@ -37100,15 +37100,15 @@ x_194 = lean_ctor_get(x_192, 0); lean_inc(x_194); lean_dec(x_192); lean_inc(x_53); -x_195 = l___private_Init_Lean_MetavarContext_11__reduceLocalContext(x_53, x_194); +x_195 = l___private_Lean_MetavarContext_11__reduceLocalContext(x_53, x_194); x_196 = lean_ctor_get(x_52, 4); lean_inc(x_196); -x_197 = l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(x_194, x_196, x_56, x_56); +x_197 = l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(x_194, x_196, x_56, x_56); x_198 = lean_ctor_get(x_52, 2); lean_inc(x_198); lean_dec(x_52); lean_inc(x_53); -x_199 = l___private_Init_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_194, x_61, x_198, x_5, x_191); +x_199 = l___private_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_194, x_61, x_198, x_5, x_191); if (lean_obj_tag(x_199) == 0) { lean_object* x_200; lean_object* x_201; lean_object* x_202; uint8_t x_203; @@ -37117,7 +37117,7 @@ lean_inc(x_200); x_201 = lean_ctor_get(x_199, 1); lean_inc(x_201); lean_dec(x_199); -x_202 = l___private_Init_Lean_MetavarContext_19__mkAuxMVar(x_195, x_197, x_200, x_61, x_5, x_201); +x_202 = l___private_Lean_MetavarContext_19__mkAuxMVar(x_195, x_197, x_200, x_61, x_5, x_201); x_203 = !lean_is_exclusive(x_202); if (x_203 == 0) { @@ -37127,7 +37127,7 @@ x_205 = lean_ctor_get(x_202, 1); lean_inc(x_204); x_206 = l_Lean_mkMVar(x_204); lean_inc(x_53); -x_207 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_194, x_61, x_194, x_56, x_206); +x_207 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_194, x_61, x_194, x_56, x_206); lean_inc(x_207); x_208 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_190, x_190, x_56, x_207); lean_dec(x_190); @@ -37223,7 +37223,7 @@ lean_dec(x_202); lean_inc(x_232); x_234 = l_Lean_mkMVar(x_232); lean_inc(x_53); -x_235 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_194, x_61, x_194, x_56, x_234); +x_235 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_194, x_61, x_194, x_56, x_234); lean_inc(x_235); x_236 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_190, x_190, x_56, x_235); lean_dec(x_190); @@ -37344,7 +37344,7 @@ lean_inc(x_260); lean_inc(x_259); lean_dec(x_188); lean_inc(x_53); -x_261 = l___private_Init_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); +x_261 = l___private_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); if (lean_obj_tag(x_261) == 0) { lean_object* x_262; lean_object* x_263; @@ -37369,15 +37369,15 @@ x_264 = lean_ctor_get(x_261, 0); lean_inc(x_264); lean_dec(x_261); lean_inc(x_53); -x_265 = l___private_Init_Lean_MetavarContext_11__reduceLocalContext(x_53, x_264); +x_265 = l___private_Lean_MetavarContext_11__reduceLocalContext(x_53, x_264); x_266 = lean_ctor_get(x_52, 4); lean_inc(x_266); -x_267 = l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(x_264, x_266, x_56, x_56); +x_267 = l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(x_264, x_266, x_56, x_56); x_268 = lean_ctor_get(x_52, 2); lean_inc(x_268); lean_dec(x_52); lean_inc(x_53); -x_269 = l___private_Init_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_264, x_61, x_268, x_5, x_260); +x_269 = l___private_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_264, x_61, x_268, x_5, x_260); if (lean_obj_tag(x_269) == 0) { 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; @@ -37386,7 +37386,7 @@ lean_inc(x_270); x_271 = lean_ctor_get(x_269, 1); lean_inc(x_271); lean_dec(x_269); -x_272 = l___private_Init_Lean_MetavarContext_19__mkAuxMVar(x_265, x_267, x_270, x_61, x_5, x_271); +x_272 = l___private_Lean_MetavarContext_19__mkAuxMVar(x_265, x_267, x_270, x_61, x_5, x_271); x_273 = lean_ctor_get(x_272, 0); lean_inc(x_273); x_274 = lean_ctor_get(x_272, 1); @@ -37402,7 +37402,7 @@ if (lean_is_exclusive(x_272)) { lean_inc(x_273); x_276 = l_Lean_mkMVar(x_273); lean_inc(x_53); -x_277 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_264, x_61, x_264, x_56, x_276); +x_277 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_264, x_61, x_264, x_56, x_276); lean_inc(x_277); x_278 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_259, x_259, x_56, x_277); lean_dec(x_259); @@ -37565,7 +37565,7 @@ lean_inc(x_306); lean_dec(x_305); x_307 = x_4; lean_inc(x_1); -x_308 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8___boxed), 5, 3); +x_308 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8___boxed), 5, 3); lean_closure_set(x_308, 0, x_1); lean_closure_set(x_308, 1, x_56); lean_closure_set(x_308, 2, x_307); @@ -37582,7 +37582,7 @@ lean_object* x_313; lean_object* x_314; lean_object* x_315; x_313 = lean_ctor_get(x_311, 0); x_314 = lean_ctor_get(x_311, 1); lean_inc(x_53); -x_315 = l___private_Init_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); +x_315 = l___private_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); if (lean_obj_tag(x_315) == 0) { lean_object* x_316; @@ -37608,15 +37608,15 @@ x_317 = lean_ctor_get(x_315, 0); lean_inc(x_317); lean_dec(x_315); lean_inc(x_53); -x_318 = l___private_Init_Lean_MetavarContext_11__reduceLocalContext(x_53, x_317); +x_318 = l___private_Lean_MetavarContext_11__reduceLocalContext(x_53, x_317); x_319 = lean_ctor_get(x_52, 4); lean_inc(x_319); -x_320 = l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(x_317, x_319, x_56, x_56); +x_320 = l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(x_317, x_319, x_56, x_56); x_321 = lean_ctor_get(x_52, 2); lean_inc(x_321); lean_dec(x_52); lean_inc(x_53); -x_322 = l___private_Init_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_317, x_61, x_321, x_5, x_314); +x_322 = l___private_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_317, x_61, x_321, x_5, x_314); if (lean_obj_tag(x_322) == 0) { lean_object* x_323; lean_object* x_324; lean_object* x_325; uint8_t x_326; @@ -37625,7 +37625,7 @@ lean_inc(x_323); x_324 = lean_ctor_get(x_322, 1); lean_inc(x_324); lean_dec(x_322); -x_325 = l___private_Init_Lean_MetavarContext_19__mkAuxMVar(x_318, x_320, x_323, x_61, x_5, x_324); +x_325 = l___private_Lean_MetavarContext_19__mkAuxMVar(x_318, x_320, x_323, x_61, x_5, x_324); x_326 = !lean_is_exclusive(x_325); if (x_326 == 0) { @@ -37635,7 +37635,7 @@ x_328 = lean_ctor_get(x_325, 1); lean_inc(x_327); x_329 = l_Lean_mkMVar(x_327); lean_inc(x_53); -x_330 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_317, x_61, x_317, x_56, x_329); +x_330 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_317, x_61, x_317, x_56, x_329); lean_inc(x_330); x_331 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_313, x_313, x_56, x_330); lean_dec(x_313); @@ -37732,7 +37732,7 @@ lean_dec(x_325); lean_inc(x_353); x_355 = l_Lean_mkMVar(x_353); lean_inc(x_53); -x_356 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_317, x_61, x_317, x_56, x_355); +x_356 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_317, x_61, x_317, x_56, x_355); lean_inc(x_356); x_357 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_313, x_313, x_56, x_356); lean_dec(x_313); @@ -37855,7 +37855,7 @@ lean_inc(x_380); lean_inc(x_379); lean_dec(x_311); lean_inc(x_53); -x_381 = l___private_Init_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); +x_381 = l___private_Lean_MetavarContext_10__collectDeps(x_50, x_53, x_54, x_5); if (lean_obj_tag(x_381) == 0) { lean_object* x_382; lean_object* x_383; @@ -37881,15 +37881,15 @@ x_384 = lean_ctor_get(x_381, 0); lean_inc(x_384); lean_dec(x_381); lean_inc(x_53); -x_385 = l___private_Init_Lean_MetavarContext_11__reduceLocalContext(x_53, x_384); +x_385 = l___private_Lean_MetavarContext_11__reduceLocalContext(x_53, x_384); x_386 = lean_ctor_get(x_52, 4); lean_inc(x_386); -x_387 = l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(x_384, x_386, x_56, x_56); +x_387 = l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(x_384, x_386, x_56, x_56); x_388 = lean_ctor_get(x_52, 2); lean_inc(x_388); lean_dec(x_52); lean_inc(x_53); -x_389 = l___private_Init_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_384, x_61, x_388, x_5, x_380); +x_389 = l___private_Lean_MetavarContext_17__mkAuxMVarType(x_1, x_53, x_384, x_61, x_388, x_5, x_380); if (lean_obj_tag(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; @@ -37898,7 +37898,7 @@ lean_inc(x_390); x_391 = lean_ctor_get(x_389, 1); lean_inc(x_391); lean_dec(x_389); -x_392 = l___private_Init_Lean_MetavarContext_19__mkAuxMVar(x_385, x_387, x_390, x_61, x_5, x_391); +x_392 = l___private_Lean_MetavarContext_19__mkAuxMVar(x_385, x_387, x_390, x_61, x_5, x_391); x_393 = lean_ctor_get(x_392, 0); lean_inc(x_393); x_394 = lean_ctor_get(x_392, 1); @@ -37914,7 +37914,7 @@ if (lean_is_exclusive(x_392)) { lean_inc(x_393); x_396 = l_Lean_mkMVar(x_393); lean_inc(x_53); -x_397 = l_Array_iterateMAux___main___at___private_Init_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_384, x_61, x_384, x_56, x_396); +x_397 = l_Array_iterateMAux___main___at___private_Lean_MetavarContext_18__mkMVarApp___spec__1(x_53, x_384, x_61, x_384, x_56, x_396); lean_inc(x_397); x_398 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_379, x_379, x_56, x_397); lean_dec(x_379); @@ -38093,7 +38093,7 @@ else { lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; x_429 = x_4; -x_430 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11___boxed), 5, 3); +x_430 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11___boxed), 5, 3); lean_closure_set(x_430, 0, x_1); lean_closure_set(x_430, 1, x_56); lean_closure_set(x_430, 2, x_429); @@ -38159,7 +38159,7 @@ else lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; x_445 = x_4; lean_inc(x_1); -x_446 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12___boxed), 5, 3); +x_446 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12___boxed), 5, 3); lean_closure_set(x_446, 0, x_1); lean_closure_set(x_446, 1, x_56); lean_closure_set(x_446, 2, x_445); @@ -38233,7 +38233,7 @@ else lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; x_464 = x_4; x_465 = lean_unsigned_to_nat(0u); -x_466 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13___boxed), 5, 3); +x_466 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13___boxed), 5, 3); lean_closure_set(x_466, 0, x_1); lean_closure_set(x_466, 1, x_465); lean_closure_set(x_466, 2, x_464); @@ -38301,7 +38301,7 @@ lean_dec(x_3); x_481 = x_4; x_482 = lean_unsigned_to_nat(0u); lean_inc(x_1); -x_483 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14___boxed), 5, 3); +x_483 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14___boxed), 5, 3); lean_closure_set(x_483, 0, x_1); lean_closure_set(x_483, 1, x_482); lean_closure_set(x_483, 2, x_481); @@ -38374,7 +38374,7 @@ else lean_object* x_29; lean_object* x_30; x_29 = lean_ctor_get(x_6, 2); lean_inc(x_29); -x_30 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_29, x_3); +x_30 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_29, x_3); lean_dec(x_29); if (lean_obj_tag(x_30) == 0) { @@ -38397,7 +38397,7 @@ if (x_35 == 0) lean_object* x_36; lean_object* x_37; x_36 = lean_ctor_get(x_33, 2); lean_inc(x_34); -x_37 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_36, x_3, x_34); +x_37 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_36, x_3, x_34); lean_ctor_set(x_33, 2, x_37); x_8 = x_34; x_9 = x_33; @@ -38414,7 +38414,7 @@ lean_inc(x_39); lean_inc(x_38); lean_dec(x_33); lean_inc(x_34); -x_41 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_40, x_3, x_34); +x_41 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_40, x_3, x_34); x_42 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_42, 0, x_38); lean_ctor_set(x_42, 1, x_39); @@ -38467,7 +38467,7 @@ block_27: lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_10 = x_4; x_11 = lean_unsigned_to_nat(0u); -x_12 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1___boxed), 5, 3); +x_12 = lean_alloc_closure((void*)(l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1___boxed), 5, 3); lean_closure_set(x_12, 0, x_1); lean_closure_set(x_12, 1, x_11); lean_closure_set(x_12, 2, x_10); @@ -38530,31 +38530,31 @@ return x_26; } } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___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* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_4); lean_dec(x_4); -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1(x_1, x_2, x_3, x_6, x_5); +x_7 = l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__1(x_1, x_2, x_3, x_6, x_5); return x_7; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___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* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_4); lean_dec(x_4); -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2(x_1, x_2, x_3, x_6, x_5); +x_7 = l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__2(x_1, x_2, x_3, x_6, x_5); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___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* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__3(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -38563,30 +38563,30 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4___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_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(x_1, x_2, x_3, x_4); +x_5 = l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__4(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___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* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___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 = lean_unbox(x_4); lean_dec(x_4); -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5(x_1, x_2, x_3, x_6, x_5); +x_7 = l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__5(x_1, x_2, x_3, x_6, x_5); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__6(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -38595,30 +38595,30 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(x_1, x_2, x_3, x_4); +x_5 = l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__7(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_4); lean_dec(x_4); -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8(x_1, x_2, x_3, x_6, x_5); +x_7 = l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__8(x_1, x_2, x_3, x_6, x_5); return x_7; } } -lean_object* l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; -x_6 = l_Array_anyRangeMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_anyRangeMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__9(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); @@ -38627,86 +38627,86 @@ x_7 = lean_box(x_6); return x_7; } } -lean_object* l_Array_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10___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_filterAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(x_1, x_2, x_3, x_4); +x_5 = l_Array_filterAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__10(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_4); lean_dec(x_4); -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11(x_1, x_2, x_3, x_6, x_5); +x_7 = l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__11(x_1, x_2, x_3, x_6, x_5); return x_7; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_4); lean_dec(x_4); -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12(x_1, x_2, x_3, x_6, x_5); +x_7 = l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__12(x_1, x_2, x_3, x_6, x_5); return x_7; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_4); lean_dec(x_4); -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13(x_1, x_2, x_3, x_6, x_5); +x_7 = l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__13(x_1, x_2, x_3, x_6, x_5); return x_7; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_4); lean_dec(x_4); -x_7 = l_Array_umapMAux___main___at___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14(x_1, x_2, x_3, x_6, x_5); +x_7 = l_Array_umapMAux___main___at___private_Lean_MetavarContext_21__elimMVarDepsApp___main___spec__14(x_1, x_2, x_3, x_6, x_5); return x_7; } } -lean_object* l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_21__elimMVarDepsApp___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_5); lean_dec(x_5); -x_8 = l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main(x_1, x_2, x_3, x_4, x_7, x_6); +x_8 = l___private_Lean_MetavarContext_21__elimMVarDepsApp___main(x_1, x_2, x_3, x_4, x_7, x_6); lean_dec(x_2); return x_8; } } -lean_object* l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_21__elimMVarDepsApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_MetavarContext_21__elimMVarDepsApp___main(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_MetavarContext_21__elimMVarDepsApp___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_5); lean_dec(x_5); -x_8 = l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp(x_1, x_2, x_3, x_4, x_7, x_6); +x_8 = l___private_Lean_MetavarContext_21__elimMVarDepsApp(x_1, x_2, x_3, x_4, x_7, x_6); lean_dec(x_2); return x_8; } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6) { +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_2) == 5) @@ -38731,15 +38731,15 @@ else lean_object* x_13; lean_object* x_14; lean_dec(x_4); lean_inc(x_1); -x_13 = lean_alloc_closure((void*)(l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___boxed), 4, 1); +x_13 = lean_alloc_closure((void*)(l___private_Lean_MetavarContext_22__elimMVarDepsAux___main___boxed), 4, 1); lean_closure_set(x_13, 0, x_1); -x_14 = l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main(x_13, x_1, x_2, x_3, x_5, x_6); +x_14 = l___private_Lean_MetavarContext_21__elimMVarDepsApp___main(x_13, x_1, x_2, x_3, x_5, x_6); lean_dec(x_1); return x_14; } } } -lean_object* l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_14; lean_object* x_15; @@ -38748,10 +38748,10 @@ case 2: { lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_inc(x_1); -x_23 = lean_alloc_closure((void*)(l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___boxed), 4, 1); +x_23 = lean_alloc_closure((void*)(l___private_Lean_MetavarContext_22__elimMVarDepsAux___main___boxed), 4, 1); lean_closure_set(x_23, 0, x_1); x_24 = l_Array_empty___closed__1; -x_25 = l___private_Init_Lean_MetavarContext_21__elimMVarDepsApp___main(x_23, x_1, x_2, x_24, x_3, x_4); +x_25 = l___private_Lean_MetavarContext_21__elimMVarDepsApp___main(x_23, x_1, x_2, x_24, x_3, x_4); lean_dec(x_1); return x_25; } @@ -38766,7 +38766,7 @@ x_29 = lean_mk_array(x_27, x_28); x_30 = lean_unsigned_to_nat(1u); x_31 = lean_nat_sub(x_27, x_30); lean_dec(x_27); -x_32 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1(x_1, x_2, x_29, x_31, x_3, x_4); +x_32 = l_Lean_Expr_withAppAux___main___at___private_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1(x_1, x_2, x_29, x_31, x_3, x_4); return x_32; } case 6: @@ -38788,14 +38788,14 @@ else lean_object* x_69; lean_object* x_70; x_69 = lean_ctor_get(x_4, 2); lean_inc(x_69); -x_70 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_69, x_33); +x_70 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_69, x_33); lean_dec(x_69); if (lean_obj_tag(x_70) == 0) { lean_object* x_71; lean_inc(x_33); lean_inc(x_1); -x_71 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_33, x_3, x_4); +x_71 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_33, x_3, x_4); if (lean_obj_tag(x_71) == 0) { lean_object* x_72; lean_object* x_73; uint8_t x_74; @@ -38810,7 +38810,7 @@ if (x_74 == 0) lean_object* x_75; lean_object* x_76; x_75 = lean_ctor_get(x_72, 2); lean_inc(x_73); -x_76 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_75, x_33, x_73); +x_76 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_75, x_33, x_73); lean_ctor_set(x_72, 2, x_76); x_35 = x_73; x_36 = x_72; @@ -38827,7 +38827,7 @@ lean_inc(x_78); lean_inc(x_77); lean_dec(x_72); lean_inc(x_73); -x_80 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_79, x_33, x_73); +x_80 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_79, x_33, x_73); x_81 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_81, 0, x_77); lean_ctor_set(x_81, 1, x_78); @@ -38892,13 +38892,13 @@ else lean_object* x_49; lean_object* x_50; x_49 = lean_ctor_get(x_36, 2); lean_inc(x_49); -x_50 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_49, x_34); +x_50 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_49, x_34); lean_dec(x_49); if (lean_obj_tag(x_50) == 0) { lean_object* x_51; lean_inc(x_34); -x_51 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_34, x_3, x_36); +x_51 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_34, x_3, x_36); if (lean_obj_tag(x_51) == 0) { lean_object* x_52; lean_object* x_53; uint8_t x_54; @@ -38913,7 +38913,7 @@ if (x_54 == 0) lean_object* x_55; lean_object* x_56; x_55 = lean_ctor_get(x_52, 2); lean_inc(x_53); -x_56 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_55, x_34, x_53); +x_56 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_55, x_34, x_53); lean_ctor_set(x_52, 2, x_56); x_37 = x_53; x_38 = x_52; @@ -38930,7 +38930,7 @@ lean_inc(x_58); lean_inc(x_57); lean_dec(x_52); lean_inc(x_53); -x_60 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_59, x_34, x_53); +x_60 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_59, x_34, x_53); x_61 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_61, 0, x_57); lean_ctor_set(x_61, 1, x_58); @@ -39028,14 +39028,14 @@ else lean_object* x_123; lean_object* x_124; x_123 = lean_ctor_get(x_4, 2); lean_inc(x_123); -x_124 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_123, x_87); +x_124 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_123, x_87); lean_dec(x_123); if (lean_obj_tag(x_124) == 0) { lean_object* x_125; lean_inc(x_87); lean_inc(x_1); -x_125 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_87, x_3, x_4); +x_125 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_87, x_3, x_4); if (lean_obj_tag(x_125) == 0) { lean_object* x_126; lean_object* x_127; uint8_t x_128; @@ -39050,7 +39050,7 @@ if (x_128 == 0) lean_object* x_129; lean_object* x_130; x_129 = lean_ctor_get(x_126, 2); lean_inc(x_127); -x_130 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_129, x_87, x_127); +x_130 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_129, x_87, x_127); lean_ctor_set(x_126, 2, x_130); x_89 = x_127; x_90 = x_126; @@ -39067,7 +39067,7 @@ lean_inc(x_132); lean_inc(x_131); lean_dec(x_126); lean_inc(x_127); -x_134 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_133, x_87, x_127); +x_134 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_133, x_87, x_127); x_135 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_135, 0, x_131); lean_ctor_set(x_135, 1, x_132); @@ -39132,13 +39132,13 @@ else lean_object* x_103; lean_object* x_104; x_103 = lean_ctor_get(x_90, 2); lean_inc(x_103); -x_104 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_103, x_88); +x_104 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_103, x_88); lean_dec(x_103); if (lean_obj_tag(x_104) == 0) { lean_object* x_105; lean_inc(x_88); -x_105 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_88, x_3, x_90); +x_105 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_88, x_3, x_90); if (lean_obj_tag(x_105) == 0) { lean_object* x_106; lean_object* x_107; uint8_t x_108; @@ -39153,7 +39153,7 @@ if (x_108 == 0) lean_object* x_109; lean_object* x_110; x_109 = lean_ctor_get(x_106, 2); lean_inc(x_107); -x_110 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_109, x_88, x_107); +x_110 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_109, x_88, x_107); lean_ctor_set(x_106, 2, x_110); x_91 = x_107; x_92 = x_106; @@ -39170,7 +39170,7 @@ lean_inc(x_112); lean_inc(x_111); lean_dec(x_106); lean_inc(x_107); -x_114 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_113, x_88, x_107); +x_114 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_113, x_88, x_107); x_115 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_115, 0, x_111); lean_ctor_set(x_115, 1, x_112); @@ -39270,14 +39270,14 @@ else lean_object* x_198; lean_object* x_199; x_198 = lean_ctor_get(x_4, 2); lean_inc(x_198); -x_199 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_198, x_141); +x_199 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_198, x_141); lean_dec(x_198); if (lean_obj_tag(x_199) == 0) { lean_object* x_200; lean_inc(x_141); lean_inc(x_1); -x_200 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_141, x_3, x_4); +x_200 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_141, x_3, x_4); if (lean_obj_tag(x_200) == 0) { lean_object* x_201; lean_object* x_202; uint8_t x_203; @@ -39292,7 +39292,7 @@ if (x_203 == 0) lean_object* x_204; lean_object* x_205; x_204 = lean_ctor_get(x_201, 2); lean_inc(x_202); -x_205 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_204, x_141, x_202); +x_205 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_204, x_141, x_202); lean_ctor_set(x_201, 2, x_205); x_144 = x_202; x_145 = x_201; @@ -39309,7 +39309,7 @@ lean_inc(x_207); lean_inc(x_206); lean_dec(x_201); lean_inc(x_202); -x_209 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_208, x_141, x_202); +x_209 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_208, x_141, x_202); x_210 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_210, 0, x_206); lean_ctor_set(x_210, 1, x_207); @@ -39374,14 +39374,14 @@ else lean_object* x_178; lean_object* x_179; x_178 = lean_ctor_get(x_145, 2); lean_inc(x_178); -x_179 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_178, x_142); +x_179 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_178, x_142); lean_dec(x_178); if (lean_obj_tag(x_179) == 0) { lean_object* x_180; lean_inc(x_142); lean_inc(x_1); -x_180 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_142, x_3, x_145); +x_180 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_142, x_3, x_145); if (lean_obj_tag(x_180) == 0) { lean_object* x_181; lean_object* x_182; uint8_t x_183; @@ -39396,7 +39396,7 @@ if (x_183 == 0) lean_object* x_184; lean_object* x_185; x_184 = lean_ctor_get(x_181, 2); lean_inc(x_182); -x_185 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_184, x_142, x_182); +x_185 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_184, x_142, x_182); lean_ctor_set(x_181, 2, x_185); x_146 = x_182; x_147 = x_181; @@ -39413,7 +39413,7 @@ lean_inc(x_187); lean_inc(x_186); lean_dec(x_181); lean_inc(x_182); -x_189 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_188, x_142, x_182); +x_189 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_188, x_142, x_182); x_190 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_190, 0, x_186); lean_ctor_set(x_190, 1, x_187); @@ -39479,13 +39479,13 @@ else lean_object* x_158; lean_object* x_159; x_158 = lean_ctor_get(x_147, 2); lean_inc(x_158); -x_159 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_158, x_143); +x_159 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_158, x_143); lean_dec(x_158); if (lean_obj_tag(x_159) == 0) { lean_object* x_160; lean_inc(x_143); -x_160 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_143, x_3, x_147); +x_160 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_143, x_3, x_147); if (lean_obj_tag(x_160) == 0) { lean_object* x_161; lean_object* x_162; uint8_t x_163; @@ -39500,7 +39500,7 @@ if (x_163 == 0) lean_object* x_164; lean_object* x_165; x_164 = lean_ctor_get(x_161, 2); lean_inc(x_162); -x_165 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_164, x_143, x_162); +x_165 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_164, x_143, x_162); lean_ctor_set(x_161, 2, x_165); x_148 = x_162; x_149 = x_161; @@ -39517,7 +39517,7 @@ lean_inc(x_167); lean_inc(x_166); lean_dec(x_161); lean_inc(x_162); -x_169 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_168, x_143, x_162); +x_169 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_168, x_143, x_162); x_170 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_170, 0, x_166); lean_ctor_set(x_170, 1, x_167); @@ -39615,13 +39615,13 @@ else lean_object* x_218; lean_object* x_219; x_218 = lean_ctor_get(x_4, 2); lean_inc(x_218); -x_219 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_218, x_216); +x_219 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_218, x_216); lean_dec(x_218); if (lean_obj_tag(x_219) == 0) { lean_object* x_220; lean_inc(x_216); -x_220 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_216, x_3, x_4); +x_220 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_216, x_3, x_4); if (lean_obj_tag(x_220) == 0) { lean_object* x_221; lean_object* x_222; uint8_t x_223; @@ -39636,7 +39636,7 @@ if (x_223 == 0) lean_object* x_224; lean_object* x_225; x_224 = lean_ctor_get(x_221, 2); lean_inc(x_222); -x_225 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_224, x_216, x_222); +x_225 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_224, x_216, x_222); lean_ctor_set(x_221, 2, x_225); x_5 = x_222; x_6 = x_221; @@ -39653,7 +39653,7 @@ lean_inc(x_227); lean_inc(x_226); lean_dec(x_221); lean_inc(x_222); -x_229 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_228, x_216, x_222); +x_229 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_228, x_216, x_222); x_230 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_230, 0, x_226); lean_ctor_set(x_230, 1, x_227); @@ -39720,13 +39720,13 @@ else lean_object* x_238; lean_object* x_239; x_238 = lean_ctor_get(x_4, 2); lean_inc(x_238); -x_239 = l_HashMapImp_find_x3f___at___private_Init_Lean_MetavarContext_2__visit___spec__1(x_238, x_236); +x_239 = l_HashMapImp_find_x3f___at___private_Lean_MetavarContext_2__visit___spec__1(x_238, x_236); lean_dec(x_238); if (lean_obj_tag(x_239) == 0) { lean_object* x_240; lean_inc(x_236); -x_240 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_236, x_3, x_4); +x_240 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_236, x_3, x_4); if (lean_obj_tag(x_240) == 0) { lean_object* x_241; lean_object* x_242; uint8_t x_243; @@ -39741,7 +39741,7 @@ if (x_243 == 0) lean_object* x_244; lean_object* x_245; x_244 = lean_ctor_get(x_241, 2); lean_inc(x_242); -x_245 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_244, x_236, x_242); +x_245 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_244, x_236, x_242); lean_ctor_set(x_241, 2, x_245); x_14 = x_242; x_15 = x_241; @@ -39758,7 +39758,7 @@ lean_inc(x_247); lean_inc(x_246); lean_dec(x_241); lean_inc(x_242); -x_249 = l_HashMapImp_insert___at___private_Init_Lean_MetavarContext_2__visit___spec__3(x_248, x_236, x_242); +x_249 = l_HashMapImp_insert___at___private_Lean_MetavarContext_2__visit___spec__3(x_248, x_236, x_242); x_250 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_250, 0, x_246); lean_ctor_set(x_250, 1, x_247); @@ -39869,41 +39869,41 @@ return x_21; } } } -lean_object* l_Lean_Expr_withAppAux___main___at___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Lean_Expr_withAppAux___main___at___private_Lean_MetavarContext_22__elimMVarDepsAux___main___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: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_5); lean_dec(x_5); -x_8 = l_Lean_Expr_withAppAux___main___at___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1(x_1, x_2, x_3, x_4, x_7, x_6); +x_8 = l_Lean_Expr_withAppAux___main___at___private_Lean_MetavarContext_22__elimMVarDepsAux___main___spec__1(x_1, x_2, x_3, x_4, x_7, x_6); return x_8; } } -lean_object* l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_22__elimMVarDepsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_3); lean_dec(x_3); -x_6 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_2, x_5, x_4); +x_6 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_2, x_5, x_4); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_22__elimMVarDepsAux(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_22__elimMVarDepsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_3); lean_dec(x_3); -x_6 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux(x_1, x_2, x_5, x_4); +x_6 = l___private_Lean_MetavarContext_22__elimMVarDepsAux(x_1, x_2, x_5, x_4); return x_6; } } @@ -39931,7 +39931,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = lean_ctor_get(x_4, 2); x_9 = l_HashMap_Inhabited___closed__1; lean_ctor_set(x_4, 2, x_9); -x_10 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_2, x_3, x_4); +x_10 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_2, x_3, x_4); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -40039,7 +40039,7 @@ x_33 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_33, 0, x_29); lean_ctor_set(x_33, 1, x_30); lean_ctor_set(x_33, 2, x_32); -x_34 = l___private_Init_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_2, x_3, x_33); +x_34 = l___private_Lean_MetavarContext_22__elimMVarDepsAux___main(x_1, x_2, x_3, x_33); if (lean_obj_tag(x_34) == 0) { lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; @@ -40124,7 +40124,7 @@ x_6 = l_Lean_MetavarContext_MkBinding_elimMVarDeps(x_1, x_2, x_5, x_4); return x_6; } } -lean_object* l___private_Init_Lean_MetavarContext_23__abstractRange(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { +lean_object* l___private_Lean_MetavarContext_23__abstractRange(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5) { _start: { lean_object* x_6; @@ -40186,13 +40186,13 @@ return x_17; } } } -lean_object* l___private_Init_Lean_MetavarContext_23__abstractRange___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_MetavarContext_23__abstractRange___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; lean_object* x_7; x_6 = lean_unbox(x_4); lean_dec(x_4); -x_7 = l___private_Init_Lean_MetavarContext_23__abstractRange(x_1, x_2, x_3, x_6, x_5); +x_7 = l___private_Lean_MetavarContext_23__abstractRange(x_1, x_2, x_3, x_6, x_5); lean_dec(x_2); return x_7; } @@ -42119,7 +42119,7 @@ x_4 = l_Lean_MetavarContext_LevelMVarToParam_visitLevel___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_MetavarContext_24__visit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_MetavarContext_24__visit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -42817,10 +42817,10 @@ return x_14; lean_object* initialize_Init_Control_Reader(lean_object*); lean_object* initialize_Init_Data_Nat(lean_object*); lean_object* initialize_Init_Data_Option(lean_object*); -lean_object* initialize_Init_Lean_Util_MonadCache(lean_object*); -lean_object* initialize_Init_Lean_LocalContext(lean_object*); +lean_object* initialize_Lean_Util_MonadCache(lean_object*); +lean_object* initialize_Lean_LocalContext(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_MetavarContext(lean_object* w) { +lean_object* initialize_Lean_MetavarContext(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -42833,10 +42833,10 @@ lean_dec_ref(res); res = initialize_Init_Data_Option(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_MonadCache(lean_io_mk_world()); +res = initialize_Lean_Util_MonadCache(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_LocalContext(lean_io_mk_world()); +res = initialize_Lean_LocalContext(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_LocalInstance_hasBeq___closed__1 = _init_l_Lean_LocalInstance_hasBeq___closed__1(); @@ -42895,8 +42895,8 @@ l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___closed__5 = _ini lean_mark_persistent(l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter___closed__5); l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter = _init_l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter(); lean_mark_persistent(l_Lean_MetavarContext_MkBinding_Lean_MonadHashMapCacheAdapter); -l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___closed__1 = _init_l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___closed__1(); -lean_mark_persistent(l_Nat_forMAux___main___at___private_Init_Lean_MetavarContext_10__collectDeps___spec__50___closed__1); +l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___closed__1 = _init_l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___closed__1(); +lean_mark_persistent(l_Nat_forMAux___main___at___private_Lean_MetavarContext_10__collectDeps___spec__50___closed__1); l_Lean_MetavarContext_MkBinding_mkBinding___closed__1 = _init_l_Lean_MetavarContext_MkBinding_mkBinding___closed__1(); lean_mark_persistent(l_Lean_MetavarContext_MkBinding_mkBinding___closed__1); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Modifiers.c b/stage0/stdlib/Lean/Modifiers.c similarity index 91% rename from stage0/stdlib/Init/Lean/Modifiers.c rename to stage0/stdlib/Lean/Modifiers.c index b991b98a63..1b105c8534 100644 --- a/stage0/stdlib/Init/Lean/Modifiers.c +++ b/stage0/stdlib/Lean/Modifiers.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Modifiers -// Imports: Init.Lean.Environment +// Module: Lean.Modifiers +// Imports: Lean.Environment #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,9 +17,9 @@ uint8_t lean_is_protected(lean_object*, lean_object*); lean_object* l_Lean_protectedExt___closed__1; lean_object* l_Lean_privateExt___elambda__1(lean_object*); lean_object* l_Lean_protectedExt___closed__3; -lean_object* l___private_Init_Lean_Modifiers_2__privatePrefixAux(lean_object*); uint8_t l_Lean_isPrivateName___main(lean_object*); lean_object* l_Lean_protectedExt___closed__5; +lean_object* l___private_Lean_Modifiers_2__privatePrefixAux___main___boxed(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_privateHeader; lean_object* lean_mk_private_name(lean_object*, lean_object*); @@ -30,9 +30,9 @@ lean_object* l_Lean_protectedExt___elambda__1___boxed(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkPrivateExtension___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Modifiers_2__privatePrefixAux___boxed(lean_object*); uint8_t lean_is_private_name(lean_object*); lean_object* l_Lean_isPrivateName___boxed(lean_object*); -lean_object* l___private_Init_Lean_Modifiers_2__privatePrefixAux___main___boxed(lean_object*); lean_object* l_Lean_privateExt___closed__2; lean_object* l_Lean_isPrivateName___main___boxed(lean_object*); uint8_t l_Lean_isPrivateName(lean_object*); @@ -42,22 +42,21 @@ lean_object* l_Lean_protectedExt___elambda__3___boxed(lean_object*, lean_object* lean_object* l_Lean_privateExt___closed__1; lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); lean_object* lean_add_protected(lean_object*, lean_object*); +lean_object* l___private_Lean_Modifiers_2__privatePrefixAux___main(lean_object*); lean_object* lean_mk_private_prefix(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_protectedExt; extern lean_object* l_IO_Error_Inhabited___closed__1; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; -lean_object* l___private_Init_Lean_Modifiers_2__privatePrefixAux___boxed(lean_object*); lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_protectedExt___elambda__2(lean_object*); lean_object* lean_private_prefix(lean_object*); +lean_object* l___private_Lean_Modifiers_2__privatePrefixAux(lean_object*); lean_object* l_Lean_isPrivateNameExport___boxed(lean_object*); lean_object* lean_environment_main_module(lean_object*); lean_object* l_Lean_protectedExt___elambda__2___boxed(lean_object*); lean_object* l_Lean_mkPrivateExtension(lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Modifiers_2__privatePrefixAux___main(lean_object*); -lean_object* l___private_Init_Lean_Modifiers_1__privateToUserNameAux___main(lean_object*); lean_object* l_Lean_mkProtectedExtension(lean_object*); lean_object* lean_io_ref_reset(lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; @@ -67,15 +66,16 @@ lean_object* l_Lean_protectedExt___elambda__4___boxed(lean_object*, lean_object* lean_object* l_Lean_privateExt; lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkTagDeclarationExtension(lean_object*, lean_object*); +lean_object* l___private_Lean_Modifiers_1__privateToUserNameAux(lean_object*); uint8_t l_Lean_TagDeclarationExtension_isTagged(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_namespacesExt___closed__1; lean_object* l_Lean_protectedExt___elambda__4___rarg(lean_object*); lean_object* lean_io_initializing(lean_object*); lean_object* l_Lean_EnvExtension_getStateUnsafe___rarg(lean_object*, lean_object*); lean_object* l_Lean_isProtected___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Modifiers_1__privateToUserNameAux___main(lean_object*); lean_object* l_Lean_protectedExt___elambda__1(lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Modifiers_1__privateToUserNameAux(lean_object*); lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); lean_object* l_Lean_privateHeader___closed__2; lean_object* l_Lean_protectedExt___elambda__4(lean_object*, lean_object*); @@ -319,7 +319,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -732,7 +732,7 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Modifiers_1__privateToUserNameAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Modifiers_1__privateToUserNameAux___main(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { @@ -748,7 +748,7 @@ lean_inc(x_2); x_3 = lean_ctor_get(x_1, 1); lean_inc(x_3); lean_dec(x_1); -x_4 = l___private_Init_Lean_Modifiers_1__privateToUserNameAux___main(x_2); +x_4 = l___private_Lean_Modifiers_1__privateToUserNameAux___main(x_2); x_5 = lean_name_mk_string(x_4, x_3); return x_5; } @@ -762,11 +762,11 @@ return x_6; } } } -lean_object* l___private_Init_Lean_Modifiers_1__privateToUserNameAux(lean_object* x_1) { +lean_object* l___private_Lean_Modifiers_1__privateToUserNameAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Modifiers_1__privateToUserNameAux___main(x_1); +x_2 = l___private_Lean_Modifiers_1__privateToUserNameAux___main(x_1); return x_2; } } @@ -785,14 +785,14 @@ return x_3; else { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Modifiers_1__privateToUserNameAux___main(x_1); +x_4 = l___private_Lean_Modifiers_1__privateToUserNameAux___main(x_1); x_5 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_5, 0, x_4); return x_5; } } } -lean_object* l___private_Init_Lean_Modifiers_2__privatePrefixAux___main(lean_object* x_1) { +lean_object* l___private_Lean_Modifiers_2__privatePrefixAux___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -809,28 +809,28 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Modifiers_2__privatePrefixAux___main___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Modifiers_2__privatePrefixAux___main___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Modifiers_2__privatePrefixAux___main(x_1); +x_2 = l___private_Lean_Modifiers_2__privatePrefixAux___main(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Modifiers_2__privatePrefixAux(lean_object* x_1) { +lean_object* l___private_Lean_Modifiers_2__privatePrefixAux(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Modifiers_2__privatePrefixAux___main(x_1); +x_2 = l___private_Lean_Modifiers_2__privatePrefixAux___main(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Modifiers_2__privatePrefixAux___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Modifiers_2__privatePrefixAux___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Modifiers_2__privatePrefixAux(x_1); +x_2 = l___private_Lean_Modifiers_2__privatePrefixAux(x_1); lean_dec(x_1); return x_2; } @@ -850,7 +850,7 @@ return x_3; else { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Modifiers_2__privatePrefixAux___main(x_1); +x_4 = l___private_Lean_Modifiers_2__privatePrefixAux___main(x_1); lean_dec(x_1); x_5 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_5, 0, x_4); @@ -858,13 +858,13 @@ return x_5; } } } -lean_object* initialize_Init_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Modifiers(lean_object* w) { +lean_object* initialize_Lean_Modifiers(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_mkProtectedExtension___closed__1 = _init_l_Lean_mkProtectedExtension___closed__1(); diff --git a/stage0/stdlib/Lean/Parser.c b/stage0/stdlib/Lean/Parser.c new file mode 100644 index 0000000000..09a0b1e113 --- /dev/null +++ b/stage0/stdlib/Lean/Parser.c @@ -0,0 +1,53 @@ +// Lean compiler output +// Module: Lean.Parser +// Imports: Lean.Parser.Parser Lean.Parser.Level Lean.Parser.Term Lean.Parser.Tactic Lean.Parser.Command Lean.Parser.Module Lean.Parser.Syntax +#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* initialize_Lean_Parser_Parser(lean_object*); +lean_object* initialize_Lean_Parser_Level(lean_object*); +lean_object* initialize_Lean_Parser_Term(lean_object*); +lean_object* initialize_Lean_Parser_Tactic(lean_object*); +lean_object* initialize_Lean_Parser_Command(lean_object*); +lean_object* initialize_Lean_Parser_Module(lean_object*); +lean_object* initialize_Lean_Parser_Syntax(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Lean_Parser(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_mk_io_result(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Parser_Parser(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Parser_Level(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Parser_Term(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Parser_Tactic(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Parser_Command(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Parser_Module(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Parser_Syntax(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_mk_io_result(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c similarity index 99% rename from stage0/stdlib/Init/Lean/Parser/Command.c rename to stage0/stdlib/Lean/Parser/Command.c index 77e7f6066e..1a08ce1452 100644 --- a/stage0/stdlib/Init/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Parser.Command -// Imports: Init.Lean.Parser.Term +// Module: Lean.Parser.Command +// Imports: Lean.Parser.Term #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -59,7 +59,6 @@ lean_object* l_Lean_Parser_Command_visibility; lean_object* l_Lean_Parser_Command_inductive___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Command_attributes___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_stxQuot___closed__8; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_matchAlt___closed__3; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__2; lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__7; @@ -68,6 +67,7 @@ lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_extends___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Command_section(lean_object*); lean_object* l_Lean_Parser_Command_introRule___elambda__1___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_example___closed__3; lean_object* l_Lean_Parser_Command_structureTk___closed__4; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__1; @@ -120,6 +120,7 @@ lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_export___closed__7; lean_object* l_Lean_Parser_Command_open___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_attrInstance___closed__4; +extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__2; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Command_structFields___elambda__1___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_introRule___elambda__1___closed__4; @@ -200,11 +201,11 @@ lean_object* l_Lean_Parser_Command_structure___closed__1; lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_check___closed__5; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__3; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attrArg___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_example; lean_object* l_Lean_Parser_Command_classTk___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_theorem___closed__3; @@ -255,10 +256,8 @@ lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_openSimple; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_instance; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_instance___closed__8; lean_object* l_Lean_Parser_Command_inferMod___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openOnly___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structFields___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_export___elambda__1___closed__8; @@ -419,6 +418,7 @@ lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_declModifiers___closed__14; lean_object* l_Lean_Parser_Command_constant___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; +lean_object* l___private_Lean_Parser_Parser_3__rawAux(lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__2; lean_object* l_Lean_Parser_Command_export___closed__9; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); @@ -473,6 +473,7 @@ lean_object* l_Lean_Parser_regCommandParserAttribute___closed__2; lean_object* l_Lean_Parser_Command_namespace___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_section___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_attrArg; +extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Command_variables___closed__4; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__1; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__5; @@ -516,6 +517,7 @@ lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__14; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__5; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_tupleTail___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_variable___elambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_synth___closed__6; lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Command_attrInstance___elambda__1___spec__1(lean_object*, lean_object*); @@ -765,6 +767,7 @@ lean_object* l_Lean_Parser_Command_attributes___closed__3; lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_private___closed__1; lean_object* l_Lean_Parser_Command_universe___elambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderDefault___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_constant___closed__3; lean_object* l_Lean_Parser_Command_classInductive___closed__6; @@ -795,7 +798,6 @@ lean_object* l_Lean_Parser_Command_check__failure___closed__6; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_attrInstance___elambda__1(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1(lean_object*, lean_object*); @@ -856,13 +858,13 @@ lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_attribute___closed__8; lean_object* l_Lean_Parser_Command_structureTk___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_open___elambda__1(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_noncomputable___closed__4; lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_stxQuot(lean_object*); lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_openOnly___closed__6; @@ -908,7 +910,6 @@ lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_structureTk___closed__3; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_openRenaming___closed__2; lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__9; @@ -957,7 +958,6 @@ lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_set__option___closed__2; lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__6; -lean_object* l___private_Init_Lean_Parser_Parser_3__rawAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_openOnly___closed__1; lean_object* l_Lean_Parser_Command_openRenamingItem___closed__1; @@ -990,6 +990,7 @@ lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Command_end(lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_structCtor___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_partial; @@ -1063,7 +1064,6 @@ lean_object* l_Lean_Parser_Command_docComment___closed__6; lean_object* l_Lean_Parser_Command_instance___closed__5; lean_object* l_Lean_Parser_Command_theorem___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_universes___closed__5; lean_object* l_Lean_Parser_Command_attrInstance___closed__1; lean_object* l_Lean_Parser_Command_openOnly___closed__3; @@ -2136,7 +2136,7 @@ if (lean_obj_tag(x_6) == 0) { uint8_t x_7; lean_object* x_8; x_7 = 1; -x_8 = l___private_Init_Lean_Parser_Parser_3__rawAux(x_3, x_7, x_1, x_5); +x_8 = l___private_Lean_Parser_Parser_3__rawAux(x_3, x_7, x_1, x_5); return x_8; } else @@ -3055,7 +3055,7 @@ x_1 = l_Lean_Parser_Command_attrInstance___closed__6; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -3097,13 +3097,13 @@ lean_object* x_33; lean_object* x_34; uint8_t x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_34 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_35 = lean_string_dec_eq(x_33, x_34); lean_dec(x_33); if (x_35 == 0) { lean_object* x_36; lean_object* x_37; -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_37 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_36, x_14); x_15 = x_37; @@ -3119,7 +3119,7 @@ else { lean_object* x_38; lean_object* x_39; lean_dec(x_32); -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_38, x_14); x_15 = x_39; @@ -3130,7 +3130,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_30); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_40, x_14); x_15 = x_41; @@ -3275,7 +3275,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); return x_8; } } @@ -3849,7 +3849,7 @@ x_1 = l_Lean_Parser_Command_attributes___closed__8; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -3859,7 +3859,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_attributes___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -6744,7 +6744,7 @@ x_1 = l_Lean_Parser_Command_declModifiers___closed__15; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -6786,13 +6786,13 @@ lean_object* x_33; lean_object* x_34; uint8_t x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_34 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_35 = lean_string_dec_eq(x_33, x_34); lean_dec(x_33); if (x_35 == 0) { lean_object* x_36; lean_object* x_37; -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_37 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_36, x_14); x_15 = x_37; @@ -6808,7 +6808,7 @@ else { lean_object* x_38; lean_object* x_39; lean_dec(x_32); -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_38, x_14); x_15 = x_39; @@ -6819,7 +6819,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_30); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_40, x_14); x_15 = x_41; @@ -6964,7 +6964,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); return x_8; } } @@ -7614,7 +7614,7 @@ x_1 = l_Lean_Parser_Command_declId___closed__9; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -7624,7 +7624,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_declId___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -30863,7 +30863,7 @@ x_1 = l_Lean_Parser_Command_openRenamingItem___closed__7; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -30905,13 +30905,13 @@ lean_object* x_33; lean_object* x_34; uint8_t x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_34 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_35 = lean_string_dec_eq(x_33, x_34); lean_dec(x_33); if (x_35 == 0) { lean_object* x_36; lean_object* x_37; -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_37 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_36, x_14); x_15 = x_37; @@ -30927,7 +30927,7 @@ else { lean_object* x_38; lean_object* x_39; lean_dec(x_32); -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_38, x_14); x_15 = x_39; @@ -30938,7 +30938,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_30); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_40, x_14); x_15 = x_41; @@ -31083,7 +31083,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); return x_8; } } @@ -31691,7 +31691,7 @@ x_1 = l_Lean_Parser_Command_openRenaming___closed__8; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -31701,7 +31701,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Command_openRenaming___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -33441,13 +33441,13 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* initialize_Init_Lean_Parser_Term(lean_object*); +lean_object* initialize_Lean_Parser_Term(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Parser_Command(lean_object* w) { +lean_object* initialize_Lean_Parser_Command(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Parser_Term(lean_io_mk_world()); +res = initialize_Lean_Parser_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_regBuiltinCommandParserAttr___closed__1 = _init_l_Lean_Parser_regBuiltinCommandParserAttr___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Parser/Level.c b/stage0/stdlib/Lean/Parser/Level.c similarity index 99% rename from stage0/stdlib/Init/Lean/Parser/Level.c rename to stage0/stdlib/Lean/Parser/Level.c index b3a16711ce..a6501f8f94 100644 --- a/stage0/stdlib/Init/Lean/Parser/Level.c +++ b/stage0/stdlib/Lean/Parser/Level.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Parser.Level -// Imports: Init.Lean.Parser.Parser +// Module: Lean.Parser.Level +// Imports: Lean.Parser.Parser #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -2451,13 +2451,13 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* initialize_Init_Lean_Parser_Parser(lean_object*); +lean_object* initialize_Lean_Parser_Parser(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Parser_Level(lean_object* w) { +lean_object* initialize_Lean_Parser_Level(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Parser_Parser(lean_io_mk_world()); +res = initialize_Lean_Parser_Parser(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_regBuiltinLevelParserAttr___closed__1 = _init_l_Lean_Parser_regBuiltinLevelParserAttr___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Parser/Module.c b/stage0/stdlib/Lean/Parser/Module.c similarity index 87% rename from stage0/stdlib/Init/Lean/Parser/Module.c rename to stage0/stdlib/Lean/Parser/Module.c index bac7e06de6..04d9aae329 100644 --- a/stage0/stdlib/Init/Lean/Parser/Module.c +++ b/stage0/stdlib/Lean/Parser/Module.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Parser.Module -// Imports: Init.Lean.Message Init.Lean.Parser.Command +// Module: Lean.Parser.Module +// Imports: Lean.Message Lean.Parser.Command #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,7 +15,6 @@ extern "C" { #endif lean_object* l_Lean_Parser_Module_import___elambda__1___closed__5; extern lean_object* l_Lean_Parser_manyAux___main___closed__1; -lean_object* l_IO_print___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__4(lean_object*, lean_object*); lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserContext(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_import___closed__8; @@ -29,11 +28,8 @@ lean_object* lean_io_prim_put_str(lean_object*, lean_object*); lean_object* l_Lean_Parser_parseHeader(lean_object*, lean_object*); lean_object* l_Lean_Parser_ModuleParserState_inhabited___closed__1; lean_object* l_Lean_Parser_testModuleParser___closed__2; -lean_object* l_PersistentArray_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__7___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_regBuiltinCommandParserAttr___closed__4; -lean_object* l___private_Init_Lean_Parser_Module_2__mkEOI___closed__2; -lean_object* l___private_Init_Lean_Parser_Module_2__mkEOI___closed__1; lean_object* l_Lean_Parser_Module_prelude; lean_object* l_Lean_Parser_Module_import___elambda__1___closed__12; extern lean_object* l_Array_empty___closed__1; @@ -44,14 +40,15 @@ lean_object* l_IO_FS_Handle_getLine___at_Lean_Parser_parseFile___spec__3___boxed lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__2; lean_object* l_Lean_Parser_Module_import; lean_object* l_Lean_Parser_Module_import___elambda__1___closed__2; +lean_object* l___private_Lean_Parser_Module_1__mkErrorMessage___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_header___closed__4; +lean_object* l___private_Lean_Parser_Module_2__mkEOI(lean_object*); lean_object* l_Lean_Parser_mkInputContext(lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__1; lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_IO_FS_Handle_readToEndAux___main___at_Lean_Parser_parseFile___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_updateTokens___closed__1; @@ -59,9 +56,10 @@ lean_object* l_Lean_Parser_Module_import___closed__9; lean_object* l_Lean_Parser_isExitCommand___boxed(lean_object*); lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Parser_checkStackTopFn___spec__1(lean_object*); +lean_object* l___private_Lean_Parser_Module_1__mkErrorMessage(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_import___elambda__1___closed__1; extern lean_object* l_String_splitAux___main___closed__1; -lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_header___elambda__1___closed__3; lean_object* l_Lean_Parser_parseFile(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__4; @@ -70,59 +68,57 @@ lean_object* l_IO_FS_readFile___at_Lean_Parser_parseFile___spec__1___boxed(lean_ lean_object* l_Lean_Parser_Module_header___elambda__1___closed__4; lean_object* l_Lean_Parser_Module_import___elambda__1___closed__13; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Module_2__mkEOI(lean_object*); lean_object* l_Lean_Parser_Module_prelude___closed__4; +lean_object* l___private_Lean_Parser_Module_2__mkEOI___closed__3; lean_object* l_Lean_Parser_Module_header___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_initCacheForInput(lean_object*); lean_object* l_Lean_Parser_Module_import___elambda__1___closed__4; lean_object* l_Lean_Parser_parseFileAux___main___closed__2; lean_object* l_Lean_Parser_Module_import___elambda__1___closed__11; extern lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__2; lean_object* l_Lean_Parser_Module_header___elambda__1___closed__2; +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_parseFileAux___main___closed__1; lean_object* l_Lean_Parser_Module_header___closed__2; lean_object* l_Lean_Parser_Module_import___elambda__1___closed__8; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); -lean_object* l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_header___closed__1; lean_object* l_Lean_Parser_whitespace___main(lean_object*, lean_object*); uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); lean_object* l_Lean_Parser_optionaInfo(lean_object*); -lean_object* l_Lean_MessageLog_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__5___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Module_1__mkErrorMessage(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_updateLeading(lean_object*); lean_object* lean_io_realpath(lean_object*, lean_object*); lean_object* l_Lean_Parser_testModuleParser___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parseCommand___main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Module_2__mkEOI___closed__3; +lean_object* l_IO_print___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__2(lean_object*, lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Char_HasRepr___closed__1; -lean_object* l_IO_print___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_header___closed__6; lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__10; lean_object* l_Lean_Parser_testModuleParser___closed__1; +lean_object* l_IO_println___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__1(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_IO_println___rarg___closed__1; extern lean_object* l_PersistentArray_empty___closed__3; lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__7; lean_object* l_Lean_Parser_addParserTokens(lean_object*, lean_object*); extern lean_object* l_Lean_Options_empty; +lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; lean_object* l_Lean_Parser_Module_import___closed__1; -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentArray_isEmpty___rarg(lean_object*); +lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); lean_object* l_Lean_Parser_parseFileAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_IO_println___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Parser_Trie_Inhabited(lean_object*); +lean_object* l_PersistentArray_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__7___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_IO_FS_readFile___at_Lean_Parser_parseFile___spec__1(lean_object*, lean_object*); -lean_object* l_PersistentArray_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_MessageLog_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_header; lean_object* l_Lean_Parser_Module_import___closed__6; lean_object* l_Lean_Parser_Module_header___closed__5; @@ -130,39 +126,41 @@ lean_object* l_Lean_Parser_Module_prelude___closed__5; lean_object* l_Lean_Parser_Module_import___closed__2; lean_object* l_Lean_Parser_ModuleParserState_inhabited; lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__5; -lean_object* l_IO_println___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Substring_drop___closed__2; lean_object* l_Lean_Parser_Error_toString(lean_object*); +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Module_2__mkEOI___closed__2; uint8_t l_Lean_Parser_isExitCommand(lean_object*); -lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; lean_object* l_Lean_Parser_Module_updateTokens(lean_object*); lean_object* l_Lean_Parser_Module_prelude___closed__3; lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_import___closed__3; lean_object* l_Lean_Parser_Module_prelude___closed__1; +lean_object* l___private_Lean_Parser_Module_2__mkEOI___closed__1; lean_object* l_Lean_Parser_Module_header___closed__7; lean_object* l_Lean_Parser_Module_import___closed__7; -lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolInfo(lean_object*, lean_object*); lean_object* l_IO_FS_Handle_getLine___at_Lean_Parser_parseFile___spec__3(lean_object*, lean_object*); -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__6; lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_prelude___closed__2; +lean_object* l_PersistentArray_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Module_header___elambda__1___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_MessageLog_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__5___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_import___elambda__1___closed__7; lean_object* l_Lean_Parser_Module_header___closed__3; +lean_object* l_IO_print___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__4(lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); -lean_object* l___private_Init_Lean_Parser_Module_3__consumeInput(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_import___closed__5; +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_prelude___elambda__1(lean_object*, lean_object*); lean_object* lean_string_length(lean_object*); lean_object* l_Lean_Parser_Module_import___elambda__1___closed__14; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); -lean_object* l_IO_println___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__3(lean_object*, lean_object*); uint8_t l_Lean_Parser_isEOI(lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Parser_Module_import___elambda__1___closed__10; @@ -170,8 +168,7 @@ uint8_t l_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_obj lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__3; lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_import___elambda__1___closed__9; -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Module_1__mkErrorMessage___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_IO_FS_Handle_readToEndAux___main___at_Lean_Parser_parseFile___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_IO_FS_Handle_mk___at_IO_FS_withFile___spec__1(lean_object*, uint8_t, uint8_t, lean_object*); lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); @@ -184,12 +181,15 @@ uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); lean_object* lean_test_module_parser(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__4; lean_object* l_Lean_Parser_Module_import___elambda__1___closed__6; +lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux___main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parseCommand(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MessageLog_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_import___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_isEOI___boxed(lean_object*); lean_object* l_Lean_Parser_Module_header___elambda__1(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Module_3__consumeInput(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__9; lean_object* _init_l_Lean_Parser_Module_prelude___elambda__1___closed__1() { _start: @@ -1924,7 +1924,7 @@ x_1 = l_Lean_Parser_ModuleParserState_inhabited___closed__1; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Module_1__mkErrorMessage(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Module_1__mkErrorMessage(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; @@ -1950,11 +1950,11 @@ lean_ctor_set_uint8(x_13, sizeof(void*)*5, x_11); return x_13; } } -lean_object* l___private_Init_Lean_Parser_Module_1__mkErrorMessage___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Module_1__mkErrorMessage___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Parser_Module_1__mkErrorMessage(x_1, x_2, x_3); +x_4 = l___private_Lean_Parser_Module_1__mkErrorMessage(x_1, x_2, x_3); lean_dec(x_1); return x_4; } @@ -2012,7 +2012,7 @@ lean_inc(x_20); lean_dec(x_9); x_21 = l_Lean_Parser_Error_toString(x_19); lean_inc(x_20); -x_22 = l___private_Init_Lean_Parser_Module_1__mkErrorMessage(x_4, x_20, x_21); +x_22 = l___private_Lean_Parser_Module_1__mkErrorMessage(x_4, x_20, x_21); lean_dec(x_4); x_23 = 1; x_24 = lean_alloc_ctor(0, 1, 1); @@ -2030,7 +2030,7 @@ return x_28; } } } -lean_object* _init_l___private_Init_Lean_Parser_Module_2__mkEOI___closed__1() { +lean_object* _init_l___private_Lean_Parser_Module_2__mkEOI___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -2040,7 +2040,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Parser_Module_2__mkEOI___closed__2() { +lean_object* _init_l___private_Lean_Parser_Module_2__mkEOI___closed__2() { _start: { lean_object* x_1; @@ -2048,23 +2048,23 @@ x_1 = lean_mk_string("eoi"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Module_2__mkEOI___closed__3() { +lean_object* _init_l___private_Lean_Parser_Module_2__mkEOI___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_prelude___elambda__1___closed__2; -x_2 = l___private_Init_Lean_Parser_Module_2__mkEOI___closed__2; +x_2 = l___private_Lean_Parser_Module_2__mkEOI___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Parser_Module_2__mkEOI(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Module_2__mkEOI(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_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); -x_3 = l___private_Init_Lean_Parser_Module_2__mkEOI___closed__1; +x_3 = l___private_Lean_Parser_Module_2__mkEOI___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_3); lean_ctor_set(x_4, 1, x_2); @@ -2075,7 +2075,7 @@ lean_ctor_set(x_6, 0, x_4); lean_ctor_set(x_6, 1, x_5); x_7 = l_Lean_mkOptionalNode___closed__2; x_8 = lean_array_push(x_7, x_6); -x_9 = l___private_Init_Lean_Parser_Module_2__mkEOI___closed__3; +x_9 = l___private_Lean_Parser_Module_2__mkEOI___closed__3; x_10 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_8); @@ -2086,7 +2086,7 @@ uint8_t l_Lean_Parser_isEOI(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l___private_Init_Lean_Parser_Module_2__mkEOI___closed__3; +x_2 = l___private_Lean_Parser_Module_2__mkEOI___closed__3; x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); return x_3; } @@ -2118,7 +2118,7 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Parser_Module_3__consumeInput(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Module_3__consumeInput(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; @@ -2236,9 +2236,9 @@ lean_inc(x_28); lean_dec(x_19); x_29 = l_Lean_Parser_Error_toString(x_27); lean_inc(x_28); -x_30 = l___private_Init_Lean_Parser_Module_1__mkErrorMessage(x_11, x_28, x_29); +x_30 = l___private_Lean_Parser_Module_1__mkErrorMessage(x_11, x_28, x_29); x_31 = l_PersistentArray_push___rarg(x_4, x_30); -x_32 = l___private_Init_Lean_Parser_Module_3__consumeInput(x_11, x_28); +x_32 = l___private_Lean_Parser_Module_3__consumeInput(x_11, x_28); x_33 = 1; lean_ctor_set(x_3, 0, x_32); lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_33); @@ -2252,7 +2252,7 @@ lean_dec(x_20); x_35 = lean_ctor_get(x_19, 1); lean_inc(x_35); lean_dec(x_19); -x_36 = l___private_Init_Lean_Parser_Module_3__consumeInput(x_11, x_35); +x_36 = l___private_Lean_Parser_Module_3__consumeInput(x_11, x_35); x_37 = 1; lean_ctor_set(x_3, 0, x_36); lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_37); @@ -2321,9 +2321,9 @@ lean_inc(x_57); lean_dec(x_47); x_58 = l_Lean_Parser_Error_toString(x_56); lean_inc(x_57); -x_59 = l___private_Init_Lean_Parser_Module_1__mkErrorMessage(x_39, x_57, x_58); +x_59 = l___private_Lean_Parser_Module_1__mkErrorMessage(x_39, x_57, x_58); x_60 = l_PersistentArray_push___rarg(x_4, x_59); -x_61 = l___private_Init_Lean_Parser_Module_3__consumeInput(x_39, x_57); +x_61 = l___private_Lean_Parser_Module_3__consumeInput(x_39, x_57); x_62 = 1; x_63 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_63, 0, x_61); @@ -2339,7 +2339,7 @@ lean_dec(x_48); x_65 = lean_ctor_get(x_47, 1); lean_inc(x_65); lean_dec(x_47); -x_66 = l___private_Init_Lean_Parser_Module_3__consumeInput(x_39, x_65); +x_66 = l___private_Lean_Parser_Module_3__consumeInput(x_39, x_65); x_67 = 1; x_68 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_68, 0, x_66); @@ -2356,7 +2356,7 @@ lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_70 = l___private_Init_Lean_Parser_Module_2__mkEOI(x_5); +x_70 = l___private_Lean_Parser_Module_2__mkEOI(x_5); x_71 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_71, 0, x_3); lean_ctor_set(x_71, 1, x_4); @@ -2375,7 +2375,7 @@ x_5 = l_Lean_Parser_parseCommand___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l_IO_print___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_print___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -2390,11 +2390,11 @@ lean_dec(x_8); return x_9; } } -lean_object* l_IO_println___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_println___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_print___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__2(x_1, x_2); +x_3 = l_IO_print___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__2(x_1, x_2); if (lean_obj_tag(x_3) == 0) { lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -2429,7 +2429,7 @@ return x_10; } } } -lean_object* l_IO_print___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__4(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_print___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__4(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -2439,11 +2439,11 @@ lean_dec(x_3); return x_4; } } -lean_object* l_IO_println___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_println___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_print___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__4(x_1, x_2); +x_3 = l_IO_print___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__4(x_1, x_2); if (lean_obj_tag(x_3) == 0) { lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -2478,7 +2478,7 @@ return x_10; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -2504,7 +2504,7 @@ x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_3, x_10); lean_dec(x_3); lean_inc(x_1); -x_12 = l_PersistentArray_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(x_1, x_9, x_4); +x_12 = l_PersistentArray_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(x_1, x_9, x_4); lean_dec(x_9); if (lean_obj_tag(x_12) == 0) { @@ -2543,7 +2543,7 @@ return x_18; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -2607,7 +2607,7 @@ return x_18; } } } -lean_object* l_PersistentArray_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentArray_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -2615,7 +2615,7 @@ if (lean_obj_tag(x_2) == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_2, 0); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__8(x_1, x_4, x_5, x_3); +x_6 = l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__8(x_1, x_4, x_5, x_3); return x_6; } else @@ -2623,12 +2623,12 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_2, 0); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__9(x_1, x_7, x_8, x_3); +x_9 = l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__9(x_1, x_7, x_8, x_3); return x_9; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -2692,14 +2692,14 @@ return x_18; } } } -lean_object* l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_2, 0); x_5 = lean_ctor_get(x_2, 1); lean_inc(x_1); -x_6 = l_PersistentArray_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(x_1, x_4, x_3); +x_6 = l_PersistentArray_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(x_1, x_4, x_3); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -2707,7 +2707,7 @@ x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_dec(x_6); x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__10(x_1, x_5, x_8, x_7); +x_9 = l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__10(x_1, x_5, x_8, x_7); return x_9; } else @@ -2735,23 +2735,23 @@ return x_13; } } } -lean_object* l_Lean_MessageLog_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_MessageLog_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_2, x_1, x_3); +x_4 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_2, x_1, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1() { +lean_object* _init_l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_println___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__3), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_println___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__3), 2, 0); return x_1; } } -lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux___main(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; @@ -2787,7 +2787,7 @@ goto _start; else { lean_object* x_15; -x_15 = l_IO_println___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__1(x_9, x_6); +x_15 = l_IO_println___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__1(x_9, x_6); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; @@ -2838,8 +2838,8 @@ x_22 = l_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(x_11); if (x_22 == 0) { lean_object* x_23; lean_object* x_24; -x_23 = l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; -x_24 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_23, x_11, x_6); +x_23 = l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; +x_24 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_23, x_11, x_6); lean_dec(x_11); if (lean_obj_tag(x_24) == 0) { @@ -2895,8 +2895,8 @@ return x_36; else { lean_object* x_37; lean_object* x_38; -x_37 = l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; -x_38 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_37, x_11, x_6); +x_37 = l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; +x_38 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_37, x_11, x_6); lean_dec(x_11); if (lean_obj_tag(x_38) == 0) { @@ -2962,8 +2962,8 @@ x_51 = l_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(x_11); if (x_51 == 0) { lean_object* x_52; lean_object* x_53; -x_52 = l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; -x_53 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_52, x_11, x_6); +x_52 = l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; +x_53 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_52, x_11, x_6); lean_dec(x_11); if (lean_obj_tag(x_53) == 0) { @@ -3019,8 +3019,8 @@ return x_65; else { lean_object* x_66; lean_object* x_67; -x_66 = l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; -x_67 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_66, x_11, x_6); +x_66 = l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; +x_67 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_66, x_11, x_6); lean_dec(x_11); if (lean_obj_tag(x_67) == 0) { @@ -3076,85 +3076,85 @@ return x_79; } } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__8___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_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__8(x_1, x_2, x_3, x_4); +x_5 = l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__8(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__9(x_1, x_2, x_3, x_4); +x_5 = l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__9(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l_PersistentArray_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentArray_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_PersistentArray_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(x_1, x_2, x_3); +x_4 = l_PersistentArray_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__7(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Array_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__10___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_forMAux___main___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__10(x_1, x_2, x_3, x_4); +x_5 = l_Array_forMAux___main___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__10(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_1, x_2, x_3); +x_4 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Lean_MessageLog_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_MessageLog_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_MessageLog_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__5(x_1, x_2, x_3); +x_4 = l_Lean_MessageLog_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__5(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux___main___boxed(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___private_Init_Lean_Parser_Module_4__testModuleParserAux___main(x_1, x_2, x_7, x_4, x_5, x_6); +x_8 = l___private_Lean_Parser_Module_4__testModuleParserAux___main(x_1, x_2, x_7, x_4, x_5, x_6); return x_8; } } -lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux(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; -x_7 = l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Parser_Module_4__testModuleParserAux___main(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Parser_Module_4__testModuleParserAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Module_4__testModuleParserAux___boxed(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___private_Init_Lean_Parser_Module_4__testModuleParserAux(x_1, x_2, x_7, x_4, x_5, x_6); +x_8 = l___private_Lean_Parser_Module_4__testModuleParserAux(x_1, x_2, x_7, x_4, x_5, x_6); return x_8; } } @@ -3198,7 +3198,7 @@ x_13 = lean_ctor_get(x_10, 1); lean_inc(x_13); lean_dec(x_10); x_14 = lean_box(x_4); -x_15 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Module_4__testModuleParserAux___boxed), 6, 5); +x_15 = lean_alloc_closure((void*)(l___private_Lean_Parser_Module_4__testModuleParserAux___boxed), 6, 5); lean_closure_set(x_15, 0, x_1); lean_closure_set(x_15, 1, x_8); lean_closure_set(x_15, 2, x_14); @@ -3219,7 +3219,7 @@ return x_18; else { lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_alloc_closure((void*)(l_IO_println___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__1), 2, 1); +x_19 = lean_alloc_closure((void*)(l_IO_println___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__1), 2, 1); lean_closure_set(x_19, 0, x_11); x_20 = lean_alloc_closure((void*)(l_EStateM_seqRight___rarg), 3, 2); lean_closure_set(x_20, 0, x_19); @@ -3298,8 +3298,8 @@ if (x_15 == 0) { lean_object* x_16; lean_object* x_17; lean_dec(x_5); -x_16 = l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; -x_17 = l_PersistentArray_forM___at___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_16, x_11, x_6); +x_16 = l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1; +x_17 = l_PersistentArray_forM___at___private_Lean_Parser_Module_4__testModuleParserAux___main___spec__6(x_16, x_11, x_6); lean_dec(x_11); if (lean_obj_tag(x_17) == 0) { @@ -3638,17 +3638,17 @@ lean_dec(x_1); return x_3; } } -lean_object* initialize_Init_Lean_Message(lean_object*); -lean_object* initialize_Init_Lean_Parser_Command(lean_object*); +lean_object* initialize_Lean_Message(lean_object*); +lean_object* initialize_Lean_Parser_Command(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Parser_Module(lean_object* w) { +lean_object* initialize_Lean_Parser_Module(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Message(lean_io_mk_world()); +res = initialize_Lean_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Command(lean_io_mk_world()); +res = initialize_Lean_Parser_Command(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_Module_prelude___elambda__1___closed__1 = _init_l_Lean_Parser_Module_prelude___elambda__1___closed__1(); @@ -3761,14 +3761,14 @@ l_Lean_Parser_ModuleParserState_inhabited___closed__1 = _init_l_Lean_Parser_Modu lean_mark_persistent(l_Lean_Parser_ModuleParserState_inhabited___closed__1); l_Lean_Parser_ModuleParserState_inhabited = _init_l_Lean_Parser_ModuleParserState_inhabited(); lean_mark_persistent(l_Lean_Parser_ModuleParserState_inhabited); -l___private_Init_Lean_Parser_Module_2__mkEOI___closed__1 = _init_l___private_Init_Lean_Parser_Module_2__mkEOI___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Module_2__mkEOI___closed__1); -l___private_Init_Lean_Parser_Module_2__mkEOI___closed__2 = _init_l___private_Init_Lean_Parser_Module_2__mkEOI___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Module_2__mkEOI___closed__2); -l___private_Init_Lean_Parser_Module_2__mkEOI___closed__3 = _init_l___private_Init_Lean_Parser_Module_2__mkEOI___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Module_2__mkEOI___closed__3); -l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1 = _init_l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Module_4__testModuleParserAux___main___closed__1); +l___private_Lean_Parser_Module_2__mkEOI___closed__1 = _init_l___private_Lean_Parser_Module_2__mkEOI___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Module_2__mkEOI___closed__1); +l___private_Lean_Parser_Module_2__mkEOI___closed__2 = _init_l___private_Lean_Parser_Module_2__mkEOI___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Module_2__mkEOI___closed__2); +l___private_Lean_Parser_Module_2__mkEOI___closed__3 = _init_l___private_Lean_Parser_Module_2__mkEOI___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Module_2__mkEOI___closed__3); +l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1 = _init_l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Module_4__testModuleParserAux___main___closed__1); l_Lean_Parser_testModuleParser___closed__1 = _init_l_Lean_Parser_testModuleParser___closed__1(); lean_mark_persistent(l_Lean_Parser_testModuleParser___closed__1); l_Lean_Parser_testModuleParser___closed__2 = _init_l_Lean_Parser_testModuleParser___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Parser/Parser.c b/stage0/stdlib/Lean/Parser/Parser.c similarity index 95% rename from stage0/stdlib/Init/Lean/Parser/Parser.c rename to stage0/stdlib/Lean/Parser/Parser.c index 3c9ba044ca..cdfbfba0f0 100644 --- a/stage0/stdlib/Init/Lean/Parser/Parser.c +++ b/stage0/stdlib/Lean/Parser/Parser.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Parser.Parser -// Imports: Init.Lean.Data.Trie Init.Lean.Data.Position Init.Lean.Syntax Init.Lean.ToExpr Init.Lean.Environment Init.Lean.Attributes Init.Lean.Message Init.Lean.Compiler.InitAttr +// Module: Lean.Parser.Parser +// Imports: Lean.Data.Trie Lean.Data.Position Lean.Syntax Lean.ToExpr Lean.Environment Lean.Attributes Lean.Message Lean.Compiler.InitAttr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -27,8 +27,10 @@ lean_object* l_Lean_Parser_finishCommentBlock(lean_object*, lean_object*, lean_o lean_object* lean_string_push(lean_object*, uint32_t); extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_Parser_charLit___closed__1; -lean_object* l_PersistentHashMap_containsAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__2___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_andthenInfo___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolAux___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_hashOrelse; lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__7___rarg(lean_object*, lean_object*, lean_object*); @@ -39,7 +41,6 @@ lean_object* l_Lean_Parser_numLit___elambda__1___closed__2; extern lean_object* l_Lean_fieldIdxKind; lean_object* l_PersistentHashMap_foldlM___at_Lean_Parser_getSyntaxNodeKinds___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_forArgsM___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_declareLeadingBuiltinParser___closed__1; uint8_t l_RBNode_isRed___rarg(lean_object*); uint8_t l_Lean_Parser_checkTailWs(lean_object*); @@ -49,14 +50,12 @@ lean_object* l_Lean_Parser_identFn___closed__1; lean_object* l_Lean_Parser_try(lean_object*); lean_object* l_Lean_Parser_nodeWithAntiquot___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolInfo___elambda__1___boxed(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_prattParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_23__catNameToString(lean_object*); lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); uint8_t l_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingIdentAsSymbol___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldSepRevArgs___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_Parser_ParserState_mkError(lean_object*, lean_object*); lean_object* l_Lean_Parser_strLitNoAntiquot___closed__2; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_octalNumberFn___spec__3(lean_object*, lean_object*); @@ -68,7 +67,6 @@ lean_object* l_Lean_Parser_InputContext_inhabited___closed__1; lean_object* l_PersistentHashMap_findAux___main___at_Lean_Parser_addLeadingParser___spec__2(lean_object*, size_t, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_Parser_sepByInfo(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(lean_object*); lean_object* l_Lean_Parser_ParserState_shrinkStack___boxed(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Parser_mkCategoryParserFnExtension___spec__1___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); @@ -79,8 +77,8 @@ lean_object* l_unreachable_x21___rarg(lean_object*); extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Parser_mkParserExtension___closed__2; lean_object* l_RBNode_find___main___at_Lean_Parser_indexed___spec__3___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_21__ParserExtension_addEntry(lean_object*, lean_object*); lean_object* l_Lean_Parser_strLitNoAntiquot; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_octalNumberFn___closed__1; lean_object* l_Lean_Parser_many1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_many(lean_object*); @@ -93,6 +91,7 @@ lean_object* l_Lean_Parser_strAux___boxed(lean_object*, lean_object*, lean_objec lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_rawCh___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__1; extern uint32_t l_Lean_idBeginEscape; +lean_object* l_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_identFnAux___main___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_optionaInfo___elambda__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserFn_inhabited___rarg(lean_object*); @@ -116,11 +115,11 @@ lean_object* l_PersistentHashMap_foldlM___at_Lean_Parser_getSyntaxNodeKinds___sp extern size_t l_PersistentHashMap_insertAux___main___rarg___closed__2; lean_object* l_Array_foldSepBy___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_1__expectedToString___main(lean_object*); lean_object* l_Lean_Parser_longestMatchFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__6; lean_object* l_Lean_Parser_registerBuiltinParserAttribute___closed__1; lean_object* l_Lean_Parser_nameLitNoAntiquot; +lean_object* l___private_Lean_Parser_Parser_10__noImmediateColon; lean_object* l_Lean_Parser_parserExtension___elambda__1___boxed(lean_object*); lean_object* l_Lean_Syntax_foldSepArgs___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLitNoAntiquot___closed__2; @@ -136,8 +135,10 @@ lean_object* l_Lean_Parser_hexNumberFn(lean_object*, lean_object*, lean_object*) lean_object* l_Array_foldSepBy___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLitFnAux(lean_object*, lean_object*, lean_object*); uint8_t l_List_elem___main___at_Lean_NameHashSet_insert___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_next(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Prod_HasRepr___rarg___closed__1; lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_setExpected___elambda__1___boxed(lean_object*); @@ -145,6 +146,7 @@ lean_object* l_Lean_Parser_addParser(lean_object*, lean_object*, lean_object*, u lean_object* l_Lean_Parser_PrattParsingTables_inhabited; lean_object* l_Lean_Parser_categoryParserFnRef; lean_object* l_Lean_Parser_pushNone; +lean_object* l___private_Lean_Parser_Parser_7__tokenFnAux(lean_object*, lean_object*); lean_object* l_Lean_Parser_InputContext_inhabited; lean_object* l_Lean_Parser_parserExtension___elambda__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_HasToString___closed__1; @@ -153,7 +155,6 @@ lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__6___ra size_t l_USize_sub(size_t, size_t); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Parser_regTermParserAttribute(lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1; lean_object* l_PersistentHashMap_containsAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Parser_addLeadingParser___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_eraseReps___at_Lean_Parser_Error_toString___spec__4(lean_object*); @@ -165,7 +166,7 @@ lean_object* l_Lean_Parser_checkRBPGreater(lean_object*, lean_object*); lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension; lean_object* l_Lean_Parser_unquotedSymbolFn___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_17__mergePrecendences___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3; lean_object* l_Lean_Parser_group(lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo___closed__2; lean_object* l_Lean_Parser_dollarSymbol___closed__1; @@ -173,16 +174,23 @@ lean_object* l_Lean_Parser_ident; lean_object* l_Lean_Parser_parserExtension___closed__2; uint8_t l_Lean_Parser_isLitKind(lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_whitespace___main___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_22__ParserExtension_addImported___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_binNumberFn___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_fieldIdxKind___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(lean_object*); lean_object* l_Lean_Parser_withAntiquotFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_TokenConfig_HasBeq___closed__1; lean_object* l_Lean_Parser_categoryParserOfStackFn___closed__2; lean_object* lean_io_mk_ref(lean_object*, lean_object*); lean_object* l_Lean_Parser_checkColGe(lean_object*, lean_object*); +uint8_t l___private_Lean_Parser_Parser_4__isToken(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_25__ParserAttribute_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolFn(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_18__addTokenConfig(lean_object*, lean_object*); uint8_t l_Char_isDigit(uint32_t); +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserState(lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); @@ -191,7 +199,6 @@ lean_object* l_Lean_Parser_categoryParserFnExtension___closed__2; lean_object* l_Lean_Parser_nameLitNoAntiquot___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_foldArgsM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Array_foldSepByM___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_8__updateCache(lean_object*, lean_object*); lean_object* l_Lean_Parser_many1Indent___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1(lean_object*, lean_object*); lean_object* lean_io_ref_get(lean_object*, lean_object*); @@ -211,11 +218,11 @@ lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, l extern lean_object* l_Lean_Position_Inhabited___closed__1; lean_object* l_Lean_Parser_symbolNoWsFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkTrailingNode(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_foldlMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__3___boxed(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_finishCommentBlock___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbol___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__4; +lean_object* l___private_Lean_Parser_Parser_19__addTrailingParserAux(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkInputContext(lean_object*, lean_object*); lean_object* l_Lean_Parser_addBuiltinParser___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); @@ -229,7 +236,6 @@ lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*); lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__7(lean_object*); lean_object* l_Lean_Parser_dollarSymbol___closed__4; lean_object* l_Lean_Parser_mkAtomicInfo(lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Parser_Parser_19__addTrailingParserAux___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_binNumberFn___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit___elambda__1___closed__1; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); @@ -262,7 +268,6 @@ lean_object* l_Lean_Parser_initCacheForInput___boxed(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_forArgsM___spec__1(lean_object*); lean_object* l_Lean_Parser_symbolNoWs___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_isParserCategory___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_declareBuiltinParser___closed__2; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_Syntax_forSepArgsM(lean_object*); @@ -273,7 +278,6 @@ lean_object* l_Lean_Parser_checkStackTopFn___boxed(lean_object*, lean_object*, l lean_object* l_Lean_Syntax_foldSepRevArgs___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWsInfo___elambda__2(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findRevMAux___main___at___private_Init_Lean_Parser_Parser_9__pickNonNone___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension___closed__1; lean_object* l_Lean_Parser_checkColGeFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_declareBuiltinParser___closed__4; @@ -290,6 +294,7 @@ lean_object* l_Lean_Parser_strLit___closed__1; lean_object* l_Lean_Parser_unquotedSymbol___closed__2; extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_binNumberFn___spec__3___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_3__rawAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Parser_Error_toString___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_Parser_mkParserExtension___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkCategoryAntiquotParser(lean_object*, lean_object*, lean_object*); @@ -300,6 +305,7 @@ lean_object* l_Lean_Parser_ident___closed__1; lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepArgsM___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_finishCommentBlock___main(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_3__findAux___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_indexed___rarg(lean_object*, lean_object*, lean_object*, uint8_t); uint8_t l_Lean_Parser_takeWhileFn___lambda__1(lean_object*, uint32_t); uint32_t l_Lean_Parser_getNext(lean_object*, lean_object*); @@ -308,12 +314,11 @@ lean_object* l_Lean_Parser_mkAntiquot___closed__3; lean_object* l_Lean_Parser_addParserCategory(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_many1Fn(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3; lean_object* l_Lean_Parser_rawIdent___closed__3; lean_object* l_Lean_Parser_symbolNoWsInfo___elambda__1(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_14__addParserCategoryCore(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_forSepArgsM___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_Parser_identEqFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optional(lean_object*); lean_object* l_Lean_Parser_antiquotExpr___closed__2; @@ -321,11 +326,10 @@ lean_object* l_Lean_Parser_parserExtension___closed__3; lean_object* l_Lean_Parser_parserExtension___elambda__2___boxed(lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Syntax_foldSepRevArgs___spec__1(lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_17__mergePrecendences(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_declareTrailingBuiltinParser___closed__1; lean_object* l_Lean_Parser_mkParserExtension___lambda__1(lean_object*); lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__2; +lean_object* l_List_foldl___main___at___private_Lean_Parser_Parser_19__addTrailingParserAux___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension___closed__5; lean_object* l_Array_iterateMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit___closed__1; @@ -337,7 +341,6 @@ lean_object* l_Lean_Parser_indexed(lean_object*); lean_object* l_Lean_Parser_setExpectedFn___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_checkStackTopFn___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepArgs___spec__1(lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); extern lean_object* l_Lean_mkAttributeImplOfConstant___closed__1; @@ -347,10 +350,13 @@ lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_binNumberFn___spe lean_object* l_Lean_Parser_setCategoryParserFnRef(lean_object*); lean_object* l_Lean_Syntax_forArgsM(lean_object*); lean_object* l_Lean_Parser_throwUnknownParserCategory(lean_object*); +lean_object* l___private_Lean_Parser_Parser_6__nameLitAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__15; lean_object* l_Lean_Parser_decimalNumberFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_PrattParsingTables_inhabited___closed__1; lean_object* l_Lean_Parser_compileParserDescr___main___closed__3; +lean_object* l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1; lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_quotedSymbolFn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn(lean_object*, lean_object*, lean_object*); @@ -359,7 +365,6 @@ lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepArgsM___spec__ lean_object* l_Lean_Parser_declareTrailingBuiltinParser___closed__2; lean_object* l_Lean_Parser_nonReservedSymbolInfo___elambda__2(lean_object*); lean_object* l_Lean_Parser_initCacheForInput(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_9__pickNonNone___boxed(lean_object*); lean_object* l_Lean_Parser_symbolNoWsAux(lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_identFnAux___main___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; @@ -375,7 +380,7 @@ lean_object* l_Lean_Parser_setExpected___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbol(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchFn___closed__1; lean_object* l_Lean_Parser_checkStackTopFn(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__1; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolInfo___elambda__1(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); @@ -393,24 +398,20 @@ lean_object* l_Lean_Parser_quotedCharFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__9; lean_object* l_Lean_Parser_checkNoWsBeforeFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder(lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo___elambda__2(lean_object*); lean_object* l_Lean_Parser_strLitFn___closed__1; lean_object* l_Lean_Parser_manyAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_hasAndthen; lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_rawCh___elambda__1___spec__1(uint32_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___closed__2; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_HasBeq___closed__1; lean_object* l_Lean_Parser_nonReservedSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1; lean_object* l_Lean_Syntax_foldSepArgsM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Parser_inhabited; lean_object* l_Lean_Parser_hasAndthen___closed__1; lean_object* l_Lean_Parser_mkBuiltinParserCategories(lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__6; -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_quotedSymbolFn___spec__2(uint32_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_identFnAux___main___spec__3(lean_object*, lean_object*); @@ -436,6 +437,7 @@ lean_object* l_Lean_Parser_ParserState_keepLatest(lean_object*, lean_object*); lean_object* l_Lean_Parser_dollarSymbol___elambda__1___closed__1; lean_object* l_Lean_Parser_declareBuiltinParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; +lean_object* l___private_Lean_Parser_Parser_3__rawAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldSepRevArgsM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_TokenMap_HasEmptyc(lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Syntax_foldSepRevArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -447,11 +449,13 @@ lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_strLitKind; lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_forArgsM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_22__ParserExtension_addImported(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_finishCommentBlock___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension___closed__6; lean_object* l_Lean_Parser_checkNoWsBefore___elambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldArgs(lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo___elambda__1(lean_object*); +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_nodeInfo___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_merge(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserOfConstantUnsafe(lean_object*, lean_object*, lean_object*); @@ -460,22 +464,26 @@ lean_object* l_Lean_registerAttributeOfBuilder(lean_object*, lean_object*, lean_ lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_keepLatest___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy(lean_object*, lean_object*, uint8_t); +lean_object* l_Array_findRevMAux___main___at___private_Lean_Parser_Parser_9__pickNonNone___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldArgsM(lean_object*, lean_object*); lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_numLitNoAntiquot___closed__2; +lean_object* l___private_Lean_Parser_Parser_16__ParserExtension_mkInitial(lean_object*); lean_object* l_RBNode_find___main___at_Lean_Parser_indexed___spec__2___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_11__mkResult(lean_object*, lean_object*); lean_object* l_Lean_Parser_withAntiquot(lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___closed__8; lean_object* l_Lean_Parser_fieldIdx___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1; uint8_t l_Lean_Parser_Error_beq(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__26; lean_object* l_Lean_Parser_ParserState_keepNewError(lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotExpr; lean_object* l_Lean_Parser_regTermParserAttribute___closed__1; lean_object* l_Lean_Parser_symbol(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_21__ParserExtension_addEntry(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserExtension___closed__8; lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_octalNumberFn___spec__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2; lean_object* l_Lean_Parser_symbolInfo___elambda__1___boxed(lean_object*); lean_object* l_Lean_Parser_whitespace___main(lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___closed__3; @@ -488,8 +496,8 @@ uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind___closed__1; lean_object* l_Lean_Parser_checkRBPGreater___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optionaInfo(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_12__mkTrailingResult(lean_object*, lean_object*); lean_object* l_Lean_Parser_FirstTokens_seq(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1; lean_object* l_Lean_Parser_peekToken(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString___closed__4; lean_object* l_Lean_Parser_anyOfFn___main___closed__1; @@ -500,16 +508,15 @@ lean_object* l_Lean_Parser_nodeWithAntiquot___boxed(lean_object*, lean_object*, lean_object* l_Lean_Parser_antiquotNestedExpr___closed__4; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_1__expectedToString___main___closed__1; lean_object* l_Lean_Parser_binNumberFn(lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserOfConstant___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_charLitNoAntiquot___closed__3; lean_object* l_Lean_Parser_peekTokenAux(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_HasBeq; +lean_object* l___private_Lean_Parser_Parser_15__addBuiltinParserCategory(lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo___closed__3; -extern lean_object* l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; lean_object* l_Lean_Parser_parserExtension___elambda__4(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_Inhabited___closed__1; lean_object* l_Lean_Parser_throwUnknownParserCategory___rarg(lean_object*); @@ -518,14 +525,15 @@ uint8_t l_Lean_Parser_checkTailNoWs(lean_object*); lean_object* l_Lean_Parser_checkTailWs___boxed(lean_object*); lean_object* l_Lean_Parser_charLitFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_trailingLoopStep(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1(lean_object*); lean_object* l_Lean_Parser_charLitNoAntiquot___closed__2; lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_foldArgsM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addLeadingParser___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_12__mkTrailingResult(lean_object*, lean_object*); lean_object* l_Lean_Parser_setExpectedFn(lean_object*); lean_object* l_Lean_Parser_strLitFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserExtension___lambda__2___boxed(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_11__mkResult(lean_object*, lean_object*); lean_object* l_PersistentHashMap_foldlMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__12; lean_object* l_Lean_Parser_charLit___closed__3; @@ -536,6 +544,7 @@ lean_object* l_Lean_Parser_antiquotNestedExpr___closed__7; lean_object* l_Lean_Parser_nameLit___closed__1; lean_object* l_Lean_Parser_antiquotExpr___closed__1; lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_Parser_Error_toString___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__5; lean_object* l_Nat_repr(lean_object*); lean_object* l_Lean_Parser_categoryParserOfStack(lean_object*, lean_object*); @@ -545,10 +554,9 @@ lean_object* l_Lean_Parser_mkBuiltinSyntaxNodeKindSetRef(lean_object*); lean_object* l_Lean_Parser_registerBuiltinParserAttribute___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkWsBefore(lean_object*); lean_object* l_Lean_Parser_checkNoWsBeforeFn(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_25__ParserAttribute_add(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_4__isToken___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentHashMap_containsAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__2(lean_object*, size_t, lean_object*); lean_object* l_Lean_Parser_ParserState_setCache(lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__10; lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepArgsM___spec__1(lean_object*, lean_object*); @@ -558,36 +566,33 @@ lean_object* l_Lean_Parser_categoryParserFnExtension___elambda__1(lean_object*, lean_object* l_Lean_Parser_mkIdResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_decimalNumberFn___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_octalNumberFn___spec__2___boxed(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2; lean_object* l_Lean_Parser_nameLit___closed__2; lean_object* l_Lean_Parser_strLitNoAntiquot___closed__1; lean_object* l_Lean_Parser_sepByFn(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__2; +lean_object* l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1; lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_chFn___spec__1(uint32_t, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory(lean_object*, uint8_t, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentHashMap_insertAux___main___rarg___closed__3; +lean_object* l_List_foldlM___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1; lean_object* l_Lean_Parser_rawCh___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_getNext___boxed(lean_object*, lean_object*); lean_object* l_IO_ofExcept___at_Lean_Parser_declareBuiltinParser___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserAttributeImpl___closed__1; lean_object* l_Lean_Parser_termParser___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind; extern lean_object* l_List_repr___rarg___closed__2; extern lean_object* l_Lean_charLitKind; extern lean_object* l_List_reprAux___main___rarg___closed__1; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_hexNumberFn___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_TokenMap_Inhabited(lean_object*); -lean_object* l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserFnExtension___elambda__1___rarg___boxed(lean_object*); -lean_object* l_PersistentHashMap_foldlMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Parser_regTermParserAttribute___closed__2; lean_object* l_Lean_Parser_rawIdent; lean_object* l_Array_foldlStepMAux___main___at_Array_foldSepByM___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2; +lean_object* l___private_Lean_Parser_Parser_9__pickNonNone___boxed(lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__10; lean_object* l_Lean_Parser_FirstTokens_merge(lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit___elambda__1___closed__1; @@ -595,27 +600,29 @@ lean_object* l_Lean_Parser_pushNone___elambda__1___rarg(lean_object*); lean_object* lean_eval_const(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserAttributeImpl(lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__5; +lean_object* l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; lean_object* l_Lean_Parser_symbolInfo___elambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_hexNumberFn___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit___closed__2; lean_object* l_Lean_Parser_ParserFn_inhabited(lean_object*); lean_object* l_Lean_Parser_ParserExtensionState_inhabited; +lean_object* l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkEOIError___closed__1; uint8_t l_Lean_Parser_isIdCont(lean_object*, lean_object*); lean_object* l_Lean_Parser_mergeOrElseErrors___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1; lean_object* l_Lean_Parser_compileParserDescr(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_quotedSymbolFn___spec__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_14__addParserCategoryCore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_declareTrailingBuiltinParser(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo___elambda__1___boxed(lean_object*); lean_object* l_Lean_Parser_setCategoryParserFnRef___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_octalNumberFn___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Parser_mkParserExtension___spec__1(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_foldArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepArgs___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addParserTokens(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_3__rawAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); lean_object* l_Lean_Parser_declareBuiltinParser___closed__7; extern lean_object* l_Lean_Environment_evalConstCheck___rarg___closed__1; @@ -626,7 +633,6 @@ extern lean_object* l_IO_Error_Inhabited___closed__1; lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_octalNumberFn___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_hasError___boxed(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__2; lean_object* l_Lean_Parser_unicodeSymbol___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinSyntaxNodeKindSetRef___spec__1; lean_object* l_Lean_Parser_nodeInfo___elambda__2(lean_object*, lean_object*); @@ -638,32 +644,30 @@ lean_object* l_Lean_Parser_strLitNoAntiquot___closed__3; lean_object* l_Lean_Parser_addParserCategory___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_registerBuiltinParserAttribute(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Parser_charLitNoAntiquot___closed__1; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_Parser_Error_toString___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserFnExtension___closed__3; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_Parser_Parser_inhabited___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_checkTailNoWs___boxed(lean_object*); lean_object* l_Lean_Parser_symbolNoWsAux___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWsInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo___elambda__1___boxed(lean_object*); +lean_object* l___private_Lean_Parser_Parser_17__mergePrecendences(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); +lean_object* l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo___elambda__1(lean_object*); lean_object* l_Lean_Parser_anyOfFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkEmptySubstringAt(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_binNumberFn___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_strLitFnAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString___closed__2; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Data_Trie_3__findAux___main___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__3; lean_object* l_Lean_Parser_nameLitNoAntiquot___closed__3; lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_IO_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchMkResult(lean_object*, lean_object*); size_t l_USize_mul(size_t, size_t); +lean_object* l___private_Lean_Parser_Parser_18__addTokenConfig___closed__1; lean_object* l_Lean_FileMap_ofString(lean_object*); lean_object* l_Lean_Parser_whitespace(lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbolFn___closed__4; @@ -677,10 +681,10 @@ lean_object* l_Lean_Parser_ParserState_restore___boxed(lean_object*, lean_object lean_object* l_Lean_Parser_mkAntiquot___closed__21; lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolAux(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_23__catNameToString(lean_object*); lean_object* l_Lean_Parser_isValidSyntaxNodeKind___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; lean_object* l_Lean_Parser_sepBy1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Trie_2__insertAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit___closed__3; lean_object* l_Lean_Parser_mkParserExtension(lean_object*); lean_object* l_Lean_Parser_ParserState_popSyntax(lean_object*); @@ -689,6 +693,8 @@ lean_object* l_Lean_Parser_sepByFn___boxed(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_mkBuiltinTokenTable(lean_object*); lean_object* l_Lean_Parser_FirstTokens_toStr___closed__3; lean_object* l_Lean_Parser_manyAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_15__addBuiltinParserCategory___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_20__updateBuiltinTokens(lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_Parser_indexed___spec__3(lean_object*); lean_object* l_Lean_Parser_addTrailingParser(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__7; @@ -702,11 +708,10 @@ lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_quotedSymbolFn___spec__1(u lean_object* l_Lean_Parser_trailingNodeFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdent___closed__2; lean_object* l_Lean_Parser_addBuiltinLeadingParser(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(lean_object*, size_t, lean_object*); lean_object* l_Lean_Syntax_foldSepArgsM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserExtension___closed__7; -lean_object* l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1(lean_object*); lean_object* l_Lean_Parser_regBuiltinTermParserAttr___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_6__nameLitAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_prattParser___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__7; lean_object* l_Lean_Parser_rawIdentNoAntiquot___closed__2; @@ -714,19 +719,18 @@ lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_ob size_t l_USize_land(size_t, size_t); lean_object* l_Lean_Parser_parserExtension___elambda__4___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Parser_mkParserExtension___spec__3___closed__1; lean_object* l_Lean_Parser_mkAntiquot___elambda__2(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__2; lean_object* l_Lean_Parser_categoryParserFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParametricAttribute_setParam___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Array_foldSepByM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_Parser_mkCategoryParserFnExtension___closed__1; lean_object* l_Lean_Parser_mkParserAttributeImpl___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Info(lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedCharFn___closed__1; lean_object* l_Lean_Parser_charLitFnAux___closed__1; -lean_object* l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWs(lean_object*, lean_object*); lean_object* l_Lean_Parser_hexDigitFn___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mergeErrors___boxed(lean_object*, lean_object*, lean_object*); @@ -741,10 +745,12 @@ lean_object* l_Lean_Parser_sepBy1(lean_object*, lean_object*, uint8_t, uint8_t); lean_object* l_Lean_Parser_sepBy1Fn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__3; uint8_t l_Array_anyRangeMAux___main___at_Lean_Parser_mkParserExtension___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; lean_object* l_Lean_Parser_TokenConfig_beq___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; lean_object* l_Lean_Parser_noFirstTokenInfo___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___elambda__1___closed__1; +lean_object* l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder(lean_object*); lean_object* l_Lean_Parser_declareLeadingBuiltinParser(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_appPrec; lean_object* l_Lean_Parser_checkColGeFn(lean_object*, lean_object*, lean_object*, lean_object*); @@ -771,20 +777,22 @@ lean_object* l_Lean_Parser_unquotedSymbolFn(lean_object*, lean_object*); lean_object* l_String_intercalate(lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; lean_object* l_Lean_Parser_numLit; +lean_object* l___private_Lean_Parser_Parser_17__mergePrecendences___closed__3; lean_object* l_Lean_Parser_leadingParser___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_hexDigitFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkCategoryParserFnRef___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__16; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1; lean_object* l_Lean_Parser_compileParserDescr___main___closed__2; lean_object* l_Lean_Parser_FirstTokens_HasToString___closed__1; lean_object* l_Lean_Parser_FirstTokens_HasToString; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit___elambda__1(lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_Parser_TokenMap_insert___spec__1(lean_object*); lean_object* l_Lean_Parser_Error_toString(lean_object*); lean_object* l_Lean_Parser_categoryParserOfStackFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWsFnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_findRevMAux___main___at___private_Init_Lean_Parser_Parser_9__pickNonNone___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_Parser_indexed___spec__2___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkTrailingNode___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_many1Indent___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -811,7 +819,6 @@ lean_object* l_Lean_Parser_Error_Inhabited; lean_object* l_RBNode_find___main___at_Lean_Parser_TokenMap_insert___spec__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbolFn___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2; lean_object* l_Lean_Parser_antiquotNestedExpr___closed__6; lean_object* l_Lean_Parser_mkAntiquot___closed__22; lean_object* l_Lean_Syntax_getArgs(lean_object*); @@ -819,6 +826,7 @@ lean_object* l_Lean_Environment_addAndCompile(lean_object*, lean_object*, lean_o lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_many1Indent___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_many1Indent___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_1__expectedToString(lean_object*); lean_object* l_Lean_Parser_chFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object*, lean_object*); lean_object* l_Lean_Parser_numLitNoAntiquot; @@ -830,10 +838,11 @@ lean_object* l_Lean_Parser_runParserCategory(lean_object*, lean_object*, lean_ob lean_object* l_Array_iterateMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addLeadingParser(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_setExpectedFn___boxed(lean_object*); +lean_object* l_Array_findRevMAux___main___at___private_Lean_Parser_Parser_9__pickNonNone___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbolFn___boxed(lean_object*, lean_object*); lean_object* l_Lean_Name_toExprAux___main(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_10__noImmediateColon___closed__2; lean_object* l_Lean_Parser_checkRBPGreaterFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserExtension___closed__5; lean_object* l_Lean_Parser_dollarSymbol___closed__3; @@ -843,7 +852,6 @@ lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_binNumberFn___spec__2(le lean_object* l_Lean_Parser_TokenConfig_toStr(lean_object*); lean_object* l_Lean_Parser_quotedSymbolFn___closed__1; lean_object* l_Lean_Parser_checkStackTop(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__3; lean_object* l_Lean_Parser_sepBy1Fn(uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_octalNumberFn___spec__1___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; @@ -854,14 +862,13 @@ lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__4___ra lean_object* l_List_toString___at_Lean_Parser_FirstTokens_toStr___spec__1(lean_object*); lean_object* l_Lean_Parser_epsilonInfo___closed__3; lean_object* l_Lean_Parser_unquotedSymbol; -uint8_t l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_1__expectedToString___main(lean_object*); lean_object* l_Lean_Parser_hashOrelse___closed__1; lean_object* l_Lean_Parser_checkRBPGreaterFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo___elambda__2___boxed(lean_object*); lean_object* l_Lean_Parser_many1Indent(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_whitespace___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_builtinSyntaxNodeKindSetRef; -uint8_t l___private_Init_Lean_Parser_Parser_4__isToken(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserState___boxed(lean_object*); lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchFn_u2081(lean_object*, lean_object*, lean_object*); @@ -869,9 +876,10 @@ lean_object* l_Lean_Parser_symbolNoWsInfo___closed__1; lean_object* l_Lean_Parser_pushNone___elambda__1(lean_object*); lean_object* lean_io_ref_reset(lean_object*, lean_object*); lean_object* l_Lean_Parser_FirstTokens_toStr___closed__2; +lean_object* l___private_Lean_Parser_Parser_25__ParserAttribute_add(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l___private_Lean_Parser_Parser_10__noImmediateColon___closed__1; lean_object* lean_io_ref_swap(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdentNoAntiquot; -lean_object* l___private_Init_Lean_Parser_Parser_5__isIdFirstOrBeginEscape___boxed(lean_object*); lean_object* l_Lean_Parser_ParserState_replaceLongest(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Parser_TokenConfig_beq(lean_object*, lean_object*); extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__2; @@ -883,21 +891,21 @@ lean_object* l_Lean_Parser_dollarSymbol___elambda__1(lean_object*, lean_object*) lean_object* l_Lean_Parser_unicodeSymbolFn___closed__1; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_many1Indent___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_hexNumberFn___spec__2___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; lean_object* l_Lean_Parser_checkNoWsBefore___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_setBlack___rarg(lean_object*); lean_object* l_Lean_Parser_noFirstTokenInfo___elambda__2(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__1; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Parser_mkCategoryParserFnExtension___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkCategoryParserFnRef___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo___closed__2; lean_object* l_Lean_Parser_Parser_inhabited___closed__2; lean_object* l_Lean_Parser_mkCategoryParserFnExtension(lean_object*); lean_object* l_Lean_Parser_dollarSymbol___closed__2; +lean_object* l___private_Lean_Parser_Parser_18__addTokenConfig___closed__3; lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_rawCh___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numberFnAux___closed__1; lean_object* l_Lean_Parser_categoryParserFnExtension___elambda__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_foldArgsM___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserCategory_inhabited___closed__1; @@ -910,15 +918,12 @@ lean_object* l_Lean_Parser_identNoAntiquot___closed__3; lean_object* l_Lean_Parser_epsilonInfo___closed__1; lean_object* lean_io_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_find_x3f___at_Lean_Parser_addLeadingParser___spec__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_6__nameLitAux___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_FileMap_Inhabited___closed__1; lean_object* l_RBNode_find___main___at_Lean_Parser_indexed___spec__1___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__1; lean_object* l_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); lean_object* l_Lean_Parser_rawIdentFn___boxed(lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Array_foldSepBy___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_6__nameLitAux___closed__1; lean_object* l_String_trim(lean_object*); lean_object* l_RBNode_find___main___at_Lean_Parser_indexed___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingParserAux(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); @@ -939,41 +944,43 @@ lean_object* l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSy lean_object* l_Lean_Parser_nonReservedSymbolInfo___closed__4; uint8_t l_Lean_isIdFirst(uint32_t); lean_object* l_Array_back___at_Lean_Parser_checkStackTopFn___spec__1___boxed(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkLongestNodeAlt(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_17__mergePrecendences___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_currLbp(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserOfConstant(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhile1Fn(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Array_qsortAux___main___at_Lean_Parser_Error_toString___spec__2(lean_object*, lean_object*, lean_object*); lean_object* lean_io_initializing(lean_object*); +lean_object* l___private_Lean_Parser_Parser_8__updateCache(lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; lean_object* l_Lean_Parser_sepByInfo___elambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolInfo___closed__1; lean_object* l_Lean_Syntax_forSepArgsM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_EnvExtension_getStateUnsafe___rarg(lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_Parser_indexed___spec__2(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_9__pickNonNone(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_3__rawAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__6; -lean_object* l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdent___closed__1; lean_object* l_Lean_Parser_parserExtension___elambda__1(lean_object*); +lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Parser_mkParserExtension___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Parser_getSyntaxNodeKinds(lean_object*); lean_object* l_Lean_Parser_addBuiltinTrailingParser(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_Parser_mkCategoryParserFnExtension___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__7; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); +lean_object* l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1; lean_object* l_Lean_Parser_optionaInfo___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_addParser___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingNode(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_1__expectedToString___main___closed__1; +lean_object* l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_toErrorMsg(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkStxLit(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__2(lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo___closed__1; lean_object* l_Lean_Parser_Error_toString___closed__3; @@ -981,7 +988,6 @@ lean_object* l_Lean_Parser_ParserState_stackSize(lean_object*); lean_object* l_Lean_Parser_fieldIdx; lean_object* l_Lean_Parser_Parser_inhabited___closed__3; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_hexNumberFn___spec__3(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__1; lean_object* l_Lean_Parser_unicodeSymbolFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_forSepArgsM___spec__1(lean_object*); lean_object* l_Lean_Parser_mkAntiquot___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -991,19 +997,19 @@ lean_object* l_Lean_Parser_ParserState_next___boxed(lean_object*, lean_object*, extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Parser_Parser_inhabited___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepArgsM___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_18__addTokenConfig(lean_object*, lean_object*); -lean_object* l_PersistentHashMap_foldlM___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__2___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined(lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Info___elambda__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo___elambda__2(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_1__expectedToString(lean_object*); lean_object* l_Lean_Parser_orelse(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_foldArgs___spec__1(lean_object*); uint8_t l_List_beq___main___at_Lean_Parser_Error_toString___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo___elambda__1(lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_hexNumberFn___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_9__pickNonNone(lean_object*); lean_object* l_Lean_Parser_categoryParserFnExtension; lean_object* l_Array_iterateMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_epsilonInfo___elambda__2___boxed(lean_object*); @@ -1013,8 +1019,8 @@ lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_dollarSymbol___elambda__1___closed__3; lean_object* l_Lean_Parser_andthen(lean_object*, lean_object*); lean_object* l_Lean_Parser_node(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_forArgsM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined(lean_object*); lean_object* l_Lean_Parser_stringToParserCoe___boxed(lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__8; @@ -1032,30 +1038,27 @@ lean_object* l_List_beq___main___at_Lean_Parser_Error_toString___spec__1___boxed lean_object* l_Lean_Parser_mkCategoryParserFnRef___closed__1; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_identFnAux___main___spec__2(lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); -lean_object* l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__2; +lean_object* l___private_Lean_Parser_Parser_6__nameLitAux___closed__1; lean_object* l_Lean_Parser_mkTokenAndFixPos(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo___elambda__1___boxed(lean_object*); lean_object* l_Lean_Parser_FirstTokens_toOptional(lean_object*); -lean_object* l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_currLbp___closed__1; lean_object* l_Lean_Parser_checkWsBefore___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerAttributeImplBuilder(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); uint8_t l_UInt32_decLe(uint32_t, uint32_t); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_identFnAux___main___spec__3___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1; lean_object* l_Lean_Parser_getSyntaxNodeKinds___boxed(lean_object*); uint8_t l_Lean_Parser_ParserState_hasError(lean_object*); lean_object* l_Lean_Parser_symbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_hexDigitFn___closed__1; lean_object* l_Lean_Parser_mkAtom(lean_object*, lean_object*); lean_object* l_Lean_Parser_currLbp___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_4__isToken___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkEOIError(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_19__addTrailingParserAux(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_6__nameLitAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolFnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_indexed___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__4; lean_object* l_Lean_Parser_rawFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1067,47 +1070,43 @@ lean_object* l_Lean_Parser_mkAntiquot___closed__25; lean_object* l_Lean_Parser_checkWsBefore___elambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserFn_inhabited___rarg___boxed(lean_object*); extern lean_object* l_String_Inhabited; -lean_object* l___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_eraseDups___at_Lean_Parser_addLeadingParser___spec__5(lean_object*); -uint8_t l___private_Init_Lean_Parser_Parser_5__isIdFirstOrBeginEscape(uint32_t); lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__3; lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__4(lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Parser_FirstTokens_toStr___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_setExpected___elambda__1(lean_object*); -lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__5___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolInfo___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2; lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__5; -lean_object* l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbolFn___closed__3; lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_identFnAux___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldArgs___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_18__addTokenConfig___closed__2; uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_replaceLongest___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchStep___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlStepMAux___main___at_Lean_Syntax_foldSepRevArgsM___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentHashMap_containsAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(lean_object*, size_t, lean_object*); lean_object* l_Lean_Parser_Error_toString___closed__1; +lean_object* l_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_regBuiltinTermParserAttr___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1; lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Parser_addLeadingParser___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__2; lean_object* l_Lean_Parser_compileParserDescr___main___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_7__tokenFnAux(lean_object*, lean_object*); lean_object* l_Lean_Parser_Parser_inhabited___closed__1; lean_object* l_Lean_Syntax_getTailInfo___main(lean_object*); lean_object* l_Lean_Parser_categoryParserOfStack___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__1; +lean_object* l_List_foldlM___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_initAttr; lean_object* l_Lean_Parser_identFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_decimalNumberFn___spec__2___boxed(lean_object*, lean_object*); lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__3(lean_object*); lean_object* l_Lean_Parser_TokenConfig_HasBeq; +lean_object* l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2; lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Syntax_foldSepRevArgs___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotExpr___closed__3; lean_object* l_Lean_Parser_charLitNoAntiquot; @@ -1115,25 +1114,26 @@ lean_object* l_Lean_Parser_strLitFnAux___main___boxed(lean_object*, lean_object* lean_object* l_Lean_mkErrorStringWithPos(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_10__noImmediateColon; lean_object* l_Lean_Parser_unicodeSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___elambda__1___closed__2; lean_object* l_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__3___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_16__ParserExtension_mkInitial(lean_object*); +lean_object* l___private_Lean_Parser_Parser_5__isIdFirstOrBeginEscape___boxed(lean_object*); lean_object* l_Lean_Parser_sepBy1Info___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdent___elambda__1(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit; lean_object* l_Lean_Parser_many1(lean_object*, uint8_t); +lean_object* l_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo___closed__2; lean_object* l_Lean_Parser_sepBy___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_identNoAntiquot___closed__2; +uint8_t l___private_Lean_Parser_Parser_5__isIdFirstOrBeginEscape(uint32_t); +lean_object* l___private_Lean_Parser_Parser_17__mergePrecendences___closed__2; lean_object* l_Lean_Parser_strLit___closed__2; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; +lean_object* l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1; lean_object* l_Lean_Parser_nonReservedSymbolInfo___boxed(lean_object*, lean_object*); -lean_object* l_List_foldlM___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_17__mergePrecendences___closed__1; lean_object* l_Lean_Parser_ParserState_mergeErrors(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isIdRest(uint32_t); lean_object* l_Lean_Parser_numberFnAux___boxed(lean_object*, lean_object*); @@ -1144,18 +1144,18 @@ lean_object* l_Lean_Parser_compileParserDescr___main___closed__5; lean_object* l_Lean_Parser_mkIdent(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameLitKind___closed__1; uint8_t lean_string_dec_eq(lean_object*, lean_object*); -lean_object* l_PersistentHashMap_foldlM___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(lean_object*, lean_object*); +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_isLitKind___boxed(lean_object*); lean_object* l_IO_ofExcept___at_Lean_Parser_declareBuiltinParser___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_registerParserCategory___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchFnAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__1; lean_object* l_Lean_Parser_ParserFn_inhabited___boxed(lean_object*); lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(lean_object*, lean_object*); uint8_t l_Lean_Parser_isLitKind(lean_object* x_1) { _start: { @@ -2080,7 +2080,7 @@ x_1 = l_Lean_Parser_Error_Inhabited___closed__1; return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_1__expectedToString___main___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_1__expectedToString___main___closed__1() { _start: { lean_object* x_1; @@ -2088,7 +2088,7 @@ x_1 = lean_mk_string(" or "); return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_1__expectedToString___main(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_1__expectedToString___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2124,7 +2124,7 @@ lean_dec(x_1); x_7 = lean_ctor_get(x_3, 0); lean_inc(x_7); lean_dec(x_3); -x_8 = l___private_Init_Lean_Parser_Parser_1__expectedToString___main___closed__1; +x_8 = l___private_Lean_Parser_Parser_1__expectedToString___main___closed__1; x_9 = lean_string_append(x_6, x_8); x_10 = lean_string_append(x_9, x_7); lean_dec(x_7); @@ -2139,7 +2139,7 @@ lean_inc(x_11); lean_dec(x_1); x_12 = l_List_reprAux___main___rarg___closed__1; x_13 = lean_string_append(x_11, x_12); -x_14 = l___private_Init_Lean_Parser_Parser_1__expectedToString___main(x_3); +x_14 = l___private_Lean_Parser_Parser_1__expectedToString___main(x_3); x_15 = lean_string_append(x_13, x_14); lean_dec(x_14); return x_15; @@ -2148,11 +2148,11 @@ return x_15; } } } -lean_object* l___private_Init_Lean_Parser_Parser_1__expectedToString(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_1__expectedToString(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Parser_Parser_1__expectedToString___main(x_1); +x_2 = l___private_Lean_Parser_Parser_1__expectedToString___main(x_1); return x_2; } } @@ -2557,7 +2557,7 @@ lean_dec(x_14); x_17 = l_Array_toList___rarg(x_16); lean_dec(x_16); x_18 = l_List_eraseReps___at_Lean_Parser_Error_toString___spec__4(x_17); -x_19 = l___private_Init_Lean_Parser_Parser_1__expectedToString___main(x_18); +x_19 = l___private_Lean_Parser_Parser_1__expectedToString___main(x_18); x_20 = l_Lean_Parser_Error_toString___closed__1; x_21 = lean_string_append(x_20, x_19); lean_dec(x_19); @@ -2599,7 +2599,7 @@ lean_dec(x_34); x_37 = l_Array_toList___rarg(x_36); lean_dec(x_36); x_38 = l_List_eraseReps___at_Lean_Parser_Error_toString___spec__4(x_37); -x_39 = l___private_Init_Lean_Parser_Parser_1__expectedToString___main(x_38); +x_39 = l___private_Lean_Parser_Parser_1__expectedToString___main(x_38); x_40 = l_Lean_Parser_Error_toString___closed__1; x_41 = lean_string_append(x_40, x_39); lean_dec(x_39); @@ -5383,7 +5383,7 @@ x_4 = l_Lean_Parser_many1(x_1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t 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; @@ -5542,7 +5542,7 @@ return x_12; } } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -5552,19 +5552,19 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); return x_12; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Lean_Parser_Parser_2__sepByFnAux___main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -5574,7 +5574,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); return x_12; } } @@ -5588,7 +5588,7 @@ x_7 = lean_array_get_size(x_6); lean_dec(x_6); x_8 = 0; x_9 = 1; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main(x_2, x_3, x_1, x_7, x_8, x_9, x_4, x_5); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main(x_2, x_3, x_1, x_7, x_8, x_9, x_4, x_5); return x_10; } } @@ -5611,7 +5611,7 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main(x_2, x_3, x_1, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main(x_2, x_3, x_1, x_8, x_4, x_9, x_5, x_6); return x_10; } } @@ -6445,7 +6445,7 @@ lean_ctor_set(x_3, 2, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Parser_Parser_3__rawAux(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Parser_Parser_3__rawAux(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -6514,13 +6514,13 @@ return x_25; } } } -lean_object* l___private_Init_Lean_Parser_Parser_3__rawAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Parser_Parser_3__rawAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; lean_object* x_6; x_5 = lean_unbox(x_2); lean_dec(x_2); -x_6 = l___private_Init_Lean_Parser_Parser_3__rawAux(x_1, x_5, x_3, x_4); +x_6 = l___private_Lean_Parser_Parser_3__rawAux(x_1, x_5, x_3, x_4); lean_dec(x_3); return x_6; } @@ -6538,7 +6538,7 @@ lean_inc(x_7); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; -x_8 = l___private_Init_Lean_Parser_Parser_3__rawAux(x_5, x_2, x_3, x_6); +x_8 = l___private_Lean_Parser_Parser_3__rawAux(x_5, x_2, x_3, x_6); lean_dec(x_3); return x_8; } @@ -6620,7 +6620,7 @@ lean_inc(x_12); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; -x_13 = l___private_Init_Lean_Parser_Parser_3__rawAux(x_10, x_2, x_3, x_11); +x_13 = l___private_Lean_Parser_Parser_3__rawAux(x_10, x_2, x_3, x_11); return x_13; } else @@ -6714,7 +6714,7 @@ lean_inc(x_12); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; -x_13 = l___private_Init_Lean_Parser_Parser_3__rawAux(x_10, x_2, x_3, x_11); +x_13 = l___private_Lean_Parser_Parser_3__rawAux(x_10, x_2, x_3, x_11); return x_13; } else @@ -8501,7 +8501,7 @@ x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Parser_Parser_4__isToken(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +uint8_t l___private_Lean_Parser_Parser_4__isToken(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -8524,11 +8524,11 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Parser_Parser_4__isToken___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_4__isToken___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Parser_Parser_4__isToken(x_1, x_2, x_3); +x_4 = l___private_Lean_Parser_Parser_4__isToken(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -8665,7 +8665,7 @@ _start: lean_object* x_6; uint8_t x_7; x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); -x_7 = l___private_Init_Lean_Parser_Parser_4__isToken(x_1, x_6, x_2); +x_7 = l___private_Lean_Parser_Parser_4__isToken(x_1, x_6, x_2); if (x_7 == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -9043,7 +9043,7 @@ lean_dec(x_4); return x_6; } } -uint8_t l___private_Init_Lean_Parser_Parser_5__isIdFirstOrBeginEscape(uint32_t x_1) { +uint8_t l___private_Lean_Parser_Parser_5__isIdFirstOrBeginEscape(uint32_t x_1) { _start: { uint8_t x_2; @@ -9063,18 +9063,18 @@ return x_5; } } } -lean_object* l___private_Init_Lean_Parser_Parser_5__isIdFirstOrBeginEscape___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_5__isIdFirstOrBeginEscape___boxed(lean_object* x_1) { _start: { uint32_t x_2; uint8_t x_3; lean_object* x_4; x_2 = lean_unbox_uint32(x_1); lean_dec(x_1); -x_3 = l___private_Init_Lean_Parser_Parser_5__isIdFirstOrBeginEscape(x_2); +x_3 = l___private_Lean_Parser_Parser_5__isIdFirstOrBeginEscape(x_2); x_4 = lean_box(x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_6__nameLitAux___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_6__nameLitAux___closed__1() { _start: { lean_object* x_1; @@ -9082,7 +9082,7 @@ x_1 = lean_mk_string("invalid Name literal"); return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_6__nameLitAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_6__nameLitAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -9135,7 +9135,7 @@ else { lean_object* x_25; lean_object* x_26; lean_dec(x_12); -x_25 = l___private_Init_Lean_Parser_Parser_6__nameLitAux___closed__1; +x_25 = l___private_Lean_Parser_Parser_6__nameLitAux___closed__1; x_26 = l_Lean_Parser_ParserState_mkError(x_9, x_25); return x_26; } @@ -9144,22 +9144,22 @@ else { lean_object* x_27; lean_object* x_28; lean_dec(x_10); -x_27 = l___private_Init_Lean_Parser_Parser_6__nameLitAux___closed__1; +x_27 = l___private_Lean_Parser_Parser_6__nameLitAux___closed__1; x_28 = l_Lean_Parser_ParserState_mkErrorAt(x_9, x_27, x_1); return x_28; } } } -lean_object* l___private_Init_Lean_Parser_Parser_6__nameLitAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_6__nameLitAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Parser_Parser_6__nameLitAux(x_1, x_2, x_3); +x_4 = l___private_Lean_Parser_Parser_6__nameLitAux(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Parser_Parser_7__tokenFnAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_7__tokenFnAux(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; uint32_t x_6; uint32_t x_7; uint8_t x_8; @@ -9223,7 +9223,7 @@ else { uint32_t x_19; uint8_t x_20; x_19 = l_Lean_Parser_getNext(x_4, x_5); -x_20 = l___private_Init_Lean_Parser_Parser_5__isIdFirstOrBeginEscape(x_19); +x_20 = l___private_Lean_Parser_Parser_5__isIdFirstOrBeginEscape(x_19); if (x_20 == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; @@ -9244,7 +9244,7 @@ else { lean_object* x_26; lean_dec(x_4); -x_26 = l___private_Init_Lean_Parser_Parser_6__nameLitAux(x_5, x_1, x_2); +x_26 = l___private_Lean_Parser_Parser_6__nameLitAux(x_5, x_1, x_2); lean_dec(x_1); return x_26; } @@ -9282,7 +9282,7 @@ return x_35; } } } -lean_object* l___private_Init_Lean_Parser_Parser_8__updateCache(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_8__updateCache(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -9383,8 +9383,8 @@ if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_dec(x_7); -x_10 = l___private_Init_Lean_Parser_Parser_7__tokenFnAux(x_1, x_2); -x_11 = l___private_Init_Lean_Parser_Parser_8__updateCache(x_5, x_10); +x_10 = l___private_Lean_Parser_Parser_7__tokenFnAux(x_1, x_2); +x_11 = l___private_Lean_Parser_Parser_8__updateCache(x_5, x_10); return x_11; } else @@ -10365,7 +10365,7 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l_Array_findRevMAux___main___at___private_Init_Lean_Parser_Parser_9__pickNonNone___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findRevMAux___main___at___private_Lean_Parser_Parser_9__pickNonNone___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10404,12 +10404,12 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Parser_Parser_9__pickNonNone(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_9__pickNonNone(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_array_get_size(x_1); -x_3 = l_Array_findRevMAux___main___at___private_Init_Lean_Parser_Parser_9__pickNonNone___spec__1(x_1, x_2, lean_box(0)); +x_3 = l_Array_findRevMAux___main___at___private_Lean_Parser_Parser_9__pickNonNone___spec__1(x_1, x_2, lean_box(0)); if (lean_obj_tag(x_3) == 0) { lean_object* x_4; @@ -10426,20 +10426,20 @@ return x_5; } } } -lean_object* l_Array_findRevMAux___main___at___private_Init_Lean_Parser_Parser_9__pickNonNone___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findRevMAux___main___at___private_Lean_Parser_Parser_9__pickNonNone___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findRevMAux___main___at___private_Init_Lean_Parser_Parser_9__pickNonNone___spec__1(x_1, x_2, x_3); +x_4 = l_Array_findRevMAux___main___at___private_Lean_Parser_Parser_9__pickNonNone___spec__1(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Parser_Parser_9__pickNonNone___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_9__pickNonNone___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Parser_Parser_9__pickNonNone(x_1); +x_2 = l___private_Lean_Parser_Parser_9__pickNonNone(x_1); lean_dec(x_1); return x_2; } @@ -10450,7 +10450,7 @@ _start: lean_object* x_4; lean_object* x_5; uint8_t x_6; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); -x_5 = l___private_Init_Lean_Parser_Parser_9__pickNonNone(x_4); +x_5 = l___private_Lean_Parser_Parser_9__pickNonNone(x_4); lean_dec(x_4); x_6 = l_Lean_Parser_checkTailNoWs(x_5); lean_dec(x_5); @@ -11836,7 +11836,7 @@ if (lean_obj_tag(x_24) == 0) { uint8_t x_25; lean_object* x_26; lean_object* x_27; x_25 = 0; -x_26 = l___private_Init_Lean_Parser_Parser_3__rawAux(x_21, x_25, x_1, x_23); +x_26 = l___private_Lean_Parser_Parser_3__rawAux(x_21, x_25, x_1, x_23); x_27 = lean_ctor_get(x_26, 3); lean_inc(x_27); if (lean_obj_tag(x_27) == 0) @@ -11850,7 +11850,7 @@ lean_inc(x_30); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; -x_31 = l___private_Init_Lean_Parser_Parser_3__rawAux(x_28, x_25, x_1, x_29); +x_31 = l___private_Lean_Parser_Parser_3__rawAux(x_28, x_25, x_1, x_29); x_6 = x_31; goto block_20; } @@ -11894,7 +11894,7 @@ if (lean_obj_tag(x_11) == 0) { uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_12 = 1; -x_13 = l___private_Init_Lean_Parser_Parser_3__rawAux(x_8, x_12, x_1, x_10); +x_13 = l___private_Lean_Parser_Parser_3__rawAux(x_8, x_12, x_1, x_10); x_14 = l_Lean_Parser_quotedSymbolFn___closed__2; x_15 = l_Lean_Parser_ParserState_mkNode(x_13, x_14, x_5); return x_15; @@ -24679,7 +24679,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -25203,7 +25203,7 @@ x_1 = l_Lean_Parser_dollarSymbol___closed__4; return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1() { _start: { lean_object* x_1; @@ -25211,7 +25211,7 @@ x_1 = lean_mk_string("unexpected ':'"); return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -25247,7 +25247,7 @@ return x_2; else { lean_object* x_13; lean_object* x_14; -x_13 = l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1; +x_13 = l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1; x_14 = l_Lean_Parser_ParserState_mkUnexpectedError(x_2, x_13); return x_14; } @@ -25260,39 +25260,39 @@ return x_2; } } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_10__noImmediateColon___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1___boxed), 2, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_10__noImmediateColon___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Parser_inhabited___closed__1; -x_2 = l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__1; +x_2 = l___private_Lean_Parser_Parser_10__noImmediateColon___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; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_10__noImmediateColon() { +lean_object* _init_l___private_Lean_Parser_Parser_10__noImmediateColon() { _start: { lean_object* x_1; -x_1 = l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__2; +x_1 = l___private_Lean_Parser_Parser_10__noImmediateColon___closed__2; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1(x_1, x_2); +x_3 = l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1(x_1, x_2); lean_dec(x_1); return x_3; } @@ -26290,7 +26290,7 @@ lean_object* _init_l_Lean_Parser_mkAntiquot___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Parser_Parser_10__noImmediateColon; +x_1 = l___private_Lean_Parser_Parser_10__noImmediateColon; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_mkAntiquot___closed__23; @@ -26302,7 +26302,7 @@ lean_object* _init_l_Lean_Parser_mkAntiquot___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__1; +x_1 = l___private_Lean_Parser_Parser_10__noImmediateColon___closed__1; x_2 = l_Lean_Parser_mkAntiquot___closed__24; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -27662,7 +27662,7 @@ lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Parser_Parser_11__mkResult(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_11__mkResult(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; @@ -27717,7 +27717,7 @@ if (x_14 == 0) lean_object* x_15; lean_object* x_16; lean_dec(x_1); x_15 = l_Lean_Parser_longestMatchFn(x_13, x_4, x_10); -x_16 = l___private_Init_Lean_Parser_Parser_11__mkResult(x_15, x_7); +x_16 = l___private_Lean_Parser_Parser_11__mkResult(x_15, x_7); return x_16; } else @@ -27882,11 +27882,11 @@ return x_16; } } } -lean_object* l___private_Init_Lean_Parser_Parser_12__mkTrailingResult(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_12__mkTrailingResult(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_3 = l___private_Init_Lean_Parser_Parser_11__mkResult(x_1, x_2); +x_3 = l___private_Lean_Parser_Parser_11__mkResult(x_1, x_2); x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = l_Array_back___at_Lean_Parser_checkStackTopFn___spec__1(x_4); @@ -27948,7 +27948,7 @@ lean_inc(x_20); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; -x_21 = l___private_Init_Lean_Parser_Parser_12__mkTrailingResult(x_19, x_12); +x_21 = l___private_Lean_Parser_Parser_12__mkTrailingResult(x_19, x_12); x_3 = x_21; goto _start; } @@ -27979,7 +27979,7 @@ lean_inc(x_26); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; -x_27 = l___private_Init_Lean_Parser_Parser_12__mkTrailingResult(x_25, x_12); +x_27 = l___private_Lean_Parser_Parser_12__mkTrailingResult(x_25, x_12); x_3 = x_27; goto _start; } @@ -28214,7 +28214,7 @@ x_3 = lean_io_mk_ref(x_2, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1() { _start: { lean_object* x_1; @@ -28222,7 +28222,7 @@ x_1 = lean_mk_string("parser category '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2() { _start: { lean_object* x_1; @@ -28230,31 +28230,31 @@ x_1 = lean_mk_string("' has already been defined"); return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(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; x_2 = l_Lean_Name_toString___closed__1; x_3 = l_Lean_Name_toStringWithSep___main(x_2, x_1); -x_4 = l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1; +x_4 = l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1; x_5 = lean_string_append(x_4, x_3); lean_dec(x_3); -x_6 = l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2; +x_6 = l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2; x_7 = lean_string_append(x_5, x_6); x_8 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_8, 0, x_7); return x_8; } } -lean_object* l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg), 1, 0); return x_2; } } -uint8_t l_PersistentHashMap_containsAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { +uint8_t l_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -28314,7 +28314,7 @@ return x_19; } } } -uint8_t l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(lean_object* x_1, lean_object* x_2) { +uint8_t l_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; uint8_t x_5; @@ -28322,11 +28322,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash(x_2); -x_5 = l_PersistentHashMap_containsAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(x_3, x_4, x_2); +x_5 = l_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(x_3, x_4, x_2); return x_5; } } -lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__5(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; @@ -28418,7 +28418,7 @@ return x_29; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(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_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(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; @@ -28441,7 +28441,7 @@ x_13 = x_1 - x_12; x_14 = 5; x_15 = x_14 * x_13; x_16 = x_11 >> x_15; -x_17 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_6, x_16, x_1, x_9, x_10); +x_17 = l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_6, x_16, x_1, x_9, x_10); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_add(x_5, x_18); lean_dec(x_5); @@ -28451,7 +28451,7 @@ goto _start; } } } -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(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) @@ -28564,7 +28564,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 = x_2 >> x_9; x_37 = x_3 + x_8; -x_38 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_35, x_36, x_37, x_4, x_5); +x_38 = l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(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); @@ -28579,7 +28579,7 @@ lean_inc(x_40); lean_dec(x_15); x_41 = x_2 >> x_9; x_42 = x_3 + x_8; -x_43 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_40, x_41, x_42, x_4, x_5); +x_43 = l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(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); @@ -28695,7 +28695,7 @@ if (lean_is_exclusive(x_57)) { } x_73 = x_2 >> x_50; x_74 = x_3 + x_49; -x_75 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_71, x_73, x_74, x_4, x_5); +x_75 = l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(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 { @@ -28728,7 +28728,7 @@ else { lean_object* x_82; lean_object* x_83; size_t x_84; uint8_t x_85; x_82 = lean_unsigned_to_nat(0u); -x_83 = l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__5(x_1, x_82, x_4, x_5); +x_83 = l_PersistentHashMap_insertAtCollisionNodeAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__5(x_1, x_82, x_4, x_5); x_84 = 7; x_85 = x_84 <= x_3; if (x_85 == 0) @@ -28747,7 +28747,7 @@ x_90 = lean_ctor_get(x_83, 1); lean_inc(x_90); lean_dec(x_83); x_91 = l_PersistentHashMap_insertAux___main___rarg___closed__3; -x_92 = l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(x_3, x_89, x_90, x_89, x_82, x_91); +x_92 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(x_3, x_89, x_90, x_89, x_82, x_91); lean_dec(x_90); lean_dec(x_89); return x_92; @@ -28764,7 +28764,7 @@ return x_83; } } } -lean_object* l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -28776,7 +28776,7 @@ x_5 = lean_ctor_get(x_1, 0); x_6 = lean_ctor_get(x_1, 1); x_7 = l_Lean_Name_hash(x_2); x_8 = 1; -x_9 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_5, x_7, x_8, x_2, x_3); +x_9 = l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_5, x_7, x_8, x_2, x_3); x_10 = lean_unsigned_to_nat(1u); x_11 = lean_nat_add(x_6, x_10); lean_dec(x_6); @@ -28794,7 +28794,7 @@ lean_inc(x_12); lean_dec(x_1); x_14 = l_Lean_Name_hash(x_2); x_15 = 1; -x_16 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_12, x_14, x_15, x_2, x_3); +x_16 = l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_12, x_14, x_15, x_2, x_3); x_17 = lean_unsigned_to_nat(1u); x_18 = lean_nat_add(x_13, x_17); lean_dec(x_13); @@ -28805,16 +28805,16 @@ return x_19; } } } -lean_object* l___private_Init_Lean_Parser_Parser_14__addParserCategoryCore(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_14__addParserCategoryCore(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_inc(x_1); -x_4 = l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_1, x_2); +x_4 = l_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_1, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_3); +x_5 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_3); x_6 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_6, 0, x_5); return x_6; @@ -28824,47 +28824,47 @@ else lean_object* x_7; lean_dec(x_3); lean_dec(x_1); -x_7 = l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(x_2); +x_7 = l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(x_2); return x_7; } } } -lean_object* l_PersistentHashMap_containsAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2___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_PersistentHashMap_containsAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(x_1, x_4, x_3); +x_5 = l_PersistentHashMap_containsAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__2(x_1, x_4, x_3); lean_dec(x_3); x_6 = lean_box(x_5); return x_6; } } -lean_object* l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_1, x_2); +x_3 = l_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_1, x_2); lean_dec(x_2); x_4 = lean_box(x_3); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { size_t x_7; lean_object* x_8; x_7 = lean_unbox_usize(x_1); lean_dec(x_1); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(x_7, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__6(x_7, x_2, x_3, x_4, x_5, x_6); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_8; } } -lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4___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; @@ -28872,11 +28872,11 @@ x_6 = lean_unbox_usize(x_2); lean_dec(x_2); x_7 = lean_unbox_usize(x_3); lean_dec(x_3); -x_8 = l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_1, x_6, x_7, x_4, x_5); +x_8 = l_PersistentHashMap_insertAux___main___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__4(x_1, x_6, x_7, x_4, x_5); return x_8; } } -lean_object* l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -28903,7 +28903,7 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_15__addBuiltinParserCategory(lean_object* x_1, uint8_t x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; @@ -28921,8 +28921,8 @@ x_8 = l_Lean_Parser_PrattParsingTables_inhabited___closed__1; x_9 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_9, 0, x_8); lean_ctor_set_uint8(x_9, sizeof(void*)*1, x_2); -x_10 = l___private_Init_Lean_Parser_Parser_14__addParserCategoryCore(x_6, x_1, x_9); -x_11 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_10, x_7); +x_10 = l___private_Lean_Parser_Parser_14__addParserCategoryCore(x_6, x_1, x_9); +x_11 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_10, x_7); lean_dec(x_10); if (lean_obj_tag(x_11) == 0) { @@ -28983,22 +28983,22 @@ return x_22; } } } -lean_object* l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_1, x_2); +x_3 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_15__addBuiltinParserCategory___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory(x_1, x_4, x_3); +x_5 = l___private_Lean_Parser_Parser_15__addBuiltinParserCategory(x_1, x_4, x_3); return x_5; } } @@ -29026,7 +29026,7 @@ x_1 = l_Lean_Parser_ParserExtensionState_inhabited___closed__1; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_16__ParserExtension_mkInitial(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_16__ParserExtension_mkInitial(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -29162,7 +29162,7 @@ return x_32; } } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_17__mergePrecendences___closed__1() { _start: { lean_object* x_1; @@ -29170,7 +29170,7 @@ x_1 = lean_mk_string("precedence mismatch for '"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_17__mergePrecendences___closed__2() { _start: { lean_object* x_1; @@ -29178,7 +29178,7 @@ x_1 = lean_mk_string("', previous: "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_17__mergePrecendences___closed__3() { _start: { lean_object* x_1; @@ -29186,7 +29186,7 @@ x_1 = lean_mk_string(", new: "); return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_17__mergePrecendences(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Parser_Parser_17__mergePrecendences(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_3) == 0) @@ -29220,15 +29220,15 @@ if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_dec(x_3); -x_10 = l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__1; +x_10 = l___private_Lean_Parser_Parser_17__mergePrecendences___closed__1; x_11 = lean_string_append(x_1, x_10); x_12 = lean_string_append(x_11, x_2); -x_13 = l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__2; +x_13 = l___private_Lean_Parser_Parser_17__mergePrecendences___closed__2; x_14 = lean_string_append(x_12, x_13); x_15 = l_Nat_repr(x_7); x_16 = lean_string_append(x_14, x_15); lean_dec(x_15); -x_17 = l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__3; +x_17 = l___private_Lean_Parser_Parser_17__mergePrecendences___closed__3; x_18 = lean_string_append(x_16, x_17); x_19 = l_Nat_repr(x_8); x_20 = lean_string_append(x_18, x_19); @@ -29251,16 +29251,16 @@ return x_22; } } } -lean_object* l___private_Init_Lean_Parser_Parser_17__mergePrecendences___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Parser_Parser_17__mergePrecendences___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___private_Init_Lean_Parser_Parser_17__mergePrecendences(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Parser_Parser_17__mergePrecendences(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_18__addTokenConfig___closed__1() { _start: { lean_object* x_1; @@ -29268,7 +29268,7 @@ x_1 = lean_mk_string("(no whitespace) "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_18__addTokenConfig___closed__2() { _start: { lean_object* x_1; @@ -29276,17 +29276,17 @@ x_1 = lean_mk_string("invalid empty symbol"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_18__addTokenConfig___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__2; +x_1 = l___private_Lean_Parser_Parser_18__addTokenConfig___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Parser_Parser_18__addTokenConfig(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_18__addTokenConfig(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; @@ -29303,13 +29303,13 @@ if (x_7 == 0) lean_object* x_8; lean_object* x_9; x_8 = lean_unsigned_to_nat(0u); lean_inc(x_1); -x_9 = l___private_Init_Lean_Data_Trie_3__findAux___main___rarg(x_3, x_1, x_8); +x_9 = l___private_Lean_Data_Trie_3__findAux___main___rarg(x_3, x_1, x_8); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; lean_dec(x_5); lean_dec(x_4); -x_10 = l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(x_3, x_2, x_1, x_8); +x_10 = l___private_Lean_Data_Trie_2__insertAux___main___rarg(x_3, x_2, x_1, x_8); lean_dec(x_3); x_11 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_11, 0, x_10); @@ -29333,7 +29333,7 @@ lean_inc(x_16); lean_dec(x_9); x_17 = lean_ctor_get(x_16, 1); lean_inc(x_17); -x_18 = l___private_Init_Lean_Parser_Parser_17__mergePrecendences(x_6, x_3, x_17, x_4); +x_18 = l___private_Lean_Parser_Parser_17__mergePrecendences(x_6, x_3, x_17, x_4); if (lean_obj_tag(x_18) == 0) { uint8_t x_19; @@ -29367,8 +29367,8 @@ lean_dec(x_18); x_23 = lean_ctor_get(x_16, 2); lean_inc(x_23); lean_dec(x_16); -x_24 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__1; -x_25 = l___private_Init_Lean_Parser_Parser_17__mergePrecendences(x_24, x_3, x_23, x_5); +x_24 = l___private_Lean_Parser_Parser_18__addTokenConfig___closed__1; +x_25 = l___private_Lean_Parser_Parser_17__mergePrecendences(x_24, x_3, x_23, x_5); if (lean_obj_tag(x_25) == 0) { uint8_t x_26; @@ -29403,7 +29403,7 @@ x_30 = lean_ctor_get(x_25, 0); lean_inc(x_3); lean_ctor_set(x_2, 2, x_30); lean_ctor_set(x_2, 1, x_22); -x_31 = l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(x_3, x_2, x_1, x_8); +x_31 = l___private_Lean_Data_Trie_2__insertAux___main___rarg(x_3, x_2, x_1, x_8); lean_dec(x_3); lean_ctor_set(x_25, 0, x_31); return x_25; @@ -29417,7 +29417,7 @@ lean_dec(x_25); lean_inc(x_3); lean_ctor_set(x_2, 2, x_32); lean_ctor_set(x_2, 1, x_22); -x_33 = l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(x_3, x_2, x_1, x_8); +x_33 = l___private_Lean_Data_Trie_2__insertAux___main___rarg(x_3, x_2, x_1, x_8); lean_dec(x_3); x_34 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_34, 0, x_33); @@ -29435,7 +29435,7 @@ lean_inc(x_35); lean_dec(x_9); x_36 = lean_ctor_get(x_35, 1); lean_inc(x_36); -x_37 = l___private_Init_Lean_Parser_Parser_17__mergePrecendences(x_6, x_3, x_36, x_4); +x_37 = l___private_Lean_Parser_Parser_17__mergePrecendences(x_6, x_3, x_36, x_4); if (lean_obj_tag(x_37) == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; @@ -29469,8 +29469,8 @@ lean_dec(x_37); x_42 = lean_ctor_get(x_35, 2); lean_inc(x_42); lean_dec(x_35); -x_43 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__1; -x_44 = l___private_Init_Lean_Parser_Parser_17__mergePrecendences(x_43, x_3, x_42, x_5); +x_43 = l___private_Lean_Parser_Parser_18__addTokenConfig___closed__1; +x_44 = l___private_Lean_Parser_Parser_17__mergePrecendences(x_43, x_3, x_42, x_5); if (lean_obj_tag(x_44) == 0) { lean_object* x_45; lean_object* x_46; lean_object* x_47; @@ -29511,7 +29511,7 @@ x_50 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_50, 0, x_3); lean_ctor_set(x_50, 1, x_41); lean_ctor_set(x_50, 2, x_48); -x_51 = l___private_Init_Lean_Data_Trie_2__insertAux___main___rarg(x_3, x_50, x_1, x_8); +x_51 = l___private_Lean_Data_Trie_2__insertAux___main___rarg(x_3, x_50, x_1, x_8); lean_dec(x_3); if (lean_is_scalar(x_49)) { x_52 = lean_alloc_ctor(1, 1, 0); @@ -29533,7 +29533,7 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_53 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__3; +x_53 = l___private_Lean_Parser_Parser_18__addTokenConfig___closed__3; return x_53; } } @@ -29952,7 +29952,7 @@ x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_4); lean_ctor_set(x_13, 1, x_12); lean_ctor_set(x_10, 1, x_13); -x_14 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_7); +x_14 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_7); x_15 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_15, 0, x_14); return x_15; @@ -29978,7 +29978,7 @@ lean_ctor_set(x_21, 1, x_20); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_19); lean_ctor_set(x_7, 0, x_21); -x_22 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_7); +x_22 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_7); x_23 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_23, 0, x_22); return x_23; @@ -30024,7 +30024,7 @@ lean_ctor_set(x_32, 3, x_29); x_33 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_33, 0, x_32); lean_ctor_set_uint8(x_33, sizeof(void*)*1, x_25); -x_34 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_33); +x_34 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_33); x_35 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_35, 0, x_34); return x_35; @@ -30042,7 +30042,7 @@ x_40 = lean_ctor_get(x_7, 0); x_41 = l_List_eraseDups___at_Lean_Parser_addLeadingParser___spec__5(x_38); x_42 = l_List_foldl___main___at_Lean_Parser_addLeadingParser___spec__7(x_4, x_40, x_41); lean_ctor_set(x_7, 0, x_42); -x_43 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_7); +x_43 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_7); x_44 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_44, 0, x_43); return x_44; @@ -30059,7 +30059,7 @@ x_48 = l_List_foldl___main___at_Lean_Parser_addLeadingParser___spec__7(x_4, x_45 x_49 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_49, 0, x_48); lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_46); -x_50 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_49); +x_50 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_49); x_51 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_51, 0, x_50); return x_51; @@ -30108,7 +30108,7 @@ lean_dec(x_3); return x_5; } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Parser_Parser_19__addTrailingParserAux___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Lean_Parser_Parser_19__addTrailingParserAux___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -30161,7 +30161,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Parser_Parser_19__addTrailingParserAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_19__addTrailingParserAux(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_14; lean_object* x_19; lean_object* x_20; @@ -30241,7 +30241,7 @@ block_18: lean_object* x_15; lean_object* x_16; lean_object* x_17; x_15 = l_List_map___main___at_Lean_Parser_addLeadingParser___spec__4(x_14); x_16 = l_List_eraseDups___at_Lean_Parser_addLeadingParser___spec__5(x_15); -x_17 = l_List_foldl___main___at___private_Init_Lean_Parser_Parser_19__addTrailingParserAux___spec__1(x_2, x_1, x_16); +x_17 = l_List_foldl___main___at___private_Lean_Parser_Parser_19__addTrailingParserAux___spec__1(x_2, x_1, x_16); return x_17; } } @@ -30271,9 +30271,9 @@ if (x_7 == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_8 = lean_ctor_get(x_6, 0); -x_9 = l___private_Init_Lean_Parser_Parser_19__addTrailingParserAux(x_8, x_3); +x_9 = l___private_Lean_Parser_Parser_19__addTrailingParserAux(x_8, x_3); lean_ctor_set(x_6, 0, x_9); -x_10 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_6); +x_10 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_6); x_11 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_11, 0, x_10); return x_11; @@ -30285,11 +30285,11 @@ x_12 = lean_ctor_get(x_6, 0); x_13 = lean_ctor_get_uint8(x_6, sizeof(void*)*1); lean_inc(x_12); lean_dec(x_6); -x_14 = l___private_Init_Lean_Parser_Parser_19__addTrailingParserAux(x_12, x_3); +x_14 = l___private_Lean_Parser_Parser_19__addTrailingParserAux(x_12, x_3); x_15 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_15, 0, x_14); lean_ctor_set_uint8(x_15, sizeof(void*)*1, x_13); -x_16 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_15); +x_16 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_1, x_2, x_15); x_17 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_17, 0, x_16); return x_17; @@ -30343,7 +30343,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_2, 1); lean_inc(x_5); lean_dec(x_2); -x_6 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig(x_1, x_4); +x_6 = l___private_Lean_Parser_Parser_18__addTokenConfig(x_1, x_4); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -30390,7 +30390,7 @@ x_6 = l_List_foldlM___main___at_Lean_Parser_addParserTokens___spec__1(x_1, x_5); return x_6; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1() { _start: { lean_object* x_1; @@ -30398,7 +30398,7 @@ x_1 = lean_mk_string("invalid builtin parser '"); return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_20__updateBuiltinTokens(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; @@ -30423,7 +30423,7 @@ lean_inc(x_11); lean_dec(x_10); x_12 = l_Lean_Name_toString___closed__1; x_13 = l_Lean_Name_toStringWithSep___main(x_12, x_2); -x_14 = l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1; +x_14 = l___private_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1; x_15 = lean_string_append(x_14, x_13); lean_dec(x_13); x_16 = l_Lean_registerTagAttribute___lambda__4___closed__4; @@ -30465,7 +30465,7 @@ lean_inc(x_25); lean_dec(x_24); x_26 = l_Lean_Name_toString___closed__1; x_27 = l_Lean_Name_toStringWithSep___main(x_26, x_2); -x_28 = l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1; +x_28 = l___private_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1; x_29 = lean_string_append(x_28, x_27); lean_dec(x_27); x_30 = l_Lean_registerTagAttribute___lambda__4___closed__4; @@ -30533,7 +30533,7 @@ lean_inc(x_9); lean_dec(x_7); lean_inc(x_4); x_10 = l_Lean_Parser_addParser(x_8, x_1, x_2, x_3, x_4); -x_11 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_10, x_9); +x_11 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_10, x_9); lean_dec(x_10); if (lean_obj_tag(x_11) == 0) { @@ -30580,7 +30580,7 @@ lean_object* x_26; lean_object* x_27; x_26 = lean_ctor_get(x_25, 1); lean_inc(x_26); lean_dec(x_25); -x_27 = l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens(x_14, x_2, x_26); +x_27 = l___private_Lean_Parser_Parser_20__updateBuiltinTokens(x_14, x_2, x_26); return x_27; } else @@ -30766,7 +30766,7 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_1, x_2, x_5, x_3, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Parser_Parser_21__ParserExtension_addEntry(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Parser_Parser_21__ParserExtension_addEntry(lean_object* x_1, lean_object* x_2) { _start: { switch (lean_obj_tag(x_2)) { @@ -30785,7 +30785,7 @@ x_6 = lean_ctor_get(x_1, 1); x_7 = lean_ctor_get(x_1, 2); x_8 = lean_ctor_get(x_1, 3); lean_inc(x_3); -x_9 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig(x_5, x_3); +x_9 = l___private_Lean_Parser_Parser_18__addTokenConfig(x_5, x_3); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; @@ -30828,7 +30828,7 @@ lean_inc(x_16); lean_inc(x_15); lean_dec(x_1); lean_inc(x_3); -x_19 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig(x_15, x_3); +x_19 = l___private_Lean_Parser_Parser_18__addTokenConfig(x_15, x_3); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; @@ -30929,7 +30929,7 @@ lean_inc(x_47); x_48 = lean_ctor_get(x_1, 3); lean_inc(x_48); lean_inc(x_47); -x_49 = l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_47, x_43); +x_49 = l_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_47, x_43); if (x_49 == 0) { uint8_t x_50; @@ -30950,7 +30950,7 @@ x_56 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_56, 0, x_55); lean_ctor_set_uint8(x_56, sizeof(void*)*1, x_44); lean_inc(x_43); -x_57 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_47, x_43, x_56); +x_57 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_47, x_43, x_56); x_58 = lean_alloc_ctor(2, 1, 1); lean_ctor_set(x_58, 0, x_43); lean_ctor_set_uint8(x_58, sizeof(void*)*1, x_44); @@ -30970,7 +30970,7 @@ x_61 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_61, 0, x_60); lean_ctor_set_uint8(x_61, sizeof(void*)*1, x_44); lean_inc(x_43); -x_62 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_47, x_43, x_61); +x_62 = l_PersistentHashMap_insert___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__3(x_47, x_43, x_61); x_63 = lean_alloc_ctor(2, 1, 1); lean_ctor_set(x_63, 0, x_43); lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_44); @@ -32924,7 +32924,7 @@ lean_dec(x_1); return x_4; } } -lean_object* l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -32951,7 +32951,7 @@ return x_7; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -32990,8 +32990,8 @@ x_15 = lean_ctor_get(x_5, 0); x_16 = lean_ctor_get(x_5, 1); x_17 = lean_ctor_get(x_5, 2); x_18 = lean_ctor_get(x_5, 3); -x_19 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig(x_15, x_13); -x_20 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(x_19, x_6); +x_19 = l___private_Lean_Parser_Parser_18__addTokenConfig(x_15, x_13); +x_20 = l_IO_ofExcept___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(x_19, x_6); lean_dec(x_19); if (lean_obj_tag(x_20) == 0) { @@ -33047,8 +33047,8 @@ lean_inc(x_30); lean_inc(x_29); lean_inc(x_28); lean_dec(x_5); -x_32 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig(x_28, x_13); -x_33 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(x_32, x_6); +x_32 = l___private_Lean_Parser_Parser_18__addTokenConfig(x_28, x_13); +x_33 = l_IO_ofExcept___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(x_32, x_6); lean_dec(x_32); if (lean_obj_tag(x_33) == 0) { @@ -33159,8 +33159,8 @@ x_63 = l_Lean_Parser_PrattParsingTables_inhabited___closed__1; x_64 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_64, 0, x_63); lean_ctor_set_uint8(x_64, sizeof(void*)*1, x_57); -x_65 = l___private_Init_Lean_Parser_Parser_14__addParserCategoryCore(x_61, x_56, x_64); -x_66 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_65, x_6); +x_65 = l___private_Lean_Parser_Parser_14__addParserCategoryCore(x_61, x_56, x_64); +x_66 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_65, x_6); lean_dec(x_65); if (lean_obj_tag(x_66) == 0) { @@ -33220,8 +33220,8 @@ x_78 = l_Lean_Parser_PrattParsingTables_inhabited___closed__1; x_79 = lean_alloc_ctor(0, 1, 1); lean_ctor_set(x_79, 0, x_78); lean_ctor_set_uint8(x_79, sizeof(void*)*1, x_57); -x_80 = l___private_Init_Lean_Parser_Parser_14__addParserCategoryCore(x_76, x_56, x_79); -x_81 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_80, x_6); +x_80 = l___private_Lean_Parser_Parser_14__addParserCategoryCore(x_76, x_56, x_79); +x_81 = l_IO_ofExcept___at___private_Lean_Parser_Parser_15__addBuiltinParserCategory___spec__1(x_80, x_6); lean_dec(x_80); if (lean_obj_tag(x_81) == 0) { @@ -33452,7 +33452,7 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -33478,7 +33478,7 @@ x_12 = lean_nat_add(x_4, x_11); lean_dec(x_4); x_13 = lean_unsigned_to_nat(0u); lean_inc(x_1); -x_14 = l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2(x_1, x_10, x_10, x_13, x_5, x_6); +x_14 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2(x_1, x_10, x_10, x_13, x_5, x_6); lean_dec(x_10); if (lean_obj_tag(x_14) == 0) { @@ -33520,11 +33520,11 @@ return x_21; } } } -lean_object* l___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_22__ParserExtension_addImported(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Parser_Parser_16__ParserExtension_mkInitial(x_3); +x_4 = l___private_Lean_Parser_Parser_16__ParserExtension_mkInitial(x_3); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; @@ -33534,7 +33534,7 @@ x_6 = lean_ctor_get(x_4, 1); lean_inc(x_6); lean_dec(x_4); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3(x_1, x_2, x_2, x_7, x_5, x_6); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3(x_1, x_2, x_2, x_7, x_5, x_6); return x_8; } else @@ -33562,40 +33562,40 @@ return x_12; } } } -lean_object* l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_ofExcept___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(x_1, x_2); +x_3 = l_IO_ofExcept___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___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* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_7; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___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* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___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: { lean_object* x_7; -x_7 = l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_22__ParserExtension_addImported___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_7; } } -lean_object* l___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Parser_Parser_22__ParserExtension_addImported___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported(x_1, x_2, x_3); +x_4 = l___private_Lean_Parser_Parser_22__ParserExtension_addImported(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -33697,7 +33697,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -33885,7 +33885,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_Parser_mkPars _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -34406,7 +34406,7 @@ lean_object* _init_l_Lean_Parser_mkParserExtension___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_16__ParserExtension_mkInitial), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_16__ParserExtension_mkInitial), 1, 0); return x_1; } } @@ -34414,7 +34414,7 @@ lean_object* _init_l_Lean_Parser_mkParserExtension___closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_22__ParserExtension_addImported___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_22__ParserExtension_addImported___boxed), 3, 0); return x_1; } } @@ -34422,7 +34422,7 @@ lean_object* _init_l_Lean_Parser_mkParserExtension___closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_21__ParserExtension_addEntry), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_21__ParserExtension_addEntry), 2, 0); return x_1; } } @@ -34648,7 +34648,7 @@ x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_1); x_5 = lean_ctor_get(x_4, 2); lean_inc(x_5); lean_dec(x_4); -x_6 = l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_5, x_2); +x_6 = l_PersistentHashMap_contains___at___private_Lean_Parser_Parser_14__addParserCategoryCore___spec__1(x_5, x_2); return x_6; } } @@ -34684,7 +34684,7 @@ else { lean_object* x_9; lean_dec(x_1); -x_9 = l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(x_2); +x_9 = l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg(x_2); return x_9; } } @@ -34738,7 +34738,7 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Parser_Parser_23__catNameToString(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_23__catNameToString(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -34776,7 +34776,7 @@ lean_object* l_Lean_Parser_mkCategoryAntiquotParser(lean_object* x_1, lean_objec _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_4 = l___private_Init_Lean_Parser_Parser_23__catNameToString(x_1); +x_4 = l___private_Lean_Parser_Parser_23__catNameToString(x_1); x_5 = lean_box(0); x_6 = 1; x_7 = l_Lean_Parser_mkAntiquot(x_4, x_5, x_6); @@ -34880,7 +34880,7 @@ lean_dec(x_30); x_32 = lean_ctor_get(x_22, 1); lean_inc(x_32); lean_inc(x_1); -x_33 = l___private_Init_Lean_Parser_Parser_23__catNameToString(x_1); +x_33 = l___private_Lean_Parser_Parser_23__catNameToString(x_1); x_34 = lean_box(0); x_35 = 1; x_36 = l_Lean_Parser_mkAntiquot(x_33, x_34, x_35); @@ -34992,7 +34992,7 @@ x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); lean_dec(x_4); lean_inc(x_2); -x_6 = l___private_Init_Lean_Parser_Parser_18__addTokenConfig(x_5, x_2); +x_6 = l___private_Lean_Parser_Parser_18__addTokenConfig(x_5, x_2); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -35592,7 +35592,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; +x_2 = l___private_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -35612,7 +35612,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; +x_2 = l___private_Lean_Compiler_InitAttr_2__isUnitType___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -35791,7 +35791,7 @@ x_6 = l_Lean_Parser_declareBuiltinParser(x_1, x_5, x_2, x_3, x_4); return x_6; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1() { _start: { lean_object* x_1; @@ -35799,7 +35799,7 @@ x_1 = lean_mk_string("' (`Parser` or `TrailingParser` expected"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -35809,7 +35809,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { +lean_object* l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -35849,7 +35849,7 @@ lean_object* x_28; lean_object* x_29; lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_28 = l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2; +x_28 = l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_7); @@ -36032,7 +36032,7 @@ x_20 = l_Lean_Name_toStringWithSep___main(x_19, x_4); x_21 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__1; x_22 = lean_string_append(x_21, x_20); lean_dec(x_20); -x_23 = l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1; +x_23 = l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1; x_24 = lean_string_append(x_22, x_23); x_25 = lean_alloc_ctor(18, 1, 0); lean_ctor_set(x_25, 0, x_24); @@ -36065,13 +36065,13 @@ return x_63; } } } -lean_object* l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_6); lean_dec(x_6); -x_9 = l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_8, x_7); +x_9 = l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_8, x_7); lean_dec(x_5); return x_9; } @@ -36090,7 +36090,7 @@ _start: lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; lean_inc(x_2); lean_inc(x_1); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___boxed), 7, 2); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___boxed), 7, 2); lean_closure_set(x_5, 0, x_1); lean_closure_set(x_5, 1, x_2); x_6 = l_Lean_Parser_registerBuiltinParserAttribute___closed__1; @@ -36100,7 +36100,7 @@ lean_ctor_set(x_8, 0, x_1); lean_ctor_set(x_8, 1, x_6); lean_ctor_set(x_8, 2, x_5); lean_ctor_set_uint8(x_8, sizeof(void*)*3, x_7); -x_9 = l___private_Init_Lean_Parser_Parser_15__addBuiltinParserCategory(x_2, x_3, x_4); +x_9 = l___private_Lean_Parser_Parser_15__addBuiltinParserCategory(x_2, x_3, x_4); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; @@ -36145,7 +36145,7 @@ x_6 = l_Lean_Parser_registerBuiltinParserAttribute(x_1, x_2, x_5, x_4); return x_6; } } -lean_object* _init_l_List_foldlM___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1() { +lean_object* _init_l_List_foldlM___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1() { _start: { lean_object* x_1; @@ -36153,7 +36153,7 @@ x_1 = lean_mk_string("invalid parser '"); return x_1; } } -lean_object* l_List_foldlM___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_foldlM___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_3) == 0) @@ -36183,7 +36183,7 @@ lean_inc(x_9); lean_dec(x_8); x_10 = l_Lean_Name_toString___closed__1; x_11 = l_Lean_Name_toStringWithSep___main(x_10, x_1); -x_12 = l_List_foldlM___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1; +x_12 = l_List_foldlM___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1; x_13 = lean_string_append(x_12, x_11); lean_dec(x_11); x_14 = l_Lean_registerTagAttribute___lambda__4___closed__4; @@ -36210,7 +36210,7 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -36247,7 +36247,7 @@ lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_7, 0); lean_inc(x_13); lean_dec(x_7); -x_14 = l_PersistentHashMap_foldlMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(x_13, x_4); +x_14 = l_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(x_13, x_4); lean_dec(x_13); x_3 = x_9; x_4 = x_14; @@ -36262,7 +36262,7 @@ goto _start; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -36288,7 +36288,7 @@ goto _start; } } } -lean_object* l_PersistentHashMap_foldlMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -36296,7 +36296,7 @@ if (lean_obj_tag(x_1) == 0) lean_object* x_3; lean_object* x_4; lean_object* x_5; x_3 = lean_ctor_get(x_1, 0); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__4(x_3, x_3, x_4, x_2); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__4(x_3, x_3, x_4, x_2); return x_5; } else @@ -36304,21 +36304,21 @@ else lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = lean_ctor_get(x_1, 0); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__5(x_6, x_6, x_7, x_2); +x_8 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__5(x_6, x_6, x_7, x_2); return x_8; } } } -lean_object* l_PersistentHashMap_foldlM___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = lean_ctor_get(x_1, 0); -x_4 = l_PersistentHashMap_foldlMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(x_3, x_2); +x_4 = l_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(x_3, x_2); return x_4; } } -lean_object* l___private_Init_Lean_Parser_Parser_25__ParserAttribute_add(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { +lean_object* l___private_Lean_Parser_Parser_25__ParserAttribute_add(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { _start: { uint8_t x_8; @@ -36371,7 +36371,7 @@ lean_inc(x_20); x_21 = lean_box(0); x_22 = lean_apply_1(x_20, x_21); lean_inc(x_4); -x_23 = l_List_foldlM___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__1(x_4, x_3, x_22, x_7); +x_23 = l_List_foldlM___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__1(x_4, x_3, x_22, x_7); if (lean_obj_tag(x_23) == 0) { uint8_t x_24; @@ -36385,7 +36385,7 @@ lean_inc(x_26); lean_dec(x_19); x_27 = l_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinSyntaxNodeKindSetRef___spec__1; x_28 = lean_apply_1(x_26, x_27); -x_29 = l_PersistentHashMap_foldlM___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(x_28, x_25); +x_29 = l_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(x_28, x_25); lean_dec(x_28); x_30 = lean_unbox(x_17); lean_inc(x_18); @@ -36437,7 +36437,7 @@ lean_inc(x_39); lean_dec(x_19); x_40 = l_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinSyntaxNodeKindSetRef___spec__1; x_41 = lean_apply_1(x_39, x_40); -x_42 = l_PersistentHashMap_foldlM___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(x_41, x_37); +x_42 = l_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(x_41, x_37); lean_dec(x_41); x_43 = lean_unbox(x_17); lean_inc(x_18); @@ -36532,51 +36532,51 @@ return x_63; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__4___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_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__4(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__4(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__5___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_iterateMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__5(x_1, x_2, x_3, x_4); +x_5 = l_Array_iterateMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__5(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_PersistentHashMap_foldlMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_PersistentHashMap_foldlMAux___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(x_1, x_2); +x_3 = l_PersistentHashMap_foldlMAux___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__3(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_PersistentHashMap_foldlM___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_PersistentHashMap_foldlM___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(x_1, x_2); +x_3 = l_PersistentHashMap_foldlM___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__2(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Parser_Parser_25__ParserAttribute_add___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_6); lean_dec(x_6); -x_9 = l___private_Init_Lean_Parser_Parser_25__ParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_8, x_7); +x_9 = l___private_Lean_Parser_Parser_25__ParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_8, x_7); lean_dec(x_5); return x_9; } @@ -36585,7 +36585,7 @@ lean_object* l_Lean_Parser_mkParserAttributeImpl___elambda__1(lean_object* x_1, _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Parser_Parser_25__ParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Lean_Parser_Parser_25__ParserAttribute_add(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } @@ -36635,7 +36635,7 @@ x_5 = l_Lean_registerBuiltinAttribute(x_4, x_3); return x_5; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -36643,23 +36643,23 @@ x_1 = lean_mk_string("invalid parser attribute implementation builder arguments" return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1; +x_1 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_2 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_2; } else @@ -36677,7 +36677,7 @@ if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_dec(x_3); -x_5 = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_5 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_5; } else @@ -36711,7 +36711,7 @@ lean_object* x_12; lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_12 = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_12 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_12; } } @@ -36721,7 +36721,7 @@ lean_object* x_13; lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); -x_13 = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_13 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_13; } } @@ -36731,13 +36731,13 @@ else lean_object* x_14; lean_dec(x_3); lean_dec(x_1); -x_14 = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; +x_14 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2; return x_14; } } } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1() { _start: { lean_object* x_1; @@ -36745,30 +36745,30 @@ x_1 = lean_mk_string("parserAttr"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___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_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1; +x_2 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1), 1, 0); return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder(lean_object* x_1) { +lean_object* l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2; -x_3 = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3; +x_2 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2; +x_3 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3; x_4 = l_Lean_registerAttributeImplBuilder(x_2, x_3, x_1); return x_4; } @@ -36800,7 +36800,7 @@ lean_ctor_set(x_13, 1, x_12); x_14 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2; +x_15 = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2; x_16 = l_Lean_registerAttributeOfBuilder(x_8, x_15, x_14, x_9); return x_16; } @@ -37894,41 +37894,41 @@ lean_dec(x_1); return x_4; } } -lean_object* initialize_Init_Lean_Data_Trie(lean_object*); -lean_object* initialize_Init_Lean_Data_Position(lean_object*); -lean_object* initialize_Init_Lean_Syntax(lean_object*); -lean_object* initialize_Init_Lean_ToExpr(lean_object*); -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Attributes(lean_object*); -lean_object* initialize_Init_Lean_Message(lean_object*); -lean_object* initialize_Init_Lean_Compiler_InitAttr(lean_object*); +lean_object* initialize_Lean_Data_Trie(lean_object*); +lean_object* initialize_Lean_Data_Position(lean_object*); +lean_object* initialize_Lean_Syntax(lean_object*); +lean_object* initialize_Lean_ToExpr(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Message(lean_object*); +lean_object* initialize_Lean_Compiler_InitAttr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Parser_Parser(lean_object* w) { +lean_object* initialize_Lean_Parser_Parser(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Trie(lean_io_mk_world()); +res = initialize_Lean_Data_Trie(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Position(lean_io_mk_world()); +res = initialize_Lean_Data_Position(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Syntax(lean_io_mk_world()); +res = initialize_Lean_Syntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_ToExpr(lean_io_mk_world()); +res = initialize_Lean_ToExpr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Message(lean_io_mk_world()); +res = initialize_Lean_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Compiler_InitAttr(lean_io_mk_world()); +res = initialize_Lean_Compiler_InitAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_appPrec = _init_l_Lean_Parser_appPrec(); @@ -37951,8 +37951,8 @@ l_Lean_Parser_Error_Inhabited___closed__1 = _init_l_Lean_Parser_Error_Inhabited_ lean_mark_persistent(l_Lean_Parser_Error_Inhabited___closed__1); l_Lean_Parser_Error_Inhabited = _init_l_Lean_Parser_Error_Inhabited(); lean_mark_persistent(l_Lean_Parser_Error_Inhabited); -l___private_Init_Lean_Parser_Parser_1__expectedToString___main___closed__1 = _init_l___private_Init_Lean_Parser_Parser_1__expectedToString___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_1__expectedToString___main___closed__1); +l___private_Lean_Parser_Parser_1__expectedToString___main___closed__1 = _init_l___private_Lean_Parser_Parser_1__expectedToString___main___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_1__expectedToString___main___closed__1); l_Lean_Parser_Error_toString___closed__1 = _init_l_Lean_Parser_Error_toString___closed__1(); lean_mark_persistent(l_Lean_Parser_Error_toString___closed__1); l_Lean_Parser_Error_toString___closed__2 = _init_l_Lean_Parser_Error_toString___closed__2(); @@ -38027,8 +38027,8 @@ l_Lean_Parser_mkTokenAndFixPos___closed__1 = _init_l_Lean_Parser_mkTokenAndFixPo lean_mark_persistent(l_Lean_Parser_mkTokenAndFixPos___closed__1); l_Lean_Parser_identFnAux___main___closed__1 = _init_l_Lean_Parser_identFnAux___main___closed__1(); lean_mark_persistent(l_Lean_Parser_identFnAux___main___closed__1); -l___private_Init_Lean_Parser_Parser_6__nameLitAux___closed__1 = _init_l___private_Init_Lean_Parser_Parser_6__nameLitAux___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_6__nameLitAux___closed__1); +l___private_Lean_Parser_Parser_6__nameLitAux___closed__1 = _init_l___private_Lean_Parser_Parser_6__nameLitAux___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_6__nameLitAux___closed__1); l_Lean_Parser_symbolInfo___closed__1 = _init_l_Lean_Parser_symbolInfo___closed__1(); lean_mark_persistent(l_Lean_Parser_symbolInfo___closed__1); l_Lean_Parser_nonReservedSymbolInfo___closed__1 = _init_l_Lean_Parser_nonReservedSymbolInfo___closed__1(); @@ -38189,14 +38189,14 @@ l_Lean_Parser_dollarSymbol___closed__4 = _init_l_Lean_Parser_dollarSymbol___clos lean_mark_persistent(l_Lean_Parser_dollarSymbol___closed__4); l_Lean_Parser_dollarSymbol = _init_l_Lean_Parser_dollarSymbol(); lean_mark_persistent(l_Lean_Parser_dollarSymbol); -l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1 = _init_l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1); -l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__1 = _init_l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__1); -l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__2 = _init_l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_10__noImmediateColon___closed__2); -l___private_Init_Lean_Parser_Parser_10__noImmediateColon = _init_l___private_Init_Lean_Parser_Parser_10__noImmediateColon(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_10__noImmediateColon); +l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1 = _init_l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_10__noImmediateColon___elambda__1___closed__1); +l___private_Lean_Parser_Parser_10__noImmediateColon___closed__1 = _init_l___private_Lean_Parser_Parser_10__noImmediateColon___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_10__noImmediateColon___closed__1); +l___private_Lean_Parser_Parser_10__noImmediateColon___closed__2 = _init_l___private_Lean_Parser_Parser_10__noImmediateColon___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_10__noImmediateColon___closed__2); +l___private_Lean_Parser_Parser_10__noImmediateColon = _init_l___private_Lean_Parser_Parser_10__noImmediateColon(); +lean_mark_persistent(l___private_Lean_Parser_Parser_10__noImmediateColon); l_Lean_Parser_pushNone___closed__1 = _init_l_Lean_Parser_pushNone___closed__1(); lean_mark_persistent(l_Lean_Parser_pushNone___closed__1); l_Lean_Parser_pushNone___closed__2 = _init_l_Lean_Parser_pushNone___closed__2(); @@ -38394,30 +38394,30 @@ if (lean_io_result_is_error(res)) return res; l_Lean_Parser_builtinParserCategoriesRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Parser_builtinParserCategoriesRef); lean_dec_ref(res); -l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1 = _init_l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1); -l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2 = _init_l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2); +l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1 = _init_l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__1); +l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2 = _init_l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_13__throwParserCategoryAlreadyDefined___rarg___closed__2); l_Lean_Parser_ParserExtensionState_inhabited___closed__1 = _init_l_Lean_Parser_ParserExtensionState_inhabited___closed__1(); lean_mark_persistent(l_Lean_Parser_ParserExtensionState_inhabited___closed__1); l_Lean_Parser_ParserExtensionState_inhabited = _init_l_Lean_Parser_ParserExtensionState_inhabited(); lean_mark_persistent(l_Lean_Parser_ParserExtensionState_inhabited); -l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__1 = _init_l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__1); -l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__2 = _init_l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__2); -l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__3 = _init_l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_17__mergePrecendences___closed__3); -l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__1 = _init_l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__1); -l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__2 = _init_l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__2); -l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__3 = _init_l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_18__addTokenConfig___closed__3); +l___private_Lean_Parser_Parser_17__mergePrecendences___closed__1 = _init_l___private_Lean_Parser_Parser_17__mergePrecendences___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_17__mergePrecendences___closed__1); +l___private_Lean_Parser_Parser_17__mergePrecendences___closed__2 = _init_l___private_Lean_Parser_Parser_17__mergePrecendences___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_17__mergePrecendences___closed__2); +l___private_Lean_Parser_Parser_17__mergePrecendences___closed__3 = _init_l___private_Lean_Parser_Parser_17__mergePrecendences___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_17__mergePrecendences___closed__3); +l___private_Lean_Parser_Parser_18__addTokenConfig___closed__1 = _init_l___private_Lean_Parser_Parser_18__addTokenConfig___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_18__addTokenConfig___closed__1); +l___private_Lean_Parser_Parser_18__addTokenConfig___closed__2 = _init_l___private_Lean_Parser_Parser_18__addTokenConfig___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_18__addTokenConfig___closed__2); +l___private_Lean_Parser_Parser_18__addTokenConfig___closed__3 = _init_l___private_Lean_Parser_Parser_18__addTokenConfig___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_18__addTokenConfig___closed__3); l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1 = _init_l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1(); lean_mark_persistent(l_Lean_Parser_throwUnknownParserCategory___rarg___closed__1); -l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1 = _init_l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1); +l___private_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1 = _init_l___private_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_20__updateBuiltinTokens___closed__1); l_Lean_Parser_compileParserDescr___main___closed__1 = _init_l_Lean_Parser_compileParserDescr___main___closed__1(); lean_mark_persistent(l_Lean_Parser_compileParserDescr___main___closed__1); l_Lean_Parser_compileParserDescr___main___closed__2 = _init_l_Lean_Parser_compileParserDescr___main___closed__2(); @@ -38504,27 +38504,27 @@ l_Lean_Parser_declareTrailingBuiltinParser___closed__1 = _init_l_Lean_Parser_dec lean_mark_persistent(l_Lean_Parser_declareTrailingBuiltinParser___closed__1); l_Lean_Parser_declareTrailingBuiltinParser___closed__2 = _init_l_Lean_Parser_declareTrailingBuiltinParser___closed__2(); lean_mark_persistent(l_Lean_Parser_declareTrailingBuiltinParser___closed__2); -l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1 = _init_l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1); -l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2 = _init_l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2); +l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1 = _init_l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__1); +l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2 = _init_l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_24__BuiltinParserAttribute_add___closed__2); l_Lean_Parser_registerBuiltinParserAttribute___closed__1 = _init_l_Lean_Parser_registerBuiltinParserAttribute___closed__1(); lean_mark_persistent(l_Lean_Parser_registerBuiltinParserAttribute___closed__1); -l_List_foldlM___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1 = _init_l_List_foldlM___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1(); -lean_mark_persistent(l_List_foldlM___main___at___private_Init_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1); +l_List_foldlM___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1 = _init_l_List_foldlM___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1(); +lean_mark_persistent(l_List_foldlM___main___at___private_Lean_Parser_Parser_25__ParserAttribute_add___spec__1___closed__1); l_Lean_Parser_mkParserAttributeImpl___closed__1 = _init_l_Lean_Parser_mkParserAttributeImpl___closed__1(); lean_mark_persistent(l_Lean_Parser_mkParserAttributeImpl___closed__1); -l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1 = _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1); -l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2 = _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2); -l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1 = _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1); -l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2 = _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2); -l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3 = _init_l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3); -res = l___private_Init_Lean_Parser_Parser_26__registerParserAttributeImplBuilder(lean_io_mk_world()); +l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1 = _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__1); +l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2 = _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___lambda__1___closed__2); +l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1 = _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__1); +l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2 = _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__2); +l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3 = _init_l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder___closed__3); +res = l___private_Lean_Parser_Parser_26__registerParserAttributeImplBuilder(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_regBuiltinTermParserAttr___closed__1 = _init_l_Lean_Parser_regBuiltinTermParserAttr___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Parser/Syntax.c b/stage0/stdlib/Lean/Parser/Syntax.c similarity index 99% rename from stage0/stdlib/Init/Lean/Parser/Syntax.c rename to stage0/stdlib/Lean/Parser/Syntax.c index ac480c7b0d..b8a918d689 100644 --- a/stage0/stdlib/Init/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Lean/Parser/Syntax.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Parser.Syntax -// Imports: Init.Lean.Parser.Command Init.Lean.Parser.Tactic +// Module: Lean.Parser.Syntax +// Imports: Lean.Parser.Command Lean.Parser.Tactic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15111,17 +15111,17 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* initialize_Init_Lean_Parser_Command(lean_object*); -lean_object* initialize_Init_Lean_Parser_Tactic(lean_object*); +lean_object* initialize_Lean_Parser_Command(lean_object*); +lean_object* initialize_Lean_Parser_Tactic(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Parser_Syntax(lean_object* w) { +lean_object* initialize_Lean_Parser_Syntax(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Parser_Command(lean_io_mk_world()); +res = initialize_Lean_Parser_Command(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Tactic(lean_io_mk_world()); +res = initialize_Lean_Parser_Tactic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__1 = _init_l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Parser/Tactic.c b/stage0/stdlib/Lean/Parser/Tactic.c similarity index 97% rename from stage0/stdlib/Init/Lean/Parser/Tactic.c rename to stage0/stdlib/Lean/Parser/Tactic.c index 889615dbae..4bc1c60bad 100644 --- a/stage0/stdlib/Init/Lean/Parser/Tactic.c +++ b/stage0/stdlib/Lean/Parser/Tactic.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Parser.Tactic -// Imports: Init.Lean.Parser.Term +// Module: Lean.Parser.Tactic +// Imports: Lean.Parser.Term #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -44,6 +44,7 @@ lean_object* l_Lean_Parser_Tactic_apply___closed__2; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_generalize___closed__2; lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__5; extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__2; @@ -63,7 +64,6 @@ lean_object* l_Lean_Parser_Tactic_induction___closed__2; lean_object* l_Lean_Parser_Tactic_generalize___closed__4; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__1; lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__5; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_intro___closed__4; @@ -82,7 +82,6 @@ lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__16; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__4; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__11(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_inductionAlts; lean_object* l_Lean_Parser_ParserState_pushSyntax(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly; @@ -103,6 +102,7 @@ lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__4; lean_object* l_Lean_Parser_Tactic_inductionAlt; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_usingRec___closed__1; +extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; lean_object* l_Lean_Parser_Tactic_underscore; lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__4; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); @@ -126,6 +126,7 @@ lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_withIds___closed__2; lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_nestedTacticBlockCurly(lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_subst___closed__4; lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__2; lean_object* l_Array_back___at_Lean_Parser_checkStackTopFn___spec__1(lean_object*); @@ -164,6 +165,7 @@ lean_object* l_Lean_Parser_Tactic_clear___closed__2; lean_object* l_Lean_Parser_Tactic_clear; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_case___closed__4; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_subst___closed__1; lean_object* l_Lean_Parser_Tactic_induction; @@ -174,7 +176,6 @@ lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__5; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_cases___closed__4; lean_object* l_Lean_Parser_Tactic_assumption; lean_object* l_Lean_Parser_Tactic_intros___elambda__1(lean_object*, lean_object*); @@ -233,8 +234,10 @@ extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__1; lean_object* l_Lean_Parser_Tactic_revert; lean_object* l_Lean_Parser_Tactic_generalize; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__3; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__3; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__2; +extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__1; @@ -243,7 +246,6 @@ lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); lean_object* l_Lean_Parser_Tactic_ident_x27___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_revert(lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_intros(lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__3; @@ -252,10 +254,10 @@ lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_ident_x27___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__6; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_intros___closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__12; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__7; lean_object* l_Lean_Parser_optionaInfo(lean_object*); @@ -296,7 +298,6 @@ extern lean_object* l_Lean_Parser_termParser___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_match___closed__2; lean_object* l_Lean_Parser_Tactic_usingRec___elambda__1___closed__5; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___closed__6; lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__10; @@ -327,6 +328,7 @@ lean_object* l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_injection___closed__3; extern lean_object* l_Lean_Parser_Term_namedHole___closed__5; +extern lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock; extern lean_object* l_Lean_Parser_Term_explicitUniv___closed__4; lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); @@ -349,6 +351,7 @@ lean_object* l_Lean_Parser_Tactic_assumption___closed__5; lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess; lean_object* l_Lean_Parser_Tactic_paren___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; lean_object* l_Lean_Parser_Tactic_generalize___closed__10; lean_object* l_Lean_Parser_Tactic_paren___closed__2; @@ -357,7 +360,6 @@ lean_object* l_Lean_Parser_ParserState_popSyntax(lean_object*); lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_injection___closed__7; -extern lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__9; lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_case___closed__5; @@ -370,6 +372,7 @@ lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__5; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_subst; lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__8; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Tactic_intros___elambda__1___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__6; @@ -386,13 +389,11 @@ extern lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__7; lean_object* l_Lean_Parser_nodeWithAntiquot(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_underscoreFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_refine___closed__1; lean_object* l_Lean_Parser_Tactic_paren___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___closed__2; lean_object* l_Lean_Parser_Tactic_clear___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_refine___closed__2; @@ -403,6 +404,7 @@ extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_case___closed__3; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_clear(lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__8; @@ -416,6 +418,7 @@ lean_object* l_Lean_Parser_Tactic_withAlts; lean_object* l_Lean_Parser_Tactic_refine___closed__4; lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_exact; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__3; @@ -457,6 +460,7 @@ lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__3; lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__6; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_intro___closed__6; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__9(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); @@ -481,7 +485,6 @@ lean_object* l_Lean_Parser_Tactic_underscoreFn___closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__13; lean_object* l_Lean_Parser_Tactic_generalize___closed__7; lean_object* l_Lean_Parser_Tactic_induction___closed__4; -extern lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__2; lean_object* l_Lean_Parser_Tactic_induction___closed__8; lean_object* l_Lean_Parser_Tactic_apply___elambda__1(lean_object*, lean_object*); @@ -492,16 +495,15 @@ lean_object* l_Lean_Parser_Tactic_injection; extern lean_object* l_Lean_Parser_Tactic_seq___closed__1; lean_object* l_Lean_Parser_Tactic_exact___closed__2; lean_object* l_Lean_Parser_Tactic_intro___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__17; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___closed__5; lean_object* l_Lean_Parser_Tactic_cases___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_underscoreFn___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__7; extern lean_object* l_Lean_Parser_Term_hole___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_underscoreFn___closed__3; @@ -518,7 +520,6 @@ lean_object* l_Lean_Parser_Tactic_injection___elambda__1(lean_object*, lean_obje lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__3; lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intro___closed__3; extern lean_object* l_Lean_Parser_regBuiltinTacticParserAttr___closed__4; lean_object* l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__3; @@ -527,7 +528,7 @@ lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_orelse___closed__6; lean_object* l_Lean_Parser_Tactic_intro___closed__5; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_skip(lean_object*); lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__6; @@ -562,7 +563,6 @@ lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Tactic_inductionAlts___elam lean_object* l_Lean_Parser_Tactic_refine; extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___closed__5; -extern lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; lean_object* l_Lean_Parser_Tactic_seq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__3; extern lean_object* l_Lean_ppGoal___closed__7; @@ -7296,7 +7296,7 @@ x_1 = l_Lean_Parser_Tactic_inductionAlt___closed__16; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -7349,7 +7349,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -7444,13 +7444,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -7466,7 +7466,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -7476,7 +7476,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -7573,11 +7573,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -7630,7 +7630,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -7725,13 +7725,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -7747,7 +7747,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -7757,7 +7757,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -7854,11 +7854,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -7911,7 +7911,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -8006,13 +8006,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -8028,7 +8028,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -8038,7 +8038,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -8135,11 +8135,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -8192,7 +8192,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -8287,13 +8287,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -8309,7 +8309,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -8319,7 +8319,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -8416,11 +8416,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -8473,7 +8473,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -8568,13 +8568,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -8590,7 +8590,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -8600,7 +8600,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -8697,11 +8697,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -8754,7 +8754,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -8849,13 +8849,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -8871,7 +8871,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -8881,7 +8881,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -8978,7 +8978,7 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } @@ -9006,7 +9006,7 @@ lean_object* x_8; lean_object* x_9; uint8_t x_10; x_8 = lean_ctor_get(x_7, 1); lean_inc(x_8); lean_dec(x_7); -x_9 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_9 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_10 = lean_string_dec_eq(x_8, x_9); lean_dec(x_8); if (x_10 == 0) @@ -9014,7 +9014,7 @@ if (x_10 == 0) lean_object* x_11; lean_object* x_12; lean_dec(x_2); lean_dec(x_1); -x_11 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_11 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_12 = l_Lean_Parser_ParserState_mkErrorsAt(x_4, x_11, x_3); return x_12; } @@ -9035,7 +9035,7 @@ lean_object* x_15; lean_object* x_16; lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); -x_15 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_15 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_16 = l_Lean_Parser_ParserState_mkErrorsAt(x_4, x_15, x_3); return x_16; } @@ -9046,7 +9046,7 @@ lean_object* x_17; lean_object* x_18; lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); -x_17 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_17 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_18 = l_Lean_Parser_ParserState_mkErrorsAt(x_4, x_17, x_3); return x_18; } @@ -9112,7 +9112,7 @@ x_1 = l_Lean_Parser_Tactic_inductionAlts___closed__5; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -9122,7 +9122,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__2(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -9140,7 +9140,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -9150,7 +9150,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__4(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -9168,7 +9168,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -9178,7 +9178,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__6(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -9196,7 +9196,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -9206,7 +9206,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__8(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -9224,7 +9224,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -9234,7 +9234,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__10(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -9252,7 +9252,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -9262,7 +9262,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_inductionAlts___elambda__1___spec__12(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -13095,13 +13095,13 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* initialize_Init_Lean_Parser_Term(lean_object*); +lean_object* initialize_Lean_Parser_Term(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Parser_Tactic(lean_object* w) { +lean_object* initialize_Lean_Parser_Tactic(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Parser_Term(lean_io_mk_world()); +res = initialize_Lean_Parser_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_Tactic_underscoreFn___closed__1 = _init_l_Lean_Parser_Tactic_underscoreFn___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c similarity index 96% rename from stage0/stdlib/Init/Lean/Parser/Term.c rename to stage0/stdlib/Lean/Parser/Term.c index 762e0c8d48..65a709e3fc 100644 --- a/stage0/stdlib/Init/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Parser.Term -// Imports: Init.Lean.Parser.Parser Init.Lean.Parser.Level +// Module: Lean.Parser.Term +// Imports: Lean.Parser.Parser Lean.Parser.Level #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -38,6 +38,7 @@ lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_infixL___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_tacticStxQuot___closed__4; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_iff(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_suffices(lean_object*); lean_object* l_Lean_Parser_Term_arrayLit___closed__3; @@ -48,8 +49,6 @@ lean_object* l_Lean_Parser_Term_subst; lean_object* l_Lean_Parser_darrow___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_quotedName___closed__4; lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_bindOp___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_manyAux___main___closed__1; @@ -58,6 +57,7 @@ lean_object* l_Lean_Parser_Term_if___closed__13; lean_object* l___regBuiltinParser_Lean_Parser_Term_sub(lean_object*); lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__10; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_or___closed__1; lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Term_listLit___elambda__1___spec__1(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; @@ -79,6 +79,7 @@ lean_object* l_Lean_Parser_Term_if___elambda__1___closed__18; lean_object* l___regBuiltinParser_Lean_Parser_Term_structInst(lean_object*); lean_object* l_Lean_Parser_Term_gt___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstField___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_optIdent___closed__3; lean_object* l_Lean_Parser_Term_lt___elambda__1(lean_object*, lean_object*); @@ -88,22 +89,21 @@ lean_object* l_Lean_Parser_Term_nativeDecide___closed__6; lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__4; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_have___elambda__1___closed__7; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_bnot___closed__4; lean_object* l_Lean_Parser_Term_sub___elambda__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkError(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_optType___closed__2; lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__8; lean_object* l___regBuiltinParser_Lean_Parser_Term_dollarProj(lean_object*); lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__6; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_regBuiltinTacticParserAttr___closed__1; lean_object* l_Lean_Parser_Term_borrowed___closed__4; lean_object* l_Lean_Parser_Term_mapRev___elambda__1___closed__3; lean_object* l_Lean_Parser_darrow___elambda__1___closed__1; lean_object* l_Lean_Parser_sepByInfo(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicit___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_ge(lean_object*); lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__3; @@ -137,6 +137,7 @@ lean_object* l_Lean_Parser_Term_instBinder; lean_object* l_Lean_Parser_Term_fun___closed__7; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__6; extern lean_object* l_Lean_Parser_Level_paren___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_inaccessible___closed__1; lean_object* l_Lean_Parser_Term_not___closed__6; lean_object* l_Lean_Parser_Term_matchAlts(uint8_t); @@ -148,6 +149,7 @@ lean_object* l_Lean_Parser_Term_lt___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_namedArgument___closed__7; lean_object* l_Lean_Parser_Term_bne___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_suffices___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doExpr___closed__2; lean_object* l_Lean_Parser_Term_explicit___closed__1; lean_object* l_Lean_Parser_Term_andthen___closed__3; @@ -187,10 +189,10 @@ lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_seqLeft___closed__2; lean_object* l_Lean_Parser_Term_namedArgument___closed__5; lean_object* l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__5; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_seq; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__6; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; lean_object* l_Lean_Parser_Term_match; lean_object* l_Lean_Parser_Term_depArrow; lean_object* l_Lean_Parser_Term_heq___elambda__1___closed__1; @@ -213,7 +215,6 @@ lean_object* l_Lean_Parser_Term_inaccessible___closed__4; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_match__syntax___closed__7; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_matchAlt___closed__8; lean_object* l_Lean_Parser_Term_prod___elambda__1(lean_object*, lean_object*); @@ -221,9 +222,9 @@ lean_object* l_Lean_Parser_darrow___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__1; lean_object* l_Lean_Parser_sepByFn___at_Lean_Parser_Term_anonymousCtor___elambda__1___spec__1(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type___elambda__1___closed__7; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_and___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doSeq___elambda__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_div; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__12; @@ -306,6 +307,7 @@ lean_object* l_Lean_Parser_Term_quotedName___closed__3; extern lean_object* l_Lean_Parser_dollarSymbol___closed__1; lean_object* l_Lean_Parser_Term_subst___closed__6; extern lean_object* l_Lean_Parser_ident; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sortApp___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_quotedName(lean_object*); lean_object* l_Lean_Parser_Term_show___elambda__1___closed__6; @@ -320,10 +322,10 @@ lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__4; lean_object* l_Lean_Parser_Term_or___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__6; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__4; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_subtype___closed__2; lean_object* l_Lean_Parser_Term_modN; lean_object* l_Lean_Parser_Term_mul___elambda__1___closed__1; @@ -342,6 +344,7 @@ lean_object* l_Lean_Parser_Term_uminus___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstLVal___closed__7; lean_object* l_Lean_Parser_Term_doPat___closed__2; lean_object* l_Lean_Parser_Term_heq___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_do___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_andM___elambda__1___closed__1; @@ -351,7 +354,6 @@ lean_object* l_Lean_Parser_Term_matchAlts___closed__6; lean_object* l_Lean_Parser_Term_liftMethod___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_do(lean_object*); @@ -360,6 +362,7 @@ lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__9; lean_object* l_Lean_Parser_regTacticParserAttribute___closed__1; lean_object* l_Lean_Parser_Term_letPatDecl___closed__4; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__7; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; lean_object* l_Lean_Parser_Term_or___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__12; @@ -385,6 +388,7 @@ lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, l lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__2; lean_object* l_Lean_Parser_regBuiltinTacticParserAttr(lean_object*); lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__3; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doPat___closed__4; lean_object* l_Lean_Parser_Term_doId___closed__2; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__4; @@ -399,20 +403,19 @@ lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__11; lean_object* l___regBuiltinParser_Lean_Parser_Term_let_x21(lean_object*); lean_object* l_Lean_Parser_Term_let___elambda__1___closed__7; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_not___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_optIdent___closed__4; lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Parser_Term_doId___closed__1; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlt___closed__7; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_suffices___closed__8; lean_object* l_Lean_Parser_Term_app___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__3; @@ -436,7 +439,6 @@ lean_object* l_Lean_Parser_Term_listLit___closed__4; lean_object* l_Lean_Parser_Term_gt___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_optType___closed__1; lean_object* l_Lean_Parser_Term_funBinder; lean_object* l_Lean_Parser_Term_match__syntax___closed__5; @@ -454,13 +456,13 @@ lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_parenSpecial___closed__1; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_seq___closed__6; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_listLit___closed__9; lean_object* l_Lean_Parser_Term_structInstLVal___closed__9; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Level_paren___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_forall___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Term_tparser_x21(lean_object*); @@ -524,7 +526,6 @@ lean_object* l_Lean_Parser_Term_doId___closed__4; lean_object* l_Lean_Parser_Term_lt___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_pow___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_uminus___closed__7; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__2; @@ -541,7 +542,6 @@ lean_object* l_Lean_Parser_Term_cdot___closed__1; lean_object* l_Lean_Parser_Term_namedPattern___closed__7; extern lean_object* l_Lean_Parser_fieldIdx___closed__4; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__13; extern lean_object* l_Sigma_HasRepr___rarg___closed__2; lean_object* l_Lean_Parser_Term_liftMethod___closed__5; @@ -582,17 +582,16 @@ lean_object* l_Lean_Parser_Term_arrayLit___closed__6; lean_object* l_Lean_Parser_Term_str; lean_object* l_Lean_Parser_Term_decide___closed__5; lean_object* l_Lean_Parser_Term_structInstLVal___closed__5; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_depArrow___closed__8; lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_sorry(lean_object*); lean_object* l_Lean_Parser_Term_nomatch___closed__4; lean_object* l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_or___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_listLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ge___closed__1; lean_object* l_Lean_Parser_Term_arrayRef___closed__5; @@ -620,7 +619,6 @@ lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_add___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__6; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_seqRight___closed__1; lean_object* l_Lean_Parser_Term_tacticStxQuot; lean_object* l___regBuiltinParser_Lean_Parser_Term_id(lean_object*); @@ -650,7 +648,6 @@ lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_levelStxQuot___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__9; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_sort___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_arrayLit(lean_object*); @@ -682,7 +679,6 @@ lean_object* l_Lean_Parser_Term_fromTerm___closed__1; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__5; lean_object* l_Lean_Parser_Term_subtype___closed__7; lean_object* l_Lean_Parser_Term_quotedName___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_namedPattern; lean_object* l_Lean_Parser_Term_seqLeft___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__5; @@ -694,7 +690,6 @@ lean_object* l_Lean_Parser_Term_letIdLhs___closed__5; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__1; lean_object* l_Lean_Parser_manyAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_mapConstRev___closed__3; lean_object* l_Lean_Parser_Term_match___closed__6; @@ -717,7 +712,6 @@ lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___boxed(lean_object*, lea lean_object* l_Lean_Parser_Term_append___closed__3; lean_object* l_Lean_Parser_Term_show___closed__1; lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_modN___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__16; @@ -740,7 +734,6 @@ lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__5; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_band___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__8; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_nomatch; lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_parenSpecial; @@ -751,7 +744,6 @@ lean_object* l_Lean_Parser_Term_nativeRefl___closed__2; lean_object* l_Lean_Parser_Term_pow___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_char___closed__1; lean_object* l_Lean_Parser_Term_fun; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__4; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_eq___closed__1; @@ -765,7 +757,7 @@ lean_object* l_Lean_Parser_Term_id___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_seq___closed__3; lean_object* l_Lean_Parser_Term_let___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__5; @@ -775,7 +767,6 @@ lean_object* l_Lean_Parser_Term_or___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__7; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderTactic; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_mapRev___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_forall(lean_object*); @@ -783,6 +774,7 @@ lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_proj___closed__8; lean_object* l_Lean_Parser_Term_bor___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__9(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_modN___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__1; @@ -794,6 +786,7 @@ lean_object* l_Lean_Parser_Term_parenSpecial___closed__3; lean_object* l_Lean_Parser_Term_ne___elambda__1___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__2; lean_object* l_Lean_Parser_Term_doId___elambda__1___closed__4; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_decide___closed__3; lean_object* l_Lean_Parser_Term_listLit; @@ -801,6 +794,7 @@ lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_letDecl; lean_object* l_Lean_Parser_Term_id___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__8; @@ -810,10 +804,10 @@ lean_object* l_Lean_Parser_Term_doId___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_sort; lean_object* l_Lean_Parser_Term_ne___elambda__1___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_mul___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_add___elambda__1___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_beq; lean_object* l_Lean_Parser_Term_prop___closed__2; @@ -827,7 +821,9 @@ lean_object* l_Lean_Parser_checkWsBeforeFn(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_Term_le___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_div___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_borrowed___elambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_where___closed__9; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__4; lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderIdent___closed__3; @@ -836,6 +832,7 @@ lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__2; extern lean_object* l_Lean_getBuiltinSearchPath___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_dollar(lean_object*); lean_object* l_Lean_Parser_Term_explicitUniv___closed__5; @@ -905,6 +902,7 @@ lean_object* l_Lean_Parser_Term_if___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_namedHole___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_doId___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__7; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__1; lean_object* l_Lean_Parser_Term_fun___closed__1; lean_object* l_Lean_Parser_Term_bne___closed__3; @@ -945,7 +943,6 @@ lean_object* l_Lean_Parser_Term_funBinder___elambda__1(lean_object*, lean_object lean_object* l_Lean_Parser_Term_ne___closed__3; lean_object* l_Lean_Parser_Term_show___closed__2; lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; lean_object* l_Lean_Parser_Term_orelse___closed__2; lean_object* l_Lean_Parser_Term_explicitBinder___closed__5; lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1(lean_object*, lean_object*, lean_object*); @@ -987,7 +984,6 @@ lean_object* l_Lean_Parser_Term_id___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_where___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__8; lean_object* l_Lean_Parser_strAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fun___elambda__1(lean_object*, lean_object*); @@ -1004,6 +1000,7 @@ extern lean_object* l_Lean_Parser_fieldIdx___closed__2; lean_object* l_Lean_Parser_Term_andthen___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fcomp___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_cons; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_nomatch___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__2; @@ -1028,6 +1025,7 @@ lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__10; extern lean_object* l_Lean_Parser_termParser___closed__2; lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; extern lean_object* l_List_repr___rarg___closed__2; lean_object* l_Lean_Parser_Term_match___closed__2; lean_object* l_Lean_Parser_Term_binderIdent___closed__2; @@ -1043,7 +1041,6 @@ extern lean_object* l_List_reprAux___main___rarg___closed__1; lean_object* l_Lean_Parser_Term_id___closed__6; lean_object* l_Lean_Parser_Term_map___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; lean_object* l_Lean_Parser_Term_add___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_doElem___closed__2; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -1119,7 +1116,6 @@ lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__1; extern lean_object* l_Lean_mkAppStx___closed__6; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_letPatDecl___closed__7; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_explicitBinder___boxed(lean_object*); lean_object* l_Lean_Parser_Term_do___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_and___elambda__1___closed__5; @@ -1144,6 +1140,7 @@ lean_object* l_Lean_Parser_Term_binderTactic___closed__1; lean_object* l_Lean_Parser_Term_let_x21; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__3; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_type___closed__2; lean_object* l_Lean_Parser_Term_str___closed__4; @@ -1157,12 +1154,12 @@ lean_object* l_Lean_Parser_Term_namedHole___closed__5; lean_object* l_Lean_Parser_Term_mod___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___closed__9; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_match___closed__1; lean_object* l_Lean_Parser_symbolNoWsInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_liftMethod___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_append___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_proj___closed__2; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__5; @@ -1182,6 +1179,7 @@ lean_object* l_Lean_Parser_Term_explicitBinder(uint8_t); lean_object* l_Lean_Parser_Term_type___closed__1; lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_subtype(lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_mapConstRev___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Error_toString___closed__2; @@ -1199,14 +1197,12 @@ lean_object* l_Lean_Parser_Term_listLit___closed__7; lean_object* l_Lean_Parser_Term_bor___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__7; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_or___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_emptyC; lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_letPatDecl___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_sort(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_id___closed__3; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_sortApp___elambda__1(lean_object*, lean_object*); @@ -1232,6 +1228,7 @@ lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_letEqnsDecl___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sortApp___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_binderType___elambda__2(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__2; lean_object* l_Lean_Parser_Term_andthen; lean_object* l_Lean_Parser_Term_matchAlt___closed__11; @@ -1258,10 +1255,12 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_have(lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_cdot(lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_mapRev___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_if___closed__12; lean_object* l_Lean_Parser_Term_forall; lean_object* l___regBuiltinParser_Lean_Parser_Term_str(lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_map___closed__3; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1(lean_object*, lean_object*); @@ -1275,11 +1274,9 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_nomatch(lean_object*); lean_object* l_Lean_Parser_Term_structInstField; lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__4; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__5(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_typeAscription___closed__3; extern lean_object* l_Lean_Parser_Level_paren___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; lean_object* l_Lean_Parser_Term_have___closed__10; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_borrowed___closed__7; @@ -1292,10 +1289,11 @@ lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_fun___closed__8; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__9; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_fun(lean_object*); lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_doElem___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_id___closed__5; @@ -1307,7 +1305,6 @@ lean_object* l_Lean_Parser_Term_letIdLhs___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_equiv(lean_object*); lean_object* l_Lean_Parser_Term_sort___closed__5; lean_object* l_Lean_Parser_Term_optType___elambda__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sorry___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__12; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_where___elambda__1___spec__1(uint8_t, uint8_t, lean_object*, lean_object*); @@ -1328,6 +1325,7 @@ lean_object* l_Lean_Parser_Term_if___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__7; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_andM; lean_object* l_Lean_Parser_Term_binderType___closed__5; @@ -1374,7 +1372,6 @@ lean_object* l_Lean_Parser_Term_letDecl___closed__1; lean_object* l_Lean_Parser_Term_unicodeInfixL___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedHole___closed__3; lean_object* l_Lean_Parser_Term_emptyC___closed__4; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3; lean_object* l_Lean_Parser_Term_band___closed__3; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_mapRev; @@ -1418,7 +1415,6 @@ lean_object* l_Lean_Parser_Term_infixR(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_seqLeft___closed__3; lean_object* l_Lean_Parser_charLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_uminus___closed__2; lean_object* l_Lean_Parser_Term_str___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__3; @@ -1429,7 +1425,6 @@ lean_object* l_Lean_Parser_Term_mul___closed__2; extern lean_object* l_Lean_Parser_numLit; lean_object* l_Lean_Parser_Term_mod___closed__2; lean_object* l_Lean_Parser_Term_leftArrow; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__2; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__8; @@ -1451,7 +1446,6 @@ lean_object* l_Lean_Parser_Term_bindOp; lean_object* l_Lean_Parser_Term_doPat___closed__10; lean_object* l_Lean_Parser_Term_simpleBinder; lean_object* l_Lean_Parser_Term_bor___elambda__1___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_div___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_doExpr___elambda__1(lean_object*, lean_object*); @@ -1478,6 +1472,7 @@ lean_object* l_Lean_Parser_Term_instBinder___closed__1; lean_object* l_Lean_Parser_Term_bracketedBinder___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_sub___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_show(lean_object*); lean_object* l_Lean_Parser_Term_do___closed__7; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__4; @@ -1488,6 +1483,7 @@ lean_object* l_Lean_Parser_Term_sorry; lean_object* l_Lean_Parser_Term_tparser_x21___closed__3; lean_object* l_Lean_Parser_Term_structInstLVal___closed__4; lean_object* l_Lean_Parser_Term_matchAlt; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_or___closed__3; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_funBinderStxQuot___closed__4; @@ -1510,6 +1506,7 @@ lean_object* l_Lean_Parser_Term_structInstLVal___closed__1; lean_object* l_Lean_Parser_Term_have___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_orelse(lean_object*); lean_object* l_Lean_Parser_Term_match___elambda__1___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tupleTail___closed__6; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__2; lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*); @@ -1530,7 +1527,6 @@ lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_bor(lean_object*); lean_object* l_Lean_Parser_darrow___closed__1; lean_object* l_Lean_Parser_Term_matchAlts___elambda__1(uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__2; lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); @@ -1581,6 +1577,7 @@ lean_object* l_Lean_Parser_Term_borrowed___closed__3; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_depArrow___closed__6; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_mapConst___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_namedPattern___closed__1; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__10; @@ -1610,7 +1607,7 @@ lean_object* l_Lean_Parser_symbolInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match___closed__9; lean_object* l_Lean_Parser_Term_tupleTail___closed__5; lean_object* l_Lean_Parser_Term_mapRev___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_id___closed__7; lean_object* l_Lean_Parser_Term_bracketedDoSeq___closed__6; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__9; @@ -1634,6 +1631,7 @@ lean_object* l_Lean_Parser_Term_if___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_explicitUniv___closed__1; lean_object* l_Lean_Parser_Term_where___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_typeAscription___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_gt___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_letDecl___elambda__1(lean_object*, lean_object*); @@ -1641,7 +1639,6 @@ lean_object* l_Lean_Parser_Term_letEqnsDecl___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_letIdLhs___closed__4; lean_object* l_Lean_Parser_Term_doLet___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_if___elambda__1___closed__17; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; extern lean_object* l_Lean_mkHole___closed__1; lean_object* l_Lean_Parser_Term_forall___closed__4; lean_object* l_Lean_Parser_Term_add___closed__1; @@ -1655,7 +1652,6 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_cons(lean_object*); lean_object* l_Lean_Parser_Term_forall___closed__8; lean_object* l_Lean_Parser_Term_fromTerm___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_namedHole(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_type; lean_object* l_Lean_Parser_Term_tacticBlock___closed__4; lean_object* l_Lean_Parser_Term_pow___closed__1; @@ -1664,11 +1660,9 @@ lean_object* l_Lean_Parser_Term_leftArrow___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_subst___closed__5; lean_object* l_Lean_Parser_Term_binderType___closed__4; lean_object* l_Lean_Parser_Term_tacticBlock___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_bne___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letIdDecl___closed__7; lean_object* l_Lean_Parser_Term_where___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_subtype___closed__10; @@ -1679,6 +1673,7 @@ lean_object* l_Lean_Parser_Term_levelStxQuot___closed__1; lean_object* l_Lean_Parser_Term_dollar___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_decide(lean_object*); lean_object* l_Lean_Parser_Term_arrayRef___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_fromTerm___closed__5; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__1; lean_object* l_Lean_Parser_dollarSymbol___elambda__1(lean_object*, lean_object*); @@ -1712,7 +1707,6 @@ lean_object* l_Lean_Parser_Tactic_seq___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_not___closed__1; lean_object* l_Lean_Parser_Term_uminus___closed__1; lean_object* l_Lean_Parser_Term_funBinderStxQuot___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_map___closed__1; lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_subst___closed__2; @@ -1727,6 +1721,7 @@ lean_object* l_Lean_Parser_Term_tparser_x21___closed__2; lean_object* l_Lean_Parser_Term_matchAlts___boxed(lean_object*); lean_object* l_Lean_Parser_Term_levelStxQuot___closed__3; lean_object* l_Lean_Parser_Term_not___closed__4; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_subst___closed__1; extern lean_object* l_Lean_Parser_Level_hole___closed__1; lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__3; @@ -1742,13 +1737,11 @@ lean_object* l_Lean_Parser_Term_mapRev___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_hole; lean_object* l_Lean_Parser_Term_app___closed__1; lean_object* l_Lean_Parser_Term_emptyC___closed__5; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_if___closed__4; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__7; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__3; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__17(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_haveAssign___closed__5; @@ -1764,6 +1757,7 @@ lean_object* l_Lean_Parser_Term_funBinder___closed__1; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__2; lean_object* l_String_trim(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_prop(lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_nonEmptySeq___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_byTactic(lean_object*); @@ -1771,7 +1765,6 @@ lean_object* l_Lean_Parser_Term_bindOp___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_explicitBinder___closed__9; lean_object* l_Lean_Parser_darrow___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_pow___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_implicitBinder___boxed(lean_object*); lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_mapConst___elambda__1___closed__2; @@ -1792,6 +1785,7 @@ lean_object* l_Lean_Parser_Term_typeAscription___closed__2; lean_object* l_Lean_Parser_Term_byTactic___closed__3; lean_object* l_Lean_Parser_Term_seq___closed__3; lean_object* l_Lean_Parser_Term_tacticStxQuot___elambda__1___closed__6; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_matchAlts___closed__1; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_structInstLVal___elambda__1___spec__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___closed__7; @@ -1816,7 +1810,6 @@ lean_object* l_Lean_Parser_Term_mapRev___closed__3; lean_object* l_Lean_Parser_Term_matchAlt___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_checkIsSort___closed__2; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_parser_x21___closed__4; lean_object* l_Lean_Parser_Term_orelse___elambda__1(lean_object*, lean_object*); @@ -1830,9 +1823,9 @@ lean_object* l_Lean_Parser_Term_fcomp___closed__3; lean_object* l_Lean_Parser_Term_doLet___closed__2; extern lean_object* l_Lean_mkHole___closed__2; lean_object* l_Lean_Parser_Term_type___closed__5; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_unicodeInfixR___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2; lean_object* l_Lean_Parser_Term_andthen___closed__1; lean_object* l_Lean_Parser_Term_and___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__7; @@ -1851,7 +1844,6 @@ lean_object* l_Lean_Parser_Term_haveAssign___closed__3; lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__1; lean_object* l_Lean_Parser_regBuiltinTacticParserAttr___closed__3; lean_object* l_Lean_Parser_Term_forall___closed__5; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_pow; lean_object* l_Lean_Parser_Term_structInst___closed__16; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__6; @@ -1866,11 +1858,11 @@ lean_object* l_Lean_Parser_Term_do___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_namedHole___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_listLit(lean_object*); -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type___elambda__1___closed__6; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_Term_funBinder___closed__2; lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__6; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_explicit; @@ -1880,14 +1872,16 @@ lean_object* l_Lean_Parser_Term_modN___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_sortApp(lean_object*); lean_object* l_Lean_Parser_Term_levelStxQuot___closed__4; lean_object* l_Lean_Parser_Term_typeAscription___closed__6; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Term_lt; lean_object* l_Lean_Parser_Term_matchAlts___closed__5; lean_object* l_Lean_Parser_Term_bor___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_doId___elambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_mapConst___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letIdDecl___closed__9; lean_object* l_Lean_Parser_Term_hole___closed__3; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_byTactic___closed__6; lean_object* l_Lean_Parser_unicodeSymbolFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedHole___closed__2; @@ -1907,7 +1901,7 @@ lean_object* l_Lean_Parser_Term_optIdent___elambda__1(lean_object*, lean_object* lean_object* l_Lean_Parser_Term_gt___closed__1; lean_object* l_Lean_Parser_Term_ge; lean_object* l_Lean_Parser_Term_bracketedDoSeq___elambda__1___closed__3; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_have___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_where(lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1(lean_object*, lean_object*); @@ -1956,6 +1950,7 @@ lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_tupleTail___closed__4; lean_object* l_Lean_Parser_Term_funBinderStxQuot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__3; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_gt___closed__3; lean_object* l_Lean_Parser_unicodeSymbolInfo(lean_object*, lean_object*, lean_object*); @@ -1968,6 +1963,7 @@ lean_object* l_Lean_Parser_Term_bindOp___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_suffices; lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_mapConstRev; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_iff; lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__5; lean_object* l_Lean_Parser_many1Fn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -2001,6 +1997,7 @@ lean_object* l_Lean_Parser_Term_add___closed__3; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_structInst; lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1; lean_object* l_Lean_Parser_Tactic_nonEmptySeq___closed__1; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_ne; @@ -2026,11 +2023,11 @@ lean_object* l_Lean_Parser_Term_dollar___closed__1; lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_char___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__11; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_map___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_matchAlt___closed__6; lean_object* l_Lean_Parser_Term_parenSpecial___closed__4; lean_object* l_Lean_Parser_Term_modN___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__9; lean_object* l___regBuiltinParser_Lean_Parser_Term_or(lean_object*); lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__3; @@ -2070,7 +2067,6 @@ lean_object* l_Lean_Parser_Term_doExpr; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_suffices___closed__6; -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; lean_object* l_Lean_Parser_Term_sortApp___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_depArrow___closed__7; @@ -2109,6 +2105,7 @@ lean_object* l_Lean_Parser_Term_equiv___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_dollar___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_char___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Level_addLit___closed__1; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_bnot___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn___at_Lean_Parser_Term_matchAlts___elambda__1___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let; @@ -2120,6 +2117,7 @@ lean_object* l_Lean_Parser_Term_map; lean_object* l_Lean_Parser_Term_unicodeInfixR(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_let_x21___closed__2; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_forall___closed__6; lean_object* l_Lean_Parser_Term_mod___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_modN___closed__1; @@ -2138,12 +2136,14 @@ lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_hole___closed__1; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_letEqnsDecl___closed__4; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_object* l_Lean_Parser_Term_prop___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_borrowed___closed__1; lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_forall___elambda__1___spec__1(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_suffices___closed__3; +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__8; @@ -2244,7 +2244,7 @@ x_3 = l_Lean_Parser_categoryParser(x_2, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -2253,39 +2253,39 @@ x_2 = l_String_trim(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Char_HasRepr___closed__1; -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2; x_2 = l_Char_HasRepr___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -2329,13 +2329,13 @@ lean_object* x_35; lean_object* x_36; uint8_t x_37; x_35 = lean_ctor_get(x_34, 1); lean_inc(x_35); lean_dec(x_34); -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_37 = lean_string_dec_eq(x_35, x_36); lean_dec(x_35); if (x_37 == 0) { lean_object* x_38; lean_object* x_39; -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_inc(x_16); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_38, x_16); x_17 = x_39; @@ -2351,7 +2351,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_34); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_inc(x_16); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_40, x_16); x_17 = x_41; @@ -2362,7 +2362,7 @@ else { lean_object* x_42; lean_object* x_43; lean_dec(x_32); -x_42 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_42 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_inc(x_16); x_43 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_42, x_16); x_17 = x_43; @@ -2508,7 +2508,7 @@ x_5 = lean_array_get_size(x_4); lean_dec(x_4); x_6 = 0; x_7 = 1; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(x_1, x_5, x_6, x_7, x_2, x_3); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(x_1, x_5, x_6, x_7, x_2, x_3); return x_8; } } @@ -2578,7 +2578,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); return x_3; } @@ -2633,7 +2633,7 @@ x_1 = l_Lean_Parser_Tactic_seq___closed__6; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -2643,7 +2643,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -2666,7 +2666,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); return x_8; } } @@ -3176,7 +3176,7 @@ x_1 = l_Lean_Parser_Term_leadPrec___closed__1; return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -3185,39 +3185,39 @@ x_2 = l_String_trim(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Char_HasRepr___closed__1; -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2; x_2 = l_Char_HasRepr___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -3261,13 +3261,13 @@ lean_object* x_35; lean_object* x_36; uint8_t x_37; x_35 = lean_ctor_get(x_34, 1); lean_inc(x_35); lean_dec(x_34); -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_37 = lean_string_dec_eq(x_35, x_36); lean_dec(x_35); if (x_37 == 0) { lean_object* x_38; lean_object* x_39; -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_16); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_38, x_16); x_17 = x_39; @@ -3283,7 +3283,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_34); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_16); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_40, x_16); x_17 = x_41; @@ -3294,7 +3294,7 @@ else { lean_object* x_42; lean_object* x_43; lean_dec(x_32); -x_42 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_42 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_16); x_43 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_42, x_16); x_17 = x_43; @@ -3439,7 +3439,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); return x_8; } } @@ -4000,7 +4000,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); return x_3; } @@ -4107,7 +4107,7 @@ x_1 = l_Lean_Parser_Term_explicitUniv___closed__11; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -4117,7 +4117,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -8738,7 +8738,7 @@ x_1 = l_Lean_Parser_Term_typeAscription___closed__6; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -8782,13 +8782,13 @@ lean_object* x_35; lean_object* x_36; uint8_t x_37; x_35 = lean_ctor_get(x_34, 1); lean_inc(x_35); lean_dec(x_34); -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_37 = lean_string_dec_eq(x_35, x_36); lean_dec(x_35); if (x_37 == 0) { lean_object* x_38; lean_object* x_39; -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_16); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_38, x_16); x_17 = x_39; @@ -8804,7 +8804,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_34); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_16); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_40, x_16); x_17 = x_41; @@ -8815,7 +8815,7 @@ else { lean_object* x_42; lean_object* x_43; lean_dec(x_32); -x_42 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_42 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_16); x_43 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_42, x_16); x_17 = x_43; @@ -8960,7 +8960,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); return x_8; } } @@ -9040,13 +9040,13 @@ lean_object* x_22; lean_object* x_23; uint8_t x_24; x_22 = lean_ctor_get(x_21, 1); lean_inc(x_22); lean_dec(x_21); -x_23 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_23 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_24 = lean_string_dec_eq(x_22, x_23); lean_dec(x_22); if (x_24 == 0) { lean_object* x_25; lean_object* x_26; -x_25 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_25 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; x_26 = l_Lean_Parser_ParserState_mkErrorsAt(x_18, x_25, x_17); x_8 = x_26; goto block_16; @@ -9062,7 +9062,7 @@ else { lean_object* x_27; lean_object* x_28; lean_dec(x_21); -x_27 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_27 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; x_28 = l_Lean_Parser_ParserState_mkErrorsAt(x_18, x_27, x_17); x_8 = x_28; goto block_16; @@ -9072,7 +9072,7 @@ else { lean_object* x_29; lean_object* x_30; lean_dec(x_19); -x_29 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_29 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; x_30 = l_Lean_Parser_ParserState_mkErrorsAt(x_18, x_29, x_17); x_8 = x_30; goto block_16; @@ -9167,13 +9167,13 @@ lean_object* x_57; lean_object* x_58; uint8_t x_59; x_57 = lean_ctor_get(x_56, 1); lean_inc(x_57); lean_dec(x_56); -x_58 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_58 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_59 = lean_string_dec_eq(x_57, x_58); lean_dec(x_57); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_33); x_61 = l_Lean_Parser_ParserState_mkErrorsAt(x_53, x_60, x_33); x_42 = x_61; @@ -9189,7 +9189,7 @@ else { lean_object* x_62; lean_object* x_63; lean_dec(x_56); -x_62 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_62 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_33); x_63 = l_Lean_Parser_ParserState_mkErrorsAt(x_53, x_62, x_33); x_42 = x_63; @@ -9200,7 +9200,7 @@ else { lean_object* x_64; lean_object* x_65; lean_dec(x_54); -x_64 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_64 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_33); x_65 = l_Lean_Parser_ParserState_mkErrorsAt(x_53, x_64, x_33); x_42 = x_65; @@ -9311,7 +9311,7 @@ x_1 = l_Lean_Parser_Term_tupleTail___closed__6; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -9321,7 +9321,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -10181,7 +10181,7 @@ x_5 = lean_array_get_size(x_4); lean_dec(x_4); x_6 = 0; x_7 = 1; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(x_1, x_5, x_6, x_7, x_2, x_3); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_tupleTail___elambda__1___spec__2(x_1, x_5, x_6, x_7, x_2, x_3); return x_8; } } @@ -13050,14 +13050,14 @@ lean_object* x_15; lean_object* x_16; uint8_t x_17; x_15 = lean_ctor_get(x_14, 1); lean_inc(x_15); lean_dec(x_14); -x_16 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_16 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_17 = lean_string_dec_eq(x_15, x_16); lean_dec(x_15); if (x_17 == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_dec(x_1); -x_18 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_18 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_19 = l_Lean_Parser_ParserState_mkErrorsAt(x_11, x_18, x_10); x_20 = l_Lean_Parser_Term_have___elambda__1___closed__2; x_21 = l_Lean_Parser_ParserState_mkNode(x_19, x_20, x_7); @@ -13080,7 +13080,7 @@ else lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_dec(x_14); lean_dec(x_1); -x_27 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_27 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_28 = l_Lean_Parser_ParserState_mkErrorsAt(x_11, x_27, x_10); x_29 = l_Lean_Parser_Term_have___elambda__1___closed__2; x_30 = l_Lean_Parser_ParserState_mkNode(x_28, x_29, x_7); @@ -13092,7 +13092,7 @@ else lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_dec(x_12); lean_dec(x_1); -x_31 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_31 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_32 = l_Lean_Parser_ParserState_mkErrorsAt(x_11, x_31, x_10); x_33 = l_Lean_Parser_Term_have___elambda__1___closed__2; x_34 = l_Lean_Parser_ParserState_mkNode(x_32, x_33, x_7); @@ -13345,14 +13345,14 @@ lean_object* x_96; lean_object* x_97; uint8_t x_98; x_96 = lean_ctor_get(x_95, 1); lean_inc(x_96); lean_dec(x_95); -x_97 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_97 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_98 = lean_string_dec_eq(x_96, x_97); lean_dec(x_96); if (x_98 == 0) { lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_dec(x_1); -x_99 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_99 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_100 = l_Lean_Parser_ParserState_mkErrorsAt(x_92, x_99, x_91); x_101 = l_Lean_Parser_Term_have___elambda__1___closed__2; x_102 = l_Lean_Parser_ParserState_mkNode(x_100, x_101, x_88); @@ -13379,7 +13379,7 @@ else lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_dec(x_95); lean_dec(x_1); -x_110 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_110 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_111 = l_Lean_Parser_ParserState_mkErrorsAt(x_92, x_110, x_91); x_112 = l_Lean_Parser_Term_have___elambda__1___closed__2; x_113 = l_Lean_Parser_ParserState_mkNode(x_111, x_112, x_88); @@ -13393,7 +13393,7 @@ else lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_dec(x_93); lean_dec(x_1); -x_115 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_115 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_116 = l_Lean_Parser_ParserState_mkErrorsAt(x_92, x_115, x_91); x_117 = l_Lean_Parser_Term_have___elambda__1___closed__2; x_118 = l_Lean_Parser_ParserState_mkNode(x_116, x_117, x_88); @@ -13472,14 +13472,14 @@ lean_object* x_142; lean_object* x_143; uint8_t x_144; x_142 = lean_ctor_get(x_141, 1); lean_inc(x_142); lean_dec(x_141); -x_143 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_143 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_144 = lean_string_dec_eq(x_142, x_143); lean_dec(x_142); if (x_144 == 0) { lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_dec(x_1); -x_145 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_145 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_146 = l_Lean_Parser_ParserState_mkErrorsAt(x_138, x_145, x_137); x_147 = l_Lean_Parser_Term_have___elambda__1___closed__2; x_148 = l_Lean_Parser_ParserState_mkNode(x_146, x_147, x_88); @@ -13504,7 +13504,7 @@ else lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_dec(x_141); lean_dec(x_1); -x_154 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_154 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_155 = l_Lean_Parser_ParserState_mkErrorsAt(x_138, x_154, x_137); x_156 = l_Lean_Parser_Term_have___elambda__1___closed__2; x_157 = l_Lean_Parser_ParserState_mkNode(x_155, x_156, x_88); @@ -13518,7 +13518,7 @@ else lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_dec(x_139); lean_dec(x_1); -x_159 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_159 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_160 = l_Lean_Parser_ParserState_mkErrorsAt(x_138, x_159, x_137); x_161 = l_Lean_Parser_Term_have___elambda__1___closed__2; x_162 = l_Lean_Parser_ParserState_mkNode(x_160, x_161, x_88); @@ -13955,14 +13955,14 @@ lean_object* x_23; lean_object* x_24; uint8_t x_25; x_23 = lean_ctor_get(x_22, 1); lean_inc(x_23); lean_dec(x_22); -x_24 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_24 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_25 = lean_string_dec_eq(x_23, x_24); lean_dec(x_23); if (x_25 == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_dec(x_1); -x_26 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_26 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_27 = l_Lean_Parser_ParserState_mkErrorsAt(x_19, x_26, x_18); x_28 = l_Lean_Parser_Term_suffices___elambda__1___closed__2; x_29 = l_Lean_Parser_ParserState_mkNode(x_27, x_28, x_7); @@ -13983,7 +13983,7 @@ else lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_22); lean_dec(x_1); -x_33 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_33 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_34 = l_Lean_Parser_ParserState_mkErrorsAt(x_19, x_33, x_18); x_35 = l_Lean_Parser_Term_suffices___elambda__1___closed__2; x_36 = l_Lean_Parser_ParserState_mkNode(x_34, x_35, x_7); @@ -13995,7 +13995,7 @@ else lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_dec(x_20); lean_dec(x_1); -x_37 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_37 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_38 = l_Lean_Parser_ParserState_mkErrorsAt(x_19, x_37, x_18); x_39 = l_Lean_Parser_Term_suffices___elambda__1___closed__2; x_40 = l_Lean_Parser_ParserState_mkNode(x_38, x_39, x_7); @@ -14197,14 +14197,14 @@ lean_object* x_90; lean_object* x_91; uint8_t x_92; x_90 = lean_ctor_get(x_89, 1); lean_inc(x_90); lean_dec(x_89); -x_91 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_91 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_92 = lean_string_dec_eq(x_90, x_91); lean_dec(x_90); if (x_92 == 0) { lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_dec(x_1); -x_93 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_93 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_94 = l_Lean_Parser_ParserState_mkErrorsAt(x_86, x_93, x_85); x_95 = l_Lean_Parser_Term_suffices___elambda__1___closed__2; x_96 = l_Lean_Parser_ParserState_mkNode(x_94, x_95, x_74); @@ -14229,7 +14229,7 @@ else lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_dec(x_89); lean_dec(x_1); -x_102 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_102 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_103 = l_Lean_Parser_ParserState_mkErrorsAt(x_86, x_102, x_85); x_104 = l_Lean_Parser_Term_suffices___elambda__1___closed__2; x_105 = l_Lean_Parser_ParserState_mkNode(x_103, x_104, x_74); @@ -14243,7 +14243,7 @@ else lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_dec(x_87); lean_dec(x_1); -x_107 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_107 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_108 = l_Lean_Parser_ParserState_mkErrorsAt(x_86, x_107, x_85); x_109 = l_Lean_Parser_Term_suffices___elambda__1___closed__2; x_110 = l_Lean_Parser_ParserState_mkNode(x_108, x_109, x_74); @@ -16481,7 +16481,7 @@ x_1 = l_Lean_Parser_Term_structInstField___closed__5; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -16523,13 +16523,13 @@ lean_object* x_33; lean_object* x_34; uint8_t x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_34 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_35 = lean_string_dec_eq(x_33, x_34); lean_dec(x_33); if (x_35 == 0) { lean_object* x_36; lean_object* x_37; -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_37 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_36, x_14); x_15 = x_37; @@ -16545,7 +16545,7 @@ else { lean_object* x_38; lean_object* x_39; lean_dec(x_32); -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_38, x_14); x_15 = x_39; @@ -16556,7 +16556,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_30); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; lean_inc(x_14); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_40, x_14); x_15 = x_41; @@ -16702,7 +16702,7 @@ x_5 = lean_array_get_size(x_4); lean_dec(x_4); x_6 = 0; x_7 = 1; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2(x_1, x_5, x_6, x_7, x_2, x_3); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2(x_1, x_5, x_6, x_7, x_2, x_3); return x_8; } } @@ -18475,7 +18475,7 @@ x_1 = l_Lean_Parser_Term_structInst___closed__18; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -18485,7 +18485,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_structInst___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -19757,7 +19757,7 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -19766,39 +19766,39 @@ x_2 = l_String_trim(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Char_HasRepr___closed__1; -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2; x_2 = l_Char_HasRepr___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -19842,13 +19842,13 @@ lean_object* x_35; lean_object* x_36; uint8_t x_37; x_35 = lean_ctor_get(x_34, 1); lean_inc(x_35); lean_dec(x_34); -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1; x_37 = lean_string_dec_eq(x_35, x_36); lean_dec(x_35); if (x_37 == 0) { lean_object* x_38; lean_object* x_39; -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4; lean_inc(x_16); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_38, x_16); x_17 = x_39; @@ -19864,7 +19864,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_34); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4; lean_inc(x_16); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_40, x_16); x_17 = x_41; @@ -19875,7 +19875,7 @@ else { lean_object* x_42; lean_object* x_43; lean_dec(x_32); -x_42 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4; +x_42 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4; lean_inc(x_16); x_43 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_42, x_16); x_17 = x_43; @@ -20021,7 +20021,7 @@ x_5 = lean_array_get_size(x_4); lean_dec(x_4); x_6 = 0; x_7 = 1; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2(x_1, x_5, x_6, x_7, x_2, x_3); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2(x_1, x_5, x_6, x_7, x_2, x_3); return x_8; } } @@ -20469,7 +20469,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1; x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); return x_3; } @@ -20556,7 +20556,7 @@ x_1 = l_Lean_Parser_Term_listLit___closed__9; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -20566,7 +20566,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -25594,7 +25594,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -25745,14 +25745,14 @@ lean_object* x_17; lean_object* x_18; uint8_t x_19; x_17 = lean_ctor_get(x_16, 1); lean_inc(x_17); lean_dec(x_16); -x_18 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_18 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_19 = lean_string_dec_eq(x_17, x_18); lean_dec(x_17); if (x_19 == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_dec(x_1); -x_20 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_20 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; x_21 = l_Lean_Parser_ParserState_mkErrorsAt(x_13, x_20, x_12); x_22 = l_Lean_Parser_Term_forall___elambda__1___closed__2; x_23 = l_Lean_Parser_ParserState_mkNode(x_21, x_22, x_9); @@ -25775,7 +25775,7 @@ else lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_dec(x_16); lean_dec(x_1); -x_29 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_29 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; x_30 = l_Lean_Parser_ParserState_mkErrorsAt(x_13, x_29, x_12); x_31 = l_Lean_Parser_Term_forall___elambda__1___closed__2; x_32 = l_Lean_Parser_ParserState_mkNode(x_30, x_31, x_9); @@ -25787,7 +25787,7 @@ else lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_14); lean_dec(x_1); -x_33 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_33 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; x_34 = l_Lean_Parser_ParserState_mkErrorsAt(x_13, x_33, x_12); x_35 = l_Lean_Parser_Term_forall___elambda__1___closed__2; x_36 = l_Lean_Parser_ParserState_mkNode(x_34, x_35, x_9); @@ -25908,7 +25908,7 @@ lean_object* x_134; lean_object* x_135; uint8_t x_136; x_134 = lean_ctor_get(x_133, 1); lean_inc(x_134); lean_dec(x_133); -x_135 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_135 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_136 = lean_string_dec_eq(x_134, x_135); lean_dec(x_134); if (x_136 == 0) @@ -26019,7 +26019,7 @@ lean_object* x_172; lean_object* x_173; uint8_t x_174; x_172 = lean_ctor_get(x_171, 1); lean_inc(x_172); lean_dec(x_171); -x_173 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_173 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_174 = lean_string_dec_eq(x_172, x_173); lean_dec(x_172); if (x_174 == 0) @@ -26160,14 +26160,14 @@ lean_object* x_87; lean_object* x_88; uint8_t x_89; x_87 = lean_ctor_get(x_86, 1); lean_inc(x_87); lean_dec(x_86); -x_88 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; +x_88 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1; x_89 = lean_string_dec_eq(x_87, x_88); lean_dec(x_87); if (x_89 == 0) { lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_dec(x_1); -x_90 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_90 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; x_91 = l_Lean_Parser_ParserState_mkErrorsAt(x_83, x_90, x_82); x_92 = l_Lean_Parser_Term_forall___elambda__1___closed__2; x_93 = l_Lean_Parser_ParserState_mkNode(x_91, x_92, x_79); @@ -26194,7 +26194,7 @@ else lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_dec(x_86); lean_dec(x_1); -x_101 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_101 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; x_102 = l_Lean_Parser_ParserState_mkErrorsAt(x_83, x_101, x_82); x_103 = l_Lean_Parser_Term_forall___elambda__1___closed__2; x_104 = l_Lean_Parser_ParserState_mkNode(x_102, x_103, x_79); @@ -26208,7 +26208,7 @@ else lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_dec(x_84); lean_dec(x_1); -x_106 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; +x_106 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4; x_107 = l_Lean_Parser_ParserState_mkErrorsAt(x_83, x_106, x_82); x_108 = l_Lean_Parser_Term_forall___elambda__1___closed__2; x_109 = l_Lean_Parser_ParserState_mkNode(x_107, x_108, x_79); @@ -27266,7 +27266,7 @@ x_1 = l_Lean_Parser_Term_matchAlt___closed__11; return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1() { _start: { lean_object* x_1; @@ -27274,48 +27274,48 @@ x_1 = lean_mk_string("|"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1; x_2 = l_String_trim(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Char_HasRepr___closed__1; -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3; x_2 = l_Char_HasRepr___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___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; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6() { _start: { lean_object* x_1; @@ -27323,7 +27323,7 @@ x_1 = lean_mk_string("alternatives must be indented"); return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -27376,7 +27376,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -27471,13 +27471,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -27493,7 +27493,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -27503,7 +27503,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -27600,11 +27600,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -27657,7 +27657,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -27752,13 +27752,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -27774,7 +27774,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -27784,7 +27784,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -27881,11 +27881,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -27938,7 +27938,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -28033,13 +28033,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -28055,7 +28055,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -28065,7 +28065,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -28162,11 +28162,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -28219,7 +28219,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -28314,13 +28314,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -28336,7 +28336,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -28346,7 +28346,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -28443,11 +28443,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -28500,7 +28500,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -28595,13 +28595,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -28617,7 +28617,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -28627,7 +28627,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -28724,11 +28724,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -28781,7 +28781,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -28876,13 +28876,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -28898,7 +28898,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -28908,7 +28908,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -29005,11 +29005,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -29062,7 +29062,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -29157,13 +29157,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -29179,7 +29179,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -29189,7 +29189,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -29286,11 +29286,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -29343,7 +29343,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -29438,13 +29438,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -29460,7 +29460,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -29470,7 +29470,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -29567,11 +29567,11 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -29624,7 +29624,7 @@ lean_dec(x_13); if (x_59 == 0) { lean_object* x_60; lean_object* x_61; -x_60 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; +x_60 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6; x_61 = l_Lean_Parser_ParserState_mkError(x_19, x_60); x_38 = x_61; goto block_54; @@ -29719,13 +29719,13 @@ lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_46 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_47 = lean_string_dec_eq(x_45, x_46); lean_dec(x_45); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; -x_48 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_48 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_49 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_48, x_40); x_24 = x_49; goto block_37; @@ -29741,7 +29741,7 @@ else { lean_object* x_50; lean_object* x_51; lean_dec(x_44); -x_50 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_50 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_51 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_50, x_40); x_24 = x_51; goto block_37; @@ -29751,7 +29751,7 @@ else { lean_object* x_52; lean_object* x_53; lean_dec(x_42); -x_52 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_52 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_53 = l_Lean_Parser_ParserState_mkErrorsAt(x_41, x_52, x_40); x_24 = x_53; goto block_37; @@ -29848,7 +29848,7 @@ lean_inc(x_7); x_8 = lean_array_get_size(x_7); lean_dec(x_7); x_9 = 0; -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18(x_1, x_2, x_3, x_8, x_4, x_9, x_5, x_6); return x_10; } } @@ -29878,7 +29878,7 @@ lean_object* x_9; lean_object* x_10; uint8_t x_11; x_9 = lean_ctor_get(x_8, 1); lean_inc(x_9); lean_dec(x_8); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_11 = lean_string_dec_eq(x_9, x_10); lean_dec(x_9); if (x_11 == 0) @@ -29886,7 +29886,7 @@ if (x_11 == 0) lean_object* x_12; lean_object* x_13; lean_dec(x_3); lean_dec(x_2); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_13 = l_Lean_Parser_ParserState_mkErrorsAt(x_5, x_12, x_4); return x_13; } @@ -29907,7 +29907,7 @@ lean_object* x_16; lean_object* x_17; lean_dec(x_8); lean_dec(x_3); lean_dec(x_2); -x_16 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_16 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_17 = l_Lean_Parser_ParserState_mkErrorsAt(x_5, x_16, x_4); return x_17; } @@ -29918,7 +29918,7 @@ lean_object* x_18; lean_object* x_19; lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); -x_18 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_18 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; x_19 = l_Lean_Parser_ParserState_mkErrorsAt(x_5, x_18, x_4); return x_19; } @@ -29950,13 +29950,13 @@ lean_object* x_48; lean_object* x_49; uint8_t x_50; x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); -x_49 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_49 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_50 = lean_string_dec_eq(x_48, x_49); lean_dec(x_48); if (x_50 == 0) { lean_object* x_51; lean_object* x_52; -x_51 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_51 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; lean_inc(x_20); x_52 = l_Lean_Parser_ParserState_mkErrorsAt(x_44, x_51, x_20); x_23 = x_52; @@ -29972,7 +29972,7 @@ else { lean_object* x_53; lean_object* x_54; lean_dec(x_47); -x_53 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_53 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; lean_inc(x_20); x_54 = l_Lean_Parser_ParserState_mkErrorsAt(x_44, x_53, x_20); x_23 = x_54; @@ -29983,7 +29983,7 @@ else { lean_object* x_55; lean_object* x_56; lean_dec(x_45); -x_55 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; +x_55 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5; lean_inc(x_20); x_56 = l_Lean_Parser_ParserState_mkErrorsAt(x_44, x_55, x_20); x_23 = x_56; @@ -30087,7 +30087,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2; x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); return x_3; } @@ -30170,7 +30170,7 @@ return x_7; } } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -30180,7 +30180,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -30198,7 +30198,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -30208,7 +30208,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__4(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -30226,7 +30226,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -30236,7 +30236,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__6(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -30254,7 +30254,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -30264,7 +30264,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__8(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -30282,7 +30282,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -30292,7 +30292,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__10(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -30310,7 +30310,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -30320,7 +30320,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__12(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -30338,7 +30338,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -30348,7 +30348,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__14(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -30366,7 +30366,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -30376,7 +30376,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__16(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -30394,7 +30394,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; @@ -30404,7 +30404,7 @@ x_10 = lean_unbox(x_5); lean_dec(x_5); x_11 = lean_unbox(x_6); lean_dec(x_6); -x_12 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); +x_12 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__18(x_1, x_2, x_9, x_4, x_10, x_11, x_7, x_8); lean_dec(x_1); return x_12; } @@ -34610,14 +34610,14 @@ lean_object* x_17; lean_object* x_18; uint8_t x_19; x_17 = lean_ctor_get(x_16, 1); lean_inc(x_17); lean_dec(x_16); -x_18 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_18 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_19 = lean_string_dec_eq(x_17, x_18); lean_dec(x_17); if (x_19 == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_dec(x_1); -x_20 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_20 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_21 = l_Lean_Parser_ParserState_mkErrorsAt(x_13, x_20, x_12); x_22 = l_Lean_Parser_Term_let___elambda__1___closed__2; x_23 = l_Lean_Parser_ParserState_mkNode(x_21, x_22, x_7); @@ -34640,7 +34640,7 @@ else lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_dec(x_16); lean_dec(x_1); -x_29 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_29 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_30 = l_Lean_Parser_ParserState_mkErrorsAt(x_13, x_29, x_12); x_31 = l_Lean_Parser_Term_let___elambda__1___closed__2; x_32 = l_Lean_Parser_ParserState_mkNode(x_30, x_31, x_7); @@ -34652,7 +34652,7 @@ else lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_14); lean_dec(x_1); -x_33 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_33 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_34 = l_Lean_Parser_ParserState_mkErrorsAt(x_13, x_33, x_12); x_35 = l_Lean_Parser_Term_let___elambda__1___closed__2; x_36 = l_Lean_Parser_ParserState_mkNode(x_34, x_35, x_7); @@ -34818,14 +34818,14 @@ lean_object* x_76; lean_object* x_77; uint8_t x_78; x_76 = lean_ctor_get(x_75, 1); lean_inc(x_76); lean_dec(x_75); -x_77 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_77 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_78 = lean_string_dec_eq(x_76, x_77); lean_dec(x_76); if (x_78 == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_dec(x_1); -x_79 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_79 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_80 = l_Lean_Parser_ParserState_mkErrorsAt(x_72, x_79, x_71); x_81 = l_Lean_Parser_Term_let___elambda__1___closed__2; x_82 = l_Lean_Parser_ParserState_mkNode(x_80, x_81, x_66); @@ -34852,7 +34852,7 @@ else lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_dec(x_75); lean_dec(x_1); -x_90 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_90 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_91 = l_Lean_Parser_ParserState_mkErrorsAt(x_72, x_90, x_71); x_92 = l_Lean_Parser_Term_let___elambda__1___closed__2; x_93 = l_Lean_Parser_ParserState_mkNode(x_91, x_92, x_66); @@ -34866,7 +34866,7 @@ else lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_dec(x_73); lean_dec(x_1); -x_95 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_95 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_96 = l_Lean_Parser_ParserState_mkErrorsAt(x_72, x_95, x_71); x_97 = l_Lean_Parser_Term_let___elambda__1___closed__2; x_98 = l_Lean_Parser_ParserState_mkNode(x_96, x_97, x_66); @@ -35206,14 +35206,14 @@ lean_object* x_17; lean_object* x_18; uint8_t x_19; x_17 = lean_ctor_get(x_16, 1); lean_inc(x_17); lean_dec(x_16); -x_18 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_18 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_19 = lean_string_dec_eq(x_17, x_18); lean_dec(x_17); if (x_19 == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_dec(x_1); -x_20 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_20 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_21 = l_Lean_Parser_ParserState_mkErrorsAt(x_13, x_20, x_12); x_22 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; x_23 = l_Lean_Parser_ParserState_mkNode(x_21, x_22, x_7); @@ -35236,7 +35236,7 @@ else lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_dec(x_16); lean_dec(x_1); -x_29 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_29 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_30 = l_Lean_Parser_ParserState_mkErrorsAt(x_13, x_29, x_12); x_31 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; x_32 = l_Lean_Parser_ParserState_mkNode(x_30, x_31, x_7); @@ -35248,7 +35248,7 @@ else lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_14); lean_dec(x_1); -x_33 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_33 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_34 = l_Lean_Parser_ParserState_mkErrorsAt(x_13, x_33, x_12); x_35 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; x_36 = l_Lean_Parser_ParserState_mkNode(x_34, x_35, x_7); @@ -35414,14 +35414,14 @@ lean_object* x_76; lean_object* x_77; uint8_t x_78; x_76 = lean_ctor_get(x_75, 1); lean_inc(x_76); lean_dec(x_75); -x_77 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_77 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_78 = lean_string_dec_eq(x_76, x_77); lean_dec(x_76); if (x_78 == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_dec(x_1); -x_79 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_79 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_80 = l_Lean_Parser_ParserState_mkErrorsAt(x_72, x_79, x_71); x_81 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; x_82 = l_Lean_Parser_ParserState_mkNode(x_80, x_81, x_66); @@ -35448,7 +35448,7 @@ else lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_dec(x_75); lean_dec(x_1); -x_90 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_90 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_91 = l_Lean_Parser_ParserState_mkErrorsAt(x_72, x_90, x_71); x_92 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; x_93 = l_Lean_Parser_ParserState_mkNode(x_91, x_92, x_66); @@ -35462,7 +35462,7 @@ else lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_dec(x_73); lean_dec(x_1); -x_95 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_95 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; x_96 = l_Lean_Parser_ParserState_mkErrorsAt(x_72, x_95, x_71); x_97 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; x_98 = l_Lean_Parser_ParserState_mkNode(x_96, x_97, x_66); @@ -37761,7 +37761,7 @@ x_1 = l_Lean_Parser_Term_doElem___closed__5; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -37803,13 +37803,13 @@ lean_object* x_33; lean_object* x_34; uint8_t x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_34 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_35 = lean_string_dec_eq(x_33, x_34); lean_dec(x_33); if (x_35 == 0) { lean_object* x_36; lean_object* x_37; -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_inc(x_14); x_37 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_36, x_14); x_15 = x_37; @@ -37825,7 +37825,7 @@ else { lean_object* x_38; lean_object* x_39; lean_dec(x_32); -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_inc(x_14); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_38, x_14); x_15 = x_39; @@ -37836,7 +37836,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_30); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_inc(x_14); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_29, x_40, x_14); x_15 = x_41; @@ -37981,7 +37981,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); return x_8; } } @@ -38034,7 +38034,7 @@ x_1 = l_Lean_Parser_Term_doSeq___closed__3; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -38044,7 +38044,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_doSeq___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -44436,7 +44436,7 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1() { _start: { lean_object* x_1; @@ -44444,48 +44444,48 @@ x_1 = lean_mk_string(" where "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1; x_2 = l_String_trim(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Char_HasRepr___closed__1; -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3; x_2 = l_Char_HasRepr___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___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; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -44527,13 +44527,13 @@ lean_object* x_50; lean_object* x_51; uint8_t x_52; x_50 = lean_ctor_get(x_49, 1); lean_inc(x_50); lean_dec(x_49); -x_51 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; +x_51 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1; x_52 = lean_string_dec_eq(x_50, x_51); lean_dec(x_50); if (x_52 == 0) { lean_object* x_53; lean_object* x_54; -x_53 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_53 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_inc(x_14); x_54 = l_Lean_Parser_ParserState_mkErrorsAt(x_46, x_53, x_14); x_29 = x_54; @@ -44549,7 +44549,7 @@ else { lean_object* x_55; lean_object* x_56; lean_dec(x_49); -x_55 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_55 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_inc(x_14); x_56 = l_Lean_Parser_ParserState_mkErrorsAt(x_46, x_55, x_14); x_29 = x_56; @@ -44560,7 +44560,7 @@ else { lean_object* x_57; lean_object* x_58; lean_dec(x_47); -x_57 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; +x_57 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4; lean_inc(x_14); x_58 = l_Lean_Parser_ParserState_mkErrorsAt(x_46, x_57, x_14); x_29 = x_58; @@ -44651,13 +44651,13 @@ lean_object* x_36; lean_object* x_37; uint8_t x_38; x_36 = lean_ctor_get(x_35, 1); lean_inc(x_36); lean_dec(x_35); -x_37 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; +x_37 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; x_38 = lean_string_dec_eq(x_36, x_37); lean_dec(x_36); if (x_38 == 0) { lean_object* x_39; lean_object* x_40; -x_39 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; +x_39 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; x_40 = l_Lean_Parser_ParserState_mkErrorsAt(x_32, x_39, x_31); x_15 = x_40; goto block_28; @@ -44673,7 +44673,7 @@ else { lean_object* x_41; lean_object* x_42; lean_dec(x_35); -x_41 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; +x_41 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; x_42 = l_Lean_Parser_ParserState_mkErrorsAt(x_32, x_41, x_31); x_15 = x_42; goto block_28; @@ -44683,7 +44683,7 @@ else { lean_object* x_43; lean_object* x_44; lean_dec(x_33); -x_43 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; +x_43 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; x_44 = l_Lean_Parser_ParserState_mkErrorsAt(x_32, x_43, x_31); x_15 = x_44; goto block_28; @@ -44778,7 +44778,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); return x_8; } } @@ -44827,13 +44827,13 @@ lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = lean_ctor_get(x_18, 1); lean_inc(x_19); lean_dec(x_18); -x_20 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; +x_20 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; x_21 = lean_string_dec_eq(x_19, x_20); lean_dec(x_19); if (x_21 == 0) { lean_object* x_22; lean_object* x_23; -x_22 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; +x_22 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; x_23 = l_Lean_Parser_ParserState_mkErrorsAt(x_15, x_22, x_14); x_5 = x_23; goto block_13; @@ -44849,7 +44849,7 @@ else { lean_object* x_24; lean_object* x_25; lean_dec(x_18); -x_24 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; +x_24 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; x_25 = l_Lean_Parser_ParserState_mkErrorsAt(x_15, x_24, x_14); x_5 = x_25; goto block_13; @@ -44859,7 +44859,7 @@ else { lean_object* x_26; lean_object* x_27; lean_dec(x_16); -x_26 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; +x_26 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5; x_27 = l_Lean_Parser_ParserState_mkErrorsAt(x_15, x_26, x_14); x_5 = x_27; goto block_13; @@ -44896,7 +44896,7 @@ lean_object* _init_l_Lean_Parser_Term_where___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; x_2 = l_Lean_Parser_dollarSymbol___closed__1; x_3 = l_Lean_Parser_symbolInfo(x_1, x_2); return x_3; @@ -44907,7 +44907,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2; x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); return x_3; } @@ -44992,7 +44992,7 @@ x_1 = l_Lean_Parser_Term_where___closed__9; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -45002,7 +45002,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -47071,7 +47071,7 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1() { _start: { lean_object* x_1; @@ -47079,48 +47079,48 @@ x_1 = lean_mk_string(" ▸ "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1; x_2 = l_String_trim(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Char_HasRepr___closed__1; -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3; x_2 = l_Char_HasRepr___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5() { +lean_object* _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___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; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t 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; @@ -47164,13 +47164,13 @@ lean_object* x_35; lean_object* x_36; uint8_t x_37; x_35 = lean_ctor_get(x_34, 1); lean_inc(x_35); lean_dec(x_34); -x_36 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; +x_36 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; x_37 = lean_string_dec_eq(x_35, x_36); lean_dec(x_35); if (x_37 == 0) { lean_object* x_38; lean_object* x_39; -x_38 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; +x_38 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; lean_inc(x_16); x_39 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_38, x_16); x_17 = x_39; @@ -47186,7 +47186,7 @@ else { lean_object* x_40; lean_object* x_41; lean_dec(x_34); -x_40 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; +x_40 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; lean_inc(x_16); x_41 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_40, x_16); x_17 = x_41; @@ -47197,7 +47197,7 @@ else { lean_object* x_42; lean_object* x_43; lean_dec(x_32); -x_42 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; +x_42 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; lean_inc(x_16); x_43 = l_Lean_Parser_ParserState_mkErrorsAt(x_31, x_42, x_16); x_17 = x_43; @@ -47342,7 +47342,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = 0; -x_8 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); +x_8 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2(x_1, x_6, x_2, x_7, x_3, x_4); return x_8; } } @@ -47391,13 +47391,13 @@ lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = lean_ctor_get(x_18, 1); lean_inc(x_19); lean_dec(x_18); -x_20 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; +x_20 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; x_21 = lean_string_dec_eq(x_19, x_20); lean_dec(x_19); if (x_21 == 0) { lean_object* x_22; lean_object* x_23; -x_22 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; +x_22 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; x_23 = l_Lean_Parser_ParserState_mkErrorsAt(x_15, x_22, x_14); x_5 = x_23; goto block_13; @@ -47413,7 +47413,7 @@ else { lean_object* x_24; lean_object* x_25; lean_dec(x_18); -x_24 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; +x_24 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; x_25 = l_Lean_Parser_ParserState_mkErrorsAt(x_15, x_24, x_14); x_5 = x_25; goto block_13; @@ -47423,7 +47423,7 @@ else { lean_object* x_26; lean_object* x_27; lean_dec(x_16); -x_26 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; +x_26 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5; x_27 = l_Lean_Parser_ParserState_mkErrorsAt(x_15, x_26, x_14); x_5 = x_27; goto block_13; @@ -47470,7 +47470,7 @@ lean_object* _init_l_Lean_Parser_Term_subst___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; +x_1 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; x_2 = l_Lean_Parser_Term_subst___closed__1; x_3 = l_Lean_Parser_symbolInfo(x_1, x_2); return x_3; @@ -47491,7 +47491,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; +x_2 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2; x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); return x_3; } @@ -47556,7 +47556,7 @@ x_1 = l_Lean_Parser_Term_subst___closed__9; return x_1; } } -lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; @@ -47566,7 +47566,7 @@ x_8 = lean_unbox(x_3); lean_dec(x_3); x_9 = lean_unbox(x_4); lean_dec(x_4); -x_10 = l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); +x_10 = l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2(x_7, x_2, x_8, x_9, x_5, x_6); return x_10; } } @@ -51594,17 +51594,17 @@ x_6 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* initialize_Init_Lean_Parser_Parser(lean_object*); -lean_object* initialize_Init_Lean_Parser_Level(lean_object*); +lean_object* initialize_Lean_Parser_Parser(lean_object*); +lean_object* initialize_Lean_Parser_Level(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Parser_Term(lean_object* w) { +lean_object* initialize_Lean_Parser_Term(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Parser_Parser(lean_io_mk_world()); +res = initialize_Lean_Parser_Parser(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Level(lean_io_mk_world()); +res = initialize_Lean_Parser_Level(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_regBuiltinTacticParserAttr___closed__1 = _init_l_Lean_Parser_regBuiltinTacticParserAttr___closed__1(); @@ -51625,14 +51625,14 @@ lean_mark_persistent(l_Lean_Parser_regTacticParserAttribute___closed__2); res = l_Lean_Parser_regTacticParserAttribute(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__1); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__2); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__3); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Tactic_seq___elambda__1___spec__2___closed__4); l_Lean_Parser_Tactic_seq___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_seq___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_seq___elambda__1___closed__1); l_Lean_Parser_Tactic_seq___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_seq___elambda__1___closed__2(); @@ -51687,14 +51687,14 @@ l_Lean_Parser_Term_leadPrec___closed__1 = _init_l_Lean_Parser_Term_leadPrec___cl lean_mark_persistent(l_Lean_Parser_Term_leadPrec___closed__1); l_Lean_Parser_Term_leadPrec = _init_l_Lean_Parser_Term_leadPrec(); lean_mark_persistent(l_Lean_Parser_Term_leadPrec); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__2); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__3); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__4); l_Lean_Parser_Term_explicitUniv___elambda__1___closed__1 = _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_explicitUniv___elambda__1___closed__1); l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2 = _init_l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2(); @@ -52751,14 +52751,14 @@ lean_mark_persistent(l_Lean_Parser_Term_subtype); res = l___regBuiltinParser_Lean_Parser_Term_subtype(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__1); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__2); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__3); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_listLit___elambda__1___spec__2___closed__4); l_Lean_Parser_Term_listLit___elambda__1___closed__1 = _init_l_Lean_Parser_Term_listLit___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_listLit___elambda__1___closed__1); l_Lean_Parser_Term_listLit___elambda__1___closed__2 = _init_l_Lean_Parser_Term_listLit___elambda__1___closed__2(); @@ -53218,18 +53218,18 @@ l_Lean_Parser_Term_matchAlt___closed__11 = _init_l_Lean_Parser_Term_matchAlt___c lean_mark_persistent(l_Lean_Parser_Term_matchAlt___closed__11); l_Lean_Parser_Term_matchAlt = _init_l_Lean_Parser_Term_matchAlt(); lean_mark_persistent(l_Lean_Parser_Term_matchAlt); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__1); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__2); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__3); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__4); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__5); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_matchAlts___elambda__1___spec__2___closed__6); l_Lean_Parser_Term_matchAlts___closed__1 = _init_l_Lean_Parser_Term_matchAlts___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_matchAlts___closed__1); l_Lean_Parser_Term_matchAlts___closed__2 = _init_l_Lean_Parser_Term_matchAlts___closed__2(); @@ -54268,16 +54268,16 @@ lean_mark_persistent(l_Lean_Parser_Term_dollarProj); res = l___regBuiltinParser_Lean_Parser_Term_dollarProj(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__1); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__2); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__3); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__5); l_Lean_Parser_Term_where___elambda__1___closed__1 = _init_l_Lean_Parser_Term_where___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_where___elambda__1___closed__1); l_Lean_Parser_Term_where___elambda__1___closed__2 = _init_l_Lean_Parser_Term_where___elambda__1___closed__2(); @@ -54672,16 +54672,16 @@ lean_mark_persistent(l_Lean_Parser_Term_equiv); res = l___regBuiltinParser_Lean_Parser_Term_equiv(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4); -l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5 = _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__1); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__2); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__3); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__4); +l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5 = _init_l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5(); +lean_mark_persistent(l___private_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_subst___elambda__1___spec__2___closed__5); l_Lean_Parser_Term_subst___elambda__1___closed__1 = _init_l_Lean_Parser_Term_subst___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_subst___elambda__1___closed__1); l_Lean_Parser_Term_subst___elambda__1___closed__2 = _init_l_Lean_Parser_Term_subst___elambda__1___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Parser/Transform.c b/stage0/stdlib/Lean/Parser/Transform.c similarity index 98% rename from stage0/stdlib/Init/Lean/Parser/Transform.c rename to stage0/stdlib/Lean/Parser/Transform.c index 42540e59f6..2f98f97904 100644 --- a/stage0/stdlib/Init/Lean/Parser/Transform.c +++ b/stage0/stdlib/Lean/Parser/Transform.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Parser.Transform -// Imports: Init Init.Lean.Parser.Parser +// Module: Lean.Parser.Transform +// Imports: Init Lean.Parser.Parser #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -544,16 +544,16 @@ return x_2; } } lean_object* initialize_Init(lean_object*); -lean_object* initialize_Init_Lean_Parser_Parser(lean_object*); +lean_object* initialize_Lean_Parser_Parser(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Parser_Transform(lean_object* w) { +lean_object* initialize_Lean_Parser_Transform(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Parser_Parser(lean_io_mk_world()); +res = initialize_Lean_Parser_Parser(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Syntax_removeParen___closed__1 = _init_l_Lean_Syntax_removeParen___closed__1(); diff --git a/stage0/stdlib/Init/Lean/PrettyPrinter.c b/stage0/stdlib/Lean/PrettyPrinter.c similarity index 69% rename from stage0/stdlib/Init/Lean/PrettyPrinter.c rename to stage0/stdlib/Lean/PrettyPrinter.c index f712e30a35..d83676bffd 100644 --- a/stage0/stdlib/Init/Lean/PrettyPrinter.c +++ b/stage0/stdlib/Lean/PrettyPrinter.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.PrettyPrinter -// Imports: Init.Lean.PrettyPrinter.Parenthesizer +// Module: Lean.PrettyPrinter +// Imports: Lean.PrettyPrinter.Parenthesizer #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,13 +13,13 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* initialize_Init_Lean_PrettyPrinter_Parenthesizer(lean_object*); +lean_object* initialize_Lean_PrettyPrinter_Parenthesizer(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_PrettyPrinter(lean_object* w) { +lean_object* initialize_Lean_PrettyPrinter(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_PrettyPrinter_Parenthesizer(lean_io_mk_world()); +res = initialize_Lean_PrettyPrinter_Parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/PrettyPrinter/Parenthesizer.c b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c similarity index 99% rename from stage0/stdlib/Init/Lean/PrettyPrinter/Parenthesizer.c rename to stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c index d38dde6565..88a8ecfc78 100644 --- a/stage0/stdlib/Init/Lean/PrettyPrinter/Parenthesizer.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.PrettyPrinter.Parenthesizer -// Imports: Init.Lean.Parser Init.Lean.Elab.Command Init.Lean.Elab.Quotation Init.Lean.Delaborator +// Module: Lean.PrettyPrinter.Parenthesizer +// Imports: Lean.Parser Lean.Elab.Command Lean.Elab.Quotation Lean.Delaborator #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_termParser_parenthesizer___closed__3; lean_object* l_List_reverse___rarg(lean_object*); @@ -81,7 +82,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_sepBy_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__10; lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___lambda__1___closed__3; -extern lean_object* l___private_Init_Lean_Parser_Module_2__mkEOI___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer___closed__3; lean_object* l_Lean_PrettyPrinter_parenthesizeCommand___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_visit___main___closed__7; @@ -119,7 +119,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___clos lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_visit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5; lean_object* l_Lean_Syntax_MonadTraverser_goUp___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__4___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_regTacticParserAttribute___closed__1; lean_object* l_Lean_Syntax_MonadTraverser_goUp___boxed(lean_object*, lean_object*); @@ -299,6 +298,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer(lean_object lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_Syntax_optional___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_tacticParser_parenthesizer___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_depArrow_x27___closed__5; extern lean_object* l_Lean_Unhygienic_MonadQuotation___closed__4; @@ -336,6 +336,7 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesize lean_object* l_Lean_MonadTracerAdapter_addTrace___at_Lean_PrettyPrinter_Parenthesizer_visit___main___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Level_LevelToFormat_Result_format___main___spec__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_ParenthesizerM_monadTraverser___lambda__1(lean_object*); +extern lean_object* l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_PrettyPrinter_Parenthesizer_depArrow_parenthesizer___rarg___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___boxed(lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goRight___at_Lean_PrettyPrinter_Parenthesizer_visitParenthesizable___spec__3(lean_object*); @@ -367,7 +368,6 @@ lean_object* l_Lean_SMap_empty___at_Lean_PrettyPrinter_parenthesizerAttribute___ lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_unicodeSymbol_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__13; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_identNoAntiquot_parenthesizer___closed__1; -lean_object* l___private_Init_Lean_PrettyPrinter_Parenthesizer_1__regTraceClasses(lean_object*); lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__1___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__1___closed__3; lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -388,7 +388,6 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_numLitNoAntiquot_pa lean_object* l_Lean_Meta_whnf(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_optional_parenthesizer___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_visit___main___closed__9; -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_isAntiquot(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_many_parenthesizer___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_ParenthesizerM_monadTraverser___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -480,6 +479,7 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_numLitNoAntiquot_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__4; lean_object* l_Lean_Syntax_getKind(lean_object*); +extern lean_object* l___private_Lean_Parser_Module_2__mkEOI___closed__1; lean_object* l_Lean_Syntax_Traverser_right(lean_object*); extern lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_monadQuotation___closed__4; @@ -509,6 +509,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_identNoAntiquot_parenthesizer(le lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_parenthesizeCommand___closed__1; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__9; +extern lean_object* l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitParenthesizable___closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_evalNat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_evalNat___closed__1; @@ -563,7 +564,6 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_checkTailWs_parenth lean_object* l_Lean_PrettyPrinter_Parenthesizer_identNoAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitAntiquot___closed__6; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_rawIdent_parenthesizer(lean_object*); -extern lean_object* l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1; lean_object* l_Lean_PrettyPrinter_parenthesizeTerm___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_setCur___rarg___lambda__1(lean_object*, lean_object*); @@ -580,7 +580,6 @@ lean_object* lean_nat_mod(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitParenthesizable___closed__7; lean_object* l_Lean_PrettyPrinter_Parenthesizer_monadQuotation___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___lambda__1___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_unquotedSymbol_parenthesizer___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_evalName___main___closed__3; @@ -607,7 +606,9 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitAntiquot___lambda__1(lean_o lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbolNoWsAux_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__6; lean_object* l_Nat_forMAux___main___at_Lean_PrettyPrinter_Parenthesizer_visit___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1; extern lean_object* l_Lean_mkAppStx___closed__2; +lean_object* l___private_Lean_PrettyPrinter_Parenthesizer_1__regTraceClasses(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitParenthesizable___closed__10; lean_object* l_Lean_Syntax_Traverser_left(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_quotedSymbol_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -628,7 +629,6 @@ lean_object* l_List_forM___main___at_Lean_PrettyPrinter_Parenthesizer_sepBy_pare lean_object* l_Lean_PrettyPrinter_Parenthesizer_levelParser_parenthesizer___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_unquotedSymbol_parenthesizer(lean_object*); lean_object* l_Lean_Parser_unicodeSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_nameLitNoAntiquot_parenthesizer___closed__1; @@ -2904,7 +2904,7 @@ else { lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; x_127 = l_Lean_PrettyPrinter_Parenthesizer_visit___main___closed__3; -x_128 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_127, x_4, x_14); +x_128 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_127, x_4, x_14); x_129 = lean_ctor_get(x_128, 0); lean_inc(x_129); x_130 = lean_ctor_get(x_128, 1); @@ -3371,7 +3371,7 @@ else { lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; x_237 = l_Lean_PrettyPrinter_Parenthesizer_visit___main___closed__3; -x_238 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_237, x_4, x_139); +x_238 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_237, x_4, x_139); x_239 = lean_ctor_get(x_238, 0); lean_inc(x_239); x_240 = lean_ctor_get(x_238, 1); @@ -4488,7 +4488,7 @@ lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_visitParenthesizable___clo _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.PrettyPrinter.Parenthesizer"); +x_1 = lean_mk_string("Lean.PrettyPrinter.Parenthesizer"); return x_1; } } @@ -4819,7 +4819,7 @@ else { lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; x_356 = l_Lean_PrettyPrinter_Parenthesizer_visit___main___closed__3; -x_357 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_356, x_5, x_59); +x_357 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_356, x_5, x_59); x_358 = lean_ctor_get(x_357, 0); lean_inc(x_358); x_359 = lean_ctor_get(x_357, 1); @@ -4871,7 +4871,7 @@ else { lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; x_144 = l_Lean_PrettyPrinter_Parenthesizer_visit___main___closed__3; -x_145 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_144, x_5, x_71); +x_145 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_144, x_5, x_71); x_146 = lean_ctor_get(x_145, 0); lean_inc(x_146); x_147 = lean_ctor_get(x_145, 1); @@ -5141,7 +5141,7 @@ else { lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; x_195 = l_Lean_PrettyPrinter_Parenthesizer_visit___main___closed__3; -x_196 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_195, x_5, x_71); +x_196 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_195, x_5, x_71); x_197 = lean_ctor_get(x_196, 0); lean_inc(x_197); x_198 = lean_ctor_get(x_196, 1); @@ -5366,7 +5366,7 @@ if (x_221 == 0) lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; x_222 = lean_ctor_get(x_214, 0); x_223 = lean_ctor_get(x_214, 1); -x_224 = l___private_Init_Lean_Parser_Module_2__mkEOI___closed__1; +x_224 = l___private_Lean_Parser_Module_2__mkEOI___closed__1; lean_inc(x_223); lean_ctor_set(x_214, 0, x_224); x_225 = l_Lean_Syntax_setHeadInfo(x_207, x_214); @@ -5448,7 +5448,7 @@ lean_inc(x_253); lean_inc(x_252); lean_inc(x_251); lean_dec(x_214); -x_254 = l___private_Init_Lean_Parser_Module_2__mkEOI___closed__1; +x_254 = l___private_Lean_Parser_Module_2__mkEOI___closed__1; lean_inc(x_252); x_255 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_255, 0, x_254); @@ -6271,7 +6271,7 @@ x_29 = lean_string_dec_eq(x_23, x_28); if (x_29 == 0) { lean_object* x_30; uint8_t x_31; -x_30 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; +x_30 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; x_31 = lean_string_dec_eq(x_23, x_30); lean_dec(x_23); if (x_31 == 0) @@ -7310,7 +7310,7 @@ _start: lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_5 = l_Array_empty___closed__1; x_6 = lean_array_push(x_5, x_1); -x_7 = l___private_Init_Lean_Elab_Term_5__expandCDot___main___closed__4; +x_7 = l___private_Lean_Elab_Term_5__expandCDot___main___closed__4; x_8 = lean_array_push(x_6, x_7); x_9 = l_Lean_nullKind___closed__2; x_10 = lean_alloc_ctor(1, 2, 0); @@ -7604,7 +7604,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__4; -x_2 = l___private_Init_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1; +x_2 = l___private_Lean_Meta_Tactic_Util_1__regTraceClasses___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -8655,7 +8655,7 @@ else { lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; x_104 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer___closed__2; -x_105 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_104, x_4, x_19); +x_105 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_104, x_4, x_19); x_106 = lean_ctor_get(x_105, 0); lean_inc(x_106); x_107 = lean_ctor_get(x_105, 1); @@ -10104,7 +10104,7 @@ else { lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; x_67 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer___closed__2; -x_68 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_67, x_4, x_19); +x_68 = l___private_Lean_Util_Trace_5__checkTraceOptionM___at_Lean_Meta_check___spec__3(x_67, x_4, x_19); x_69 = lean_ctor_get(x_68, 0); lean_inc(x_69); x_70 = lean_ctor_get(x_68, 1); @@ -12997,7 +12997,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_PrettyPrinter_parenthesizeTerm___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5; +x_2 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5; x_3 = l_Lean_mkApp(x_1, x_2); return x_3; } @@ -13036,7 +13036,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_PrettyPrinter_parenthesizeCommand___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_10__toPreterm___main___closed__5; +x_2 = l___private_Lean_Elab_Quotation_10__toPreterm___main___closed__5; x_3 = l_Lean_mkApp(x_1, x_2); return x_3; } @@ -13050,7 +13050,7 @@ x_5 = l_Lean_PrettyPrinter_parenthesize(x_4, x_1, x_2, x_3); return x_5; } } -lean_object* l___private_Init_Lean_PrettyPrinter_Parenthesizer_1__regTraceClasses(lean_object* x_1) { +lean_object* l___private_Lean_PrettyPrinter_Parenthesizer_1__regTraceClasses(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -13106,25 +13106,25 @@ return x_13; } } } -lean_object* initialize_Init_Lean_Parser(lean_object*); -lean_object* initialize_Init_Lean_Elab_Command(lean_object*); -lean_object* initialize_Init_Lean_Elab_Quotation(lean_object*); -lean_object* initialize_Init_Lean_Delaborator(lean_object*); +lean_object* initialize_Lean_Parser(lean_object*); +lean_object* initialize_Lean_Elab_Command(lean_object*); +lean_object* initialize_Lean_Elab_Quotation(lean_object*); +lean_object* initialize_Lean_Delaborator(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_PrettyPrinter_Parenthesizer(lean_object* w) { +lean_object* initialize_Lean_PrettyPrinter_Parenthesizer(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Parser(lean_io_mk_world()); +res = initialize_Lean_Parser(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Command(lean_io_mk_world()); +res = initialize_Lean_Elab_Command(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Elab_Quotation(lean_io_mk_world()); +res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Delaborator(lean_io_mk_world()); +res = initialize_Lean_Delaborator(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Syntax_MonadTraverser_getCur___rarg___closed__1 = _init_l_Lean_Syntax_MonadTraverser_getCur___rarg___closed__1(); @@ -13680,7 +13680,7 @@ l_Lean_PrettyPrinter_parenthesizeCommand___closed__2 = _init_l_Lean_PrettyPrinte lean_mark_persistent(l_Lean_PrettyPrinter_parenthesizeCommand___closed__2); l_Lean_PrettyPrinter_parenthesizeCommand___closed__3 = _init_l_Lean_PrettyPrinter_parenthesizeCommand___closed__3(); lean_mark_persistent(l_Lean_PrettyPrinter_parenthesizeCommand___closed__3); -res = l___private_Init_Lean_PrettyPrinter_Parenthesizer_1__regTraceClasses(lean_io_mk_world()); +res = l___private_Lean_PrettyPrinter_Parenthesizer_1__regTraceClasses(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/ProjFns.c b/stage0/stdlib/Lean/ProjFns.c similarity index 99% rename from stage0/stdlib/Init/Lean/ProjFns.c rename to stage0/stdlib/Lean/ProjFns.c index 690e4c2b8a..920880686e 100644 --- a/stage0/stdlib/Init/Lean/ProjFns.c +++ b/stage0/stdlib/Lean/ProjFns.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.ProjFns -// Imports: Init.Lean.Environment +// Module: Lean.ProjFns +// Imports: Lean.Environment #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -16,7 +16,6 @@ extern "C" { extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_mkProjectionFnInfoExtension___lambda__2(lean_object*); lean_object* lean_add_projection_info(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_projectionFnInfoExt___closed__6; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); @@ -42,6 +41,7 @@ uint8_t l_Lean_NameMap_contains___rarg(lean_object*, lean_object*); uint8_t l_Lean_Environment_isProjectionFn(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_projectionFnInfoExt___elambda__3___boxed(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_projectionFnInfoExt___elambda__4___rarg(lean_object*); lean_object* l_Array_binSearchAux___main___at_Lean_Environment_isProjectionFn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); @@ -67,7 +67,6 @@ uint8_t lean_projection_info_from_class(lean_object*); lean_object* l_Lean_projectionFnInfoExt___closed__3; extern lean_object* l_IO_Error_Inhabited___closed__1; lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkProjectionFnInfoExtension___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_List_redLength___main___rarg(lean_object*); lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkProjectionFnInfoExtension___spec__2___closed__1; lean_object* l_Lean_mkProjectionFnInfoExtension___lambda__2___boxed(lean_object*); @@ -75,6 +74,7 @@ lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_ob lean_object* l_Lean_projectionFnInfoExt; lean_object* l_Lean_mkProjectionFnInfoExtension___lambda__3(lean_object*); lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; lean_object* l_Lean_registerSimplePersistentEnvExtension___at_Lean_mkProjectionFnInfoExtension___spec__3(lean_object*, lean_object*); lean_object* l_Lean_projectionFnInfoExt___elambda__1(lean_object*); @@ -511,7 +511,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -699,7 +699,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkProjectionF _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -1880,13 +1880,13 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_ProjFns(lean_object* w) { +lean_object* initialize_Lean_ProjFns(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_ProjectionFunctionInfo_inhabited___closed__1 = _init_l_Lean_ProjectionFunctionInfo_inhabited___closed__1(); diff --git a/stage0/stdlib/Init/Lean/ReducibilityAttrs.c b/stage0/stdlib/Lean/ReducibilityAttrs.c similarity index 99% rename from stage0/stdlib/Init/Lean/ReducibilityAttrs.c rename to stage0/stdlib/Lean/ReducibilityAttrs.c index d6dfcd12cd..7620410e77 100644 --- a/stage0/stdlib/Init/Lean/ReducibilityAttrs.c +++ b/stage0/stdlib/Lean/ReducibilityAttrs.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.ReducibilityAttrs -// Imports: Init.Lean.Attributes +// Module: Lean.ReducibilityAttrs +// Imports: Lean.Attributes #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,7 +14,6 @@ extern "C" { #endif extern lean_object* l_Lean_Name_toString___closed__1; -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkReducibilityAttrs___closed__14; @@ -35,6 +34,7 @@ lean_object* l_Lean_isReducible___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkReducibilityAttrs___closed__2; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_mkReducibilityAttrs___closed__1; +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Array_binSearchAux___main___at_Lean_getReducibilityStatus___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_reducibilityAttrs; extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__3; @@ -66,7 +66,6 @@ lean_object* l_Lean_registerEnumAttributes___at_Lean_mkReducibilityAttrs___spec_ extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__1; extern lean_object* l_Lean_registerParametricAttribute___rarg___closed__2; lean_object* l___private_Init_Data_Array_QSort_1__partitionAux___main___at_Lean_mkReducibilityAttrs___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_mkReducibilityAttrs___closed__9; lean_object* l_Lean_mkReducibilityAttrs___closed__11; lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkReducibilityAttrs___spec__5(lean_object*, lean_object*); @@ -74,6 +73,7 @@ lean_object* l_Lean_EnumAttributes_getValue___at_Lean_getReducibilityStatus___sp uint8_t l_Lean_ReducibilityStatus_inhabited; lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__4___closed__2; +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_mkReducibilityAttrs___closed__4; lean_object* l_Lean_registerEnumAttributes___at_Lean_mkReducibilityAttrs___spec__1___lambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; @@ -462,7 +462,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -650,7 +650,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_mkReducibilit _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -2097,13 +2097,13 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* initialize_Init_Lean_Attributes(lean_object*); +lean_object* initialize_Lean_Attributes(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_ReducibilityAttrs(lean_object* w) { +lean_object* initialize_Lean_ReducibilityAttrs(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Attributes(lean_io_mk_world()); +res = initialize_Lean_Attributes(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_ReducibilityStatus_inhabited = _init_l_Lean_ReducibilityStatus_inhabited(); diff --git a/stage0/stdlib/Init/Lean/Runtime.c b/stage0/stdlib/Lean/Runtime.c similarity index 96% rename from stage0/stdlib/Init/Lean/Runtime.c rename to stage0/stdlib/Lean/Runtime.c index 67015a05eb..55a52c36ec 100644 --- a/stage0/stdlib/Init/Lean/Runtime.c +++ b/stage0/stdlib/Lean/Runtime.c @@ -1,5 +1,5 @@ // Lean compiler output -// Module: Init.Lean.Runtime +// Module: Lean.Runtime // Imports: Init.Core #include #if defined(__clang__) @@ -73,7 +73,7 @@ return x_1; } lean_object* initialize_Init_Core(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Runtime(lean_object* w) { +lean_object* initialize_Lean_Runtime(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; diff --git a/stage0/stdlib/Init/Lean/Scopes.c b/stage0/stdlib/Lean/Scopes.c similarity index 99% rename from stage0/stdlib/Init/Lean/Scopes.c rename to stage0/stdlib/Lean/Scopes.c index 6eb92bb4b1..609388f619 100644 --- a/stage0/stdlib/Init/Lean/Scopes.c +++ b/stage0/stdlib/Lean/Scopes.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Scopes -// Imports: Init.Lean.Environment +// Module: Lean.Scopes +// Imports: Lean.Environment #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,7 +18,6 @@ extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_regScopeManagerExtension___spec__7___closed__1; lean_object* l_Lean_Environment_isNamespace___boxed(lean_object*, lean_object*); lean_object* l_List_tail_x21___rarg(lean_object*); -extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; uint8_t lean_is_namespace(lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_regScopeManagerExtension___spec__7___closed__2; lean_object* l_Lean_Environment_registerNamespace___main(lean_object*, lean_object*); @@ -43,6 +42,7 @@ lean_object* l_Lean_regScopeManagerExtension___closed__5; lean_object* l_Lean_regScopeManagerExtension___closed__3; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_scopeManagerExt___elambda__4(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_8__persistentEnvExtensionsRef; lean_object* l_Lean_Environment_popScopeCore___closed__1; lean_object* l_Lean_Environment_popScopeCore___lambda__1(lean_object*); lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_regScopeManagerExtension___spec__1(lean_object*, lean_object*); @@ -69,7 +69,6 @@ lean_object* l_Lean_SimplePersistentEnvExtension_modifyState___rarg(lean_object* lean_object* l_Lean_regScopeManagerExtension___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_regScopeManagerExtension___lambda__2___boxed(lean_object*); extern lean_object* l_IO_Error_Inhabited___closed__1; -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Array_iterateMAux___main___at_Lean_regScopeManagerExtension___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_regScopeManagerExtension___lambda__2(lean_object*); lean_object* l_Lean_scopeManagerExt___elambda__1___boxed(lean_object*); @@ -82,6 +81,7 @@ lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_ob lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l_Lean_regScopeManagerExtension(lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_regScopeManagerExtension___spec__5(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__3; extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -349,7 +349,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -537,7 +537,7 @@ lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_regScopeManag _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; +x_3 = l___private_Lean_Environment_8__persistentEnvExtensionsRef; x_4 = lean_io_ref_get(x_3, x_2); if (lean_obj_tag(x_4) == 0) { @@ -1853,13 +1853,13 @@ return x_1; } } } -lean_object* initialize_Init_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Scopes(lean_object* w) { +lean_object* initialize_Lean_Scopes(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_ScopeManagerState_Inhabited___closed__1 = _init_l_Lean_ScopeManagerState_Inhabited___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Structure.c b/stage0/stdlib/Lean/Structure.c similarity index 79% rename from stage0/stdlib/Init/Lean/Structure.c rename to stage0/stdlib/Lean/Structure.c index a3e8c40038..c7637969ab 100644 --- a/stage0/stdlib/Init/Lean/Structure.c +++ b/stage0/stdlib/Lean/Structure.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Structure -// Imports: Init.Lean.Environment Init.Lean.ProjFns +// Module: Lean.Structure +// Imports: Lean.Environment Lean.ProjFns #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,79 +17,79 @@ lean_object* l_List_reverse___rarg(lean_object*); extern lean_object* l_Lean_mkHole___closed__3; lean_object* l_Lean_getStructureCtor___closed__1; lean_object* l_Lean_getStructureCtor___closed__2; -lean_object* l___private_Init_Lean_Structure_4__hasProjFn___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Structure_4__hasProjFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_findSomeMAux___main___at_Lean_findField_x3f___main___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_4__hasProjFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getStructureCtor___closed__4; +lean_object* l___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_1__getStructureFieldsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l___private_Init_Util_1__mkPanicMessage(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_findField_x3f___main___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_3__getStructureFieldsFlattenedAux(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +uint8_t l___private_Lean_Structure_4__hasProjFn___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isInternalSubobjectFieldName(lean_object*); -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); lean_object* l_Array_contains___at_Lean_findField_x3f___main___spec__1___boxed(lean_object*, lean_object*); uint8_t l_Lean_Environment_isProjectionFn(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_1__getStructureFieldsAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_isStructureLike___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_1__getStructureFieldsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); lean_object* l_Lean_getStructureFieldsFlattened(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__2; +lean_object* l___private_Lean_Structure_4__hasProjFn___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getStructureCtor___closed__5; lean_object* l_Lean_getStructureCtor___closed__3; uint8_t l_Array_anyRangeMAux___main___at_Lean_findField_x3f___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_1__getStructureFieldsAux___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__1; lean_object* l_Lean_getStructureFields(lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); lean_object* l_Lean_getPathToBaseStructure_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Array_findSomeMAux___main___at_Lean_findField_x3f___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_contains___at_Lean_findField_x3f___main___spec__1(lean_object*, lean_object*); lean_object* l_Lean_getPathToBaseStructureAux___main(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_1__getStructureFieldsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Structure_4__hasProjFn___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_1__getStructureFieldsAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_getParentStructures___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_1__getStructureFieldsAux(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_UInt32_decEq(uint32_t, uint32_t); lean_object* l_Array_findSomeMAux___main___at_Lean_getPathToBaseStructureAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getParentStructures(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkInternalSubobjectFieldName(lean_object*); -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__1; -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__2; lean_object* l_Array_findSomeMAux___main___at_Lean_getPathToBaseStructureAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___at_Lean_findField_x3f___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getStructureCtor(lean_object*, lean_object*); lean_object* l_Lean_isStructure___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_1__getStructureFieldsAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_getParentStructures___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_ConstructorVal_inhabited; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isSubobjectField_x3f(lean_object*, lean_object*, lean_object*); lean_object* lean_string_length(lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_deinternalizeFieldName(lean_object*); lean_object* l_Lean_findField_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getPathToBaseStructureAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_appendBefore(lean_object*, lean_object*); lean_object* l_Lean_getPathToBaseStructureAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Structure_4__hasProjFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_drop(lean_object*, lean_object*); lean_object* l_Lean_getPathToBaseStructure_x3f___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isStructureLike(lean_object*, lean_object*); lean_object* l_Lean_findField_x3f___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_4__hasProjFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isInternalSubobjectFieldName___boxed(lean_object*); lean_object* l_Lean_findField_x3f___main(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isStructure(lean_object*, lean_object*); lean_object* l_Lean_getPathToBaseStructureAux(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); uint8_t l_Lean_isStructureLike(lean_object* x_1, lean_object* x_2) { _start: @@ -283,7 +283,7 @@ lean_object* _init_l_Lean_getStructureCtor___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Structure"); +x_1 = lean_mk_string("Lean.Structure"); return x_1; } } @@ -454,7 +454,7 @@ return x_33; } } } -lean_object* l___private_Init_Lean_Structure_1__getStructureFieldsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Structure_1__getStructureFieldsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_3) == 7) @@ -499,28 +499,28 @@ return x_4; } } } -lean_object* l___private_Init_Lean_Structure_1__getStructureFieldsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Structure_1__getStructureFieldsAux___main___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___private_Init_Lean_Structure_1__getStructureFieldsAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Structure_1__getStructureFieldsAux___main(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Structure_1__getStructureFieldsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Structure_1__getStructureFieldsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Structure_1__getStructureFieldsAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Structure_1__getStructureFieldsAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Structure_1__getStructureFieldsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Structure_1__getStructureFieldsAux___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___private_Init_Lean_Structure_1__getStructureFieldsAux(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Structure_1__getStructureFieldsAux(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } @@ -540,12 +540,12 @@ lean_inc(x_6); lean_dec(x_5); x_7 = lean_unsigned_to_nat(0u); x_8 = l_Array_empty___closed__1; -x_9 = l___private_Init_Lean_Structure_1__getStructureFieldsAux___main(x_4, x_7, x_6, x_8); +x_9 = l___private_Lean_Structure_1__getStructureFieldsAux___main(x_4, x_7, x_6, x_8); lean_dec(x_4); return x_9; } } -lean_object* _init_l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__1() { +lean_object* _init_l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__1() { _start: { lean_object* x_1; @@ -553,19 +553,19 @@ x_1 = lean_mk_string("ill-formed structure"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__2() { +lean_object* _init_l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_getStructureCtor___closed__1; x_2 = lean_unsigned_to_nat(61u); x_3 = lean_unsigned_to_nat(11u); -x_4 = l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__1; +x_4 = l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__1; x_5 = l___private_Init_Util_1__mkPanicMessage(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_4) == 7) @@ -609,7 +609,7 @@ else lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_dec(x_13); x_16 = lean_box(0); -x_17 = l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__2; +x_17 = l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__2; x_18 = lean_panic_fn(x_16, x_17); return x_18; } @@ -635,30 +635,30 @@ return x_22; } } } -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux___main___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___private_Init_Lean_Structure_2__isSubobjectFieldAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Structure_2__isSubobjectFieldAux___main(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Structure_2__isSubobjectFieldAux___main(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Structure_2__isSubobjectFieldAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Structure_2__isSubobjectFieldAux___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___private_Init_Lean_Structure_2__isSubobjectFieldAux(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Structure_2__isSubobjectFieldAux(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); @@ -681,7 +681,7 @@ x_9 = lean_ctor_get(x_8, 2); lean_inc(x_9); lean_dec(x_8); x_10 = lean_unsigned_to_nat(0u); -x_11 = l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main(x_5, x_7, x_10, x_9); +x_11 = l___private_Lean_Structure_2__isSubobjectFieldAux___main(x_5, x_7, x_10, x_9); lean_dec(x_9); lean_dec(x_7); lean_dec(x_5); @@ -928,7 +928,7 @@ lean_dec(x_3); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_iterateMAux___main___at___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -967,7 +967,7 @@ x_14 = lean_ctor_get(x_10, 0); lean_inc(x_14); lean_dec(x_10); lean_inc(x_1); -x_15 = l___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main(x_1, x_14, x_9); +x_15 = l___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main(x_1, x_14, x_9); x_4 = x_12; x_5 = x_15; goto _start; @@ -975,7 +975,7 @@ goto _start; } } } -lean_object* l___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main(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; @@ -983,25 +983,25 @@ lean_inc(x_2); lean_inc(x_1); x_4 = l_Lean_getStructureFields(x_1, x_2); x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1(x_1, x_2, x_4, x_5, x_3); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1(x_1, x_2, x_4, x_5, x_3); lean_dec(x_4); return x_6; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main___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* l_Array_iterateMAux___main___at___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_iterateMAux___main___at___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_iterateMAux___main___at___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main___spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); return x_6; } } -lean_object* l___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Structure_3__getStructureFieldsFlattenedAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main(x_1, x_2, x_3); return x_4; } } @@ -1010,11 +1010,11 @@ _start: { lean_object* x_3; lean_object* x_4; x_3 = l_Array_empty___closed__1; -x_4 = l___private_Init_Lean_Structure_3__getStructureFieldsFlattenedAux___main(x_1, x_2, x_3); +x_4 = l___private_Lean_Structure_3__getStructureFieldsFlattenedAux___main(x_1, x_2, x_3); return x_4; } } -uint8_t l___private_Init_Lean_Structure_4__hasProjFn___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l___private_Lean_Structure_4__hasProjFn___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_5) == 7) @@ -1058,11 +1058,11 @@ return x_15; } } } -lean_object* l___private_Init_Lean_Structure_4__hasProjFn___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Structure_4__hasProjFn___main___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___private_Init_Lean_Structure_4__hasProjFn___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Structure_4__hasProjFn___main(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -1070,19 +1070,19 @@ x_7 = lean_box(x_6); return x_7; } } -uint8_t l___private_Init_Lean_Structure_4__hasProjFn(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +uint8_t l___private_Lean_Structure_4__hasProjFn(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; -x_6 = l___private_Init_Lean_Structure_4__hasProjFn___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Structure_4__hasProjFn___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Structure_4__hasProjFn___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Structure_4__hasProjFn___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___private_Init_Lean_Structure_4__hasProjFn(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Structure_4__hasProjFn(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -1120,7 +1120,7 @@ x_8 = lean_ctor_get(x_7, 2); lean_inc(x_8); lean_dec(x_7); x_9 = lean_unsigned_to_nat(0u); -x_10 = l___private_Init_Lean_Structure_4__hasProjFn___main(x_1, x_2, x_6, x_9, x_8); +x_10 = l___private_Lean_Structure_4__hasProjFn___main(x_1, x_2, x_6, x_9, x_8); lean_dec(x_6); lean_dec(x_2); lean_dec(x_1); @@ -1288,17 +1288,17 @@ lean_dec(x_2); return x_4; } } -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_ProjFns(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_ProjFns(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Structure(lean_object* w) { +lean_object* initialize_Lean_Structure(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_ProjFns(lean_io_mk_world()); +res = initialize_Lean_ProjFns(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_getStructureCtor___closed__1 = _init_l_Lean_getStructureCtor___closed__1(); @@ -1311,10 +1311,10 @@ l_Lean_getStructureCtor___closed__4 = _init_l_Lean_getStructureCtor___closed__4( lean_mark_persistent(l_Lean_getStructureCtor___closed__4); l_Lean_getStructureCtor___closed__5 = _init_l_Lean_getStructureCtor___closed__5(); lean_mark_persistent(l_Lean_getStructureCtor___closed__5); -l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__1 = _init_l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__1); -l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__2 = _init_l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Structure_2__isSubobjectFieldAux___main___closed__2); +l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__1 = _init_l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__1(); +lean_mark_persistent(l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__1); +l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__2 = _init_l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__2(); +lean_mark_persistent(l___private_Lean_Structure_2__isSubobjectFieldAux___main___closed__2); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/Syntax.c b/stage0/stdlib/Lean/Syntax.c similarity index 88% rename from stage0/stdlib/Init/Lean/Syntax.c rename to stage0/stdlib/Lean/Syntax.c index cf2961029e..a692bace34 100644 --- a/stage0/stdlib/Init/Lean/Syntax.c +++ b/stage0/stdlib/Lean/Syntax.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Syntax -// Imports: Init.Data.Array Init.Lean.Data.Name Init.Lean.Data.Format +// Module: Lean.Syntax +// Imports: Init.Data.Array Lean.Data.Name Lean.Data.Format #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,48 +17,49 @@ lean_object* l_Lean_Syntax_reprint___main___closed__1; lean_object* l_Lean_Syntax_formatStxAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Prod_hasQuote___rarg___closed__1; lean_object* l_Lean_Syntax_reprint___main___boxed(lean_object*); -lean_object* l___private_Init_Lean_Syntax_5__reprintLeaf(lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_hasQuote___closed__1; +lean_object* l___private_Lean_Syntax_4__updateFirst___main(lean_object*); extern lean_object* l_Option_HasRepr___rarg___closed__2; lean_object* l_Lean_Syntax_getTailWithPos(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_reprint___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_1__updateInfo(lean_object*, lean_object*); lean_object* l_Lean_Syntax_setTailInfoAux(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_4__updateFirst(lean_object*, lean_object*); lean_object* l_Lean_Syntax_reprint___boxed(lean_object*); lean_object* l_List_map___main___at_Lean_Syntax_formatStxAux___main___spec__1(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Nat_HasQuote___closed__2; -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main___closed__4; extern lean_object* l_Lean_nullKind; +lean_object* l___private_Lean_Syntax_7__quoteName___main(lean_object*); lean_object* l_Lean_Syntax_modifyArg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main(lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main___closed__5; extern lean_object* l_Option_HasRepr___rarg___closed__1; lean_object* l_Lean_Syntax_ifNodeKind___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__6; uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__6; +lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg___closed__4; lean_object* l_Lean_Syntax_mrewriteBottomUp___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_2__updateLeadingAux(lean_object*, lean_object*); lean_object* l_Lean_Substring_HasQuote___closed__4; lean_object* l_Lean_Syntax_HasToString; +lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Array_hasQuote___rarg___closed__2; +lean_object* l___private_Lean_Syntax_8__quoteList___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_7__quoteName(lean_object*); lean_object* l_Lean_SyntaxNode_withArgs(lean_object*); -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__3; +lean_object* l___private_Lean_Syntax_3__updateLast(lean_object*); +lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg___closed__1; lean_object* l_Lean_Substring_HasQuote(lean_object*); lean_object* l_Lean_Substring_HasQuote___closed__2; lean_object* l_Lean_Substring_HasQuote___closed__1; lean_object* l_Lean_Substring_HasQuote___boxed(lean_object*); -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_reprint___main(lean_object*); +lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg___closed__2; lean_object* l_Lean_Syntax_mrewriteBottomUp___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mrewriteBottomUp(lean_object*); lean_object* l_Lean_Syntax_ifNodeKind(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Prod_hasQuote___rarg___closed__2; -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_reprint___main___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main___closed__6; @@ -67,21 +68,16 @@ lean_object* l_Lean_Syntax_setTailInfo(lean_object*, lean_object*); lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_Lean_SyntaxNode_getArg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_3__updateLast___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getNumArgs___boxed(lean_object*); -lean_object* l___private_Init_Lean_Syntax_3__updateLast___main___at_Lean_Syntax_setTailInfoAux___main___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__4; lean_object* l_Lean_mkAtom(lean_object*); lean_object* l_Lean_Syntax_setHeadInfo(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mreplace___main(lean_object*); -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__5; -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__2; -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___main(lean_object*); lean_object* l_Lean_Syntax_Lean_HasFormat(lean_object*); -lean_object* l___private_Init_Lean_Syntax_7__quoteName(lean_object*); extern lean_object* l_Nat_HasOfNat___closed__1; lean_object* l_Lean_Syntax_mreplace___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_3__updateLast___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_modifyArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main___closed__1; extern lean_object* l_Lean_Format_sbracket___closed__2; @@ -89,24 +85,31 @@ lean_object* l_Lean_SyntaxNode_getKind(lean_object*); lean_object* l_Lean_SyntaxNode_getArgs(lean_object*); lean_object* l_Lean_Syntax_rewriteBottomUp(lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main___closed__8; +lean_object* l___private_Lean_Syntax_5__reprintLeaf___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_ifNode(lean_object*); +lean_object* l___private_Lean_Syntax_3__updateLast___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main___closed__4; lean_object* l_Lean_SyntaxNode_getIdAt(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg___closed__6; +lean_object* l___private_Lean_Syntax_9__quoteOption___rarg___closed__3; +lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg___closed__5; lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Syntax_replaceInfo___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SyntaxNode_getKind___boxed(lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main___closed__2; -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__7; +lean_object* l___private_Lean_Syntax_8__quoteList___main(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__1; lean_object* l_Lean_Nat_HasQuote___closed__1; lean_object* l_Lean_Syntax_updateTrailing(lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Syntax_mreplace___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_3__updateLast___main___at_Lean_Syntax_setTailInfoAux___main___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_6__formatInfo(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__4; +lean_object* l___private_Lean_Syntax_6__formatInfo___closed__1; lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_reprint___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_7__quoteName___main___closed__3; lean_object* l_Array_findSomeRevMAux___main___at_Lean_Syntax_getTailInfo___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_String_HasQuote___closed__1; @@ -114,13 +117,12 @@ lean_object* l_List_map___main___at_Lean_Syntax_formatStxAux___main___spec__5___ lean_object* l_Lean_unreachIsNodeMissing(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getIdAt___boxed(lean_object*, lean_object*); lean_object* l_Lean_String_HasQuote(lean_object*); -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main___closed__1; lean_object* l_Lean_Syntax_formatStx___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_replaceInfo___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_4__updateFirst(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_9__quoteOption___rarg___closed__6; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_3__updateLast(lean_object*); lean_object* l_Lean_Syntax_updateLeading(lean_object*); +lean_object* l___private_Lean_Syntax_7__quoteName___main___closed__5; lean_object* l_Lean_Syntax_formatStxAux___main___closed__3; lean_object* l_Lean_Syntax_getPos___boxed(lean_object*); extern lean_object* l_Lean_Format_join___closed__1; @@ -129,12 +131,11 @@ lean_object* l_Lean_Array_hasQuote___rarg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mreplace___main___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main___closed__9; -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main___closed__2; +lean_object* l___private_Lean_Syntax_4__updateFirst___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_hasQuote; lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind; -lean_object* l___private_Init_Lean_Syntax_6__formatInfo(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStx(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Syntax_mreplace___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); @@ -142,11 +143,14 @@ lean_object* l_Array_umapMAux___main___at_Lean_Syntax_rewriteBottomUp___spec__2( lean_object* l_addParenHeuristic(lean_object*); lean_object* l_Lean_Syntax_replaceInfo(lean_object*, lean_object*); lean_object* l_Lean_Syntax_isMissing___boxed(lean_object*); +lean_object* l___private_Lean_Syntax_7__quoteName___main___closed__4; lean_object* l_Lean_Syntax_mreplace(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__6; -lean_object* l___private_Init_Lean_Syntax_3__updateLast___main(lean_object*); +lean_object* l___private_Lean_Syntax_4__updateFirst___main___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_3__updateLast___main(lean_object*); lean_object* l_Lean_SyntaxNode_modifyArgs(lean_object*, lean_object*); lean_object* l_Lean_Array_hasQuote___rarg___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_9__quoteOption(lean_object*); lean_object* l_Lean_SyntaxNode_getArgs___boxed(lean_object*); lean_object* l_Lean_Array_hasQuote___rarg___closed__1; lean_object* l_Array_findSomeRevMAux___main___at_Lean_Syntax_getTailInfo___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); @@ -154,8 +158,8 @@ lean_object* l_List_map___main___at_Lean_Syntax_formatStxAux___main___spec__4(le lean_object* l_Array_findSomeRevMAux___main___at_Lean_Syntax_getTailWithPos___main___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_unreachIsNodeIdent___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_String_Iterator_HasRepr___closed__2; -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main(lean_object*); lean_object* l_Lean_List_hasQuote(lean_object*); +lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg___closed__7; lean_object* l_Lean_Syntax_getTailInfo___main___boxed(lean_object*); lean_object* l_Lean_Syntax_ifNode___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_asNode___boxed(lean_object*); @@ -168,13 +172,13 @@ lean_object* l_Lean_Syntax_mrewriteBottomUp___main___rarg___lambda__1___boxed(le lean_object* l_Lean_Syntax_updateTrailing___main(lean_object*, lean_object*); lean_object* l_Lean_Option_hasQuote(lean_object*); lean_object* l_Lean_Format_joinSep___main___at_Lean_Syntax_formatStxAux___main___spec__2(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_8__quoteList(lean_object*); lean_object* l_Array_findSomeRevMAux___main___at_Lean_Syntax_getTailWithPos___main___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Format_sbracket___closed__3; lean_object* l_Lean_unreachIsNodeAtom(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mreplace___main___rarg___lambda__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo___main(lean_object*); extern lean_object* l_Lean_formatDataValue___closed__2; +lean_object* l___private_Lean_Syntax_4__updateFirst___main___at_Lean_Syntax_setHeadInfoAux___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_unsetTrailing(lean_object*); uint8_t l_Lean_Syntax_isMissing(lean_object*); lean_object* l_Array_umapMAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -183,17 +187,15 @@ lean_object* l_Lean_Syntax_setArg___boxed(lean_object*, lean_object*, lean_objec lean_object* l_Lean_Array_hasQuote(lean_object*); extern lean_object* l_Option_HasRepr___rarg___closed__3; lean_object* l_List_map___main___at_Lean_Syntax_formatStxAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main___closed__3; lean_object* l_Lean_SyntaxNode_getNumArgs(lean_object*); extern lean_object* l_Lean_Format_paren___closed__1; extern lean_object* l_Lean_Syntax_inhabited; lean_object* l_Lean_Prod_hasQuote___rarg___closed__3; +lean_object* l___private_Lean_Syntax_5__reprintLeaf(lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Syntax_formatStxAux___main___spec__3(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_updateTrailing(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_2__updateLeadingAux(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main___closed__5; lean_object* l_Lean_Syntax_setHeadInfoAux___main(lean_object*, lean_object*); extern lean_object* l_Lean_SourceInfo_inhabited___closed__1; lean_object* l_String_quote(lean_object*); @@ -201,55 +203,55 @@ lean_object* l_Lean_Syntax_HasToString___closed__2; lean_object* l_Lean_Syntax_mrewriteBottomUp___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SyntaxNode_withArgs___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Format_sbracket___closed__1; -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main___closed__6; +lean_object* l___private_Lean_Syntax_8__quoteList(lean_object*); lean_object* l_Lean_List_hasQuote___rarg(lean_object*); extern lean_object* l_Lean_Format_paren___closed__2; lean_object* l_Lean_unreachIsNodeAtom___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; -lean_object* l___private_Init_Lean_Syntax_3__updateLast___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___main___at_Lean_Syntax_setHeadInfoAux___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Syntax_formatStxAux___main___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; lean_object* l_Lean_Syntax_setTailInfoAux___main(lean_object*, lean_object*); lean_object* lean_format_group(lean_object*); lean_object* l_Lean_mkStxStrLit(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos(lean_object*); lean_object* l_Lean_Nat_HasQuote(lean_object*); lean_object* lean_mk_syntax_atom(lean_object*); -lean_object* l___private_Init_Lean_Syntax_9__quoteOption(lean_object*); +lean_object* l___private_Lean_Syntax_9__quoteOption___rarg(lean_object*, lean_object*); lean_object* l_Lean_mkCAppStx(lean_object*, lean_object*); lean_object* lean_mk_syntax_num_lit(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__9; lean_object* l_Array_iterateMAux___main___at_Lean_Syntax_reprint___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_setInfo(lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_9__quoteOption___rarg___closed__2; lean_object* l_Array_umapMAux___main___at_Lean_Syntax_updateLeading___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_HasToString___closed__1; lean_object* l_Lean_mkTermIdFrom(lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__1; -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___main___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_6__formatInfo___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mrewriteBottomUp___main(lean_object*); lean_object* l_Lean_SyntaxNode_getIdAt___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailInfo(lean_object*); lean_object* l_Lean_Syntax_HasToString___lambda__1(lean_object*); lean_object* l_Array_toList___rarg(lean_object*); lean_object* l_Lean_Syntax_mrewriteBottomUp___main___at_Lean_Syntax_rewriteBottomUp___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_8__quoteList___rarg(lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Syntax_formatStxAux___main___spec__5(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailWithPos___main(lean_object*); lean_object* lean_mk_syntax_list(lean_object*); lean_object* l_Lean_Prod_hasQuote___rarg___closed__4; +lean_object* l___private_Lean_Syntax_7__quoteName___main___closed__1; lean_object* l_Lean_Syntax_getTailInfo___boxed(lean_object*); lean_object* l_Lean_Syntax_mreplace___main___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_7__quoteName___main___closed__6; lean_object* lean_mk_syntax_str_lit(lean_object*); lean_object* l_Lean_mkStxLit(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_7__quoteName___main___closed__2; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__4; extern lean_object* l_Lean_mkOptionalNode___closed__2; extern lean_object* l_Lean_Format_paren___closed__3; lean_object* l_Lean_Syntax_formatStxAux___main___closed__10; +lean_object* l___private_Lean_Syntax_9__quoteOption___rarg___closed__4; +lean_object* l___private_Lean_Syntax_1__updateInfo(lean_object*, lean_object*); lean_object* l_Lean_mkCTermIdFrom(lean_object*, lean_object*); lean_object* l_Lean_Syntax_asNode(lean_object*); -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__1; lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_unreachIsNodeIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_System_FilePath_dirName___closed__1; @@ -259,28 +261,26 @@ lean_object* l_List_map___main___at_Lean_Syntax_formatStxAux___main___spec__1___ lean_object* l_Lean_Syntax_HasQuote; lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mrewriteBottomUp___main___rarg___lambda__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__2; +lean_object* l___private_Lean_Syntax_6__formatInfo___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Prod_hasQuote(lean_object*, lean_object*); lean_object* l_Lean_Syntax_ifNodeKind___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_4__updateFirst___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__2; +lean_object* l___private_Lean_Syntax_9__quoteOption___rarg___closed__1; lean_object* l_Lean_Syntax_modifyArgs(lean_object*, lean_object*); lean_object* l_Lean_mkNode(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_5__reprintLeaf___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_6__formatInfo___closed__1; lean_object* l_Lean_Syntax_getTailInfo___main(lean_object*); lean_object* l_Lean_SyntaxNode_getArg(lean_object*, lean_object*); lean_object* l_Lean_Format_joinSep___main___at_Lean_Syntax_formatStxAux___main___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___main___closed__7; lean_object* l_Lean_Substring_HasQuote___closed__3; -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; extern lean_object* l_Lean_mkAppStx___closed__1; lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_reprint(lean_object*); lean_object* l_Lean_Syntax_setHeadInfoAux(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mreplace___main___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg___closed__3; lean_object* l_Lean_Option_hasQuote___rarg(lean_object*); -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__3; uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_updateTrailing(lean_object* x_1, lean_object* x_2) { @@ -1246,7 +1246,7 @@ x_3 = l_Lean_Syntax_mrewriteBottomUp___main___at_Lean_Syntax_rewriteBottomUp___s return x_3; } } -lean_object* l___private_Init_Lean_Syntax_1__updateInfo(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Syntax_1__updateInfo(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -1416,7 +1416,7 @@ return x_32; } } } -lean_object* l___private_Init_Lean_Syntax_2__updateLeadingAux(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Syntax_2__updateLeadingAux(lean_object* x_1, lean_object* x_2) { _start: { switch (lean_obj_tag(x_1)) { @@ -1455,7 +1455,7 @@ x_10 = lean_ctor_get(x_4, 0); x_11 = lean_ctor_get(x_10, 2); lean_inc(x_11); lean_dec(x_10); -x_12 = l___private_Init_Lean_Syntax_1__updateInfo(x_3, x_2); +x_12 = l___private_Lean_Syntax_1__updateInfo(x_3, x_2); lean_ctor_set(x_1, 0, x_12); lean_ctor_set(x_4, 0, x_1); x_13 = lean_alloc_ctor(0, 2, 0); @@ -1472,7 +1472,7 @@ lean_dec(x_4); x_15 = lean_ctor_get(x_14, 2); lean_inc(x_15); lean_dec(x_14); -x_16 = l___private_Init_Lean_Syntax_1__updateInfo(x_3, x_2); +x_16 = l___private_Lean_Syntax_1__updateInfo(x_3, x_2); lean_ctor_set(x_1, 0, x_16); x_17 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_17, 0, x_1); @@ -1500,7 +1500,7 @@ if (lean_is_exclusive(x_4)) { x_22 = lean_ctor_get(x_20, 2); lean_inc(x_22); lean_dec(x_20); -x_23 = l___private_Init_Lean_Syntax_1__updateInfo(x_3, x_2); +x_23 = l___private_Lean_Syntax_1__updateInfo(x_3, x_2); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_19); @@ -1552,7 +1552,7 @@ x_34 = lean_ctor_get(x_28, 0); x_35 = lean_ctor_get(x_34, 2); lean_inc(x_35); lean_dec(x_34); -x_36 = l___private_Init_Lean_Syntax_1__updateInfo(x_27, x_2); +x_36 = l___private_Lean_Syntax_1__updateInfo(x_27, x_2); lean_ctor_set(x_1, 0, x_36); lean_ctor_set(x_28, 0, x_1); x_37 = lean_alloc_ctor(0, 2, 0); @@ -1569,7 +1569,7 @@ lean_dec(x_28); x_39 = lean_ctor_get(x_38, 2); lean_inc(x_39); lean_dec(x_38); -x_40 = l___private_Init_Lean_Syntax_1__updateInfo(x_27, x_2); +x_40 = l___private_Lean_Syntax_1__updateInfo(x_27, x_2); lean_ctor_set(x_1, 0, x_40); x_41 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_41, 0, x_1); @@ -1601,7 +1601,7 @@ if (lean_is_exclusive(x_28)) { x_48 = lean_ctor_get(x_46, 2); lean_inc(x_48); lean_dec(x_46); -x_49 = l___private_Init_Lean_Syntax_1__updateInfo(x_27, x_2); +x_49 = l___private_Lean_Syntax_1__updateInfo(x_27, x_2); x_50 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_43); @@ -1800,7 +1800,7 @@ lean_dec(x_5); x_10 = lean_ctor_get(x_9, 2); lean_inc(x_10); lean_dec(x_9); -x_11 = l___private_Init_Lean_Syntax_1__updateInfo(x_4, x_2); +x_11 = l___private_Lean_Syntax_1__updateInfo(x_4, x_2); lean_ctor_set(x_1, 0, x_11); x_12 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_12, 0, x_1); @@ -1819,7 +1819,7 @@ lean_dec(x_5); x_15 = lean_ctor_get(x_14, 2); lean_inc(x_15); lean_dec(x_14); -x_16 = l___private_Init_Lean_Syntax_1__updateInfo(x_4, x_2); +x_16 = l___private_Lean_Syntax_1__updateInfo(x_4, x_2); x_17 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_13); @@ -1861,7 +1861,7 @@ lean_dec(x_20); x_25 = lean_ctor_get(x_24, 2); lean_inc(x_25); lean_dec(x_24); -x_26 = l___private_Init_Lean_Syntax_1__updateInfo(x_19, x_2); +x_26 = l___private_Lean_Syntax_1__updateInfo(x_19, x_2); lean_ctor_set(x_1, 0, x_26); x_27 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_27, 0, x_1); @@ -1884,7 +1884,7 @@ lean_dec(x_20); x_32 = lean_ctor_get(x_31, 2); lean_inc(x_32); lean_dec(x_31); -x_33 = l___private_Init_Lean_Syntax_1__updateInfo(x_19, x_2); +x_33 = l___private_Lean_Syntax_1__updateInfo(x_19, x_2); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_28); @@ -2307,7 +2307,7 @@ lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Syntax_3__updateLast___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Syntax_3__updateLast___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -2369,31 +2369,31 @@ return x_18; } } } -lean_object* l___private_Init_Lean_Syntax_3__updateLast___main(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_3__updateLast___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_3__updateLast___main___rarg), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Syntax_3__updateLast___main___rarg), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Syntax_3__updateLast___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Syntax_3__updateLast___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Syntax_3__updateLast___main___rarg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Syntax_3__updateLast___main___rarg(x_1, x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Init_Lean_Syntax_3__updateLast(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_3__updateLast(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_3__updateLast___rarg), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Syntax_3__updateLast___rarg), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Syntax_3__updateLast___main___at_Lean_Syntax_setTailInfoAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Syntax_3__updateLast___main___at_Lean_Syntax_setTailInfoAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2474,7 +2474,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_5 = lean_ctor_get(x_2, 0); x_6 = lean_ctor_get(x_2, 1); x_7 = lean_array_get_size(x_6); -x_8 = l___private_Init_Lean_Syntax_3__updateLast___main___at_Lean_Syntax_setTailInfoAux___main___spec__1(x_1, x_6, x_7); +x_8 = l___private_Lean_Syntax_3__updateLast___main___at_Lean_Syntax_setTailInfoAux___main___spec__1(x_1, x_6, x_7); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; @@ -2517,7 +2517,7 @@ lean_inc(x_15); lean_inc(x_14); lean_dec(x_2); x_16 = lean_array_get_size(x_15); -x_17 = l___private_Init_Lean_Syntax_3__updateLast___main___at_Lean_Syntax_setTailInfoAux___main___spec__1(x_1, x_15, x_16); +x_17 = l___private_Lean_Syntax_3__updateLast___main___at_Lean_Syntax_setTailInfoAux___main___spec__1(x_1, x_15, x_16); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; @@ -2689,7 +2689,7 @@ return x_12; } } } -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Syntax_4__updateFirst___main___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2750,40 +2750,40 @@ return x_17; } } } -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___main(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_4__updateFirst___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_4__updateFirst___main___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Syntax_4__updateFirst___main___rarg), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Syntax_4__updateFirst___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Syntax_4__updateFirst___main___rarg(x_1, x_2, x_3); +x_4 = l___private_Lean_Syntax_4__updateFirst___main___rarg(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Syntax_4__updateFirst(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Syntax_4__updateFirst(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_4__updateFirst___rarg), 3, 0); +x_3 = lean_alloc_closure((void*)(l___private_Lean_Syntax_4__updateFirst___rarg), 3, 0); return x_3; } } -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Syntax_4__updateFirst___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Syntax_4__updateFirst(x_1, x_2); +x_3 = l___private_Lean_Syntax_4__updateFirst(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Syntax_4__updateFirst___main___at_Lean_Syntax_setHeadInfoAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Syntax_4__updateFirst___main___at_Lean_Syntax_setHeadInfoAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2865,7 +2865,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_5 = lean_ctor_get(x_2, 0); x_6 = lean_ctor_get(x_2, 1); x_7 = lean_unsigned_to_nat(0u); -x_8 = l___private_Init_Lean_Syntax_4__updateFirst___main___at_Lean_Syntax_setHeadInfoAux___main___spec__1(x_1, x_6, x_7); +x_8 = l___private_Lean_Syntax_4__updateFirst___main___at_Lean_Syntax_setHeadInfoAux___main___spec__1(x_1, x_6, x_7); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; @@ -2908,7 +2908,7 @@ lean_inc(x_15); lean_inc(x_14); lean_dec(x_2); x_16 = lean_unsigned_to_nat(0u); -x_17 = l___private_Init_Lean_Syntax_4__updateFirst___main___at_Lean_Syntax_setHeadInfoAux___main___spec__1(x_1, x_15, x_16); +x_17 = l___private_Lean_Syntax_4__updateFirst___main___at_Lean_Syntax_setHeadInfoAux___main___spec__1(x_1, x_15, x_16); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; @@ -3188,7 +3188,7 @@ x_3 = l_Lean_Syntax_replaceInfo___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Syntax_5__reprintLeaf(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Syntax_5__reprintLeaf(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -3250,11 +3250,11 @@ return x_28; } } } -lean_object* l___private_Init_Lean_Syntax_5__reprintLeaf___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Syntax_5__reprintLeaf___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Syntax_5__reprintLeaf(x_1, x_2); +x_3 = l___private_Lean_Syntax_5__reprintLeaf(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; @@ -3444,7 +3444,7 @@ case 2: lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; x_21 = lean_ctor_get(x_1, 0); x_22 = lean_ctor_get(x_1, 1); -x_23 = l___private_Init_Lean_Syntax_5__reprintLeaf(x_21, x_22); +x_23 = l___private_Lean_Syntax_5__reprintLeaf(x_21, x_22); x_24 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_24, 0, x_23); return x_24; @@ -3458,7 +3458,7 @@ x_27 = lean_ctor_get(x_25, 0); x_28 = lean_ctor_get(x_25, 1); x_29 = lean_ctor_get(x_25, 2); x_30 = lean_string_utf8_extract(x_27, x_28, x_29); -x_31 = l___private_Init_Lean_Syntax_5__reprintLeaf(x_26, x_30); +x_31 = l___private_Lean_Syntax_5__reprintLeaf(x_26, x_30); lean_dec(x_30); x_32 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_32, 0, x_31); @@ -3513,7 +3513,7 @@ lean_dec(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Syntax_6__formatInfo___closed__1() { +lean_object* _init_l___private_Lean_Syntax_6__formatInfo___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -3523,7 +3523,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Syntax_6__formatInfo(uint8_t x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Syntax_6__formatInfo(uint8_t x_1, lean_object* x_2, lean_object* x_3) { _start: { if (x_1 == 0) @@ -3569,7 +3569,7 @@ x_43 = l_String_quote(x_42); x_44 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_44, 0, x_43); x_45 = 0; -x_46 = l___private_Init_Lean_Syntax_6__formatInfo___closed__1; +x_46 = l___private_Lean_Syntax_6__formatInfo___closed__1; x_47 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_47, 0, x_44); lean_ctor_set(x_47, 1, x_46); @@ -3608,7 +3608,7 @@ x_31 = l_Option_HasRepr___rarg___closed__3; x_32 = lean_string_append(x_30, x_31); x_33 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_33, 0, x_32); -x_34 = l___private_Init_Lean_Syntax_6__formatInfo___closed__1; +x_34 = l___private_Lean_Syntax_6__formatInfo___closed__1; x_35 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); @@ -3653,7 +3653,7 @@ lean_dec(x_15); x_19 = l_String_quote(x_18); x_20 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_20, 0, x_19); -x_21 = l___private_Init_Lean_Syntax_6__formatInfo___closed__1; +x_21 = l___private_Lean_Syntax_6__formatInfo___closed__1; x_22 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -3669,13 +3669,13 @@ return x_23; } } } -lean_object* l___private_Init_Lean_Syntax_6__formatInfo___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Syntax_6__formatInfo___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = lean_unbox(x_1); lean_dec(x_1); -x_5 = l___private_Init_Lean_Syntax_6__formatInfo(x_4, x_2, x_3); +x_5 = l___private_Lean_Syntax_6__formatInfo(x_4, x_2, x_3); return x_5; } } @@ -4290,7 +4290,7 @@ lean_dec(x_4); x_102 = l_String_quote(x_101); x_103 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_103, 0, x_102); -x_104 = l___private_Init_Lean_Syntax_6__formatInfo(x_2, x_100, x_103); +x_104 = l___private_Lean_Syntax_6__formatInfo(x_2, x_100, x_103); return x_104; } default: @@ -4311,7 +4311,7 @@ x_112 = lean_alloc_ctor(4, 2, 1); lean_ctor_set(x_112, 0, x_111); lean_ctor_set(x_112, 1, x_109); lean_ctor_set_uint8(x_112, sizeof(void*)*2, x_110); -x_113 = l___private_Init_Lean_Syntax_6__formatInfo(x_2, x_105, x_112); +x_113 = l___private_Lean_Syntax_6__formatInfo(x_2, x_105, x_112); return x_113; } } @@ -4704,7 +4704,7 @@ lean_dec(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__1() { +lean_object* _init_l___private_Lean_Syntax_7__quoteName___main___closed__1() { _start: { lean_object* x_1; @@ -4712,7 +4712,7 @@ x_1 = lean_mk_string("Name"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__2() { +lean_object* _init_l___private_Lean_Syntax_7__quoteName___main___closed__2() { _start: { lean_object* x_1; @@ -4720,7 +4720,7 @@ x_1 = lean_mk_string("anonymous"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__3() { +lean_object* _init_l___private_Lean_Syntax_7__quoteName___main___closed__3() { _start: { lean_object* x_1; @@ -4728,17 +4728,17 @@ x_1 = lean_mk_string("mkNameStr"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__4() { +lean_object* _init_l___private_Lean_Syntax_7__quoteName___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__2; -x_2 = l___private_Init_Lean_Syntax_7__quoteName___main___closed__3; +x_2 = l___private_Lean_Syntax_7__quoteName___main___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__5() { +lean_object* _init_l___private_Lean_Syntax_7__quoteName___main___closed__5() { _start: { lean_object* x_1; @@ -4746,17 +4746,17 @@ x_1 = lean_mk_string("mkNameNum"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__6() { +lean_object* _init_l___private_Lean_Syntax_7__quoteName___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__2; -x_2 = l___private_Init_Lean_Syntax_7__quoteName___main___closed__5; +x_2 = l___private_Lean_Syntax_7__quoteName___main___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Syntax_7__quoteName___main(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_7__quoteName___main(lean_object* x_1) { _start: { switch (lean_obj_tag(x_1)) { @@ -4765,9 +4765,9 @@ case 0: lean_object* x_2; lean_object* x_3; 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_mkAppStx___closed__1; x_3 = lean_name_mk_string(x_1, x_2); -x_4 = l___private_Init_Lean_Syntax_7__quoteName___main___closed__1; +x_4 = l___private_Lean_Syntax_7__quoteName___main___closed__1; x_5 = lean_name_mk_string(x_3, x_4); -x_6 = l___private_Init_Lean_Syntax_7__quoteName___main___closed__2; +x_6 = l___private_Lean_Syntax_7__quoteName___main___closed__2; x_7 = lean_name_mk_string(x_5, x_6); x_8 = lean_box(0); x_9 = l_Lean_mkCTermIdFrom(x_8, x_7); @@ -4781,7 +4781,7 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_1, 1); lean_inc(x_11); lean_dec(x_1); -x_12 = l___private_Init_Lean_Syntax_7__quoteName___main(x_10); +x_12 = l___private_Lean_Syntax_7__quoteName___main(x_10); x_13 = l_Lean_SourceInfo_inhabited___closed__1; x_14 = l_Lean_mkStxStrLit(x_11, x_13); x_15 = l_Lean_mkOptionalNode___closed__2; @@ -4793,7 +4793,7 @@ lean_ctor_set(x_18, 1, x_16); x_19 = l_Lean_mkAppStx___closed__9; x_20 = lean_array_push(x_19, x_12); x_21 = lean_array_push(x_20, x_18); -x_22 = l___private_Init_Lean_Syntax_7__quoteName___main___closed__4; +x_22 = l___private_Lean_Syntax_7__quoteName___main___closed__4; x_23 = l_Lean_mkCAppStx(x_22, x_21); return x_23; } @@ -4805,7 +4805,7 @@ lean_inc(x_24); x_25 = lean_ctor_get(x_1, 1); lean_inc(x_25); lean_dec(x_1); -x_26 = l___private_Init_Lean_Syntax_7__quoteName___main(x_24); +x_26 = l___private_Lean_Syntax_7__quoteName___main(x_24); x_27 = l_Nat_repr(x_25); x_28 = l_Lean_numLitKind; x_29 = l_Lean_SourceInfo_inhabited___closed__1; @@ -4819,18 +4819,18 @@ lean_ctor_set(x_34, 1, x_32); x_35 = l_Lean_mkAppStx___closed__9; x_36 = lean_array_push(x_35, x_26); x_37 = lean_array_push(x_36, x_34); -x_38 = l___private_Init_Lean_Syntax_7__quoteName___main___closed__6; +x_38 = l___private_Lean_Syntax_7__quoteName___main___closed__6; x_39 = l_Lean_mkCAppStx(x_38, x_37); return x_39; } } } } -lean_object* l___private_Init_Lean_Syntax_7__quoteName(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_7__quoteName(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Syntax_7__quoteName___main(x_1); +x_2 = l___private_Lean_Syntax_7__quoteName___main(x_1); return x_2; } } @@ -4838,7 +4838,7 @@ lean_object* _init_l_Lean_Name_hasQuote___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_7__quoteName), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Syntax_7__quoteName), 1, 0); return x_1; } } @@ -4913,7 +4913,7 @@ x_3 = lean_alloc_closure((void*)(l_Lean_Prod_hasQuote___rarg), 3, 0); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__1() { +lean_object* _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__1() { _start: { lean_object* x_1; @@ -4921,17 +4921,17 @@ x_1 = lean_mk_string("List"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__2() { +lean_object* _init_l___private_Lean_Syntax_8__quoteList___main___rarg___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_Lean_Syntax_8__quoteList___main___rarg___closed__1; +x_2 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__3() { +lean_object* _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__3() { _start: { lean_object* x_1; @@ -4939,27 +4939,27 @@ x_1 = lean_mk_string("nil"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__4() { +lean_object* _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__2; -x_2 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__3; +x_1 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__2; +x_2 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__5() { +lean_object* _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__4; +x_2 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__4; x_3 = l_Lean_mkCTermIdFrom(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__6() { +lean_object* _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__6() { _start: { lean_object* x_1; @@ -4967,24 +4967,24 @@ x_1 = lean_mk_string("cons"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__7() { +lean_object* _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__2; -x_2 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__6; +x_1 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__2; +x_2 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) { lean_object* x_3; lean_dec(x_1); -x_3 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__5; +x_3 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__5; return x_3; } else @@ -4997,37 +4997,37 @@ lean_inc(x_5); lean_dec(x_2); lean_inc(x_1); x_6 = lean_apply_1(x_1, x_4); -x_7 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg(x_1, x_5); +x_7 = l___private_Lean_Syntax_8__quoteList___main___rarg(x_1, x_5); x_8 = l_Lean_mkAppStx___closed__9; x_9 = lean_array_push(x_8, x_6); x_10 = lean_array_push(x_9, x_7); -x_11 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__7; +x_11 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__7; x_12 = l_Lean_mkCAppStx(x_11, x_10); return x_12; } } } -lean_object* l___private_Init_Lean_Syntax_8__quoteList___main(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_8__quoteList___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_8__quoteList___main___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Syntax_8__quoteList___main___rarg), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Syntax_8__quoteList___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Syntax_8__quoteList___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg(x_1, x_2); +x_3 = l___private_Lean_Syntax_8__quoteList___main___rarg(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Syntax_8__quoteList(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_8__quoteList(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_8__quoteList___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Syntax_8__quoteList___rarg), 2, 0); return x_2; } } @@ -5035,7 +5035,7 @@ lean_object* l_Lean_List_hasQuote___rarg(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_8__quoteList___rarg), 2, 1); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Syntax_8__quoteList___rarg), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -5060,7 +5060,7 @@ lean_object* _init_l_Lean_Array_hasQuote___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__2; +x_1 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__2; x_2 = l_Lean_Array_hasQuote___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -5071,7 +5071,7 @@ _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_3 = l_Array_toList___rarg(x_2); -x_4 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg(x_1, x_3); +x_4 = l___private_Lean_Syntax_8__quoteList___main___rarg(x_1, x_3); x_5 = l_Lean_mkOptionalNode___closed__2; x_6 = lean_array_push(x_5, x_4); x_7 = l_Lean_Array_hasQuote___rarg___closed__2; @@ -5096,7 +5096,7 @@ lean_dec(x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__1() { +lean_object* _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__1() { _start: { lean_object* x_1; @@ -5104,37 +5104,37 @@ x_1 = lean_mk_string("Option"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__2() { +lean_object* _init_l___private_Lean_Syntax_9__quoteOption___rarg___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_Lean_Syntax_9__quoteOption___rarg___closed__1; +x_2 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__3() { +lean_object* _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__2; +x_1 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__2; x_2 = l_Option_HasRepr___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__4() { +lean_object* _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__3; +x_2 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__3; x_3 = l_Lean_mkTermIdFrom(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5() { +lean_object* _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__5() { _start: { lean_object* x_1; @@ -5142,24 +5142,24 @@ x_1 = lean_mk_string("some"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__6() { +lean_object* _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__2; -x_2 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5; +x_1 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__2; +x_2 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Syntax_9__quoteOption___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Syntax_9__quoteOption___rarg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) { lean_object* x_3; lean_dec(x_1); -x_3 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__4; +x_3 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__4; return x_3; } else @@ -5171,17 +5171,17 @@ lean_dec(x_2); x_5 = lean_apply_1(x_1, x_4); x_6 = l_Lean_mkOptionalNode___closed__2; x_7 = lean_array_push(x_6, x_5); -x_8 = l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__6; +x_8 = l___private_Lean_Syntax_9__quoteOption___rarg___closed__6; x_9 = l_Lean_mkCAppStx(x_8, x_7); return x_9; } } } -lean_object* l___private_Init_Lean_Syntax_9__quoteOption(lean_object* x_1) { +lean_object* l___private_Lean_Syntax_9__quoteOption(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_9__quoteOption___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Syntax_9__quoteOption___rarg), 2, 0); return x_2; } } @@ -5189,7 +5189,7 @@ lean_object* l_Lean_Option_hasQuote___rarg(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Syntax_9__quoteOption___rarg), 2, 1); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Syntax_9__quoteOption___rarg), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -5203,26 +5203,26 @@ return x_2; } } lean_object* initialize_Init_Data_Array(lean_object*); -lean_object* initialize_Init_Lean_Data_Name(lean_object*); -lean_object* initialize_Init_Lean_Data_Format(lean_object*); +lean_object* initialize_Lean_Data_Name(lean_object*); +lean_object* initialize_Lean_Data_Format(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Syntax(lean_object* w) { +lean_object* initialize_Lean_Syntax(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Data_Array(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Name(lean_io_mk_world()); +res = initialize_Lean_Data_Name(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Format(lean_io_mk_world()); +res = initialize_Lean_Data_Format(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Syntax_reprint___main___closed__1 = _init_l_Lean_Syntax_reprint___main___closed__1(); lean_mark_persistent(l_Lean_Syntax_reprint___main___closed__1); -l___private_Init_Lean_Syntax_6__formatInfo___closed__1 = _init_l___private_Init_Lean_Syntax_6__formatInfo___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Syntax_6__formatInfo___closed__1); +l___private_Lean_Syntax_6__formatInfo___closed__1 = _init_l___private_Lean_Syntax_6__formatInfo___closed__1(); +lean_mark_persistent(l___private_Lean_Syntax_6__formatInfo___closed__1); l_Lean_Syntax_formatStxAux___main___closed__1 = _init_l_Lean_Syntax_formatStxAux___main___closed__1(); lean_mark_persistent(l_Lean_Syntax_formatStxAux___main___closed__1); l_Lean_Syntax_formatStxAux___main___closed__2 = _init_l_Lean_Syntax_formatStxAux___main___closed__2(); @@ -5269,18 +5269,18 @@ l_Lean_Substring_HasQuote___closed__3 = _init_l_Lean_Substring_HasQuote___closed lean_mark_persistent(l_Lean_Substring_HasQuote___closed__3); l_Lean_Substring_HasQuote___closed__4 = _init_l_Lean_Substring_HasQuote___closed__4(); lean_mark_persistent(l_Lean_Substring_HasQuote___closed__4); -l___private_Init_Lean_Syntax_7__quoteName___main___closed__1 = _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Syntax_7__quoteName___main___closed__1); -l___private_Init_Lean_Syntax_7__quoteName___main___closed__2 = _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Syntax_7__quoteName___main___closed__2); -l___private_Init_Lean_Syntax_7__quoteName___main___closed__3 = _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Syntax_7__quoteName___main___closed__3); -l___private_Init_Lean_Syntax_7__quoteName___main___closed__4 = _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Syntax_7__quoteName___main___closed__4); -l___private_Init_Lean_Syntax_7__quoteName___main___closed__5 = _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Syntax_7__quoteName___main___closed__5); -l___private_Init_Lean_Syntax_7__quoteName___main___closed__6 = _init_l___private_Init_Lean_Syntax_7__quoteName___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Syntax_7__quoteName___main___closed__6); +l___private_Lean_Syntax_7__quoteName___main___closed__1 = _init_l___private_Lean_Syntax_7__quoteName___main___closed__1(); +lean_mark_persistent(l___private_Lean_Syntax_7__quoteName___main___closed__1); +l___private_Lean_Syntax_7__quoteName___main___closed__2 = _init_l___private_Lean_Syntax_7__quoteName___main___closed__2(); +lean_mark_persistent(l___private_Lean_Syntax_7__quoteName___main___closed__2); +l___private_Lean_Syntax_7__quoteName___main___closed__3 = _init_l___private_Lean_Syntax_7__quoteName___main___closed__3(); +lean_mark_persistent(l___private_Lean_Syntax_7__quoteName___main___closed__3); +l___private_Lean_Syntax_7__quoteName___main___closed__4 = _init_l___private_Lean_Syntax_7__quoteName___main___closed__4(); +lean_mark_persistent(l___private_Lean_Syntax_7__quoteName___main___closed__4); +l___private_Lean_Syntax_7__quoteName___main___closed__5 = _init_l___private_Lean_Syntax_7__quoteName___main___closed__5(); +lean_mark_persistent(l___private_Lean_Syntax_7__quoteName___main___closed__5); +l___private_Lean_Syntax_7__quoteName___main___closed__6 = _init_l___private_Lean_Syntax_7__quoteName___main___closed__6(); +lean_mark_persistent(l___private_Lean_Syntax_7__quoteName___main___closed__6); l_Lean_Name_hasQuote___closed__1 = _init_l_Lean_Name_hasQuote___closed__1(); lean_mark_persistent(l_Lean_Name_hasQuote___closed__1); l_Lean_Name_hasQuote = _init_l_Lean_Name_hasQuote(); @@ -5293,36 +5293,36 @@ l_Lean_Prod_hasQuote___rarg___closed__3 = _init_l_Lean_Prod_hasQuote___rarg___cl lean_mark_persistent(l_Lean_Prod_hasQuote___rarg___closed__3); l_Lean_Prod_hasQuote___rarg___closed__4 = _init_l_Lean_Prod_hasQuote___rarg___closed__4(); lean_mark_persistent(l_Lean_Prod_hasQuote___rarg___closed__4); -l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__1 = _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__1); -l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__2 = _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__2); -l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__3 = _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__3); -l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__4 = _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__4); -l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__5 = _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__5); -l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__6 = _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__6); -l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__7 = _init_l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__7); +l___private_Lean_Syntax_8__quoteList___main___rarg___closed__1 = _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Syntax_8__quoteList___main___rarg___closed__1); +l___private_Lean_Syntax_8__quoteList___main___rarg___closed__2 = _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Syntax_8__quoteList___main___rarg___closed__2); +l___private_Lean_Syntax_8__quoteList___main___rarg___closed__3 = _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Syntax_8__quoteList___main___rarg___closed__3); +l___private_Lean_Syntax_8__quoteList___main___rarg___closed__4 = _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__4(); +lean_mark_persistent(l___private_Lean_Syntax_8__quoteList___main___rarg___closed__4); +l___private_Lean_Syntax_8__quoteList___main___rarg___closed__5 = _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__5(); +lean_mark_persistent(l___private_Lean_Syntax_8__quoteList___main___rarg___closed__5); +l___private_Lean_Syntax_8__quoteList___main___rarg___closed__6 = _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__6(); +lean_mark_persistent(l___private_Lean_Syntax_8__quoteList___main___rarg___closed__6); +l___private_Lean_Syntax_8__quoteList___main___rarg___closed__7 = _init_l___private_Lean_Syntax_8__quoteList___main___rarg___closed__7(); +lean_mark_persistent(l___private_Lean_Syntax_8__quoteList___main___rarg___closed__7); l_Lean_Array_hasQuote___rarg___closed__1 = _init_l_Lean_Array_hasQuote___rarg___closed__1(); lean_mark_persistent(l_Lean_Array_hasQuote___rarg___closed__1); l_Lean_Array_hasQuote___rarg___closed__2 = _init_l_Lean_Array_hasQuote___rarg___closed__2(); lean_mark_persistent(l_Lean_Array_hasQuote___rarg___closed__2); -l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__1 = _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__1); -l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__2 = _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__2); -l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__3 = _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__3); -l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__4 = _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__4); -l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5 = _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__5); -l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__6 = _init_l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Syntax_9__quoteOption___rarg___closed__6); +l___private_Lean_Syntax_9__quoteOption___rarg___closed__1 = _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Syntax_9__quoteOption___rarg___closed__1); +l___private_Lean_Syntax_9__quoteOption___rarg___closed__2 = _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Syntax_9__quoteOption___rarg___closed__2); +l___private_Lean_Syntax_9__quoteOption___rarg___closed__3 = _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Syntax_9__quoteOption___rarg___closed__3); +l___private_Lean_Syntax_9__quoteOption___rarg___closed__4 = _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__4(); +lean_mark_persistent(l___private_Lean_Syntax_9__quoteOption___rarg___closed__4); +l___private_Lean_Syntax_9__quoteOption___rarg___closed__5 = _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__5(); +lean_mark_persistent(l___private_Lean_Syntax_9__quoteOption___rarg___closed__5); +l___private_Lean_Syntax_9__quoteOption___rarg___closed__6 = _init_l___private_Lean_Syntax_9__quoteOption___rarg___closed__6(); +lean_mark_persistent(l___private_Lean_Syntax_9__quoteOption___rarg___closed__6); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Lean/ToExpr.c b/stage0/stdlib/Lean/ToExpr.c similarity index 99% rename from stage0/stdlib/Init/Lean/ToExpr.c rename to stage0/stdlib/Lean/ToExpr.c index 6552328236..b47000fe19 100644 --- a/stage0/stdlib/Init/Lean/ToExpr.c +++ b/stage0/stdlib/Lean/ToExpr.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.ToExpr -// Imports: Init.Lean.Expr +// Module: Lean.ToExpr +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1308,13 +1308,13 @@ x_3 = lean_alloc_closure((void*)(l_Lean_prodToExpr___rarg), 2, 0); return x_3; } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_ToExpr(lean_object* w) { +lean_object* initialize_Lean_ToExpr(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_exprToExpr___closed__1 = _init_l_Lean_exprToExpr___closed__1(); diff --git a/stage0/stdlib/Lean/Util.c b/stage0/stdlib/Lean/Util.c index 33eba75e6a..66be4127d0 100644 --- a/stage0/stdlib/Lean/Util.c +++ b/stage0/stdlib/Lean/Util.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Util -// Imports: Init +// Imports: Lean.Util.CollectFVars Lean.Util.CollectLevelParams Lean.Util.CollectMVars Lean.Util.FindMVar Lean.Util.MonadCache Lean.Util.PPExt Lean.Util.PPGoal Lean.Util.Path Lean.Util.Profile Lean.Util.RecDepth Lean.Util.Sorry Lean.Util.Trace Lean.Util.WHNF Lean.Util.FindExpr Lean.Util.ReplaceExpr Lean.Util.FoldConsts #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,13 +13,73 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* initialize_Init(lean_object*); +lean_object* initialize_Lean_Util_CollectFVars(lean_object*); +lean_object* initialize_Lean_Util_CollectLevelParams(lean_object*); +lean_object* initialize_Lean_Util_CollectMVars(lean_object*); +lean_object* initialize_Lean_Util_FindMVar(lean_object*); +lean_object* initialize_Lean_Util_MonadCache(lean_object*); +lean_object* initialize_Lean_Util_PPExt(lean_object*); +lean_object* initialize_Lean_Util_PPGoal(lean_object*); +lean_object* initialize_Lean_Util_Path(lean_object*); +lean_object* initialize_Lean_Util_Profile(lean_object*); +lean_object* initialize_Lean_Util_RecDepth(lean_object*); +lean_object* initialize_Lean_Util_Sorry(lean_object*); +lean_object* initialize_Lean_Util_Trace(lean_object*); +lean_object* initialize_Lean_Util_WHNF(lean_object*); +lean_object* initialize_Lean_Util_FindExpr(lean_object*); +lean_object* initialize_Lean_Util_ReplaceExpr(lean_object*); +lean_object* initialize_Lean_Util_FoldConsts(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_Util(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init(lean_io_mk_world()); +res = initialize_Lean_Util_CollectFVars(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_CollectLevelParams(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_CollectMVars(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_FindMVar(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_MonadCache(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_PPExt(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_PPGoal(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_Path(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_Profile(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_RecDepth(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_Sorry(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_Trace(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_WHNF(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_FindExpr(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_ReplaceExpr(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Util_FoldConsts(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Util/Closure.c b/stage0/stdlib/Lean/Util/Closure.c similarity index 99% rename from stage0/stdlib/Init/Lean/Util/Closure.c rename to stage0/stdlib/Lean/Util/Closure.c index b7e6aab0bf..7367da056e 100644 --- a/stage0/stdlib/Init/Lean/Util/Closure.c +++ b/stage0/stdlib/Lean/Util/Closure.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.Closure -// Imports: Init.ShareCommon Init.Lean.MetavarContext Init.Lean.Environment Init.Lean.Util.FoldConsts +// Module: Lean.Util.Closure +// Imports: Init.ShareCommon Lean.MetavarContext Lean.Environment Lean.Util.FoldConsts #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -6776,24 +6776,24 @@ return x_8; } } lean_object* initialize_Init_ShareCommon(lean_object*); -lean_object* initialize_Init_Lean_MetavarContext(lean_object*); -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_Util_FoldConsts(lean_object*); +lean_object* initialize_Lean_MetavarContext(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Util_FoldConsts(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_Closure(lean_object* w) { +lean_object* initialize_Lean_Util_Closure(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_ShareCommon(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_MetavarContext(lean_io_mk_world()); +res = initialize_Lean_MetavarContext(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Util_FoldConsts(lean_io_mk_world()); +res = initialize_Lean_Util_FoldConsts(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Closure_mkNewLevelParam___closed__1 = _init_l_Lean_Closure_mkNewLevelParam___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Util/CollectFVars.c b/stage0/stdlib/Lean/Util/CollectFVars.c similarity index 99% rename from stage0/stdlib/Init/Lean/Util/CollectFVars.c rename to stage0/stdlib/Lean/Util/CollectFVars.c index 445b337336..9e26d854e0 100644 --- a/stage0/stdlib/Init/Lean/Util/CollectFVars.c +++ b/stage0/stdlib/Lean/Util/CollectFVars.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.CollectFVars -// Imports: Init.Lean.Expr +// Module: Lean.Util.CollectFVars +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1790,13 +1790,13 @@ x_3 = l_Lean_CollectFVars_main___main(x_2, x_1); return x_3; } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_CollectFVars(lean_object* w) { +lean_object* initialize_Lean_Util_CollectFVars(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_CollectFVars_State_inhabited___closed__1 = _init_l_Lean_CollectFVars_State_inhabited___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Util/CollectLevelParams.c b/stage0/stdlib/Lean/Util/CollectLevelParams.c similarity index 99% rename from stage0/stdlib/Init/Lean/Util/CollectLevelParams.c rename to stage0/stdlib/Lean/Util/CollectLevelParams.c index 046065c169..d8f339b990 100644 --- a/stage0/stdlib/Init/Lean/Util/CollectLevelParams.c +++ b/stage0/stdlib/Lean/Util/CollectLevelParams.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.CollectLevelParams -// Imports: Init.Lean.Expr +// Module: Lean.Util.CollectLevelParams +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -2448,13 +2448,13 @@ x_3 = l_Lean_CollectLevelParams_main___main(x_2, x_1); return x_3; } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_CollectLevelParams(lean_object* w) { +lean_object* initialize_Lean_Util_CollectLevelParams(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_CollectLevelParams_State_inhabited___closed__1 = _init_l_Lean_CollectLevelParams_State_inhabited___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Util/CollectMVars.c b/stage0/stdlib/Lean/Util/CollectMVars.c similarity index 99% rename from stage0/stdlib/Init/Lean/Util/CollectMVars.c rename to stage0/stdlib/Lean/Util/CollectMVars.c index fabd991968..32a184af1e 100644 --- a/stage0/stdlib/Init/Lean/Util/CollectMVars.c +++ b/stage0/stdlib/Lean/Util/CollectMVars.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.CollectMVars -// Imports: Init.Lean.Expr +// Module: Lean.Util.CollectMVars +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1838,13 +1838,13 @@ return x_1; } } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_CollectMVars(lean_object* w) { +lean_object* initialize_Lean_Util_CollectMVars(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_CollectMVars_State_inhabited___closed__1 = _init_l_Lean_CollectMVars_State_inhabited___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Util/FindExpr.c b/stage0/stdlib/Lean/Util/FindExpr.c similarity index 98% rename from stage0/stdlib/Init/Lean/Util/FindExpr.c rename to stage0/stdlib/Lean/Util/FindExpr.c index fefe08f21c..f3b8685362 100644 --- a/stage0/stdlib/Init/Lean/Util/FindExpr.c +++ b/stage0/stdlib/Lean/Util/FindExpr.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.FindExpr -// Imports: Init.Control.Option Init.Lean.Expr +// Module: Lean.Util.FindExpr +// Imports: Init.Control.Option Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -791,16 +791,16 @@ return x_3; } } lean_object* initialize_Init_Control_Option(lean_object*); -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_FindExpr(lean_object* w) { +lean_object* initialize_Lean_Util_FindExpr(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Control_Option(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Expr_FindImpl_cacheSize = _init_l_Lean_Expr_FindImpl_cacheSize(); diff --git a/stage0/stdlib/Init/Lean/Util/FindMVar.c b/stage0/stdlib/Lean/Util/FindMVar.c similarity index 96% rename from stage0/stdlib/Init/Lean/Util/FindMVar.c rename to stage0/stdlib/Lean/Util/FindMVar.c index f85bcc9396..1fc9729a97 100644 --- a/stage0/stdlib/Init/Lean/Util/FindMVar.c +++ b/stage0/stdlib/Lean/Util/FindMVar.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.FindMVar -// Imports: Init.Lean.Expr +// Module: Lean.Util.FindMVar +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -468,13 +468,13 @@ x_4 = l_Lean_FindMVar_main___main(x_2, x_1, x_3); return x_4; } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_FindMVar(lean_object* w) { +lean_object* initialize_Lean_Util_FindMVar(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Util/FoldConsts.c b/stage0/stdlib/Lean/Util/FoldConsts.c similarity index 98% rename from stage0/stdlib/Init/Lean/Util/FoldConsts.c rename to stage0/stdlib/Lean/Util/FoldConsts.c index db664d8a8b..e466890123 100644 --- a/stage0/stdlib/Init/Lean/Util/FoldConsts.c +++ b/stage0/stdlib/Lean/Util/FoldConsts.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.FoldConsts -// Imports: Init.Control.Option Init.Lean.Expr Init.Lean.Environment +// Module: Lean.Util.FoldConsts +// Imports: Init.Control.Option Lean.Expr Lean.Environment #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -934,20 +934,20 @@ return x_8; } } lean_object* initialize_Init_Control_Option(lean_object*); -lean_object* initialize_Init_Lean_Expr(lean_object*); -lean_object* initialize_Init_Lean_Environment(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_FoldConsts(lean_object* w) { +lean_object* initialize_Lean_Util_FoldConsts(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_Control_Option(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Expr_FoldConstsImpl_cacheSize = _init_l_Lean_Expr_FoldConstsImpl_cacheSize(); diff --git a/stage0/stdlib/Init/Lean/Util/MonadCache.c b/stage0/stdlib/Lean/Util/MonadCache.c similarity index 99% rename from stage0/stdlib/Init/Lean/Util/MonadCache.c rename to stage0/stdlib/Lean/Util/MonadCache.c index 2c67a10cf9..b34114a39e 100644 --- a/stage0/stdlib/Init/Lean/Util/MonadCache.c +++ b/stage0/stdlib/Lean/Util/MonadCache.c @@ -1,5 +1,5 @@ // Lean compiler output -// Module: Init.Lean.Util.MonadCache +// Module: Lean.Util.MonadCache // Imports: Init.Control.Reader Init.Control.EState Init.Data.HashMap #include #if defined(__clang__) @@ -1019,7 +1019,7 @@ lean_object* initialize_Init_Control_Reader(lean_object*); lean_object* initialize_Init_Control_EState(lean_object*); lean_object* initialize_Init_Data_HashMap(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_MonadCache(lean_object* w) { +lean_object* initialize_Lean_Util_MonadCache(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; diff --git a/stage0/stdlib/Init/Lean/Util/PPExt.c b/stage0/stdlib/Lean/Util/PPExt.c similarity index 96% rename from stage0/stdlib/Init/Lean/Util/PPExt.c rename to stage0/stdlib/Lean/Util/PPExt.c index c371adb7c0..c5080321ca 100644 --- a/stage0/stdlib/Init/Lean/Util/PPExt.c +++ b/stage0/stdlib/Lean/Util/PPExt.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.PPExt -// Imports: Init.Lean.Environment Init.Lean.MetavarContext +// Module: Lean.Util.PPExt +// Imports: Lean.Environment Lean.MetavarContext #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -31,12 +31,12 @@ lean_object* l_Lean_ppExprExt___elambda__2(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_IO_Error_Inhabited___closed__1; lean_object* lean_expr_dbg_to_string(lean_object*); -extern lean_object* l___private_Init_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_ppExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_IO_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ppExprExt___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ppExprExt___closed__2; lean_object* l_Lean_ppOldOption___closed__2; +extern lean_object* l___private_Lean_Environment_5__envExtensionsRef; lean_object* l_Lean_mkPPExprFnRef(lean_object*); lean_object* l_Lean_ppOld___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerEnvExtensionUnsafe___at_Lean_mkPPExprFnExtension___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -144,7 +144,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 1); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Init_Lean_Environment_5__envExtensionsRef; +x_13 = l___private_Lean_Environment_5__envExtensionsRef; x_14 = lean_io_ref_get(x_13, x_12); if (lean_obj_tag(x_14) == 0) { @@ -508,17 +508,17 @@ x_4 = lean_register_option(x_2, x_3, x_1); return x_4; } } -lean_object* initialize_Init_Lean_Environment(lean_object*); -lean_object* initialize_Init_Lean_MetavarContext(lean_object*); +lean_object* initialize_Lean_Environment(lean_object*); +lean_object* initialize_Lean_MetavarContext(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_PPExt(lean_object* w) { +lean_object* initialize_Lean_Util_PPExt(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Environment(lean_io_mk_world()); +res = initialize_Lean_Environment(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_MetavarContext(lean_io_mk_world()); +res = initialize_Lean_MetavarContext(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_mkPPExprFnRef___closed__1 = _init_l_Lean_mkPPExprFnRef___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Util/PPGoal.c b/stage0/stdlib/Lean/Util/PPGoal.c similarity index 99% rename from stage0/stdlib/Init/Lean/Util/PPGoal.c rename to stage0/stdlib/Lean/Util/PPGoal.c index 1d22db3f8d..c28e24301b 100644 --- a/stage0/stdlib/Init/Lean/Util/PPGoal.c +++ b/stage0/stdlib/Lean/Util/PPGoal.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.PPGoal -// Imports: Init.Lean.Util.PPExt +// Module: Lean.Util.PPGoal +// Imports: Lean.Util.PPExt #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -4332,13 +4332,13 @@ lean_dec(x_5); return x_7; } } -lean_object* initialize_Init_Lean_Util_PPExt(lean_object*); +lean_object* initialize_Lean_Util_PPExt(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_PPGoal(lean_object* w) { +lean_object* initialize_Lean_Util_PPGoal(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Util_PPExt(lean_io_mk_world()); +res = initialize_Lean_Util_PPExt(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Array_iterateMAux___main___at_Lean_ppGoal___spec__6___closed__1 = _init_l_Array_iterateMAux___main___at_Lean_ppGoal___spec__6___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Util/Path.c b/stage0/stdlib/Lean/Util/Path.c similarity index 98% rename from stage0/stdlib/Init/Lean/Util/Path.c rename to stage0/stdlib/Lean/Util/Path.c index 8bff9c13f6..74bce2339f 100644 --- a/stage0/stdlib/Init/Lean/Util/Path.c +++ b/stage0/stdlib/Lean/Util/Path.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.Path -// Imports: Init.System.IO Init.System.FilePath Init.Data.Array Init.Data.List.Control Init.Data.HashMap Init.Data.Nat.Control Init.Lean.Data.Name +// Module: Lean.Util.Path +// Imports: Init.System.IO Init.System.FilePath Init.Data.Array Init.Data.List.Control Init.Data.HashMap Init.Data.Nat.Control Lean.Data.Name #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,6 +18,7 @@ lean_object* l_HashMapImp_moveEntries___main___at_Lean_parseSearchPath___spec__4 lean_object* l_HashMapImp_expand___at_Lean_parseSearchPath___spec__3(lean_object*, lean_object*); lean_object* l_String_revPosOf(lean_object*, uint32_t); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* l___private_Lean_Util_Path_1__pathSep; lean_object* l_Lean_searchPathRef; lean_object* l_HashMapImp_find_x3f___at_Lean_findOLean___spec__1(lean_object*, lean_object*); lean_object* l___private_Init_Util_1__mkPanicMessage(lean_object*, lean_object*, lean_object*, lean_object*); @@ -66,7 +67,6 @@ uint32_t lean_string_utf8_get(lean_object*, lean_object*); lean_object* lean_module_name_of_file(lean_object*, lean_object*); lean_object* l_IO_appDir___at_Lean_getBuiltinSearchPath___spec__1(lean_object*); lean_object* l_String_split___at_System_FilePath_splitSearchPath___spec__2(lean_object*); -lean_object* l___private_Init_Lean_Util_Path_1__pathSep; size_t lean_usize_modn(size_t, lean_object*); lean_object* l_Lean_realPathNormalized(lean_object*, lean_object*); lean_object* l_mkHashMapImp___rarg(lean_object*); @@ -116,7 +116,7 @@ lean_object* l_IO_realPath___at_Lean_realPathNormalized___spec__1(lean_object*, uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); uint8_t l_AssocList_contains___main___at_Lean_parseSearchPath___spec__2(lean_object*, lean_object*); -lean_object* _init_l___private_Init_Lean_Util_Path_1__pathSep() { +lean_object* _init_l___private_Lean_Util_Path_1__pathSep() { _start: { lean_object* x_1; @@ -821,7 +821,7 @@ if (x_3 == 0) { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_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; x_4 = lean_ctor_get(x_2, 0); -x_5 = l___private_Init_Lean_Util_Path_1__pathSep; +x_5 = l___private_Lean_Util_Path_1__pathSep; x_6 = lean_string_append(x_4, x_5); x_7 = l_Lean_getBuiltinSearchPath___closed__1; x_8 = lean_string_append(x_6, x_7); @@ -855,7 +855,7 @@ x_27 = lean_ctor_get(x_2, 1); lean_inc(x_27); lean_inc(x_26); lean_dec(x_2); -x_28 = l___private_Init_Lean_Util_Path_1__pathSep; +x_28 = l___private_Lean_Util_Path_1__pathSep; x_29 = lean_string_append(x_26, x_28); x_30 = l_Lean_getBuiltinSearchPath___closed__1; x_31 = lean_string_append(x_29, x_30); @@ -1131,7 +1131,7 @@ lean_object* _init_l_Lean_modPathToFilePath___main___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Init.Lean.Util.Path"); +x_1 = lean_mk_string("Lean.Util.Path"); return x_1; } } @@ -1171,7 +1171,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_obj x_3 = lean_ctor_get(x_1, 0); x_4 = lean_ctor_get(x_1, 1); x_5 = l_Lean_modPathToFilePath___main(x_3); -x_6 = l___private_Init_Lean_Util_Path_1__pathSep; +x_6 = l___private_Lean_Util_Path_1__pathSep; x_7 = lean_string_append(x_5, x_6); x_8 = lean_string_append(x_7, x_4); return x_8; @@ -1723,7 +1723,7 @@ lean_dec(x_24); x_32 = lean_string_utf8_extract(x_15, x_16, x_31); lean_dec(x_31); lean_dec(x_15); -x_33 = l___private_Init_Lean_Util_Path_1__pathSep; +x_33 = l___private_Lean_Util_Path_1__pathSep; x_34 = l_String_splitOn(x_32, x_33); x_35 = lean_box(0); x_36 = l_List_foldl___main___at_Lean_moduleNameOfFileName___spec__2(x_35, x_34); @@ -1805,7 +1805,7 @@ lean_dec(x_50); x_58 = lean_string_utf8_extract(x_48, x_16, x_57); lean_dec(x_57); lean_dec(x_48); -x_59 = l___private_Init_Lean_Util_Path_1__pathSep; +x_59 = l___private_Lean_Util_Path_1__pathSep; x_60 = l_String_splitOn(x_58, x_59); x_61 = lean_box(0); x_62 = l_List_foldl___main___at_Lean_moduleNameOfFileName___spec__2(x_61, x_60); @@ -1927,9 +1927,9 @@ lean_object* initialize_Init_Data_Array(lean_object*); lean_object* initialize_Init_Data_List_Control(lean_object*); lean_object* initialize_Init_Data_HashMap(lean_object*); lean_object* initialize_Init_Data_Nat_Control(lean_object*); -lean_object* initialize_Init_Lean_Data_Name(lean_object*); +lean_object* initialize_Lean_Data_Name(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_Path(lean_object* w) { +lean_object* initialize_Lean_Util_Path(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; @@ -1951,11 +1951,11 @@ lean_dec_ref(res); res = initialize_Init_Data_Nat_Control(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Name(lean_io_mk_world()); +res = initialize_Lean_Data_Name(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Util_Path_1__pathSep = _init_l___private_Init_Lean_Util_Path_1__pathSep(); -lean_mark_persistent(l___private_Init_Lean_Util_Path_1__pathSep); +l___private_Lean_Util_Path_1__pathSep = _init_l___private_Lean_Util_Path_1__pathSep(); +lean_mark_persistent(l___private_Lean_Util_Path_1__pathSep); l_Lean_mkSearchPathRef___closed__1 = _init_l_Lean_mkSearchPathRef___closed__1(); lean_mark_persistent(l_Lean_mkSearchPathRef___closed__1); res = l_Lean_mkSearchPathRef(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Util/Profile.c b/stage0/stdlib/Lean/Util/Profile.c similarity index 89% rename from stage0/stdlib/Init/Lean/Util/Profile.c rename to stage0/stdlib/Lean/Util/Profile.c index d938ced668..c9a012836c 100644 --- a/stage0/stdlib/Init/Lean/Util/Profile.c +++ b/stage0/stdlib/Lean/Util/Profile.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.Profile -// Imports: Init.System.IO Init.Lean.Data.Position +// Module: Lean.Util.Profile +// Imports: Init.System.IO Lean.Data.Position #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -58,16 +58,16 @@ return x_5; } } lean_object* initialize_Init_System_IO(lean_object*); -lean_object* initialize_Init_Lean_Data_Position(lean_object*); +lean_object* initialize_Lean_Data_Position(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_Profile(lean_object* w) { +lean_object* initialize_Lean_Util_Profile(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; res = initialize_Init_System_IO(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Data_Position(lean_io_mk_world()); +res = initialize_Lean_Data_Position(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_mk_io_result(lean_box(0)); diff --git a/stage0/stdlib/Init/Lean/Util/RecDepth.c b/stage0/stdlib/Lean/Util/RecDepth.c similarity index 95% rename from stage0/stdlib/Init/Lean/Util/RecDepth.c rename to stage0/stdlib/Lean/Util/RecDepth.c index df05087817..b9d3784d98 100644 --- a/stage0/stdlib/Init/Lean/Util/RecDepth.c +++ b/stage0/stdlib/Lean/Util/RecDepth.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.RecDepth -// Imports: Init.Lean.Data.Options +// Module: Lean.Util.RecDepth +// Imports: Lean.Data.Options #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -131,13 +131,13 @@ x_1 = l_Lean_maxRecDepthErrorMessage___closed__1; return x_1; } } -lean_object* initialize_Init_Lean_Data_Options(lean_object*); +lean_object* initialize_Lean_Data_Options(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_RecDepth(lean_object* w) { +lean_object* initialize_Lean_Util_RecDepth(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Data_Options(lean_io_mk_world()); +res = initialize_Lean_Data_Options(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_defaultMaxRecDepth = _init_l_Lean_defaultMaxRecDepth(); diff --git a/stage0/stdlib/Init/Lean/Util/Recognizers.c b/stage0/stdlib/Lean/Util/Recognizers.c similarity index 98% rename from stage0/stdlib/Init/Lean/Util/Recognizers.c rename to stage0/stdlib/Lean/Util/Recognizers.c index 15153d0015..c0517d9056 100644 --- a/stage0/stdlib/Init/Lean/Util/Recognizers.c +++ b/stage0/stdlib/Lean/Util/Recognizers.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.Recognizers -// Imports: Init.Lean.Expr +// Module: Lean.Util.Recognizers +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -707,13 +707,13 @@ lean_dec(x_1); return x_2; } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_Recognizers(lean_object* w) { +lean_object* initialize_Lean_Util_Recognizers(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Expr_eq_x3f___closed__1 = _init_l_Lean_Expr_eq_x3f___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Util/ReplaceExpr.c b/stage0/stdlib/Lean/Util/ReplaceExpr.c similarity index 99% rename from stage0/stdlib/Init/Lean/Util/ReplaceExpr.c rename to stage0/stdlib/Lean/Util/ReplaceExpr.c index 193ffc20b6..c89435ec86 100644 --- a/stage0/stdlib/Init/Lean/Util/ReplaceExpr.c +++ b/stage0/stdlib/Lean/Util/ReplaceExpr.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.ReplaceExpr -// Imports: Init.Lean.Expr +// Module: Lean.Util.ReplaceExpr +// Imports: Lean.Expr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -771,13 +771,13 @@ x_3 = l_Lean_Expr_replace___main(x_1, x_2); return x_3; } } -lean_object* initialize_Init_Lean_Expr(lean_object*); +lean_object* initialize_Lean_Expr(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_ReplaceExpr(lean_object* w) { +lean_object* initialize_Lean_Util_ReplaceExpr(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Expr(lean_io_mk_world()); +res = initialize_Lean_Expr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Expr_ReplaceImpl_cacheSize = _init_l_Lean_Expr_ReplaceImpl_cacheSize(); diff --git a/stage0/stdlib/Init/Lean/Util/Sorry.c b/stage0/stdlib/Lean/Util/Sorry.c similarity index 98% rename from stage0/stdlib/Init/Lean/Util/Sorry.c rename to stage0/stdlib/Lean/Util/Sorry.c index 6a68228dc2..d0053e7925 100644 --- a/stage0/stdlib/Init/Lean/Util/Sorry.c +++ b/stage0/stdlib/Lean/Util/Sorry.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.Sorry -// Imports: Init.Lean.Message +// Module: Lean.Util.Sorry +// Imports: Lean.Message #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -888,13 +888,13 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* initialize_Init_Lean_Message(lean_object*); +lean_object* initialize_Lean_Message(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_Sorry(lean_object* w) { +lean_object* initialize_Lean_Util_Sorry(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Message(lean_io_mk_world()); +res = initialize_Lean_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Expr_isSorry___closed__1 = _init_l_Lean_Expr_isSorry___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Util/Trace.c b/stage0/stdlib/Lean/Util/Trace.c similarity index 86% rename from stage0/stdlib/Init/Lean/Util/Trace.c rename to stage0/stdlib/Lean/Util/Trace.c index 433e05f23d..c06758c487 100644 --- a/stage0/stdlib/Init/Lean/Util/Trace.c +++ b/stage0/stdlib/Lean/Util/Trace.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.Trace -// Imports: Init.Lean.Message +// Module: Lean.Util.Trace +// Imports: Lean.Message #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,9 +15,7 @@ extern "C" { #endif lean_object* l_Lean_SimpleMonadTracerAdapter_enableTracing___rarg___lambda__2(lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l_Lean_monadTracerAdapter___rarg(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux(lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); -lean_object* l_PersistentArray_getAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_liftMonadTracerAdapter___rarg___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_liftMonadTracerAdapter___rarg___lambda__3(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_SimpleMonadTracerAdapter_enableTracing___rarg(lean_object*, lean_object*, uint8_t); @@ -27,6 +25,7 @@ lean_object* l_Lean_SimpleMonadTracerAdapter_setTrace___boxed(lean_object*, lean lean_object* l_Lean_registerTraceClass___closed__1; lean_object* l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__1(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_monadTracerAdapterExcept___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___rarg(lean_object*, lean_object*, lean_object*); size_t l_USize_sub(size_t, size_t); lean_object* l_Lean_TraceState_HasToString___closed__1; uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); @@ -41,23 +40,22 @@ lean_object* l_Lean_MessageData_formatAux___main(lean_object*, lean_object*); lean_object* l_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_trace___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_liftMonadTracerAdapter___rarg___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces(lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___rarg___lambda__2(lean_object*, lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_get_x21___at___private_Lean_Util_Trace_4__toFormat___spec__1(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_fmt___at_Lean_TraceState_HasToString___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg(lean_object*, lean_object*); -lean_object* l_PersistentArray_get_x21___at___private_Init_Lean_Util_Trace_4__toFormat___spec__1(lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_modifyTraces___rarg(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_2__addNode___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_PersistentArray_getAux___main___rarg___closed__1; lean_object* l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Util_Trace_1__checkTraceOptionAux(lean_object*, lean_object*); lean_object* l_Lean_TraceState_HasToString___closed__2; lean_object* l_Lean_liftMonadTracerAdapter___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1___boxed(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_isTracingEnabledFor___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_setTraceState___rarg(lean_object*, lean_object*); @@ -68,75 +66,78 @@ lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); uint8_t l_Lean_KVMap_getBool(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_monadTracerAdapterExcept(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___rarg(lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_modifyTraces(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_isTracingEnabledFor___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass___closed__2; -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1(lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_2__addNode___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_modifyTraces___rarg___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_monadTracerAdapter(lean_object*); lean_object* l_Lean_MonadTracerAdapter_trace___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1; lean_object* l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux___main(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_liftMonadTracerAdapter___rarg(lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_getTraces___rarg(lean_object*, lean_object*); extern lean_object* l_PersistentArray_empty___closed__3; lean_object* l_Lean_SimpleMonadTracerAdapter_setTraceState___boxed(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_1__checkTraceOptionAux___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_2__addNode(lean_object*, lean_object*); lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); size_t l_USize_shiftLeft(size_t, size_t); lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); uint8_t l_Lean_KVMap_contains(lean_object*, lean_object*); lean_object* l_Lean_simpleMonadTracerAdapter(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___boxed(lean_object*, lean_object*); +lean_object* l_PersistentArray_get_x21___at___private_Lean_Util_Trace_4__toFormat___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_PersistentArray_getAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); size_t l_USize_land(size_t, size_t); lean_object* l_Lean_MonadTracerAdapter_trace___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_get_x21___at___private_Init_Lean_Util_Trace_4__toFormat___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1(lean_object*); extern lean_object* l_Lean_HasRepr___closed__1; lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__1(lean_object*, lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces(lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1; +lean_object* l___private_Lean_Util_Trace_2__addNode___boxed(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceM(lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_setTraceState(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1___boxed(lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_enableTracing___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_2__addNode___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_isTracingEnabledFor(lean_object*); lean_object* l_Lean_checkTraceOption___boxed(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_addTrace(lean_object*); lean_object* l_Lean_checkTraceOption___closed__1; -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM(lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_getTraces(lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_enableTracing___rarg___lambda__1(uint8_t, lean_object*); lean_object* l_Lean_simpleMonadTracerAdapter___rarg(lean_object*, lean_object*); lean_object* l_Lean_TraceState_Inhabited___closed__1; +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_foldAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentArray_getAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__2(lean_object*, size_t, size_t); +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_TraceState_Lean_HasFormat(lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_setTrace(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_4__toFormat(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentArray_getAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__2(lean_object*, size_t, size_t); -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_liftMonadTracerAdapter___rarg___lambda__4(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux___boxed(lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_2__addNode(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_Trace_1__checkTraceOptionAux___main___boxed(lean_object*, lean_object*); +uint8_t l___private_Lean_Util_Trace_1__checkTraceOptionAux___main(lean_object*, lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux___main___boxed(lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM(lean_object*); lean_object* l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_modifyTraces___boxed(lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_enableTracing___rarg___lambda__1___boxed(lean_object*, lean_object*); @@ -151,9 +152,8 @@ lean_object* l_Lean_liftMonadTracerAdapter(lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_enableTracing___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentArray_toArray___rarg(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_Trace_4__toFormat(lean_object*, lean_object*); lean_object* l_Lean_SimpleMonadTracerAdapter_isTracingEnabledFor___rarg(lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux___main(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Util_Trace_1__checkTraceOptionAux___main(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 1) @@ -191,30 +191,30 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux___main___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Util_Trace_1__checkTraceOptionAux___main___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux___main(x_1, x_2); +x_3 = l___private_Lean_Util_Trace_1__checkTraceOptionAux___main(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -uint8_t l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Util_Trace_1__checkTraceOptionAux(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; -x_3 = l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux___main(x_1, x_2); +x_3 = l___private_Lean_Util_Trace_1__checkTraceOptionAux___main(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Util_Trace_1__checkTraceOptionAux___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux(x_1, x_2); +x_3 = l___private_Lean_Util_Trace_1__checkTraceOptionAux(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); @@ -249,7 +249,7 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; uint8_t x_6; x_4 = l_Lean_checkTraceOption___closed__2; x_5 = l_Lean_Name_append___main(x_4, x_2); -x_6 = l___private_Init_Lean_Util_Trace_1__checkTraceOptionAux___main(x_1, x_5); +x_6 = l___private_Lean_Util_Trace_1__checkTraceOptionAux___main(x_1, x_5); lean_dec(x_5); return x_6; } @@ -272,7 +272,7 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_2__addNode___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; @@ -286,47 +286,47 @@ x_7 = l_PersistentArray_push___rarg(x_2, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_2__addNode___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; x_4 = lean_ctor_get(x_1, 4); lean_inc(x_4); lean_dec(x_1); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_2__addNode___rarg___lambda__1___boxed), 3, 2); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_2__addNode___rarg___lambda__1___boxed), 3, 2); lean_closure_set(x_5, 0, x_3); lean_closure_set(x_5, 1, x_2); x_6 = lean_apply_1(x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Util_Trace_2__addNode(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_2__addNode___rarg), 3, 0); +x_3 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_2__addNode___rarg), 3, 0); return x_3; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_2__addNode___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Util_Trace_2__addNode___rarg___lambda__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Util_Trace_2__addNode___rarg___lambda__1(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Util_Trace_2__addNode___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Util_Trace_2__addNode___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Util_Trace_2__addNode(x_1, x_2); +x_3 = l___private_Lean_Util_Trace_2__addNode(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1(lean_object* x_1) { _start: { lean_object* x_2; @@ -334,15 +334,15 @@ x_2 = l_PersistentArray_empty___closed__3; return x_2; } } -lean_object* _init_l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1() { +lean_object* _init_l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1___boxed), 1, 0); return x_1; } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -354,7 +354,7 @@ lean_inc(x_5); x_6 = lean_ctor_get(x_2, 4); lean_inc(x_6); lean_dec(x_2); -x_7 = l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1; +x_7 = l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1; x_8 = lean_apply_1(x_6, x_7); x_9 = lean_ctor_get(x_4, 1); lean_inc(x_9); @@ -364,7 +364,7 @@ x_11 = lean_apply_3(x_5, lean_box(0), x_8, x_10); return x_11; } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -372,26 +372,26 @@ x_3 = lean_ctor_get(x_1, 1); lean_inc(x_3); x_4 = lean_ctor_get(x_2, 3); lean_inc(x_4); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2), 3, 2); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2), 3, 2); lean_closure_set(x_5, 0, x_1); lean_closure_set(x_5, 1, x_2); x_6 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_4, x_5); return x_6; } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_3__getResetTraces___rarg), 2, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1(x_1); +x_2 = l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__1(x_1); lean_dec(x_1); return x_2; } @@ -634,7 +634,7 @@ lean_inc(x_6); lean_dec(x_1); x_7 = lean_ctor_get(x_6, 4); lean_inc(x_7); -x_8 = l___private_Init_Lean_Util_Trace_2__addNode___rarg(x_2, x_3, x_4); +x_8 = l___private_Lean_Util_Trace_2__addNode___rarg(x_2, x_3, x_4); x_9 = lean_ctor_get(x_6, 1); lean_inc(x_9); lean_dec(x_6); @@ -684,7 +684,7 @@ else lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_inc(x_1); lean_inc(x_2); -x_13 = l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg(x_2, x_1); +x_13 = l___private_Lean_Util_Trace_3__getResetTraces___rarg(x_2, x_1); lean_inc(x_3); x_14 = lean_alloc_closure((void*)(l_Lean_MonadTracerAdapter_traceCtx___rarg___lambda__5), 6, 5); lean_closure_set(x_14, 0, x_2); @@ -826,7 +826,7 @@ lean_dec(x_1); x_8 = lean_ctor_get(x_7, 4); lean_inc(x_8); lean_dec(x_7); -x_9 = l___private_Init_Lean_Util_Trace_2__addNode___rarg(x_2, x_3, x_4); +x_9 = l___private_Lean_Util_Trace_2__addNode___rarg(x_2, x_3, x_4); x_10 = lean_ctor_get(x_5, 0); lean_inc(x_10); lean_dec(x_5); @@ -890,7 +890,7 @@ else lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_inc(x_1); lean_inc(x_3); -x_14 = l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg(x_3, x_1); +x_14 = l___private_Lean_Util_Trace_3__getResetTraces___rarg(x_3, x_1); lean_inc(x_4); x_15 = lean_alloc_closure((void*)(l_Lean_MonadTracerAdapter_traceCtxExcept___rarg___lambda__5), 7, 6); lean_closure_set(x_15, 0, x_2); @@ -1161,7 +1161,7 @@ x_1 = l_Lean_TraceState_Inhabited___closed__1; return x_1; } } -lean_object* l_PersistentArray_getAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__2(lean_object* x_1, size_t x_2, size_t x_3) { +lean_object* l_PersistentArray_getAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__2(lean_object* x_1, size_t x_2, size_t x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1202,7 +1202,7 @@ return x_19; } } } -lean_object* l_PersistentArray_get_x21___at___private_Init_Lean_Util_Trace_4__toFormat___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_get_x21___at___private_Lean_Util_Trace_4__toFormat___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -1218,7 +1218,7 @@ lean_inc(x_5); x_6 = lean_usize_of_nat(x_2); x_7 = lean_ctor_get_usize(x_1, 4); lean_dec(x_1); -x_8 = l_PersistentArray_getAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__2(x_5, x_6, x_7); +x_8 = l_PersistentArray_getAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__2(x_5, x_6, x_7); return x_8; } else @@ -1237,7 +1237,7 @@ return x_12; } } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Nat_foldAux___main___at___private_Lean_Util_Trace_4__toFormat___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; @@ -1251,7 +1251,7 @@ x_9 = lean_nat_sub(x_4, x_8); x_10 = lean_nat_sub(x_3, x_4); lean_dec(x_4); lean_inc(x_1); -x_11 = l_PersistentArray_get_x21___at___private_Init_Lean_Util_Trace_4__toFormat___spec__1(x_1, x_10); +x_11 = l_PersistentArray_get_x21___at___private_Lean_Util_Trace_4__toFormat___spec__1(x_1, x_10); x_12 = lean_box(0); x_13 = l_Lean_MessageData_formatAux___main(x_12, x_11); x_14 = lean_nat_dec_lt(x_6, x_10); @@ -1295,7 +1295,7 @@ return x_5; } } } -lean_object* l___private_Init_Lean_Util_Trace_4__toFormat(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Util_Trace_4__toFormat(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -1303,12 +1303,12 @@ x_3 = lean_ctor_get(x_1, 2); lean_inc(x_3); x_4 = lean_box(0); lean_inc(x_3); -x_5 = l_Nat_foldAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__3(x_1, x_2, x_3, x_3, x_4); +x_5 = l_Nat_foldAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__3(x_1, x_2, x_3, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l_PersistentArray_getAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_PersistentArray_getAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__2___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; @@ -1316,24 +1316,24 @@ x_4 = lean_unbox_usize(x_2); lean_dec(x_2); x_5 = lean_unbox_usize(x_3); lean_dec(x_3); -x_6 = l_PersistentArray_getAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__2(x_1, x_4, x_5); +x_6 = l_PersistentArray_getAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__2(x_1, x_4, x_5); return x_6; } } -lean_object* l_PersistentArray_get_x21___at___private_Init_Lean_Util_Trace_4__toFormat___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_PersistentArray_get_x21___at___private_Lean_Util_Trace_4__toFormat___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_PersistentArray_get_x21___at___private_Init_Lean_Util_Trace_4__toFormat___spec__1(x_1, x_2); +x_3 = l_PersistentArray_get_x21___at___private_Lean_Util_Trace_4__toFormat___spec__1(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Nat_foldAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___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* l_Nat_foldAux___main___at___private_Lean_Util_Trace_4__toFormat___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_Nat_foldAux___main___at___private_Init_Lean_Util_Trace_4__toFormat___spec__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Nat_foldAux___main___at___private_Lean_Util_Trace_4__toFormat___spec__3(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); return x_6; } @@ -1346,7 +1346,7 @@ x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); lean_dec(x_1); x_3 = lean_box(1); -x_4 = l___private_Init_Lean_Util_Trace_4__toFormat(x_2, x_3); +x_4 = l___private_Lean_Util_Trace_4__toFormat(x_2, x_3); return x_4; } } @@ -1358,7 +1358,7 @@ x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); lean_dec(x_1); x_3 = lean_box(1); -x_4 = l___private_Init_Lean_Util_Trace_4__toFormat(x_2, x_3); +x_4 = l___private_Lean_Util_Trace_4__toFormat(x_2, x_3); return x_4; } } @@ -1390,7 +1390,7 @@ x_1 = l_Lean_TraceState_HasToString___closed__2; return x_1; } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -1406,7 +1406,7 @@ x_8 = lean_apply_2(x_5, lean_box(0), x_7); return x_8; } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___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; @@ -1415,26 +1415,26 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_2, 0); lean_inc(x_5); lean_dec(x_2); -x_6 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1___boxed), 3, 2); +x_6 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1___boxed), 3, 2); lean_closure_set(x_6, 0, x_1); lean_closure_set(x_6, 1, x_3); x_7 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM(lean_object* x_1) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_5__checkTraceOptionM___rarg), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Util_Trace_5__checkTraceOptionM___rarg___lambda__1(x_1, x_2, x_3); lean_dec(x_3); return x_4; } @@ -1463,7 +1463,7 @@ return x_10; else { lean_object* x_11; -x_11 = l___private_Init_Lean_Util_Trace_5__checkTraceOptionM___rarg(x_1, x_2, x_3); +x_11 = l___private_Lean_Util_Trace_5__checkTraceOptionM___rarg(x_1, x_2, x_3); return x_11; } } @@ -1849,21 +1849,21 @@ x_6 = lean_register_option(x_4, x_5, x_2); return x_6; } } -lean_object* initialize_Init_Lean_Message(lean_object*); +lean_object* initialize_Lean_Message(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_Trace(lean_object* w) { +lean_object* initialize_Lean_Util_Trace(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_Message(lean_io_mk_world()); +res = initialize_Lean_Message(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_checkTraceOption___closed__1 = _init_l_Lean_checkTraceOption___closed__1(); lean_mark_persistent(l_Lean_checkTraceOption___closed__1); l_Lean_checkTraceOption___closed__2 = _init_l_Lean_checkTraceOption___closed__2(); lean_mark_persistent(l_Lean_checkTraceOption___closed__2); -l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1 = _init_l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1); +l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1 = _init_l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Util_Trace_3__getResetTraces___rarg___lambda__2___closed__1); l_Lean_TraceState_Inhabited___closed__1 = _init_l_Lean_TraceState_Inhabited___closed__1(); lean_mark_persistent(l_Lean_TraceState_Inhabited___closed__1); l_Lean_TraceState_Inhabited = _init_l_Lean_TraceState_Inhabited(); diff --git a/stage0/stdlib/Init/Lean/Util/WHNF.c b/stage0/stdlib/Lean/Util/WHNF.c similarity index 85% rename from stage0/stdlib/Init/Lean/Util/WHNF.c rename to stage0/stdlib/Lean/Util/WHNF.c index e00c45c6b4..7d6f12672c 100644 --- a/stage0/stdlib/Init/Lean/Util/WHNF.c +++ b/stage0/stdlib/Lean/Util/WHNF.c @@ -1,6 +1,6 @@ // Lean compiler output -// Module: Init.Lean.Util.WHNF -// Imports: Init.Lean.ToExpr Init.Lean.Declaration Init.Lean.LocalContext +// Module: Lean.Util.WHNF +// Imports: Lean.ToExpr Lean.Declaration Lean.LocalContext #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,186 +14,186 @@ extern "C" { #endif lean_object* lean_string_data(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition(lean_object*); lean_object* l_Lean_WHNF_reduceQuotRec___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_3__getRecRuleFor___boxed(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_getStuckMVar_x3f___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceRec___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor(lean_object*); lean_object* l_Lean_WHNF_matchConstAux___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_6__extractIdRhs(lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit___closed__7; lean_object* lean_mk_empty_array_with_capacity(lean_object*); +lean_object* l___private_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unreachable_x21___rarg(lean_object*); lean_object* l_Lean_WHNF_matchConstAux(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_optionToExpr___rarg___lambda__1___closed__4; -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_WHNF_toCtorIfLit___closed__1; uint8_t lean_name_eq(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg___closed__4; +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK(lean_object*); lean_object* l_Lean_WHNF_whnfMain___main(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor(lean_object*); +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition(lean_object*); +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_getStuckMVar_x3f___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceQuotRec___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit___closed__5; +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Util_WHNF_5__isIdRhsApp(lean_object*); extern lean_object* l_Lean_Substring_HasQuote___closed__2; +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit___closed__3; +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_isRecStuck_x3f___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main(lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_List_find_x3f___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_getStuckMVar_x3f(lean_object*); lean_object* l_Lean_Expr_getAppFn___main(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAppArgs___closed__1; lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_smartUnfoldingSuffix___closed__1; +lean_object* l___private_Lean_Util_WHNF_3__getRecRuleFor(lean_object*, lean_object*); extern lean_object* l_Id_monad; lean_object* l_Lean_WHNF_whnfCore___main___rarg___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* l_Lean_WHNF_getStuckMVar_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_3__getRecRuleFor(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Expr_hasExprMVar___boxed(lean_object*); +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main(lean_object*); lean_object* l_Lean_WHNF_reduceQuotRec___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit(lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit___closed__6; lean_object* l_Lean_Expr_getAppNumArgsAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_3__getRecRuleFor___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_RecursorVal_getMajorIdx(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck(lean_object*); +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__7; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_List_toExprAux___main___at_Lean_WHNF_toCtorIfLit___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceQuotRec___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux(lean_object*); extern lean_object* l_Lean_charToExpr___lambda__1___closed__5; -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_shrink___main___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1; lean_object* l_Lean_WHNF_toCtorIfLit___closed__8; uint8_t l_Lean_Expr_hasExprMVar(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceRec___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_6__extractIdRhs(lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit___closed__2; lean_object* l_Lean_Expr_instantiateLevelParams(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_name(lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor(lean_object*); +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_getStuckMVar_x3f___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfMain(lean_object*); +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mreplace___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore(lean_object*); uint8_t l_Lean_ConstantInfo_hasValue(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit___closed__13; lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit___closed__4; +lean_object* l___private_Lean_Util_WHNF_3__getRecRuleFor___lambda__1___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Literal_type___closed__2; lean_object* l_Lean_WHNF_isRecStuck_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__2; lean_object* l_Lean_WHNF_toCtorIfLit___closed__9; extern lean_object* l_Lean_charToExpr___lambda__1___closed__2; uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Expr_3__getAppArgsAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Syntax_8__quoteList___main___rarg___closed__7; +lean_object* l___private_Lean_Util_WHNF_3__getRecRuleFor___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_smartUnfoldingSuffix; uint8_t l_Lean_Expr_isLambda(lean_object*); lean_object* l_Lean_WHNF_whnfMain___main___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Util_WHNF_5__isIdRhsApp(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__1; lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_RecursorVal_getInduct(lean_object*); lean_object* l_Lean_WHNF_matchConstAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_value_x3f(lean_object*); lean_object* l_Lean_ConstantInfo_lparams(lean_object*); +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___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_object* l_Lean_WHNF_toCtorIfLit___closed__10; -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__2; lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Prod_hasQuote___rarg___closed__3; -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1; +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition(lean_object*); lean_object* lean_instantiate_value_lparams(lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceRec___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_5__isIdRhsApp___boxed(lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceQuotRec(lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit___closed__11; -lean_object* l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition(lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___boxed(lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__1; lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*); -uint8_t l___private_Init_Lean_Util_WHNF_3__getRecRuleFor___lambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_reduceRec(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__2(lean_object*, lean_object*); lean_object* l_Lean_Expr_updateFn___main(lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___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* l_Lean_WHNF_whnfEasyCases___main___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Util_WHNF_3__getRecRuleFor___lambda__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_WHNF_isQuotRecStuck_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_isQuotRecStuck_x3f___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Expr_2__mkAppRangeAux___main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_mkSmartUnfoldingNameFor(lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_toCtorIfLit___closed__12; +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); extern lean_object* l_Lean_Expr_Inhabited; lean_object* l_Lean_WHNF_whnfEasyCases(lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___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_object*, lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_WHNF_whnfMain___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_isQuotRecStuck_x3f(lean_object*); lean_object* l_Lean_WHNF_isRecStuck_x3f(lean_object*); lean_object* l_Lean_WHNF_whnfMain___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK(lean_object*); -extern lean_object* l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__4; +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__4(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor(lean_object*); lean_object* l_Lean_mkNatLit(lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck(lean_object*); lean_object* l_Lean_WHNF_whnfMain___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main(lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArgD___main(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfCore___main___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_List_toExprAux___main___at_Lean_WHNF_toCtorIfLit___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* lean_uint32_to_nat(uint32_t); lean_object* l_Lean_WHNF_reduceRec___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_object*, lean_object*); lean_object* l_Lean_WHNF_reduceQuotRec___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___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_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyRangeMAux___main___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_WHNF_whnfEasyCases___main(lean_object*); @@ -292,7 +292,7 @@ x_3 = lean_alloc_closure((void*)(l_Lean_WHNF_matchConstAux___rarg), 5, 0); return x_3; } } -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -421,7 +421,7 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor___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; @@ -429,31 +429,31 @@ x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); x_5 = lean_apply_1(x_2, x_3); lean_inc(x_1); -x_6 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1___boxed), 3, 2); +x_6 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1___boxed), 3, 2); lean_closure_set(x_6, 0, x_1); lean_closure_set(x_6, 1, x_1); x_7 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_5, x_6); return x_7; } } -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor(lean_object* x_1) { +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_1__getFirstCtor___rarg), 3, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1(x_1, x_2, x_3); +x_4 = l___private_Lean_Util_WHNF_1__getFirstCtor___rarg___lambda__1(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg___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* l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg___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) { _start: { if (lean_obj_tag(x_6) == 0) @@ -494,7 +494,7 @@ x_19 = lean_mk_array(x_17, x_18); x_20 = lean_unsigned_to_nat(1u); x_21 = lean_nat_sub(x_17, x_20); lean_dec(x_17); -x_22 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_4, x_19, x_21); +x_22 = l___private_Lean_Expr_3__getAppArgsAux___main(x_4, x_19, x_21); x_23 = l_Array_shrink___main___rarg(x_22, x_5); x_24 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_23, x_23, x_16, x_15); lean_dec(x_23); @@ -523,7 +523,7 @@ x_33 = lean_mk_array(x_31, x_32); x_34 = lean_unsigned_to_nat(1u); x_35 = lean_nat_sub(x_31, x_34); lean_dec(x_31); -x_36 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_4, x_33, x_35); +x_36 = l___private_Lean_Expr_3__getAppArgsAux___main(x_4, x_33, x_35); x_37 = l_Array_shrink___main___rarg(x_36, x_5); x_38 = l_Array_iterateMAux___main___at_Lean_mkAppN___spec__1(x_37, x_37, x_30, x_29); lean_dec(x_37); @@ -535,7 +535,7 @@ return x_40; } } } -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor___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_11; @@ -551,9 +551,9 @@ lean_dec(x_11); x_14 = lean_ctor_get(x_1, 1); lean_inc(x_14); lean_inc(x_1); -x_15 = l___private_Init_Lean_Util_WHNF_1__getFirstCtor___rarg(x_1, x_2, x_12); +x_15 = l___private_Lean_Util_WHNF_1__getFirstCtor___rarg(x_1, x_2, x_12); lean_inc(x_1); -x_16 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg___lambda__1___boxed), 6, 5); +x_16 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg___lambda__1___boxed), 6, 5); lean_closure_set(x_16, 0, x_1); lean_closure_set(x_16, 1, x_1); lean_closure_set(x_16, 2, x_13); @@ -589,19 +589,19 @@ return x_9; } } } -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor(lean_object* x_1) { +lean_object* l___private_Lean_Util_WHNF_2__mkNullaryCtor(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg___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* l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg___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) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_1); return x_7; @@ -727,7 +727,7 @@ lean_object* _init_l_Lean_WHNF_toCtorIfLit___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__4; +x_1 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__4; x_2 = l_Lean_optionToExpr___rarg___lambda__1___closed__4; x_3 = l_Lean_mkConst(x_1, x_2); return x_3; @@ -747,7 +747,7 @@ lean_object* _init_l_Lean_WHNF_toCtorIfLit___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Syntax_8__quoteList___main___rarg___closed__7; +x_1 = l___private_Lean_Syntax_8__quoteList___main___rarg___closed__7; x_2 = l_Lean_optionToExpr___rarg___lambda__1___closed__4; x_3 = l_Lean_mkConst(x_1, x_2); return x_3; @@ -829,7 +829,7 @@ lean_dec(x_1); return x_4; } } -uint8_t l___private_Init_Lean_Util_WHNF_3__getRecRuleFor___lambda__1(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Util_WHNF_3__getRecRuleFor___lambda__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -838,7 +838,7 @@ x_4 = lean_name_eq(x_3, x_1); return x_4; } } -lean_object* l___private_Init_Lean_Util_WHNF_3__getRecRuleFor(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Util_WHNF_3__getRecRuleFor(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -849,7 +849,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); lean_dec(x_3); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_3__getRecRuleFor___lambda__1___boxed), 2, 1); +x_5 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_3__getRecRuleFor___lambda__1___boxed), 2, 1); lean_closure_set(x_5, 0, x_4); x_6 = lean_ctor_get(x_1, 6); lean_inc(x_6); @@ -867,27 +867,27 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Util_WHNF_3__getRecRuleFor___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Util_WHNF_3__getRecRuleFor___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Lean_Util_WHNF_3__getRecRuleFor___lambda__1(x_1, x_2); +x_3 = l___private_Lean_Util_WHNF_3__getRecRuleFor___lambda__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Util_WHNF_3__getRecRuleFor___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Util_WHNF_3__getRecRuleFor___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Lean_Util_WHNF_3__getRecRuleFor(x_1, x_2); +x_3 = l___private_Lean_Util_WHNF_3__getRecRuleFor(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3) { +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1(lean_object* x_1, lean_object* x_2, uint8_t x_3) { _start: { if (x_3 == 0) @@ -920,19 +920,19 @@ return x_11; } } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_apply_2(x_1, x_2, x_6); -x_8 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1___boxed), 3, 2); +x_8 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1___boxed), 3, 2); lean_closure_set(x_8, 0, x_3); lean_closure_set(x_8, 1, x_4); x_9 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_7, x_8); return x_9; } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_6) == 0) @@ -960,7 +960,7 @@ lean_dec(x_6); lean_inc(x_10); x_11 = lean_apply_1(x_2, x_10); lean_inc(x_5); -x_12 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__2), 6, 5); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__2), 6, 5); lean_closure_set(x_12, 0, x_3); lean_closure_set(x_12, 1, x_4); lean_closure_set(x_12, 2, x_1); @@ -971,7 +971,7 @@ return x_13; } } } -lean_object* _init_l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1() { +lean_object* _init_l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1() { _start: { lean_object* x_1; @@ -979,7 +979,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Expr_hasExprMVar___boxed), 1, 0); return x_1; } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; uint8_t x_10; @@ -1019,9 +1019,9 @@ lean_inc(x_16); lean_dec(x_1); lean_inc(x_7); lean_inc(x_2); -x_17 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg(x_2, x_3, x_7, x_16); +x_17 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg(x_2, x_3, x_7, x_16); lean_inc(x_6); -x_18 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__3), 6, 5); +x_18 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__3), 6, 5); lean_closure_set(x_18, 0, x_2); lean_closure_set(x_18, 1, x_4); lean_closure_set(x_18, 2, x_5); @@ -1042,13 +1042,13 @@ x_24 = lean_unsigned_to_nat(1u); x_25 = lean_nat_sub(x_21, x_24); lean_dec(x_21); lean_inc(x_7); -x_26 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_7, x_23, x_25); +x_26 = l___private_Lean_Expr_3__getAppArgsAux___main(x_7, x_23, x_25); x_27 = lean_ctor_get(x_1, 2); lean_inc(x_27); lean_dec(x_1); x_28 = lean_array_get_size(x_26); x_29 = l_Id_monad; -x_30 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1; +x_30 = l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1; lean_inc(x_27); x_31 = l_Array_anyRangeMAux___main___rarg(x_29, x_26, x_28, lean_box(0), x_30, x_27); x_32 = lean_unbox(x_31); @@ -1058,9 +1058,9 @@ if (x_32 == 0) lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_inc(x_7); lean_inc(x_2); -x_33 = l___private_Init_Lean_Util_WHNF_2__mkNullaryCtor___rarg(x_2, x_3, x_7, x_27); +x_33 = l___private_Lean_Util_WHNF_2__mkNullaryCtor___rarg(x_2, x_3, x_7, x_27); lean_inc(x_6); -x_34 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__3), 6, 5); +x_34 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__3), 6, 5); lean_closure_set(x_34, 0, x_2); lean_closure_set(x_34, 1, x_4); lean_closure_set(x_34, 2, x_5); @@ -1092,13 +1092,13 @@ return x_39; } } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = lean_apply_1(x_1, x_8); lean_inc(x_7); -x_10 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4), 7, 6); +x_10 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4), 7, 6); lean_closure_set(x_10, 0, x_2); lean_closure_set(x_10, 1, x_3); lean_closure_set(x_10, 2, x_4); @@ -1109,7 +1109,7 @@ x_11 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_9, x_10); return x_11; } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___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* l___private_Lean_Util_WHNF_4__toCtorWhenK___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; @@ -1118,7 +1118,7 @@ lean_inc(x_8); lean_inc(x_4); x_9 = lean_apply_1(x_4, x_7); lean_inc(x_8); -x_10 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__5), 8, 7); +x_10 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__5), 8, 7); lean_closure_set(x_10, 0, x_3); lean_closure_set(x_10, 1, x_6); lean_closure_set(x_10, 2, x_1); @@ -1130,21 +1130,21 @@ x_11 = lean_apply_4(x_8, lean_box(0), lean_box(0), x_9, x_10); return x_11; } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK(lean_object* x_1) { +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg), 7, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg), 7, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; x_4 = lean_unbox(x_3); lean_dec(x_3); -x_5 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1(x_1, x_2, x_4); +x_5 = l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__1(x_1, x_2, x_4); return x_5; } } @@ -1154,7 +1154,7 @@ _start: lean_object* x_9; lean_object* x_10; x_9 = l_Lean_WHNF_toCtorIfLit(x_8); lean_inc(x_1); -x_10 = l___private_Init_Lean_Util_WHNF_3__getRecRuleFor(x_1, x_9); +x_10 = l___private_Lean_Util_WHNF_3__getRecRuleFor(x_1, x_9); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; @@ -1179,7 +1179,7 @@ x_17 = lean_mk_array(x_15, x_16); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_15, x_18); lean_dec(x_15); -x_20 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_9, x_17, x_19); +x_20 = l___private_Lean_Expr_3__getAppArgsAux___main(x_9, x_17, x_19); x_21 = l_List_lengthAux___main___rarg(x_3, x_14); x_22 = lean_ctor_get(x_1, 0); lean_inc(x_22); @@ -1223,7 +1223,7 @@ lean_dec(x_1); x_34 = lean_nat_add(x_32, x_33); lean_dec(x_33); lean_dec(x_32); -x_35 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_34, x_4, x_14, x_29); +x_35 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_34, x_4, x_14, x_29); lean_dec(x_34); x_36 = lean_array_get_size(x_20); x_37 = lean_ctor_get(x_13, 1); @@ -1231,11 +1231,11 @@ lean_inc(x_37); lean_dec(x_13); x_38 = lean_nat_sub(x_36, x_37); lean_dec(x_37); -x_39 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_36, x_20, x_38, x_35); +x_39 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_36, x_20, x_38, x_35); lean_dec(x_20); lean_dec(x_36); x_40 = lean_nat_add(x_5, x_18); -x_41 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_6, x_4, x_40, x_39); +x_41 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_6, x_4, x_40, x_39); x_42 = lean_apply_1(x_7, x_41); return x_42; } @@ -1279,7 +1279,7 @@ else lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_inc(x_14); lean_inc(x_8); -x_21 = l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg(x_8, x_10, x_11, x_12, x_13, x_1, x_14); +x_21 = l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg(x_8, x_10, x_11, x_12, x_13, x_1, x_14); x_22 = lean_alloc_closure((void*)(l_Lean_Syntax_mreplace___main___rarg___lambda__1), 3, 2); lean_closure_set(x_22, 0, x_8); lean_closure_set(x_22, 1, x_14); @@ -1471,7 +1471,7 @@ x_16 = lean_array_get(x_15, x_2, x_3); x_17 = l_Lean_mkApp(x_16, x_4); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_add(x_5, x_18); -x_20 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_6, x_2, x_19, x_17); +x_20 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_6, x_2, x_19, x_17); x_21 = lean_apply_1(x_7, x_20); return x_21; } @@ -1852,7 +1852,7 @@ x_21 = lean_mk_array(x_19, x_20); x_22 = lean_unsigned_to_nat(1u); x_23 = lean_nat_sub(x_19, x_22); lean_dec(x_19); -x_24 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_5, x_21, x_23); +x_24 = l___private_Lean_Expr_3__getAppArgsAux___main(x_5, x_21, x_23); x_25 = l_Lean_WHNF_isQuotRecStuck_x3f___rarg(x_2, x_4, x_17, x_16, x_6, x_24); lean_dec(x_24); return x_25; @@ -1875,7 +1875,7 @@ x_31 = lean_mk_array(x_29, x_30); x_32 = lean_unsigned_to_nat(1u); x_33 = lean_nat_sub(x_29, x_32); lean_dec(x_29); -x_34 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_5, x_31, x_33); +x_34 = l___private_Lean_Expr_3__getAppArgsAux___main(x_5, x_31, x_33); x_35 = l_Lean_WHNF_isRecStuck_x3f___rarg(x_2, x_4, x_27, x_26, x_6, x_34); lean_dec(x_34); return x_35; @@ -2329,7 +2329,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_WHNF_whnfEasyCases___rarg), 5, 0); return x_2; } } -lean_object* _init_l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__1() { +lean_object* _init_l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__1() { _start: { lean_object* x_1; @@ -2337,40 +2337,40 @@ x_1 = lean_mk_string("idRhs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__2() { +lean_object* _init_l___private_Lean_Util_WHNF_5__isIdRhsApp___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_Lean_Util_WHNF_5__isIdRhsApp___closed__1; +x_2 = l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -uint8_t l___private_Init_Lean_Util_WHNF_5__isIdRhsApp(lean_object* x_1) { +uint8_t l___private_Lean_Util_WHNF_5__isIdRhsApp(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__2; +x_2 = l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__2; x_3 = l_Lean_Expr_isAppOf(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___boxed(lean_object* x_1) { +lean_object* l___private_Lean_Util_WHNF_5__isIdRhsApp___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Init_Lean_Util_WHNF_5__isIdRhsApp(x_1); +x_2 = l___private_Lean_Util_WHNF_5__isIdRhsApp(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -lean_object* l___private_Init_Lean_Util_WHNF_6__extractIdRhs(lean_object* x_1) { +lean_object* l___private_Lean_Util_WHNF_6__extractIdRhs(lean_object* x_1) { _start: { uint8_t x_2; -x_2 = l___private_Init_Lean_Util_WHNF_5__isIdRhsApp(x_1); +x_2 = l___private_Lean_Util_WHNF_5__isIdRhsApp(x_1); if (x_2 == 0) { return x_1; @@ -2387,7 +2387,7 @@ x_7 = lean_unsigned_to_nat(1u); x_8 = lean_nat_sub(x_4, x_7); lean_dec(x_4); lean_inc(x_1); -x_9 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_1, x_6, x_8); +x_9 = l___private_Lean_Expr_3__getAppArgsAux___main(x_1, x_6, x_8); x_10 = lean_array_get_size(x_9); x_11 = lean_unsigned_to_nat(2u); x_12 = lean_nat_dec_lt(x_10, x_11); @@ -2397,7 +2397,7 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec(x_1); x_13 = l_Lean_Expr_Inhabited; x_14 = lean_array_get(x_13, x_9, x_7); -x_15 = l___private_Init_Lean_Expr_2__mkAppRangeAux___main(x_10, x_9, x_11, x_14); +x_15 = l___private_Lean_Expr_2__mkAppRangeAux___main(x_10, x_9, x_11, x_14); lean_dec(x_9); lean_dec(x_10); return x_15; @@ -2411,7 +2411,7 @@ return x_1; } } } -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition___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; uint8_t x_9; @@ -2436,31 +2436,31 @@ else lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_dec(x_3); x_12 = lean_instantiate_value_lparams(x_1, x_2); -x_13 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_12); +x_13 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_12); x_14 = lean_apply_1(x_4, x_13); return x_14; } } } -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition(lean_object* x_1) { +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_7__deltaDefinition___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_7__deltaDefinition___rarg___boxed), 4, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_WHNF_7__deltaDefinition___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Lean_Util_WHNF_7__deltaDefinition___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Util_WHNF_7__deltaDefinition___rarg(x_1, x_2, x_3, x_4); +x_5 = l___private_Lean_Util_WHNF_7__deltaDefinition___rarg(x_1, x_2, x_3, x_4); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___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; uint8_t x_10; @@ -2487,25 +2487,25 @@ lean_dec(x_4); x_13 = lean_instantiate_value_lparams(x_1, x_2); x_14 = l_Lean_Expr_betaRev(x_13, x_3); lean_dec(x_13); -x_15 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_14); +x_15 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_14); x_16 = lean_apply_1(x_5, x_15); return x_16; } } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition(lean_object* x_1) { +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_8__deltaBetaDefinition___rarg___boxed), 5, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Util_WHNF_8__deltaBetaDefinition___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); @@ -2592,7 +2592,7 @@ x_24 = lean_unsigned_to_nat(0u); x_25 = l_Lean_Expr_getAppNumArgsAux___main(x_4, x_24); x_26 = lean_mk_empty_array_with_capacity(x_25); lean_dec(x_25); -x_27 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_4, x_26); +x_27 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_4, x_26); x_28 = lean_alloc_closure((void*)(l_Lean_WHNF_whnfCore___main___rarg), 9, 8); lean_closure_set(x_28, 0, x_3); lean_closure_set(x_28, 1, x_5); @@ -2602,7 +2602,7 @@ lean_closure_set(x_28, 4, x_8); lean_closure_set(x_28, 5, x_9); lean_closure_set(x_28, 6, x_10); lean_closure_set(x_28, 7, x_11); -x_29 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_12, x_13, x_27, x_14, x_28); +x_29 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_12, x_13, x_27, x_14, x_28); lean_dec(x_27); return x_29; } @@ -2698,7 +2698,7 @@ x_36 = lean_mk_array(x_34, x_35); x_37 = lean_unsigned_to_nat(1u); x_38 = lean_nat_sub(x_34, x_37); lean_dec(x_34); -x_39 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_4, x_36, x_38); +x_39 = l___private_Lean_Expr_3__getAppArgsAux___main(x_4, x_36, x_38); lean_inc(x_7); lean_inc(x_6); lean_inc(x_3); @@ -2733,7 +2733,7 @@ x_46 = lean_mk_array(x_44, x_45); x_47 = lean_unsigned_to_nat(1u); x_48 = lean_nat_sub(x_44, x_47); lean_dec(x_44); -x_49 = l___private_Init_Lean_Expr_3__getAppArgsAux___main(x_4, x_46, x_48); +x_49 = l___private_Lean_Expr_3__getAppArgsAux___main(x_4, x_46, x_48); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); @@ -2897,7 +2897,7 @@ x_31 = lean_unsigned_to_nat(0u); x_32 = l_Lean_Expr_getAppNumArgsAux___main(x_3, x_31); x_33 = lean_mk_empty_array_with_capacity(x_32); lean_dec(x_32); -x_34 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_3, x_33); +x_34 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_3, x_33); x_35 = l_Lean_Expr_betaRev(x_12, x_34); lean_dec(x_34); lean_dec(x_12); @@ -3245,7 +3245,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_WHNF_whnfCore___rarg), 9, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___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, uint8_t x_11) { +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___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, uint8_t x_11) { _start: { if (x_11 == 0) @@ -3271,12 +3271,12 @@ return x_14; else { lean_object* x_15; -x_15 = l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_2); +x_15 = l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_2); return x_15; } } } -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { if (lean_obj_tag(x_12) == 0) @@ -3308,7 +3308,7 @@ lean_inc(x_16); lean_dec(x_12); lean_inc(x_3); x_17 = lean_apply_1(x_3, x_16); -x_18 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__1___boxed), 11, 10); +x_18 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__1___boxed), 11, 10); lean_closure_set(x_18, 0, x_1); lean_closure_set(x_18, 1, x_2); lean_closure_set(x_18, 2, x_4); @@ -3324,7 +3324,7 @@ return x_19; } } } -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -3334,7 +3334,7 @@ lean_inc(x_2); lean_inc(x_1); x_12 = l_Lean_WHNF_getStuckMVar_x3f___main___rarg(x_1, x_2, x_3, x_11); lean_inc(x_10); -x_13 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__2), 12, 11); +x_13 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__2), 12, 11); lean_closure_set(x_13, 0, x_1); lean_closure_set(x_13, 1, x_11); lean_closure_set(x_13, 2, x_4); @@ -3350,7 +3350,7 @@ x_14 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_12, x_13); return x_14; } } -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___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, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___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, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -3366,7 +3366,7 @@ lean_inc(x_2); lean_inc(x_1); x_12 = l_Lean_WHNF_whnfCore___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_8, x_9, x_10); lean_inc(x_11); -x_13 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__3), 11, 10); +x_13 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__3), 11, 10); lean_closure_set(x_13, 0, x_1); lean_closure_set(x_13, 1, x_2); lean_closure_set(x_13, 2, x_4); @@ -3381,37 +3381,37 @@ x_14 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_12, x_13); return x_14; } } -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main(lean_object* x_1) { +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg), 10, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg), 10, 0); return x_2; } } -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_11); lean_dec(x_11); -x_13 = l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_12); +x_13 = l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_12); return x_13; } } -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___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, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___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, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_11; } } -lean_object* l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck(lean_object* x_1) { +lean_object* l___private_Lean_Util_WHNF_9__whnfCoreUnstuck(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___rarg), 10, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___rarg), 10, 0); return x_2; } } @@ -3469,7 +3469,7 @@ x_13 = lean_alloc_closure((void*)(l_Lean_WHNF_unfoldDefinitionAux___rarg___lambd lean_closure_set(x_13, 0, x_2); x_14 = lean_alloc_closure((void*)(l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__2), 2, 1); lean_closure_set(x_14, 0, x_2); -x_15 = l___private_Init_Lean_Util_WHNF_7__deltaDefinition___rarg(x_12, x_3, x_13, x_14); +x_15 = l___private_Lean_Util_WHNF_7__deltaDefinition___rarg(x_12, x_3, x_13, x_14); return x_15; } else @@ -3500,7 +3500,7 @@ lean_object* l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__4(lean_object* x_1 _start: { uint8_t x_4; -x_4 = l___private_Init_Lean_Util_WHNF_5__isIdRhsApp(x_3); +x_4 = l___private_Lean_Util_WHNF_5__isIdRhsApp(x_3); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; @@ -3524,7 +3524,7 @@ lean_dec(x_2); x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); -x_11 = l___private_Init_Lean_Util_WHNF_6__extractIdRhs(x_3); +x_11 = l___private_Lean_Util_WHNF_6__extractIdRhs(x_3); x_12 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_12, 0, x_11); x_13 = lean_apply_2(x_10, lean_box(0), x_12); @@ -3537,7 +3537,7 @@ _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_inc(x_1); -x_12 = l___private_Init_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_11); +x_12 = l___private_Lean_Util_WHNF_9__whnfCoreUnstuck___main___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_11); lean_inc(x_1); x_13 = lean_alloc_closure((void*)(l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__4___boxed), 3, 2); lean_closure_set(x_13, 0, x_1); @@ -3579,10 +3579,10 @@ x_25 = lean_unsigned_to_nat(0u); x_26 = l_Lean_Expr_getAppNumArgsAux___main(x_3, x_25); x_27 = lean_mk_empty_array_with_capacity(x_26); lean_dec(x_26); -x_28 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_3, x_27); +x_28 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_3, x_27); x_29 = lean_alloc_closure((void*)(l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__2), 2, 1); lean_closure_set(x_29, 0, x_4); -x_30 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_1, x_5, x_28, x_6, x_29); +x_30 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_1, x_5, x_28, x_6, x_29); lean_dec(x_28); return x_30; } @@ -3598,7 +3598,7 @@ x_32 = lean_unsigned_to_nat(0u); x_33 = l_Lean_Expr_getAppNumArgsAux___main(x_3, x_32); x_34 = lean_mk_empty_array_with_capacity(x_33); lean_dec(x_33); -x_35 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_3, x_34); +x_35 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_3, x_34); x_36 = lean_alloc_closure((void*)(l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__5), 11, 10); lean_closure_set(x_36, 0, x_4); lean_closure_set(x_36, 1, x_7); @@ -3610,7 +3610,7 @@ lean_closure_set(x_36, 6, x_12); lean_closure_set(x_36, 7, x_13); lean_closure_set(x_36, 8, x_14); lean_closure_set(x_36, 9, x_15); -x_37 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_31, x_5, x_35, x_6, x_36); +x_37 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_31, x_5, x_35, x_6, x_36); lean_dec(x_35); return x_37; } @@ -3643,10 +3643,10 @@ x_40 = lean_unsigned_to_nat(0u); x_41 = l_Lean_Expr_getAppNumArgsAux___main(x_3, x_40); x_42 = lean_mk_empty_array_with_capacity(x_41); lean_dec(x_41); -x_43 = l___private_Init_Lean_Expr_4__getAppRevArgsAux___main(x_3, x_42); +x_43 = l___private_Lean_Expr_4__getAppRevArgsAux___main(x_3, x_42); x_44 = lean_alloc_closure((void*)(l_Lean_WHNF_unfoldDefinitionAux___rarg___lambda__2), 2, 1); lean_closure_set(x_44, 0, x_4); -x_45 = l___private_Init_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_1, x_5, x_43, x_6, x_44); +x_45 = l___private_Lean_Util_WHNF_8__deltaBetaDefinition___rarg(x_1, x_5, x_43, x_6, x_44); lean_dec(x_43); return x_45; } @@ -4087,21 +4087,21 @@ x_2 = lean_alloc_closure((void*)(l_Lean_WHNF_whnfMain___rarg), 9, 0); return x_2; } } -lean_object* initialize_Init_Lean_ToExpr(lean_object*); -lean_object* initialize_Init_Lean_Declaration(lean_object*); -lean_object* initialize_Init_Lean_LocalContext(lean_object*); +lean_object* initialize_Lean_ToExpr(lean_object*); +lean_object* initialize_Lean_Declaration(lean_object*); +lean_object* initialize_Lean_LocalContext(lean_object*); static bool _G_initialized = false; -lean_object* initialize_Init_Lean_Util_WHNF(lean_object* w) { +lean_object* initialize_Lean_Util_WHNF(lean_object* w) { lean_object * res; if (_G_initialized) return lean_mk_io_result(lean_box(0)); _G_initialized = true; -res = initialize_Init_Lean_ToExpr(lean_io_mk_world()); +res = initialize_Lean_ToExpr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_Declaration(lean_io_mk_world()); +res = initialize_Lean_Declaration(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Lean_LocalContext(lean_io_mk_world()); +res = initialize_Lean_LocalContext(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_WHNF_smartUnfoldingSuffix___closed__1 = _init_l_Lean_WHNF_smartUnfoldingSuffix___closed__1(); @@ -4134,12 +4134,12 @@ l_Lean_WHNF_toCtorIfLit___closed__12 = _init_l_Lean_WHNF_toCtorIfLit___closed__1 lean_mark_persistent(l_Lean_WHNF_toCtorIfLit___closed__12); l_Lean_WHNF_toCtorIfLit___closed__13 = _init_l_Lean_WHNF_toCtorIfLit___closed__13(); lean_mark_persistent(l_Lean_WHNF_toCtorIfLit___closed__13); -l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1 = _init_l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1); -l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__1 = _init_l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__1); -l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__2 = _init_l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Util_WHNF_5__isIdRhsApp___closed__2); +l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1 = _init_l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1(); +lean_mark_persistent(l___private_Lean_Util_WHNF_4__toCtorWhenK___rarg___lambda__4___closed__1); +l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__1 = _init_l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__1(); +lean_mark_persistent(l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__1); +l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__2 = _init_l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__2(); +lean_mark_persistent(l___private_Lean_Util_WHNF_5__isIdRhsApp___closed__2); return lean_mk_io_result(lean_box(0)); } #ifdef __cplusplus