From 33251fe0695d79c8ba5bba941291bb2f3469e32b Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Mon, 9 Nov 2020 19:01:46 -0800 Subject: [PATCH] chore: update stage0 --- stage0/src/Lean/Elab/Binders.lean | 29 +- stage0/src/Lean/Parser/Term.lean | 9 +- stage0/stdlib/Init/Data/Range.c | 1078 +- stage0/stdlib/Lean/Compiler/IR/EmitC.c | 40 +- stage0/stdlib/Lean/Compiler/IR/Format.c | 4 +- stage0/stdlib/Lean/Data/Format.c | 4 +- stage0/stdlib/Lean/Data/FormatMacro.c | 16 +- stage0/stdlib/Lean/Data/Json/Basic.c | 4 +- stage0/stdlib/Lean/Data/Json/Printer.c | 12 +- stage0/stdlib/Lean/Data/Lsp/Basic.c | 20 +- stage0/stdlib/Lean/Data/Lsp/Diagnostics.c | 10 +- stage0/stdlib/Lean/Delaborator.c | 110 +- stage0/stdlib/Lean/Elab/App.c | 22 +- stage0/stdlib/Lean/Elab/Binders.c | 11824 ++++++++-------- stage0/stdlib/Lean/Elab/BuiltinNotation.c | 50 +- stage0/stdlib/Lean/Elab/Command.c | 4 +- stage0/stdlib/Lean/Elab/DeclModifiers.c | 4 +- stage0/stdlib/Lean/Elab/Declaration.c | 12 +- stage0/stdlib/Lean/Elab/DefView.c | 8 +- stage0/stdlib/Lean/Elab/Do.c | 280 +- stage0/stdlib/Lean/Elab/Import.c | 4 +- stage0/stdlib/Lean/Elab/Inductive.c | 4 +- stage0/stdlib/Lean/Elab/LetRec.c | 4 +- stage0/stdlib/Lean/Elab/Log.c | 4 +- stage0/stdlib/Lean/Elab/Match.c | 38 +- stage0/stdlib/Lean/Elab/Quotation.c | 106 +- stage0/stdlib/Lean/Elab/StructInst.c | 62 +- stage0/stdlib/Lean/Elab/Structure.c | 10 +- stage0/stdlib/Lean/Elab/Syntax.c | 82 +- stage0/stdlib/Lean/Elab/SyntheticMVars.c | 8 +- stage0/stdlib/Lean/Elab/Tactic/Basic.c | 16 +- stage0/stdlib/Lean/Elab/Tactic/Binders.c | 8 +- stage0/stdlib/Lean/Elab/Tactic/Induction.c | 6 +- stage0/stdlib/Lean/Elab/Term.c | 72 +- stage0/stdlib/Lean/Elab/Util.c | 32 +- stage0/stdlib/Lean/Exception.c | 14 +- stage0/stdlib/Lean/Message.c | 12 +- stage0/stdlib/Lean/Meta/ExprDefEq.c | 4 +- stage0/stdlib/Lean/Meta/LevelDefEq.c | 6 +- stage0/stdlib/Lean/Meta/RecursorInfo.c | 4 +- stage0/stdlib/Lean/Meta/SynthInstance.c | 90 +- stage0/stdlib/Lean/Meta/Tactic/Induction.c | 6 +- stage0/stdlib/Lean/Parser/Basic.c | 64 +- stage0/stdlib/Lean/Parser/Command.c | 4 +- stage0/stdlib/Lean/Parser/Do.c | 20 +- stage0/stdlib/Lean/Parser/Extension.c | 8 +- stage0/stdlib/Lean/Parser/Extra.c | 6 +- stage0/stdlib/Lean/Parser/Syntax.c | 14 +- stage0/stdlib/Lean/Parser/Tactic.c | 6 +- stage0/stdlib/Lean/Parser/Term.c | 1026 +- stage0/stdlib/Lean/PrettyPrinter/Formatter.c | 4 +- .../stdlib/Lean/PrettyPrinter/Parenthesizer.c | 12 +- stage0/stdlib/Lean/Util/Trace.c | 4 +- stage0/stdlib/Std/Data/PersistentArray.c | 4 +- stage0/stdlib/Std/Data/PersistentHashMap.c | 4 +- 55 files changed, 7499 insertions(+), 7809 deletions(-) diff --git a/stage0/src/Lean/Elab/Binders.lean b/stage0/src/Lean/Elab/Binders.lean index 32eb08e75c..fb73ffbfc8 100644 --- a/stage0/src/Lean/Elab/Binders.lean +++ b/stage0/src/Lean/Elab/Binders.lean @@ -97,13 +97,25 @@ private def getBinderIds (ids : Syntax) : TermElabM (Array Syntax) := else throwErrorAt id "identifier or `_` expected" +/- + Recall that + ``` + def typeSpec := parser! " : " >> termParser + def optType : Parser := optional typeSpec + ``` -/ +def expandOptType (ref : Syntax) (optType : Syntax) : Syntax := + if optType.isNone then + mkHole ref + else + optType[0][1] + private def matchBinder (stx : Syntax) : TermElabM (Array BinderView) := match stx with | Syntax.node k args => do if k == `Lean.Parser.Term.simpleBinder then - -- binderIdent+ + -- binderIdent+ >> optType let ids ← getBinderIds args[0] - let type := mkHole stx + let type := expandOptType stx args[1] ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := type, bi := BinderInfo.default } else if k == `Lean.Parser.Term.explicitBinder then -- `(` binderIdent+ binderType (binderDefault <|> binderTactic)? `)` @@ -244,6 +256,7 @@ partial def expandFunBinders (binders : Array Syntax) (body : Syntax) : TermElab | Syntax.node `Lean.Parser.Term.implicitBinder _ => loop body (i+1) (newBinders.push binder) | Syntax.node `Lean.Parser.Term.instBinder _ => loop body (i+1) (newBinders.push binder) | Syntax.node `Lean.Parser.Term.explicitBinder _ => loop body (i+1) (newBinders.push binder) + | Syntax.node `Lean.Parser.Term.simpleBinder _ => loop body (i+1) (newBinders.push binder) | Syntax.node `Lean.Parser.Term.hole _ => let ident ← mkFreshIdent binder let type := binder @@ -340,18 +353,6 @@ def elabFunBinders {α} (binders : Array Syntax) (expectedType? : Option Expr) ( resettingSynthInstanceCacheWhen (s.localInsts.size > localInsts.size) $ withLCtx s.lctx s.localInsts $ x s.fvars s.expectedType? -/- - Recall that - ``` - def typeSpec := parser! " : " >> termParser - def optType : Parser := optional typeSpec - ``` -/ -def expandOptType (ref : Syntax) (optType : Syntax) : Syntax := - if optType.isNone then - mkHole ref - else - optType[0][1] - /- Helper function for `expandEqnsIntoMatch` -/ private def getMatchAltNumPatterns (matchAlts : Syntax) : Nat := let alt0 := matchAlts[1][0] diff --git a/stage0/src/Lean/Parser/Term.lean b/stage0/src/Lean/Parser/Term.lean index 3f768d2f7b..9f29003fc6 100644 --- a/stage0/src/Lean/Parser/Term.lean +++ b/stage0/src/Lean/Parser/Term.lean @@ -119,10 +119,7 @@ Note that we did not add a `explicitShortBinder` parser since `(α) → α → -/ @[builtinTermParser] def depArrow := parser! bracketedBinder true >> checkPrec 25 >> unicodeSymbol " → " " -> " >> termParser -def simpleBinder := parser! - (checkInsideQuot >> many1 binderIdent >> optType) - <|> - (checkOutsideQuot >> many1 binderIdent) +def simpleBinder := parser! many1 binderIdent >> optType @[builtinTermParser] def «forall» := parser!:leadPrec unicodeSymbol "∀ " "forall" >> many1 (ppSpace >> (simpleBinder <|> bracketedBinder)) >> ", " >> termParser @@ -141,8 +138,8 @@ def matchDiscr := parser! optional («try» (ident >> checkNoWsBefore "no space @[builtinTermParser] def «nomatch» := parser!:leadPrec "nomatch " >> termParser def funImplicitBinder := «try» (lookahead ("{" >> many1 binderIdent >> (" : " <|> "}"))) >> implicitBinder -def funSimpleBinder := parser! «try» (lookahead (many1 binderIdent >> " : ")) >> many1 binderIdent >> optType -def funBinder : Parser := funImplicitBinder <|> instBinder <|> (checkInsideQuot >> funSimpleBinder) <|> termParser maxPrec +def funSimpleBinder := «try» (lookahead (many1 binderIdent >> " : ")) >> simpleBinder +def funBinder : Parser := funImplicitBinder <|> instBinder <|> funSimpleBinder <|> termParser maxPrec -- NOTE: we use `nodeWithAntiquot` to ensure that `fun $b => ...` remains a `term` antiquotation def basicFun : Parser := nodeWithAntiquot "basicFun" `Lean.Parser.Term.basicFun (many1 (ppSpace >> funBinder) >> darrow >> termParser) @[builtinTermParser] def «fun» := parser!:maxPrec unicodeSymbol "λ" "fun" >> (basicFun <|> matchAlts false) diff --git a/stage0/stdlib/Init/Data/Range.c b/stage0/stdlib/Init/Data/Range.c index 463ca79adc..26e05c97fe 100644 --- a/stage0/stdlib/Init/Data/Range.c +++ b/stage0/stdlib/Init/Data/Range.c @@ -13,136 +13,136 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__12; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__13; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__11; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__13; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__11; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; extern lean_object* l_Array_empty___closed__1; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__23; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__2; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__22; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__2; lean_object* l_Std_Range_step___default; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; extern lean_object* l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__22; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__23; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; extern lean_object* l_List_repr___rarg___closed__3; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; lean_object* lean_string_utf8_byte_size(lean_object*); +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__8; lean_object* l_Std_Range_forIn_loop(lean_object*, lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__6; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__6; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__16; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__9; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__7; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__14; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__7; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__14; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__9; lean_object* l_Std_Range_forIn_loop_match__2___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109_; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153_; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256_; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203_; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__10; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__16; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108_; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152_; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255_; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202_; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__10; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__11; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__19; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__2; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__12; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__2; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__19; lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__10; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__20; lean_object* l_Std_Range_forIn_loop_match__2___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__10; extern lean_object* l___private_Init_Util_0__mkPanicMessage___closed__2; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__2; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__2; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__20; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_1236_(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853_(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315_(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548_(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__2; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__19; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_1235_(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852_(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314_(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547_(lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__2; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Std_Range_forIn_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__19; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__3; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__3; extern lean_object* l_Lean_mkAppStx___closed__6; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__25; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__6; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__1; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__1; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__6; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__25; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__4; lean_object* l_Std_Range_start___default; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__4; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__4; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__4; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__1; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__3; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__1; extern lean_object* l_Lean_nullKind___closed__2; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__5; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__5; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__1; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__4; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__11; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__4; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__3; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__24; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__5; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__5; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__1; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__3; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__1; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__4; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__4; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__24; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__3; uint8_t lean_nat_dec_le(lean_object*, lean_object*); +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; lean_object* l_Lean_Syntax_getArgs(lean_object*); -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__5; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__3; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__22; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__2; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__13; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__3; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__5; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__2; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__23; extern lean_object* l_Lean_Init_LeanInit___instance__8___closed__1; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__5; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__1; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__21; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__23; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__5; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__21; lean_object* l_Std_Range_forIn_loop_match__2(lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__13; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__22; extern lean_object* l_Lean_Name_hasMacroScopes___closed__1; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__5; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__3; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__11; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__5; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__11; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__17; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__4; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__24; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__14; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__2; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__9; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__2; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; lean_object* l_Std_Range_forIn(lean_object*, lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__14; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__3; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__3; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__2; lean_object* l_Std_Range_forIn_loop_match__1(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8; lean_object* l_Std_Range_forIn___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__9; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__6; lean_object* l_Std_Range_forIn_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__6; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__4; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__4; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__3; lean_object* lean_name_mk_numeral(lean_object*, lean_object*); +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__15; lean_object* l_Std_Range_forIn_loop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_addParenHeuristic___closed__1; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__15; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__6; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__24; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__7; -lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__15; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__18; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__15; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__18; +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__7; +lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__6; lean_object* l_Std_Range_forIn_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__18; static lean_object* _init_l_Std_Range_start___default() { _start: { @@ -382,7 +382,7 @@ x_3 = lean_alloc_closure((void*)(l_Std_Range_forIn___rarg), 4, 0); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__1() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__1() { _start: { lean_object* x_1; @@ -390,17 +390,17 @@ x_1 = lean_mk_string("Std"); return x_1; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__2() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__1; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3() { _start: { lean_object* x_1; @@ -408,17 +408,17 @@ x_1 = lean_mk_string("Range"); return x_1; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__2; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__2; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5() { _start: { lean_object* x_1; @@ -426,17 +426,17 @@ x_1 = lean_mk_string("_kind"); return x_1; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__6() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__4; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7() { _start: { lean_object* x_1; @@ -444,27 +444,27 @@ x_1 = lean_mk_string("term"); return x_1; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__6; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__6; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__9() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__8; x_2 = l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10() { _start: { lean_object* x_1; @@ -472,17 +472,17 @@ x_1 = lean_mk_string("Init"); return x_1; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__11() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__9; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__9; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12() { _start: { lean_object* x_1; @@ -490,47 +490,47 @@ x_1 = lean_mk_string("Data"); return x_1; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__13() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__11; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__11; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__14() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__13; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__13; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__15() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__14; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__14; x_2 = l_Lean_Name_hasMacroScopes___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__16() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__15; -x_2 = lean_unsigned_to_nat(109u); +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__15; +x_2 = lean_unsigned_to_nat(108u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -540,7 +540,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -550,33 +550,33 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__19() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__17; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__18; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(20, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -584,19 +584,19 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__22() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__19; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__19; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__23() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -606,25 +606,25 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__24() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__22; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__23; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__22; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__23; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__25() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__16; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__16; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__24; +x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__24; x_4 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -632,79 +632,79 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109_() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108_() { _start: { lean_object* x_1; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__25; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__25; return x_1; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__1() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__15; -x_2 = lean_unsigned_to_nat(153u); +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__15; +x_2 = lean_unsigned_to_nat(152u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__2() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__17; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__3() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__2; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__2; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__18; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__4() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__3; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__3; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__5() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__4; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__23; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__4; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__23; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__6() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__1; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__1; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__5; +x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__5; x_4 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -712,67 +712,67 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153_() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152_() { _start: { lean_object* x_1; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__6; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__6; return x_1; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__1() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__15; -x_2 = lean_unsigned_to_nat(203u); +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__15; +x_2 = lean_unsigned_to_nat(202u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__2() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__22; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__22; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__18; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__3() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__2; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__2; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__4() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__3; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__23; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__3; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__23; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__5() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__1; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__1; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__4; +x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__4; x_4 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -780,67 +780,67 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203_() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202_() { _start: { lean_object* x_1; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__5; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__5; return x_1; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__1() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__15; -x_2 = lean_unsigned_to_nat(256u); +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__15; +x_2 = lean_unsigned_to_nat(255u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__2() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__4; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__4; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__18; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__3() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__2; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__2; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__4() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__3; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__23; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__3; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__23; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__5() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__1; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__1; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__4; +x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__4; x_4 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -848,15 +848,15 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256_() { +static lean_object* _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255_() { _start: { lean_object* x_1; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__5; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__5; return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1() { _start: { lean_object* x_1; @@ -864,17 +864,17 @@ x_1 = lean_mk_string("structInst"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__3() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -886,17 +886,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__3; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -908,17 +908,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7() { _start: { lean_object* x_1; @@ -926,17 +926,17 @@ x_1 = lean_mk_string("structInstField"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__9() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__9() { _start: { lean_object* x_1; @@ -944,22 +944,22 @@ x_1 = lean_mk_string("stop"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__10() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__9; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__11() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__9; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__10; +x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____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); @@ -967,51 +967,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__12() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__9; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__13() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__9; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__4; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__14() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__13; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__13; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__15() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__14; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16() { _start: { lean_object* x_1; @@ -1019,19 +1019,19 @@ x_1 = lean_mk_string(":="); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; 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; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__18() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1043,32 +1043,32 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__19() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__18; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__18; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__20() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__21() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__20; +x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__20; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1076,41 +1076,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__22() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__23() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____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; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__24() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__23; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__23; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25() { _start: { lean_object* x_1; @@ -1118,23 +1118,23 @@ x_1 = lean_mk_string("}"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____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* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__16; +x_4 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__16; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -1179,13 +1179,13 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_2, 1); lean_inc(x_17); lean_dec(x_2); -x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__12; +x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__12; lean_inc(x_16); lean_inc(x_17); x_19 = l_Lean_addMacroScope(x_17, x_18, x_16); x_20 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__11; -x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__15; +x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__11; +x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__15; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_20); lean_ctor_set(x_23, 1, x_21); @@ -1193,12 +1193,12 @@ 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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_27 = lean_array_push(x_25, x_26); -x_28 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_28 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_29 = lean_array_push(x_27, x_28); x_30 = lean_array_push(x_29, x_15); -x_31 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_31 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -1207,27 +1207,27 @@ x_34 = l_Lean_nullKind___closed__2; 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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; +x_36 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; x_37 = lean_array_push(x_36, x_35); x_38 = lean_array_push(x_37, x_26); -x_39 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__22; +x_39 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__22; x_40 = l_Lean_addMacroScope(x_17, x_39, x_16); -x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__21; -x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__24; +x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__21; +x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__24; x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_20); lean_ctor_set(x_43, 1, x_41); lean_ctor_set(x_43, 2, x_40); lean_ctor_set(x_43, 3, x_42); -x_44 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__19; +x_44 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__19; x_45 = lean_array_push(x_44, x_43); x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_34); lean_ctor_set(x_46, 1, x_45); x_47 = lean_array_push(x_38, x_46); -x_48 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_48 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_49 = lean_array_push(x_47, x_48); -x_50 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_50 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____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); @@ -1239,7 +1239,7 @@ return x_52; } } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1() { _start: { lean_object* x_1; @@ -1247,22 +1247,22 @@ x_1 = lean_mk_string("start"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__2() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__3() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__2; +x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____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); @@ -1270,51 +1270,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__4() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__5() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__4; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__6() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__7() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__6; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8() { _start: { lean_object* x_1; @@ -1322,47 +1322,47 @@ x_1 = lean_mk_string(","); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; 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; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__10() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__13; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__13; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__11() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__10; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____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* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__1; +x_4 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__1; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -1409,13 +1409,13 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_2, 1); lean_inc(x_19); lean_dec(x_2); -x_20 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__4; +x_20 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__4; lean_inc(x_18); lean_inc(x_19); x_21 = l_Lean_addMacroScope(x_19, x_20, x_18); x_22 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_23 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__3; -x_24 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__7; +x_23 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__3; +x_24 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__7; x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_22); lean_ctor_set(x_25, 1, x_23); @@ -1423,24 +1423,24 @@ 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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_28 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_29 = lean_array_push(x_27, x_28); -x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_31 = lean_array_push(x_29, x_30); x_32 = lean_array_push(x_31, x_15); -x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; 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_26, x_34); -x_36 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_36 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_37 = lean_array_push(x_35, x_36); -x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__12; +x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__12; lean_inc(x_18); lean_inc(x_19); x_39 = l_Lean_addMacroScope(x_19, x_38, x_18); -x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__11; -x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__11; +x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__11; +x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__11; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_22); lean_ctor_set(x_42, 1, x_40); @@ -1458,27 +1458,27 @@ x_49 = l_Lean_nullKind___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); -x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; +x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; x_52 = lean_array_push(x_51, x_50); x_53 = lean_array_push(x_52, x_28); -x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__22; +x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__22; x_55 = l_Lean_addMacroScope(x_19, x_54, x_18); -x_56 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__21; -x_57 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__24; +x_56 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__21; +x_57 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__24; x_58 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_58, 0, x_22); lean_ctor_set(x_58, 1, x_56); lean_ctor_set(x_58, 2, x_55); lean_ctor_set(x_58, 3, x_57); -x_59 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__19; +x_59 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__19; x_60 = lean_array_push(x_59, x_58); x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_49); lean_ctor_set(x_61, 1, x_60); x_62 = lean_array_push(x_53, x_61); -x_63 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_63 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_64 = lean_array_push(x_62, x_63); -x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); @@ -1490,7 +1490,7 @@ return x_67; } } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1() { _start: { lean_object* x_1; @@ -1498,22 +1498,22 @@ x_1 = lean_mk_string("step"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__2() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__3() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__2; +x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____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); @@ -1521,55 +1521,55 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__4() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__5() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__4; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__6() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__7() { +static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__6; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__1; +x_4 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__1; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -1618,13 +1618,13 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_2, 1); lean_inc(x_21); lean_dec(x_2); -x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__4; +x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__4; lean_inc(x_20); lean_inc(x_21); x_23 = l_Lean_addMacroScope(x_21, x_22, x_20); x_24 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_25 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__3; -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__7; +x_25 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__3; +x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__7; x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_24); lean_ctor_set(x_27, 1, x_25); @@ -1632,24 +1632,24 @@ 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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_31 = lean_array_push(x_29, x_30); -x_32 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_32 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_33 = lean_array_push(x_31, x_32); x_34 = lean_array_push(x_33, x_15); -x_35 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_35 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); x_37 = lean_array_push(x_28, x_36); -x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_39 = lean_array_push(x_37, x_38); -x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__12; +x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__12; lean_inc(x_20); lean_inc(x_21); x_41 = l_Lean_addMacroScope(x_21, x_40, x_20); -x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__11; -x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__11; +x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__11; +x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__11; x_44 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_44, 0, x_24); lean_ctor_set(x_44, 1, x_42); @@ -1664,12 +1664,12 @@ lean_ctor_set(x_49, 0, x_35); lean_ctor_set(x_49, 1, x_48); x_50 = lean_array_push(x_39, x_49); x_51 = lean_array_push(x_50, x_38); -x_52 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__4; +x_52 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__4; lean_inc(x_20); lean_inc(x_21); x_53 = l_Lean_addMacroScope(x_21, x_52, x_20); -x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__3; -x_55 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__7; +x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__3; +x_55 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__7; x_56 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_56, 0, x_24); lean_ctor_set(x_56, 1, x_54); @@ -1687,27 +1687,27 @@ x_63 = l_Lean_nullKind___closed__2; x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_63); lean_ctor_set(x_64, 1, x_62); -x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; +x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; x_66 = lean_array_push(x_65, x_64); x_67 = lean_array_push(x_66, x_30); -x_68 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__22; +x_68 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__22; x_69 = l_Lean_addMacroScope(x_21, x_68, x_20); -x_70 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__21; -x_71 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__24; +x_70 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__21; +x_71 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__24; x_72 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_72, 0, x_24); lean_ctor_set(x_72, 1, x_70); lean_ctor_set(x_72, 2, x_69); lean_ctor_set(x_72, 3, x_71); -x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__19; +x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__19; x_74 = lean_array_push(x_73, x_72); x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_63); lean_ctor_set(x_75, 1, x_74); x_76 = lean_array_push(x_67, x_75); -x_77 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_77 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_78 = lean_array_push(x_76, x_77); -x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_80 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_80, 0, x_79); lean_ctor_set(x_80, 1, x_78); @@ -1719,11 +1719,11 @@ return x_81; } } } -lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_1236_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_1235_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__1; +x_4 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__1; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -1770,13 +1770,13 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_2, 1); lean_inc(x_19); lean_dec(x_2); -x_20 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__12; +x_20 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__12; lean_inc(x_18); lean_inc(x_19); x_21 = l_Lean_addMacroScope(x_19, x_20, x_18); x_22 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_23 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__11; -x_24 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__15; +x_23 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__11; +x_24 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__15; x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_22); lean_ctor_set(x_25, 1, x_23); @@ -1784,24 +1784,24 @@ 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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_28 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_29 = lean_array_push(x_27, x_28); -x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_31 = lean_array_push(x_29, x_30); x_32 = lean_array_push(x_31, x_15); -x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; 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_26, x_34); -x_36 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_36 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_37 = lean_array_push(x_35, x_36); -x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__4; +x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__4; lean_inc(x_18); lean_inc(x_19); x_39 = l_Lean_addMacroScope(x_19, x_38, x_18); -x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__3; -x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__7; +x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__3; +x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__7; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_22); lean_ctor_set(x_42, 1, x_40); @@ -1819,27 +1819,27 @@ x_49 = l_Lean_nullKind___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); -x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; +x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; x_52 = lean_array_push(x_51, x_50); x_53 = lean_array_push(x_52, x_28); -x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__22; +x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__22; x_55 = l_Lean_addMacroScope(x_19, x_54, x_18); -x_56 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__21; -x_57 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__24; +x_56 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__21; +x_57 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__24; x_58 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_58, 0, x_22); lean_ctor_set(x_58, 1, x_56); lean_ctor_set(x_58, 2, x_55); lean_ctor_set(x_58, 3, x_57); -x_59 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__19; +x_59 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__19; x_60 = lean_array_push(x_59, x_58); x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_49); lean_ctor_set(x_61, 1, x_60); x_62 = lean_array_push(x_53, x_61); -x_63 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_63 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_64 = lean_array_push(x_62, x_63); -x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); @@ -1864,184 +1864,184 @@ l_Std_Range_start___default = _init_l_Std_Range_start___default(); lean_mark_persistent(l_Std_Range_start___default); l_Std_Range_step___default = _init_l_Std_Range_step___default(); lean_mark_persistent(l_Std_Range_step___default); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__1 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__1(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__1); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__2 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__2(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__2); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__4); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__6 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__6(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__6); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__9 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__9(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__9); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__11 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__11(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__11); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__13 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__13(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__13); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__14 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__14(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__14); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__15 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__15(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__15); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__16 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__16(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__16); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__19 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__19(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__19); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__22 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__22(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__22); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__23 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__23(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__23); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__24 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__24(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__24); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__25 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__25(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__25); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109_ = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109_(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109_); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__1 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__1(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__1); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__2 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__2(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__2); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__3 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__3(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__3); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__4 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__4(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__4); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__5 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__5(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__5); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__6 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__6(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153____closed__6); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153_ = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153_(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_153_); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__1 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__1(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__1); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__2 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__2(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__2); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__3 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__3(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__3); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__4 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__4(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__4); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__5 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__5(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203____closed__5); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203_ = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203_(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_203_); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__1 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__1(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__1); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__2 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__2(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__2); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__3 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__3(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__3); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__4 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__4(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__4); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__5 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__5(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256____closed__5); -l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256_ = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256_(); -lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_256_); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__3 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__3(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__3); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__9 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__9(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__9); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__10 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__10(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__10); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__11 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__11(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__11); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__12 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__12(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__12); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__13 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__13(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__13); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__14 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__14(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__14); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__15 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__15(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__15); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__18 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__18(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__18); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__19 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__19(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__19); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__20 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__20(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__20); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__21 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__21(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__21); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__22 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__22(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__22); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__23 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__23(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__23); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__24 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__24(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__24); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__2 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__2(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__2); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__3 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__3(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__3); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__4 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__4(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__4); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__5 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__5(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__5); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__6 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__6(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__6); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__7 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__7(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__7); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__10 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__10(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__10); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__11 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__11(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__11); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__2 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__2(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__2); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__3 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__3(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__3); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__4 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__4(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__4); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__5 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__5(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__5); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__6 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__6(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__6); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__7 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__7(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__7); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__1 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__1(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__1); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__2 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__2(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__2); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__3); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__4 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__4(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__4); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__6 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__6(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__6); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__8 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__8(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__8); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__9 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__9(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__9); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__11 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__11(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__11); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__13 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__13(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__13); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__14 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__14(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__14); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__15 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__15(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__15); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__16 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__16(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__16); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__17 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__17(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__17); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__18 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__18(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__18); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__19 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__19(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__19); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__22 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__22(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__22); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__23 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__23(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__23); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__24 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__24(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__24); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__25 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__25(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__25); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108_ = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108_(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108_); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__1 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__1(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__1); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__2 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__2(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__2); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__3 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__3(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__3); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__4 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__4(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__4); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__5 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__5(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__5); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__6 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__6(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152____closed__6); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152_ = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152_(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_152_); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__1 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__1(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__1); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__2 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__2(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__2); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__3 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__3(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__3); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__4 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__4(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__4); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__5 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__5(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202____closed__5); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202_ = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202_(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_202_); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__1 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__1(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__1); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__2 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__2(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__2); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__3 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__3(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__3); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__4 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__4(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__4); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__5 = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__5(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255____closed__5); +l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255_ = _init_l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255_(); +lean_mark_persistent(l_Std_Range___kind_term____x40_Init_Data_Range___hyg_255_); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__3 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__3(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__3); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__9 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__9(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__9); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__10 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__10(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__10); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__11 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__11(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__11); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__12 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__12(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__12); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__13 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__13(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__13); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__14 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__14(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__14); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__15 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__15(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__15); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__18 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__18(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__18); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__19 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__19(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__19); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__20 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__20(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__20); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__21 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__21(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__21); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__22 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__22(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__22); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__23 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__23(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__23); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__24 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__24(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__24); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__2 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__2(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__2); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__3 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__3(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__3); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__4 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__4(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__4); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__5 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__5(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__5); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__6 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__6(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__6); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__7 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__7(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__7); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__10 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__10(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__10); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__11 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__11(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__11); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__2 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__2(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__2); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__3 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__3(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__3); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__4 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__4(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__4); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__5 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__5(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__5); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__6 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__6(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__6); +l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__7 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__7(); +lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__7); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Compiler/IR/EmitC.c b/stage0/stdlib/Lean/Compiler/IR/EmitC.c index 6a997ebad2..0e5699ebec 100644 --- a/stage0/stdlib/Lean/Compiler/IR/EmitC.c +++ b/stage0/stdlib/Lean/Compiler/IR/EmitC.c @@ -541,7 +541,6 @@ lean_object* l_Lean_IR_EmitC_emitTailCall___boxed(lean_object*, lean_object*, le lean_object* l_Lean_IR_EmitC_emitSProj_match__1(lean_object*); lean_object* l_Lean_IR_EmitC_emitFullApp_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_EmitC_emitFileHeader___closed__12; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; lean_object* l_Nat_forM_loop___at_Lean_IR_EmitC_emitFnDeclAux___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_EmitC_getJPParams___closed__1; lean_object* lean_ir_find_env_decl(lean_object*, lean_object*); @@ -551,6 +550,7 @@ lean_object* l_Lean_IR_mkVarJPMaps(lean_object*); lean_object* l_Lean_IR_EmitC_emitMainFn___lambda__2___closed__5; lean_object* l_Lean_IR_EmitC_emitPartialApp___closed__2; lean_object* l_Lean_IR_EmitC_emitFns(lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; lean_object* l_Lean_IR_EmitC_declareVars_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_EmitC_emitUnbox_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_forM_loop___at_Lean_IR_EmitC_emitDeclAux___spec__1___closed__3; @@ -3168,7 +3168,7 @@ lean_object* l_Lean_IR_EmitC_emitMainFn___lambda__1(lean_object* x_1, lean_objec _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; 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; uint8_t x_26; -x_5 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_5 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_6 = lean_string_append(x_4, x_5); x_7 = l___private_Lean_Data_Format_0__Lean_Format_pushNewline___closed__1; x_8 = lean_string_append(x_6, x_7); @@ -3351,7 +3351,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____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); @@ -4511,7 +4511,7 @@ static lean_object* _init_l_Lean_IR_EmitC_emitFileFooter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_2 = l_Lean_IR_EmitC_emitFileHeader___closed__3; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7032,7 +7032,7 @@ lean_dec(x_39); x_40 = l_Lean_IR_EmitC_emitReset___closed__4; x_41 = lean_string_append(x_38, x_40); x_42 = lean_string_append(x_41, x_14); -x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_44 = lean_string_append(x_42, x_43); x_45 = lean_string_append(x_44, x_14); x_46 = lean_box(0); @@ -7049,7 +7049,7 @@ lean_dec(x_36); x_48 = l_Lean_IR_EmitC_emitReset___closed__4; x_49 = lean_string_append(x_47, x_48); x_50 = lean_string_append(x_49, x_14); -x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_52 = lean_string_append(x_50, x_51); x_53 = lean_string_append(x_52, x_14); x_54 = lean_box(0); @@ -7084,7 +7084,7 @@ lean_object* l_Lean_IR_EmitC_emitReuse___lambda__1(lean_object* x_1, lean_object _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_6 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_6 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_7 = lean_string_append(x_5, x_6); x_8 = l___private_Lean_Data_Format_0__Lean_Format_pushNewline___closed__1; x_9 = lean_string_append(x_7, x_8); @@ -10890,7 +10890,7 @@ lean_dec(x_17); x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_23 = lean_string_append(x_21, x_22); x_24 = lean_string_append(x_23, x_15); x_25 = lean_box(0); @@ -11631,7 +11631,7 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_ x_9 = lean_ctor_get(x_7, 1); x_10 = lean_ctor_get(x_7, 0); lean_dec(x_10); -x_11 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_11 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_12 = lean_string_append(x_9, x_11); x_13 = l___private_Lean_Data_Format_0__Lean_Format_pushNewline___closed__1; x_14 = lean_string_append(x_12, x_13); @@ -11646,7 +11646,7 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean x_16 = lean_ctor_get(x_7, 1); lean_inc(x_16); lean_dec(x_7); -x_17 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_17 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_18 = lean_string_append(x_16, x_17); x_19 = l___private_Lean_Data_Format_0__Lean_Format_pushNewline___closed__1; x_20 = lean_string_append(x_18, x_19); @@ -12474,7 +12474,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_dec(x_18); lean_dec(x_17); lean_dec(x_4); -x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_22 = lean_string_append(x_16, x_21); x_23 = lean_string_append(x_22, x_15); x_24 = lean_box(0); @@ -12492,7 +12492,7 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_dec(x_18); lean_dec(x_17); lean_dec(x_4); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_27 = lean_string_append(x_16, x_26); x_28 = lean_string_append(x_27, x_15); x_29 = lean_box(0); @@ -12520,7 +12520,7 @@ lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean x_35 = lean_ctor_get(x_33, 1); x_36 = lean_ctor_get(x_33, 0); lean_dec(x_36); -x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_38 = lean_string_append(x_35, x_37); x_39 = lean_string_append(x_38, x_15); lean_ctor_set(x_33, 1, x_39); @@ -12533,7 +12533,7 @@ lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean x_40 = lean_ctor_get(x_33, 1); lean_inc(x_40); lean_dec(x_33); -x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_42 = lean_string_append(x_40, x_41); x_43 = lean_string_append(x_42, x_15); x_44 = lean_alloc_ctor(0, 2, 0); @@ -12587,7 +12587,7 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean lean_dec(x_55); lean_dec(x_54); lean_dec(x_4); -x_58 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_58 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_59 = lean_string_append(x_53, x_58); x_60 = lean_string_append(x_59, x_52); x_61 = lean_box(0); @@ -12606,7 +12606,7 @@ lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean lean_dec(x_55); lean_dec(x_54); lean_dec(x_4); -x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_65 = lean_string_append(x_53, x_64); x_66 = lean_string_append(x_65, x_52); x_67 = lean_box(0); @@ -12637,7 +12637,7 @@ if (lean_is_exclusive(x_72)) { lean_dec_ref(x_72); x_74 = lean_box(0); } -x_75 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_75 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_76 = lean_string_append(x_73, x_75); x_77 = lean_string_append(x_76, x_52); if (lean_is_scalar(x_74)) { @@ -13063,7 +13063,7 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean x_16 = lean_ctor_get(x_14, 1); x_17 = lean_ctor_get(x_14, 0); lean_dec(x_17); -x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_19 = lean_string_append(x_16, x_18); x_20 = lean_string_append(x_19, x_9); x_21 = lean_box(0); @@ -13077,7 +13077,7 @@ lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean x_22 = lean_ctor_get(x_14, 1); lean_inc(x_22); lean_dec(x_14); -x_23 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_23 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_24 = lean_string_append(x_22, x_23); x_25 = lean_string_append(x_24, x_9); x_26 = lean_box(0); @@ -13140,7 +13140,7 @@ if (lean_is_exclusive(x_36)) { lean_dec_ref(x_36); x_38 = lean_box(0); } -x_39 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_39 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_40 = lean_string_append(x_37, x_39); x_41 = lean_string_append(x_40, x_9); x_42 = lean_box(0); diff --git a/stage0/stdlib/Lean/Compiler/IR/Format.c b/stage0/stdlib/Lean/Compiler/IR/Format.c index a0798b60b2..b942cc8144 100644 --- a/stage0/stdlib/Lean/Compiler/IR/Format.c +++ b/stage0/stdlib/Lean/Compiler/IR/Format.c @@ -196,7 +196,6 @@ lean_object* l_Array_toList___rarg(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_formatArray___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_formatParams(lean_object*); lean_object* l___private_Lean_Compiler_IR_Format_0__Lean_IR_formatIRType___closed__11; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; lean_object* l___private_Lean_Compiler_IR_Format_0__Lean_IR_formatCtorInfo_match__1(lean_object*); lean_object* l___private_Lean_Compiler_IR_Format_0__Lean_IR_formatIRType_match__1(lean_object*); lean_object* l_Lean_IR_formatFnBodyHead___closed__10; @@ -204,6 +203,7 @@ lean_object* l_Lean_IR_formatFnBodyHead___closed__32; lean_object* l___private_Lean_Compiler_IR_Format_0__Lean_IR_formatIRType___closed__12; lean_object* l___private_Lean_Compiler_IR_Format_0__Lean_IR_formatArg(lean_object*); extern lean_object* l_Lean_Lean_Data_Format___instance__20___closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; lean_object* lean_string_length(lean_object*); lean_object* l_Lean_IR_formatFnBody_loop_match__1(lean_object*); lean_object* l_Lean_IR_formatFnBodyHead_match__1(lean_object*); @@ -2313,7 +2313,7 @@ static lean_object* _init_l___private_Lean_Compiler_IR_Format_0__Lean_IR_formatI _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Lean/Data/Format.c b/stage0/stdlib/Lean/Data/Format.c index dacb4da456..a4c673c6b2 100644 --- a/stage0/stdlib/Lean/Data/Format.c +++ b/stage0/stdlib/Lean/Data/Format.c @@ -194,6 +194,7 @@ lean_object* l_Int_toNat(lean_object*); lean_object* l_Lean_Format_joinSuffix_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_sbracket___closed__3; lean_object* l___private_Lean_Data_Format_0__Lean_Format_pushOutput___boxed(lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; lean_object* l_Lean_Format_prefixJoin(lean_object*); lean_object* l_Lean_Format_joinSuffix___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___rarg(lean_object*, lean_object*); @@ -274,7 +275,6 @@ lean_object* l_Lean_Lean_Data_Format___instance__22___closed__1; extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_Lean_Format_joinArraySep_match__1(lean_object*); lean_object* lean_uint16_to_nat(uint16_t); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; lean_object* l___private_Lean_Data_Format_0__Lean_Format_spaceUptoLine_match__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_Lean_Data_Format___instance__10(lean_object*); lean_object* l_Lean_Format_prefixJoin___rarg(lean_object*, lean_object*, lean_object*); @@ -4645,7 +4645,7 @@ static lean_object* _init_l_Lean_List_format___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Lean/Data/FormatMacro.c b/stage0/stdlib/Lean/Data/FormatMacro.c index b3da936e70..8d7761a0d7 100644 --- a/stage0/stdlib/Lean/Data/FormatMacro.c +++ b/stage0/stdlib/Lean/Data/FormatMacro.c @@ -13,11 +13,11 @@ #ifdef __cplusplus extern "C" { #endif -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__12; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__2; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__5; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40_(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__9; lean_object* l_Lean_Syntax_expandInterpolatedStrChunks(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; @@ -29,14 +29,14 @@ lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____lambda__2__ extern lean_object* l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__3; extern lean_object* l_myMacro____x40_Init_Tactics___hyg_720____closed__3; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____lambda__2___closed__1; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; extern lean_object* l_Lean_mkAppStx___closed__7; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__7; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__6; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3_; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__10; @@ -56,7 +56,7 @@ extern lean_object* l_Lean_nullKind___closed__2; extern lean_object* l_Lean_mkAppStx___closed__3; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__5; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__2; lean_object* l_Lean_Syntax_getArgs(lean_object*); extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____lambda__1___closed__4; @@ -85,7 +85,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__2; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -95,7 +95,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__1; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -125,7 +125,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__4; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -190,7 +190,7 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; x_2 = lean_alloc_ctor(18, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Lean/Data/Json/Basic.c b/stage0/stdlib/Lean/Data/Json/Basic.c index 9285131293..fa07983a53 100644 --- a/stage0/stdlib/Lean/Data/Json/Basic.c +++ b/stage0/stdlib/Lean/Data/Json/Basic.c @@ -87,6 +87,7 @@ lean_object* l_Substring_takeRightWhileAux___at_Lean_JsonNumber_toString___spec_ lean_object* l_Lean_JsonNumber_decEq___boxed(lean_object*, lean_object*); lean_object* l_Std_RBNode_ins___at_Lean_Json_mkObj___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_find___at_Lean_Json_getObjVal_x3f___spec__1___boxed(lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; lean_object* l_Lean_JsonNumber_decEq_match__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_UInt32_decEq(uint32_t, uint32_t); extern lean_object* l_Init_Data_Repr___instance__12___rarg___closed__2; @@ -140,7 +141,6 @@ lean_object* l_Lean_JsonNumber_Lean_Data_Json_Basic___instance__3; lean_object* l___private_Lean_Data_Json_Basic_0__Lean_JsonNumber_countDigits(lean_object*); extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_Lean_Json_getArr_x3f___boxed(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; uint8_t lean_int_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Json_getObjVal_x3f(lean_object*, lean_object*); lean_object* l_Lean_Json_getObjVal_x3f___boxed(lean_object*, lean_object*); @@ -844,7 +844,7 @@ lean_dec(x_2); x_5 = l_Init_Data_Repr___instance__12___rarg___closed__1; x_6 = lean_string_append(x_5, x_4); lean_dec(x_4); -x_7 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_7 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_8 = lean_string_append(x_6, x_7); x_9 = l_Nat_repr(x_3); x_10 = lean_string_append(x_8, x_9); diff --git a/stage0/stdlib/Lean/Data/Json/Printer.c b/stage0/stdlib/Lean/Data/Json/Printer.c index 9660811de8..7ba68c01ea 100644 --- a/stage0/stdlib/Lean/Data/Json/Printer.c +++ b/stage0/stdlib/Lean/Data/Json/Printer.c @@ -60,6 +60,7 @@ lean_object* l_Lean_Json_compress_match__1___rarg(lean_object*, lean_object*, le extern lean_object* l_Lean_Format_sbracket___closed__3; lean_object* l_Array_mapMUnsafe_map___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); extern lean_object* l_Char_quoteCore___closed__3; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; lean_object* l_Lean_Json_render___closed__5; extern lean_object* l_Lean_formatDataValue___closed__2; lean_object* l_Lean_Json_render___closed__3; @@ -75,7 +76,7 @@ lean_object* l_Lean_Json_render(lean_object*); extern lean_object* l_Lean_Lean_Data_Format___instance__7; extern lean_object* l_Init_Data_Repr___instance__2___closed__1; lean_object* l_Array_toList___rarg(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; lean_object* lean_string_length(lean_object*); extern lean_object* l_Lean_List_format___rarg___closed__3; lean_object* l_Std_RBNode_fold___rarg(lean_object*, lean_object*, lean_object*); @@ -83,7 +84,6 @@ lean_object* l_Std_RBNode_fold___at_Lean_Json_compress___spec__2(lean_object*, l lean_object* lean_nat_mod(lean_object*, lean_object*); extern lean_object* l_Char_quoteCore___closed__5; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; lean_object* l_Lean_Json_compress_match__1(lean_object*); uint8_t l_UInt32_decLe(uint32_t, uint32_t); lean_object* lean_uint32_to_nat(uint32_t); @@ -520,7 +520,7 @@ static lean_object* _init_l_Lean_Json_render___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -908,7 +908,7 @@ x_15 = l_Array_mapMUnsafe_map___at_Lean_Json_compress___spec__1(x_12, x_13, x_14 x_16 = x_15; x_17 = l_Array_toList___rarg(x_16); lean_dec(x_16); -x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_19 = l_String_intercalate(x_18, x_17); x_20 = l_List_repr___rarg___closed__2; x_21 = lean_string_append(x_20, x_19); @@ -925,12 +925,12 @@ lean_inc(x_24); lean_dec(x_1); x_25 = lean_box(0); x_26 = l_Std_RBNode_fold___at_Lean_Json_compress___spec__2(x_25, x_24); -x_27 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_27 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_28 = l_String_intercalate(x_27, x_26); x_29 = l_addParenHeuristic___closed__1; x_30 = lean_string_append(x_29, x_28); lean_dec(x_28); -x_31 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_31 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_32 = lean_string_append(x_30, x_31); return x_32; } diff --git a/stage0/stdlib/Lean/Data/Lsp/Basic.c b/stage0/stdlib/Lean/Data/Lsp/Basic.c index 90ea0257e6..3728ef0ccd 100644 --- a/stage0/stdlib/Lean/Data/Lsp/Basic.c +++ b/stage0/stdlib/Lean/Data/Lsp/Basic.c @@ -167,8 +167,8 @@ lean_object* l_Lean_Lsp_Lean_Data_Lsp_Basic___instance__35___closed__1; lean_object* l_Lean_Json_getObjVal_x3f(lean_object*, lean_object*); lean_object* l_Lean_Lsp_Lean_Data_Lsp_Basic___instance__27___closed__2; lean_object* l_Array_mapMUnsafe_map___at_Lean_Lsp_Lean_Data_Lsp_Basic___instance__15___spec__1(size_t, size_t, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; lean_object* l_Lean_Lsp_Lean_Data_Lsp_Basic___instance__35___boxed(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; lean_object* l_Lean_Lsp_VersionedTextDocumentIdentifier_version_x3f___default; lean_object* l_Lean_Lsp_Lean_Data_Lsp_Basic___instance__1; lean_object* l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_Lean_Data_Lsp_Basic___instance__33___spec__1(lean_object*, lean_object*); @@ -458,7 +458,7 @@ lean_object* l_Lean_Lsp_Lean_Data_Lsp_Basic___instance__5(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_3 = l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_Lean_Data_Lsp_Basic___instance__5___spec__1(x_1, x_2); if (lean_obj_tag(x_3) == 0) { @@ -564,7 +564,7 @@ x_15 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_15, 0, x_7); lean_ctor_set(x_15, 1, x_14); x_16 = l_Lean_Json_mkObj(x_15); -x_17 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_17 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_18 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); @@ -649,7 +649,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_3, 0); lean_inc(x_5); lean_dec(x_3); -x_6 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_6 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_7 = l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_Lean_Data_Lsp_Basic___instance__5___spec__1(x_5, x_6); if (lean_obj_tag(x_7) == 0) { @@ -853,7 +853,7 @@ x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); x_21 = l_Lean_Json_mkObj(x_20); -x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); @@ -1079,7 +1079,7 @@ x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_10); lean_ctor_set(x_18, 1, x_17); x_19 = l_Lean_Json_mkObj(x_18); -x_20 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_20 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -1178,7 +1178,7 @@ x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_15); lean_ctor_set(x_23, 1, x_22); x_24 = l_Lean_Json_mkObj(x_23); -x_25 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_25 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); @@ -1766,7 +1766,7 @@ x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_8); lean_ctor_set(x_16, 1, x_15); x_17 = l_Lean_Json_mkObj(x_16); -x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -1987,7 +1987,7 @@ x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_16); lean_ctor_set(x_24, 1, x_23); x_25 = l_Lean_Json_mkObj(x_24); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_27 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); @@ -2532,7 +2532,7 @@ x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_17); lean_ctor_set(x_24, 1, x_23); x_25 = l_Lean_Json_mkObj(x_24); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_27 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); diff --git a/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c b/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c index b83124b3aa..a7cbd96c59 100644 --- a/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c +++ b/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c @@ -151,7 +151,7 @@ lean_object* l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_Lean_Data_Lsp_Basic___ins lean_object* l_Lean_Json_getObjVal_x3f(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Lsp_Lean_Data_Lsp_Diagnostics___instance__12___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Lsp_Lean_Data_Lsp_Diagnostics___instance__7___boxed(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; lean_object* l_Lean_Lsp_Diagnostic_severity_x3f___default; lean_object* lean_nat_to_int(lean_object*); lean_object* l_Lean_Lsp_Lean_Data_Lsp_Diagnostics___instance__5(lean_object*); @@ -1255,7 +1255,7 @@ x_21 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_21, 0, x_13); lean_ctor_set(x_21, 1, x_20); x_22 = l_Lean_Json_mkObj(x_21); -x_23 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_23 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -2320,7 +2320,7 @@ x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_21); lean_ctor_set(x_29, 1, x_28); x_30 = l_Lean_Json_mkObj(x_29); -x_31 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_31 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -2501,7 +2501,7 @@ x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_27); lean_ctor_set(x_35, 1, x_34); x_36 = l_Lean_Json_mkObj(x_35); -x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_38 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); @@ -2989,7 +2989,7 @@ x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_35); lean_ctor_set(x_43, 1, x_42); x_44 = l_Lean_Json_mkObj(x_43); -x_45 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__1; +x_45 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__1; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); diff --git a/stage0/stdlib/Lean/Delaborator.c b/stage0/stdlib/Lean/Delaborator.c index bf0e1db71e..813beeea5a 100644 --- a/stage0/stdlib/Lean/Delaborator.c +++ b/stage0/stdlib/Lean/Delaborator.c @@ -106,7 +106,6 @@ lean_object* l_Lean_Delaborator_delabOr___lambda__1___boxed(lean_object*, lean_o lean_object* l_Lean_Delaborator_getParamKinds___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Delaborator_delabFVar(lean_object*); lean_object* l_Lean_Delaborator_delabGE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabGE___closed__1; @@ -155,6 +154,7 @@ lean_object* l_Lean_Delaborator_getExprKind___closed__1; lean_object* l_Lean_Delaborator_getExprKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabseqRight___lambda__1___closed__4; lean_object* l_Lean_Delaborator_delabOr___lambda__1___closed__8; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; lean_object* l_Lean_Delaborator_delabBind___lambda__1___closed__4; lean_object* l_Lean_getPPStructureProjections___closed__1; lean_object* l_Lean_Delaborator_withAppFn(lean_object*); @@ -237,7 +237,6 @@ lean_object* l_Lean_Delaborator_delabCoe___closed__1; lean_object* l_ReaderT_lift___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_withMDataExpr___rarg___closed__2; lean_object* l_Lean_Delaborator_delabLE___lambda__1___closed__6; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* l_Lean_Delaborator_delabEquiv___closed__1; lean_object* l_Lean_Delaborator_Lean_Delaborator___instance__5___closed__4; lean_object* l_Lean_Delaborator_delabLit_match__2___rarg(lean_object*, lean_object*, lean_object*); @@ -255,6 +254,7 @@ lean_object* l_Lean_Delaborator_delabAppExplicit_match__1(lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Delaborator_delabMod___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabLam___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__4; lean_object* l___regBuiltin_Lean_Delaborator_delabNe___closed__2; lean_object* l_Lean_Delaborator_delabAppImplicit_match__2(lean_object*); @@ -456,7 +456,6 @@ lean_object* l_Lean_Delaborator_delabForall___lambda__1___boxed(lean_object*, le lean_object* l_Lean_Delaborator_delabFVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Delaborator_delabMul___closed__2; lean_object* lean_nat_sub(lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; lean_object* l_Lean_Delaborator_delabOrM___lambda__1___closed__4; lean_object* l_Lean_Delaborator_delabLam___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabseqRight___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -668,7 +667,6 @@ uint8_t l_Lean_Expr_isConst(lean_object*); lean_object* l_Lean_Delaborator_delabDiv___lambda__1___closed__3; uint8_t l_Array_isEmpty___rarg(lean_object*); extern lean_object* l_Lean_Meta_evalNat___closed__14; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; extern lean_object* l_Lean_Init_LeanInit___instance__1; lean_object* l___regBuiltin_Lean_Delaborator_delabMapRev___closed__1; lean_object* l_Lean_Delaborator_initFn____x40_Lean_Delaborator___hyg_626____closed__2; @@ -702,6 +700,7 @@ lean_object* l_Lean_Delaborator_delabGE___lambda__1___closed__1; lean_object* l___regBuiltin_Lean_Delaborator_delabCoeFun___closed__3; lean_object* l___regBuiltin_Lean_Delaborator_delabFComp___closed__1; lean_object* l___regBuiltin_Lean_Delaborator_delabMData(lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; lean_object* l_Lean_Delaborator_Lean_Delaborator___instance__2(lean_object*); lean_object* l_Lean_Delaborator_delabAndM___lambda__1___closed__2; lean_object* l_Lean_Delaborator_delabModN___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -713,7 +712,6 @@ lean_object* l___regBuiltin_Lean_Delaborator_delabMap___closed__3; lean_object* l_Lean_Delaborator_delabProjectionApp_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Delaborator_delabGE___closed__2; lean_object* l_Lean_Delaborator_delabModN___lambda__1___closed__1; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; lean_object* l_Lean_Delaborator_delabAppExplicit___closed__4; lean_object* l_Lean_getPPCoercions___closed__2; extern lean_object* l_Lean_Meta_evalNat___closed__5; @@ -723,6 +721,7 @@ lean_object* l_Lean_Delaborator_delabGT___lambda__1___closed__3; lean_object* l_Lean_Delaborator_delabProjectionApp_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabseqLeft___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Tactics___hyg_720____closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; lean_object* l_Lean_Delaborator_delabHEq___closed__1; lean_object* l_Lean_Delaborator_delabEq___lambda__1___closed__1; lean_object* l_List_firstM___at_Lean_Delaborator_delabFor___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -753,6 +752,7 @@ lean_object* l_Lean_Delaborator_delabGE___lambda__1___closed__2; lean_object* l_Lean_Level_quote___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Delaborator_delabLT___closed__2; lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Delaborator_delabFor___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; lean_object* l_Lean_getPPCoercions___boxed(lean_object*); extern lean_object* l_Lean_Elab_Level_elabLevel___closed__4; lean_object* l_Lean_Delaborator_delabCoe___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -772,7 +772,7 @@ lean_object* l_Lean_Delaborator_delabBVar___closed__2; lean_object* l___regBuiltin_Lean_Delaborator_delabAndThen___closed__3; lean_object* l___regBuiltin_Lean_Delaborator_delabseq___closed__1; extern lean_object* l_Lean_Expr_heq_x3f___closed__1; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; lean_object* l___regBuiltin_Lean_Delaborator_delabSub___closed__1; lean_object* l_Lean_Delaborator_delabHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabHEq___lambda__1___closed__5; @@ -784,13 +784,13 @@ lean_object* l___regBuiltin_Lean_Delaborator_delabLT___closed__1; lean_object* l_Std_RBNode_insert___at_Lean_Delaborator_delabMData___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_Delaborator___hyg_574____closed__2; lean_object* l_Lean_Delaborator_delabTuple___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; lean_object* l_Lean_Delaborator_delabAndThen(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__3; lean_object* l___private_Lean_Delaborator_0__Lean_Delaborator_unresolveUsingNamespace_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_ctorName___closed__9; lean_object* l_Lean_Delaborator_delabProd___lambda__1___closed__4; lean_object* l_Lean_LocalDecl_type(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; uint8_t l_Lean_getPPNotation(lean_object*); lean_object* l___regBuiltin_Lean_Delaborator_delabAdd___closed__2; lean_object* l_Lean_Delaborator_failure___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -860,6 +860,7 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabBEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_Lean_Delaborator___instance__3___closed__3; lean_object* l_Lean_Level_quote___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; uint8_t l_Std_RBNode_isRed___rarg(lean_object*); lean_object* l_Lean_Delaborator_delabBAnd___closed__1; lean_object* l_Lean_Delaborator_delabConst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1108,6 +1109,7 @@ lean_object* l_Lean_Delaborator_delabAppend___lambda__1(uint8_t, lean_object*, l lean_object* l_Lean_Delaborator_delabGE___lambda__1___closed__4; extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_Lean_Delaborator_delabMapRev___lambda__1___closed__2; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; lean_object* l_Lean_Delaborator_delabOrElse(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___regBuiltin_Lean_Delaborator_delabTuple___closed__1; @@ -1117,7 +1119,6 @@ lean_object* l_Lean_getPPBinderTypes___closed__2; lean_object* l_Lean_Delaborator_liftMetaM(lean_object*); lean_object* l_Lean_Delaborator_Lean_Delaborator___instance__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabseq___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; lean_object* l_Lean_Delaborator_delabAppExplicit___closed__2; lean_object* l_Lean_Delaborator_delabAndThen___lambda__1___closed__4; lean_object* lean_local_ctx_find(lean_object*, lean_object*); @@ -1159,7 +1160,6 @@ lean_object* l_Lean_Delaborator_delabOfNat___lambda__1___boxed(lean_object*, lea lean_object* l___private_Lean_Delaborator_0__Lean_Delaborator_delabBinders_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabAndThen___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_Delaborator_initFn____x40_Lean_Delaborator___hyg_626_(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; lean_object* l_Lean_Level_quote___closed__3; lean_object* l_Lean_Delaborator_delabConst___closed__7; lean_object* l_Lean_Delaborator_delabPow___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1241,8 +1241,8 @@ uint8_t l_Lean_isStructure(lean_object*, lean_object*); lean_object* l_Lean_Delaborator_delabLE___lambda__1___closed__3; lean_object* l___regBuiltin_Lean_Delaborator_delabProj___closed__1; lean_object* l_Lean_Delaborator_delabIff___lambda__1___closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_object* l___regBuiltin_Lean_Delaborator_delabseq(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; lean_object* l_Lean_Delaborator_delabForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Delaborator_delabMap(lean_object*); lean_object* l___private_Lean_Delaborator_0__Lean_Delaborator_shouldGroupWithNext___closed__2; @@ -11700,7 +11700,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Delaborator_delabSort___closed__9; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -13037,7 +13037,7 @@ static lean_object* _init_l_Lean_Delaborator_delabConst___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_2 = l_Lean_mkAtom(x_1); return x_2; } @@ -13580,7 +13580,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); x_48 = lean_array_push(x_33, x_47); -x_49 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_49 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_50 = lean_array_push(x_48, x_49); x_51 = l_Lean_Delaborator_delabConst___closed__5; x_52 = lean_alloc_ctor(1, 2, 0); @@ -13634,7 +13634,7 @@ 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 = lean_array_push(x_60, x_74); -x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_77 = lean_array_push(x_75, x_76); x_78 = l_Lean_Delaborator_delabConst___closed__5; x_79 = lean_alloc_ctor(1, 2, 0); @@ -20012,11 +20012,11 @@ x_58 = l_Lean_nullKind___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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; +x_60 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; x_61 = lean_array_push(x_60, x_59); -x_62 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_62 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_63 = lean_array_push(x_61, x_62); -x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_65 = lean_array_push(x_63, x_64); x_66 = l_Lean_Delaborator_delabLam___lambda__3___closed__1; x_67 = lean_alloc_ctor(1, 2, 0); @@ -20040,7 +20040,7 @@ x_71 = l_Lean_nullKind___closed__2; 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 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; +x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; x_74 = lean_array_push(x_73, x_72); x_75 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_76 = lean_array_push(x_75, x_14); @@ -20048,7 +20048,7 @@ x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_71); lean_ctor_set(x_77, 1, x_76); x_78 = lean_array_push(x_74, x_77); -x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_80 = lean_array_push(x_78, x_79); x_81 = l_Lean_Delaborator_delabLam___lambda__3___closed__1; x_82 = lean_alloc_ctor(1, 2, 0); @@ -20403,11 +20403,11 @@ x_159 = l_Lean_nullKind___closed__2; x_160 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_160, 0, x_159); lean_ctor_set(x_160, 1, x_158); -x_161 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; +x_161 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; x_162 = lean_array_push(x_161, x_160); -x_163 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_163 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_164 = lean_array_push(x_162, x_163); -x_165 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_165 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_166 = lean_array_push(x_164, x_165); x_167 = l_Lean_Delaborator_delabLam___lambda__3___closed__1; x_168 = lean_alloc_ctor(1, 2, 0); @@ -20431,7 +20431,7 @@ x_172 = l_Lean_nullKind___closed__2; x_173 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_173, 0, x_172); lean_ctor_set(x_173, 1, x_171); -x_174 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; +x_174 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; x_175 = lean_array_push(x_174, x_173); x_176 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_177 = lean_array_push(x_176, x_14); @@ -20439,7 +20439,7 @@ x_178 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_178, 0, x_172); lean_ctor_set(x_178, 1, x_177); x_179 = lean_array_push(x_175, x_178); -x_180 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_180 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_181 = lean_array_push(x_179, x_180); x_182 = l_Lean_Delaborator_delabLam___lambda__3___closed__1; x_183 = lean_alloc_ctor(1, 2, 0); @@ -21003,7 +21003,7 @@ x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_47); lean_ctor_set(x_53, 1, x_52); x_54 = lean_array_push(x_50, x_53); -x_55 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_55 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_56 = lean_array_push(x_54, x_55); x_57 = l_myMacro____x40_Init_Tactics___hyg_720____closed__10; x_58 = lean_array_push(x_56, x_57); @@ -21127,7 +21127,7 @@ 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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; +x_71 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; x_72 = lean_array_push(x_71, x_70); x_73 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_74 = lean_array_push(x_73, x_15); @@ -21135,7 +21135,7 @@ x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_69); lean_ctor_set(x_75, 1, x_74); x_76 = lean_array_push(x_72, x_75); -x_77 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_77 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_78 = lean_array_push(x_76, x_77); x_79 = l_Lean_Delaborator_delabLam___lambda__3___closed__1; x_80 = lean_alloc_ctor(1, 2, 0); @@ -21344,7 +21344,7 @@ x_159 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_159, 0, x_153); lean_ctor_set(x_159, 1, x_158); x_160 = lean_array_push(x_156, x_159); -x_161 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_161 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_162 = lean_array_push(x_160, x_161); x_163 = l_myMacro____x40_Init_Tactics___hyg_720____closed__10; x_164 = lean_array_push(x_162, x_163); @@ -21468,7 +21468,7 @@ x_176 = l_Lean_nullKind___closed__2; x_177 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_177, 0, x_176); lean_ctor_set(x_177, 1, x_175); -x_178 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; +x_178 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; x_179 = lean_array_push(x_178, x_177); x_180 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_181 = lean_array_push(x_180, x_121); @@ -21476,7 +21476,7 @@ x_182 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_182, 0, x_176); lean_ctor_set(x_182, 1, x_181); x_183 = lean_array_push(x_179, x_182); -x_184 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_184 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_185 = lean_array_push(x_183, x_184); x_186 = l_Lean_Delaborator_delabLam___lambda__3___closed__1; x_187 = lean_alloc_ctor(1, 2, 0); @@ -21915,7 +21915,7 @@ x_29 = lean_ctor_get(x_27, 0); x_30 = lean_mk_syntax_ident(x_15); x_31 = l_Array_empty___closed__1; x_32 = lean_array_push(x_31, x_30); -x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_34 = lean_array_push(x_32, x_33); x_35 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_36 = lean_array_push(x_35, x_20); @@ -21929,7 +21929,7 @@ x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); x_42 = lean_array_push(x_34, x_41); -x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_44 = lean_array_push(x_42, x_43); x_45 = lean_array_push(x_44, x_24); x_46 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -21964,7 +21964,7 @@ lean_dec(x_27); x_60 = lean_mk_syntax_ident(x_15); x_61 = l_Array_empty___closed__1; x_62 = lean_array_push(x_61, x_60); -x_63 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_63 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_64 = lean_array_push(x_62, x_63); x_65 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_66 = lean_array_push(x_65, x_20); @@ -21978,7 +21978,7 @@ x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); x_72 = lean_array_push(x_64, x_71); -x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_74 = lean_array_push(x_72, x_73); x_75 = lean_array_push(x_74, x_24); x_76 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -23460,7 +23460,7 @@ static lean_object* _init_l_Lean_Delaborator_delabStructureInstance___lambda__1_ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; x_2 = l_Lean_mkAtom(x_1); return x_2; } @@ -23503,7 +23503,7 @@ x_26 = lean_array_push(x_25, x_23); x_27 = l_Lean_Delaborator_delabStructureInstance___lambda__1___closed__1; x_28 = lean_array_push(x_26, x_27); x_29 = lean_array_push(x_28, x_17); -x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -23539,7 +23539,7 @@ x_45 = lean_array_push(x_44, x_42); x_46 = l_Lean_Delaborator_delabStructureInstance___lambda__1___closed__1; x_47 = lean_array_push(x_45, x_46); x_48 = lean_array_push(x_47, x_35); -x_49 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_49 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -23644,7 +23644,7 @@ x_77 = lean_array_push(x_76, x_74); x_78 = l_Lean_Delaborator_delabStructureInstance___lambda__1___closed__1; x_79 = lean_array_push(x_77, x_78); x_80 = lean_array_push(x_79, x_66); -x_81 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_81 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); @@ -23935,14 +23935,14 @@ x_44 = l_Lean_nullKind___closed__2; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); -x_46 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; +x_46 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; x_47 = lean_array_push(x_46, x_45); -x_48 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_48 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_49 = lean_array_push(x_47, x_48); x_50 = lean_array_push(x_49, x_48); -x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_52 = lean_array_push(x_50, x_51); -x_53 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_53 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -23961,14 +23961,14 @@ 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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; +x_59 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; x_60 = lean_array_push(x_59, x_58); -x_61 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_61 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_62 = lean_array_push(x_60, x_61); x_63 = lean_array_push(x_62, x_61); -x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_65 = lean_array_push(x_63, x_64); -x_66 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_66 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); @@ -24014,9 +24014,9 @@ x_79 = l_Lean_nullKind___closed__2; x_80 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_80, 0, x_79); lean_ctor_set(x_80, 1, x_78); -x_81 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; +x_81 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; x_82 = lean_array_push(x_81, x_80); -x_83 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_83 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_84 = lean_array_push(x_82, x_83); x_85 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_86 = lean_array_push(x_85, x_77); @@ -24024,9 +24024,9 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_79); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_84, x_87); -x_89 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_89 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_90 = lean_array_push(x_88, x_89); -x_91 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_91 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); @@ -24047,9 +24047,9 @@ x_96 = l_Lean_nullKind___closed__2; x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_96); lean_ctor_set(x_97, 1, x_95); -x_98 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; +x_98 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; x_99 = lean_array_push(x_98, x_97); -x_100 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_100 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_101 = lean_array_push(x_99, x_100); x_102 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_103 = lean_array_push(x_102, x_93); @@ -24057,9 +24057,9 @@ x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_96); lean_ctor_set(x_104, 1, x_103); x_105 = lean_array_push(x_101, x_104); -x_106 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_106 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_107 = lean_array_push(x_105, x_106); -x_108 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_108 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -24275,7 +24275,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_3 = lean_array_push(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index d3a550a003..82b0e07b39 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -145,7 +145,6 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExpl lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_whnfEasyCases___at___private_Lean_Meta_WHNF_0__Lean_Meta_whnfCoreImp___spec__2(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_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getBindingName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* lean_local_ctx_find_from_user_name(lean_object*, lean_object*); lean_object* l_Lean_Elab_getRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_toMessageData___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__7; @@ -157,6 +156,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_getSuccess(lean_object* lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg_match__2(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux_match__2(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Position_Lean_Data_Position___instance__2___spec__1(lean_object*); @@ -210,6 +210,7 @@ lean_object* l_Lean_Meta_setPostponed___at___private_Lean_Meta_LevelDefEq_0__Lea lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__5; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals___closed__1; +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__7; lean_object* lean_nat_add(lean_object*, lean_object*); @@ -225,7 +226,6 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppArgs___closed__1 lean_object* l_Lean_mkAppN(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicitUniv(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType_match__2(lean_object*); -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_addTrace___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___closed__1; lean_object* l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -279,7 +279,6 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__3; lean_object* l_List_foldlM___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addInstMVar___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*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; lean_object* l_Lean_Elab_Term_elabExplicit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addTrace___at_Lean_Meta_isLevelDefEqAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind___closed__2; @@ -432,7 +431,6 @@ uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___at_Lean_Elab_Term_elabApp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; size_t lean_usize_of_nat(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections_match__1(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabProj___closed__1; @@ -456,6 +454,7 @@ lean_object* l_Lean_Elab_Term_ElabAppArgs_eraseNamedArgCore___boxed(lean_object* lean_object* l_Lean_Elab_Term_mkConst(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_0__Lean_Elab_Term_ElabAppArgs_normalizeFunType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__14; lean_object* l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___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*); extern lean_object* l_Lean_Elab_Term_elabBinders___rarg___closed__1; @@ -506,6 +505,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lea lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg_match__3(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; lean_object* l_Lean_Elab_Term_saveAllState___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_tryCoeFun_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -565,7 +565,7 @@ lean_object* l_Lean_Elab_getRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Ter lean_object* l___regBuiltin_Lean_Elab_Term_elabChoice___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getForallBody___lambda__1___boxed(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7402_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7400_(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1(lean_object*); @@ -13210,7 +13210,7 @@ static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArg _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Lean_mkAppStx___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -17285,7 +17285,7 @@ lean_dec(x_52); x_58 = l_Array_empty___closed__1; x_59 = l_Array_append___rarg(x_58, x_57); lean_dec(x_57); -x_60 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_60 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_61 = lean_array_push(x_59, x_60); x_62 = l_Lean_nullKind___closed__2; x_63 = lean_alloc_ctor(1, 2, 0); @@ -17295,9 +17295,9 @@ x_64 = lean_array_push(x_58, x_63); x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_62); lean_ctor_set(x_65, 1, x_64); -x_66 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; +x_66 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; x_67 = lean_array_push(x_66, x_65); -x_68 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_68 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_69 = lean_array_push(x_67, x_68); x_70 = l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__2; x_71 = lean_alloc_ctor(1, 2, 0); @@ -35671,7 +35671,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7402_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7400_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -36000,7 +36000,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabArrayRef___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabArrayRef(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7402_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7400_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index a9341341da..793334cf18 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -104,7 +104,6 @@ lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__18; lean_object* l_Lean_Elab_Term_elabFun_match__1(lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__6; lean_object* l_Lean_addDecl___at_Lean_Elab_Term_declareTacticSyntax___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__15; lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBinders_match__1___rarg(lean_object*, lean_object*); @@ -112,6 +111,7 @@ lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__2___rarg(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_expandLetEqnsDecl(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__4; lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___at_Lean_Elab_Term_elabBinders___spec__2___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* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -140,6 +140,7 @@ lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatchTactic(lean_object*, lean_ lean_object* l_Lean_Elab_Term_expandFunBinders_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l_Lean_Meta_setPostponed___at___private_Lean_Meta_LevelDefEq_0__Lean_Meta_getResetPostponed___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_propagateExpectedType___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_elabLetDeclCore___closed__2; @@ -153,7 +154,6 @@ lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifie lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__6; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__2; -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__11; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___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*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__18; @@ -189,7 +189,6 @@ lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar(lean_object*, lean_objec lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__7; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; extern lean_object* l_Lean_choiceKind___closed__2; extern lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___closed__1; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -214,7 +213,7 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__6; lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4718_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4757_(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__8; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLocalInstances___at_Lean_Elab_Term_elabBinders___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -274,7 +273,6 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder_match__1(lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; extern lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_liftMkBindingM___rarg___closed__3; lean_object* l_Lean_Elab_Term_mkFreshIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -284,17 +282,18 @@ extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation lean_object* l_Lean_compileDecl___at_Lean_Elab_Term_declareTacticSyntax___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_forIn___at___private_Lean_Meta_LevelDefEq_0__Lean_Meta_postponedToMessageData___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_formatEntry___closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; lean_object* l_Lean_mkFVar(lean_object*); extern lean_object* l_Lean_Expr_getAutoParamTactic_x3f___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__5; lean_object* l_Lean_Elab_Term_quoteAutoTactic(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandLetEqnsDeclVal_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandLetEqnsDeclVal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isAntiquot(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAutoParamTactic_x3f___closed__2; @@ -309,13 +308,13 @@ lean_object* l_Lean_Meta_isExprDefEq___at_Lean_Elab_Term_synthesizeInstMVarCore_ lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__13; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux_match__1___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; lean_object* l_Lean_Elab_Term_expandOptType___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBinders___rarg___closed__1; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__10; extern lean_object* l_Lean_nullKind___closed__2; extern lean_object* l_Lean_Elab_Term_termElabAttribute; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetBangDecl___closed__1; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__3; extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__4; @@ -352,6 +351,7 @@ lean_object* l_Lean_Elab_Term_quoteAutoTactic_match__1___rarg(lean_object*, lean lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__6; lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__6; lean_object* l_Lean_mkApp(lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__1(lean_object*); lean_object* l_Lean_Meta_mkForallFVars___at_Lean_Elab_Term_elabForall___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; @@ -445,7 +445,7 @@ lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__8; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__11; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl(lean_object*); -lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* lean_compile_decl(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalContextImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -454,6 +454,7 @@ lean_object* l_Init_Control_MonadControl___instance__1___rarg(lean_object*, lean extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrow___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__3; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -471,7 +472,6 @@ extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabLetDeclCore___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclCore(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f_loop___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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___closed__4; lean_object* l_Lean_Elab_Term_FunBinders_State_fvars___default; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__7; @@ -495,7 +495,7 @@ lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_propagat lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__5; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__13; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_isClassImp_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__9; lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatch(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); @@ -1001,8 +1001,8 @@ static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__6; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1012,7 +1012,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1022,7 +1022,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__5; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1032,7 +1032,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1041,7 +1041,7 @@ static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -1081,8 +1081,8 @@ static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__26; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__4; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__26; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1896,7 +1896,7 @@ static 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_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Lean_Expr_getAutoParamTactic_x3f___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3640,6 +3640,39 @@ lean_dec(x_1); return x_9; } } +lean_object* l_Lean_Elab_Term_expandOptType(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l_Lean_Syntax_isNone(x_2); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = lean_unsigned_to_nat(0u); +x_5 = l_Lean_Syntax_getArg(x_2, x_4); +x_6 = lean_unsigned_to_nat(1u); +x_7 = l_Lean_Syntax_getArg(x_5, x_6); +lean_dec(x_5); +return x_7; +} +else +{ +lean_object* x_8; +x_8 = l_Lean_mkHole(x_1); +return x_8; +} +} +} +lean_object* l_Lean_Elab_Term_expandOptType___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Elab_Term_expandOptType(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -4192,69 +4225,72 @@ x_95 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_94, x_2, x lean_dec(x_94); if (lean_obj_tag(x_95) == 0) { -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; size_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; size_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; x_96 = lean_ctor_get(x_95, 0); lean_inc(x_96); x_97 = lean_ctor_get(x_95, 1); lean_inc(x_97); lean_dec(x_95); -x_98 = l_Lean_mkHole(x_1); -x_99 = lean_array_get_size(x_96); -x_100 = lean_usize_of_nat(x_99); +x_98 = lean_unsigned_to_nat(1u); +x_99 = lean_array_get(x_92, x_10, x_98); +x_100 = l_Lean_Elab_Term_expandOptType(x_1, x_99); lean_dec(x_99); -x_101 = x_96; -x_102 = lean_box_usize(x_100); -x_103 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; -x_104 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5___boxed), 11, 4); -lean_closure_set(x_104, 0, x_98); -lean_closure_set(x_104, 1, x_102); -lean_closure_set(x_104, 2, x_103); -lean_closure_set(x_104, 3, x_101); -x_105 = x_104; -x_106 = lean_apply_7(x_105, x_2, x_3, x_4, x_5, x_6, x_7, x_97); -return x_106; +x_101 = lean_array_get_size(x_96); +x_102 = lean_usize_of_nat(x_101); +lean_dec(x_101); +x_103 = x_96; +x_104 = lean_box_usize(x_102); +x_105 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; +x_106 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5___boxed), 11, 4); +lean_closure_set(x_106, 0, x_100); +lean_closure_set(x_106, 1, x_104); +lean_closure_set(x_106, 2, x_105); +lean_closure_set(x_106, 3, x_103); +x_107 = x_106; +x_108 = lean_apply_7(x_107, x_2, x_3, x_4, x_5, x_6, x_7, x_97); +return x_108; } else { -uint8_t x_107; +uint8_t x_109; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_107 = !lean_is_exclusive(x_95); -if (x_107 == 0) +x_109 = !lean_is_exclusive(x_95); +if (x_109 == 0) { return x_95; } else { -lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_108 = lean_ctor_get(x_95, 0); -x_109 = lean_ctor_get(x_95, 1); -lean_inc(x_109); -lean_inc(x_108); +lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_110 = lean_ctor_get(x_95, 0); +x_111 = lean_ctor_get(x_95, 1); +lean_inc(x_111); +lean_inc(x_110); lean_dec(x_95); -x_110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -return x_110; +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_110); +lean_ctor_set(x_112, 1, x_111); +return x_112; } } } } else { -lean_object* x_111; +lean_object* x_113; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_111 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1___rarg(x_8); -return x_111; +x_113 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1___rarg(x_8); +return x_113; } } } @@ -6412,7 +6448,7 @@ x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_35); lean_ctor_set(x_41, 1, x_40); x_42 = lean_array_push(x_38, x_41); -x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_44 = lean_array_push(x_42, x_43); x_45 = l_myMacro____x40_Init_Tactics___hyg_720____closed__10; x_46 = lean_array_push(x_44, x_45); @@ -6426,7 +6462,7 @@ lean_ctor_set(x_50, 0, x_35); lean_ctor_set(x_50, 1, x_49); x_51 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; x_52 = lean_array_push(x_51, x_50); -x_53 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_53 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_54 = lean_array_push(x_52, x_53); x_55 = lean_array_push(x_54, x_20); x_56 = l_Lean_Elab_Term_elabForall___closed__2; @@ -6468,7 +6504,7 @@ x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_68); lean_ctor_set(x_74, 1, x_73); x_75 = lean_array_push(x_71, x_74); -x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_77 = lean_array_push(x_75, x_76); x_78 = l_myMacro____x40_Init_Tactics___hyg_720____closed__10; x_79 = lean_array_push(x_77, x_78); @@ -6482,7 +6518,7 @@ lean_ctor_set(x_83, 0, x_68); lean_ctor_set(x_83, 1, x_82); x_84 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__4; x_85 = lean_array_push(x_84, x_83); -x_86 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_86 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_87 = lean_array_push(x_85, x_86); x_88 = lean_array_push(x_87, x_20); x_89 = l_Lean_Elab_Term_elabForall___closed__2; @@ -7012,20 +7048,15 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandFunBinders_loop_match__2 return x_2; } } -lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__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* l_Lean_Elab_Term_expandFunBinders_loop_match__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: { switch (lean_obj_tag(x_1)) { case 1: { -lean_object* x_9; -lean_dec(x_7); -x_9 = lean_ctor_get(x_1, 0); -lean_inc(x_9); -if (lean_obj_tag(x_9) == 1) -{ lean_object* x_10; -x_10 = lean_ctor_get(x_9, 0); +lean_dec(x_8); +x_10 = lean_ctor_get(x_1, 0); lean_inc(x_10); if (lean_obj_tag(x_10) == 1) { @@ -7042,1718 +7073,1916 @@ if (lean_obj_tag(x_12) == 1) lean_object* x_13; x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); -if (lean_obj_tag(x_13) == 0) +if (lean_obj_tag(x_13) == 1) { -lean_object* x_14; uint8_t x_15; -x_14 = lean_ctor_get(x_1, 1); +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); -x_15 = !lean_is_exclusive(x_9); -if (x_15 == 0) +if (lean_obj_tag(x_14) == 0) { -lean_object* x_16; size_t x_17; lean_object* x_18; uint8_t x_19; -x_16 = lean_ctor_get(x_9, 1); -x_17 = lean_ctor_get_usize(x_9, 2); -x_18 = lean_ctor_get(x_9, 0); -lean_dec(x_18); -x_19 = !lean_is_exclusive(x_10); -if (x_19 == 0) +lean_object* x_15; uint8_t x_16; +x_15 = lean_ctor_get(x_1, 1); +lean_inc(x_15); +x_16 = !lean_is_exclusive(x_10); +if (x_16 == 0) { -lean_object* x_20; size_t x_21; lean_object* x_22; uint8_t x_23; -x_20 = lean_ctor_get(x_10, 1); -x_21 = lean_ctor_get_usize(x_10, 2); -x_22 = lean_ctor_get(x_10, 0); -lean_dec(x_22); -x_23 = !lean_is_exclusive(x_11); -if (x_23 == 0) +lean_object* x_17; size_t x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_ctor_get(x_10, 1); +x_18 = lean_ctor_get_usize(x_10, 2); +x_19 = lean_ctor_get(x_10, 0); +lean_dec(x_19); +x_20 = !lean_is_exclusive(x_11); +if (x_20 == 0) { -lean_object* x_24; size_t x_25; lean_object* x_26; uint8_t x_27; -x_24 = lean_ctor_get(x_11, 1); -x_25 = lean_ctor_get_usize(x_11, 2); -x_26 = lean_ctor_get(x_11, 0); -lean_dec(x_26); -x_27 = !lean_is_exclusive(x_12); -if (x_27 == 0) +lean_object* x_21; size_t x_22; lean_object* x_23; uint8_t x_24; +x_21 = lean_ctor_get(x_11, 1); +x_22 = lean_ctor_get_usize(x_11, 2); +x_23 = lean_ctor_get(x_11, 0); +lean_dec(x_23); +x_24 = !lean_is_exclusive(x_12); +if (x_24 == 0) { -lean_object* x_28; size_t x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; -x_28 = lean_ctor_get(x_12, 1); -x_29 = lean_ctor_get_usize(x_12, 2); -x_30 = lean_ctor_get(x_12, 0); -lean_dec(x_30); -x_31 = l_Lean_mkAppStx___closed__1; -x_32 = lean_string_dec_eq(x_28, x_31); -lean_dec(x_28); -if (x_32 == 0) +lean_object* x_25; size_t x_26; lean_object* x_27; uint8_t x_28; +x_25 = lean_ctor_get(x_12, 1); +x_26 = lean_ctor_get_usize(x_12, 2); +x_27 = lean_ctor_get(x_12, 0); +lean_dec(x_27); +x_28 = !lean_is_exclusive(x_13); +if (x_28 == 0) { -lean_object* x_33; +lean_object* x_29; size_t x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_29 = lean_ctor_get(x_13, 1); +x_30 = lean_ctor_get_usize(x_13, 2); +x_31 = lean_ctor_get(x_13, 0); +lean_dec(x_31); +x_32 = l_Lean_mkAppStx___closed__1; +x_33 = lean_string_dec_eq(x_29, x_32); +lean_dec(x_29); +if (x_33 == 0) +{ +lean_object* x_34; +lean_free_object(x_13); lean_free_object(x_12); +lean_dec(x_25); lean_free_object(x_11); -lean_dec(x_24); +lean_dec(x_21); lean_free_object(x_10); -lean_dec(x_20); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_14); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_33 = lean_apply_1(x_8, x_1); -return x_33; -} -else -{ -uint8_t x_34; -x_34 = !lean_is_exclusive(x_1); -if (x_34 == 0) -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_35 = lean_ctor_get(x_1, 1); -lean_dec(x_35); -x_36 = lean_ctor_get(x_1, 0); -lean_dec(x_36); -x_37 = l_Lean_mkAppStx___closed__3; -x_38 = lean_string_dec_eq(x_24, x_37); -if (x_38 == 0) -{ -lean_object* x_39; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_12, 1, x_31); -x_39 = lean_apply_1(x_8, x_1); -return x_39; -} -else -{ -lean_object* x_40; uint8_t x_41; -lean_dec(x_24); -x_40 = l_Lean_mkAppStx___closed__5; -x_41 = lean_string_dec_eq(x_20, x_40); -if (x_41 == 0) -{ -lean_object* x_42; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_12, 1, x_31); -lean_ctor_set(x_11, 1, x_37); -x_42 = lean_apply_1(x_8, x_1); -return x_42; -} -else -{ -lean_object* x_43; uint8_t x_44; -lean_dec(x_20); -x_43 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; -x_44 = lean_string_dec_eq(x_16, x_43); -if (x_44 == 0) -{ -lean_object* x_45; uint8_t x_46; -lean_dec(x_2); -x_45 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; -x_46 = lean_string_dec_eq(x_16, x_45); -if (x_46 == 0) -{ -lean_object* x_47; uint8_t x_48; -lean_dec(x_3); -x_47 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; -x_48 = lean_string_dec_eq(x_16, x_47); -if (x_48 == 0) -{ -lean_object* x_49; uint8_t x_50; -lean_dec(x_4); -x_49 = l_Lean_mkHole___closed__1; -x_50 = lean_string_dec_eq(x_16, x_49); -if (x_50 == 0) -{ -lean_object* x_51; uint8_t x_52; -lean_dec(x_5); -x_51 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; -x_52 = lean_string_dec_eq(x_16, x_51); -if (x_52 == 0) -{ -lean_object* x_53; -lean_dec(x_6); -lean_ctor_set(x_12, 1, x_31); -lean_ctor_set(x_11, 1, x_37); -lean_ctor_set(x_10, 1, x_40); -x_53 = lean_apply_1(x_8, x_1); -return x_53; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -lean_free_object(x_1); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -x_54 = lean_box_usize(x_29); -x_55 = lean_box_usize(x_25); -x_56 = lean_box_usize(x_21); -x_57 = lean_box_usize(x_17); -x_58 = lean_apply_5(x_6, x_14, x_54, x_55, x_56, x_57); -return x_58; -} -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -lean_free_object(x_1); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -x_59 = lean_box_usize(x_29); -x_60 = lean_box_usize(x_25); -x_61 = lean_box_usize(x_21); -x_62 = lean_box_usize(x_17); -x_63 = lean_apply_5(x_5, x_14, x_59, x_60, x_61, x_62); -return x_63; -} -} -else -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -lean_free_object(x_1); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -x_64 = lean_box_usize(x_29); -x_65 = lean_box_usize(x_25); -x_66 = lean_box_usize(x_21); -x_67 = lean_box_usize(x_17); -x_68 = lean_apply_5(x_4, x_14, x_64, x_65, x_66, x_67); -return x_68; -} -} -else -{ -lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -lean_free_object(x_1); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_69 = lean_box_usize(x_29); -x_70 = lean_box_usize(x_25); -x_71 = lean_box_usize(x_21); -x_72 = lean_box_usize(x_17); -x_73 = lean_apply_5(x_3, x_14, x_69, x_70, x_71, x_72); -return x_73; -} -} -else -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -lean_free_object(x_1); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_74 = lean_box_usize(x_29); -x_75 = lean_box_usize(x_25); -x_76 = lean_box_usize(x_21); -x_77 = lean_box_usize(x_17); -x_78 = lean_apply_5(x_2, x_14, x_74, x_75, x_76, x_77); -return x_78; -} -} -} -} -else -{ -lean_object* x_79; uint8_t x_80; -lean_dec(x_1); -x_79 = l_Lean_mkAppStx___closed__3; -x_80 = lean_string_dec_eq(x_24, x_79); -if (x_80 == 0) -{ -lean_object* x_81; lean_object* x_82; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_12, 1, x_31); -x_81 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_81, 0, x_9); -lean_ctor_set(x_81, 1, x_14); -x_82 = lean_apply_1(x_8, x_81); -return x_82; -} -else -{ -lean_object* x_83; uint8_t x_84; -lean_dec(x_24); -x_83 = l_Lean_mkAppStx___closed__5; -x_84 = lean_string_dec_eq(x_20, x_83); -if (x_84 == 0) -{ -lean_object* x_85; lean_object* x_86; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_12, 1, x_31); -lean_ctor_set(x_11, 1, x_79); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_9); -lean_ctor_set(x_85, 1, x_14); -x_86 = lean_apply_1(x_8, x_85); -return x_86; -} -else -{ -lean_object* x_87; uint8_t x_88; -lean_dec(x_20); -x_87 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; -x_88 = lean_string_dec_eq(x_16, x_87); -if (x_88 == 0) -{ -lean_object* x_89; uint8_t x_90; -lean_dec(x_2); -x_89 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; -x_90 = lean_string_dec_eq(x_16, x_89); -if (x_90 == 0) -{ -lean_object* x_91; uint8_t x_92; -lean_dec(x_3); -x_91 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; -x_92 = lean_string_dec_eq(x_16, x_91); -if (x_92 == 0) -{ -lean_object* x_93; uint8_t x_94; -lean_dec(x_4); -x_93 = l_Lean_mkHole___closed__1; -x_94 = lean_string_dec_eq(x_16, x_93); -if (x_94 == 0) -{ -lean_object* x_95; uint8_t x_96; -lean_dec(x_5); -x_95 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; -x_96 = lean_string_dec_eq(x_16, x_95); -if (x_96 == 0) -{ -lean_object* x_97; lean_object* x_98; -lean_dec(x_6); -lean_ctor_set(x_12, 1, x_31); -lean_ctor_set(x_11, 1, x_79); -lean_ctor_set(x_10, 1, x_83); -x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_9); -lean_ctor_set(x_97, 1, x_14); -x_98 = lean_apply_1(x_8, x_97); -return x_98; -} -else -{ -lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -x_99 = lean_box_usize(x_29); -x_100 = lean_box_usize(x_25); -x_101 = lean_box_usize(x_21); -x_102 = lean_box_usize(x_17); -x_103 = lean_apply_5(x_6, x_14, x_99, x_100, x_101, x_102); -return x_103; -} -} -else -{ -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -x_104 = lean_box_usize(x_29); -x_105 = lean_box_usize(x_25); -x_106 = lean_box_usize(x_21); -x_107 = lean_box_usize(x_17); -x_108 = lean_apply_5(x_5, x_14, x_104, x_105, x_106, x_107); -return x_108; -} -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -x_109 = lean_box_usize(x_29); -x_110 = lean_box_usize(x_25); -x_111 = lean_box_usize(x_21); -x_112 = lean_box_usize(x_17); -x_113 = lean_apply_5(x_4, x_14, x_109, x_110, x_111, x_112); -return x_113; -} -} -else -{ -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_114 = lean_box_usize(x_29); -x_115 = lean_box_usize(x_25); -x_116 = lean_box_usize(x_21); -x_117 = lean_box_usize(x_17); -x_118 = lean_apply_5(x_3, x_14, x_114, x_115, x_116, x_117); -return x_118; -} -} -else -{ -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_119 = lean_box_usize(x_29); -x_120 = lean_box_usize(x_25); -x_121 = lean_box_usize(x_21); -x_122 = lean_box_usize(x_17); -x_123 = lean_apply_5(x_2, x_14, x_119, x_120, x_121, x_122); -return x_123; -} -} -} -} -} -} -else -{ -lean_object* x_124; size_t x_125; lean_object* x_126; uint8_t x_127; -x_124 = lean_ctor_get(x_12, 1); -x_125 = lean_ctor_get_usize(x_12, 2); -lean_inc(x_124); -lean_dec(x_12); -x_126 = l_Lean_mkAppStx___closed__1; -x_127 = lean_string_dec_eq(x_124, x_126); -lean_dec(x_124); -if (x_127 == 0) -{ -lean_object* x_128; -lean_free_object(x_11); -lean_dec(x_24); -lean_free_object(x_10); -lean_dec(x_20); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_14); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_128 = lean_apply_1(x_8, x_1); -return x_128; -} -else -{ -lean_object* x_129; lean_object* x_130; uint8_t x_131; -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_129 = x_1; -} else { - lean_dec_ref(x_1); - x_129 = lean_box(0); -} -x_130 = l_Lean_mkAppStx___closed__3; -x_131 = lean_string_dec_eq(x_24, x_130); -if (x_131 == 0) -{ -lean_object* x_132; lean_object* x_133; lean_object* x_134; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_132 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_132, 0, x_13); -lean_ctor_set(x_132, 1, x_126); -lean_ctor_set_usize(x_132, 2, x_125); -lean_ctor_set(x_11, 0, x_132); -if (lean_is_scalar(x_129)) { - x_133 = lean_alloc_ctor(1, 2, 0); -} else { - x_133 = x_129; -} -lean_ctor_set(x_133, 0, x_9); -lean_ctor_set(x_133, 1, x_14); -x_134 = lean_apply_1(x_8, x_133); -return x_134; -} -else -{ -lean_object* x_135; uint8_t x_136; -lean_dec(x_24); -x_135 = l_Lean_mkAppStx___closed__5; -x_136 = lean_string_dec_eq(x_20, x_135); -if (x_136 == 0) -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_137 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_137, 0, x_13); -lean_ctor_set(x_137, 1, x_126); -lean_ctor_set_usize(x_137, 2, x_125); -lean_ctor_set(x_11, 1, x_130); -lean_ctor_set(x_11, 0, x_137); -if (lean_is_scalar(x_129)) { - x_138 = lean_alloc_ctor(1, 2, 0); -} else { - x_138 = x_129; -} -lean_ctor_set(x_138, 0, x_9); -lean_ctor_set(x_138, 1, x_14); -x_139 = lean_apply_1(x_8, x_138); -return x_139; -} -else -{ -lean_object* x_140; uint8_t x_141; -lean_dec(x_20); -x_140 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; -x_141 = lean_string_dec_eq(x_16, x_140); -if (x_141 == 0) -{ -lean_object* x_142; uint8_t x_143; -lean_dec(x_2); -x_142 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; -x_143 = lean_string_dec_eq(x_16, x_142); -if (x_143 == 0) -{ -lean_object* x_144; uint8_t x_145; -lean_dec(x_3); -x_144 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; -x_145 = lean_string_dec_eq(x_16, x_144); -if (x_145 == 0) -{ -lean_object* x_146; uint8_t x_147; -lean_dec(x_4); -x_146 = l_Lean_mkHole___closed__1; -x_147 = lean_string_dec_eq(x_16, x_146); -if (x_147 == 0) -{ -lean_object* x_148; uint8_t x_149; -lean_dec(x_5); -x_148 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; -x_149 = lean_string_dec_eq(x_16, x_148); -if (x_149 == 0) -{ -lean_object* x_150; lean_object* x_151; lean_object* x_152; -lean_dec(x_6); -x_150 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_150, 0, x_13); -lean_ctor_set(x_150, 1, x_126); -lean_ctor_set_usize(x_150, 2, x_125); -lean_ctor_set(x_11, 1, x_130); -lean_ctor_set(x_11, 0, x_150); -lean_ctor_set(x_10, 1, x_135); -if (lean_is_scalar(x_129)) { - x_151 = lean_alloc_ctor(1, 2, 0); -} else { - x_151 = x_129; -} -lean_ctor_set(x_151, 0, x_9); -lean_ctor_set(x_151, 1, x_14); -x_152 = lean_apply_1(x_8, x_151); -return x_152; -} -else -{ -lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -lean_dec(x_129); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -x_153 = lean_box_usize(x_125); -x_154 = lean_box_usize(x_25); -x_155 = lean_box_usize(x_21); -x_156 = lean_box_usize(x_17); -x_157 = lean_apply_5(x_6, x_14, x_153, x_154, x_155, x_156); -return x_157; -} -} -else -{ -lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; -lean_dec(x_129); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -x_158 = lean_box_usize(x_125); -x_159 = lean_box_usize(x_25); -x_160 = lean_box_usize(x_21); -x_161 = lean_box_usize(x_17); -x_162 = lean_apply_5(x_5, x_14, x_158, x_159, x_160, x_161); -return x_162; -} -} -else -{ -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -lean_dec(x_129); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -x_163 = lean_box_usize(x_125); -x_164 = lean_box_usize(x_25); -x_165 = lean_box_usize(x_21); -x_166 = lean_box_usize(x_17); -x_167 = lean_apply_5(x_4, x_14, x_163, x_164, x_165, x_166); -return x_167; -} -} -else -{ -lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_129); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_168 = lean_box_usize(x_125); -x_169 = lean_box_usize(x_25); -x_170 = lean_box_usize(x_21); -x_171 = lean_box_usize(x_17); -x_172 = lean_apply_5(x_3, x_14, x_168, x_169, x_170, x_171); -return x_172; -} -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -lean_dec(x_129); -lean_free_object(x_11); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_173 = lean_box_usize(x_125); -x_174 = lean_box_usize(x_25); -x_175 = lean_box_usize(x_21); -x_176 = lean_box_usize(x_17); -x_177 = lean_apply_5(x_2, x_14, x_173, x_174, x_175, x_176); -return x_177; -} -} -} -} -} -} -else -{ -lean_object* x_178; size_t x_179; lean_object* x_180; size_t x_181; lean_object* x_182; lean_object* x_183; uint8_t x_184; -x_178 = lean_ctor_get(x_11, 1); -x_179 = lean_ctor_get_usize(x_11, 2); -lean_inc(x_178); -lean_dec(x_11); -x_180 = lean_ctor_get(x_12, 1); -lean_inc(x_180); -x_181 = lean_ctor_get_usize(x_12, 2); -if (lean_is_exclusive(x_12)) { - lean_ctor_release(x_12, 0); - lean_ctor_release(x_12, 1); - x_182 = x_12; -} else { - lean_dec_ref(x_12); - x_182 = lean_box(0); -} -x_183 = l_Lean_mkAppStx___closed__1; -x_184 = lean_string_dec_eq(x_180, x_183); -lean_dec(x_180); -if (x_184 == 0) -{ -lean_object* x_185; -lean_dec(x_182); -lean_dec(x_178); -lean_free_object(x_10); -lean_dec(x_20); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_14); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_185 = lean_apply_1(x_8, x_1); -return x_185; -} -else -{ -lean_object* x_186; lean_object* x_187; uint8_t x_188; -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_186 = x_1; -} else { - lean_dec_ref(x_1); - x_186 = lean_box(0); -} -x_187 = l_Lean_mkAppStx___closed__3; -x_188 = lean_string_dec_eq(x_178, x_187); -if (x_188 == 0) -{ -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_182)) { - x_189 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_189 = x_182; -} -lean_ctor_set(x_189, 0, x_13); -lean_ctor_set(x_189, 1, x_183); -lean_ctor_set_usize(x_189, 2, x_181); -x_190 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_190, 0, x_189); -lean_ctor_set(x_190, 1, x_178); -lean_ctor_set_usize(x_190, 2, x_179); -lean_ctor_set(x_10, 0, x_190); -if (lean_is_scalar(x_186)) { - x_191 = lean_alloc_ctor(1, 2, 0); -} else { - x_191 = x_186; -} -lean_ctor_set(x_191, 0, x_9); -lean_ctor_set(x_191, 1, x_14); -x_192 = lean_apply_1(x_8, x_191); -return x_192; -} -else -{ -lean_object* x_193; uint8_t x_194; -lean_dec(x_178); -x_193 = l_Lean_mkAppStx___closed__5; -x_194 = lean_string_dec_eq(x_20, x_193); -if (x_194 == 0) -{ -lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_182)) { - x_195 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_195 = x_182; -} -lean_ctor_set(x_195, 0, x_13); -lean_ctor_set(x_195, 1, x_183); -lean_ctor_set_usize(x_195, 2, x_181); -x_196 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_196, 0, x_195); -lean_ctor_set(x_196, 1, x_187); -lean_ctor_set_usize(x_196, 2, x_179); -lean_ctor_set(x_10, 0, x_196); -if (lean_is_scalar(x_186)) { - x_197 = lean_alloc_ctor(1, 2, 0); -} else { - x_197 = x_186; -} -lean_ctor_set(x_197, 0, x_9); -lean_ctor_set(x_197, 1, x_14); -x_198 = lean_apply_1(x_8, x_197); -return x_198; -} -else -{ -lean_object* x_199; uint8_t x_200; -lean_dec(x_20); -x_199 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; -x_200 = lean_string_dec_eq(x_16, x_199); -if (x_200 == 0) -{ -lean_object* x_201; uint8_t x_202; -lean_dec(x_2); -x_201 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; -x_202 = lean_string_dec_eq(x_16, x_201); -if (x_202 == 0) -{ -lean_object* x_203; uint8_t x_204; -lean_dec(x_3); -x_203 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; -x_204 = lean_string_dec_eq(x_16, x_203); -if (x_204 == 0) -{ -lean_object* x_205; uint8_t x_206; -lean_dec(x_4); -x_205 = l_Lean_mkHole___closed__1; -x_206 = lean_string_dec_eq(x_16, x_205); -if (x_206 == 0) -{ -lean_object* x_207; uint8_t x_208; -lean_dec(x_5); -x_207 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; -x_208 = lean_string_dec_eq(x_16, x_207); -if (x_208 == 0) -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; -lean_dec(x_6); -if (lean_is_scalar(x_182)) { - x_209 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_209 = x_182; -} -lean_ctor_set(x_209, 0, x_13); -lean_ctor_set(x_209, 1, x_183); -lean_ctor_set_usize(x_209, 2, x_181); -x_210 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_210, 0, x_209); -lean_ctor_set(x_210, 1, x_187); -lean_ctor_set_usize(x_210, 2, x_179); -lean_ctor_set(x_10, 1, x_193); -lean_ctor_set(x_10, 0, x_210); -if (lean_is_scalar(x_186)) { - x_211 = lean_alloc_ctor(1, 2, 0); -} else { - x_211 = x_186; -} -lean_ctor_set(x_211, 0, x_9); -lean_ctor_set(x_211, 1, x_14); -x_212 = lean_apply_1(x_8, x_211); -return x_212; -} -else -{ -lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; -lean_dec(x_186); -lean_dec(x_182); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -x_213 = lean_box_usize(x_181); -x_214 = lean_box_usize(x_179); -x_215 = lean_box_usize(x_21); -x_216 = lean_box_usize(x_17); -x_217 = lean_apply_5(x_6, x_14, x_213, x_214, x_215, x_216); -return x_217; -} -} -else -{ -lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; -lean_dec(x_186); -lean_dec(x_182); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -x_218 = lean_box_usize(x_181); -x_219 = lean_box_usize(x_179); -x_220 = lean_box_usize(x_21); -x_221 = lean_box_usize(x_17); -x_222 = lean_apply_5(x_5, x_14, x_218, x_219, x_220, x_221); -return x_222; -} -} -else -{ -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; -lean_dec(x_186); -lean_dec(x_182); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -x_223 = lean_box_usize(x_181); -x_224 = lean_box_usize(x_179); -x_225 = lean_box_usize(x_21); -x_226 = lean_box_usize(x_17); -x_227 = lean_apply_5(x_4, x_14, x_223, x_224, x_225, x_226); -return x_227; -} -} -else -{ -lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; -lean_dec(x_186); -lean_dec(x_182); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_228 = lean_box_usize(x_181); -x_229 = lean_box_usize(x_179); -x_230 = lean_box_usize(x_21); -x_231 = lean_box_usize(x_17); -x_232 = lean_apply_5(x_3, x_14, x_228, x_229, x_230, x_231); -return x_232; -} -} -else -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; -lean_dec(x_186); -lean_dec(x_182); -lean_free_object(x_10); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_233 = lean_box_usize(x_181); -x_234 = lean_box_usize(x_179); -x_235 = lean_box_usize(x_21); -x_236 = lean_box_usize(x_17); -x_237 = lean_apply_5(x_2, x_14, x_233, x_234, x_235, x_236); -return x_237; -} -} -} -} -} -} -else -{ -lean_object* x_238; size_t x_239; lean_object* x_240; size_t x_241; lean_object* x_242; lean_object* x_243; size_t x_244; lean_object* x_245; lean_object* x_246; uint8_t x_247; -x_238 = lean_ctor_get(x_10, 1); -x_239 = lean_ctor_get_usize(x_10, 2); -lean_inc(x_238); -lean_dec(x_10); -x_240 = lean_ctor_get(x_11, 1); -lean_inc(x_240); -x_241 = lean_ctor_get_usize(x_11, 2); -if (lean_is_exclusive(x_11)) { - lean_ctor_release(x_11, 0); - lean_ctor_release(x_11, 1); - x_242 = x_11; -} else { - lean_dec_ref(x_11); - x_242 = lean_box(0); -} -x_243 = lean_ctor_get(x_12, 1); -lean_inc(x_243); -x_244 = lean_ctor_get_usize(x_12, 2); -if (lean_is_exclusive(x_12)) { - lean_ctor_release(x_12, 0); - lean_ctor_release(x_12, 1); - x_245 = x_12; -} else { - lean_dec_ref(x_12); - x_245 = lean_box(0); -} -x_246 = l_Lean_mkAppStx___closed__1; -x_247 = lean_string_dec_eq(x_243, x_246); -lean_dec(x_243); -if (x_247 == 0) -{ -lean_object* x_248; -lean_dec(x_245); -lean_dec(x_242); -lean_dec(x_240); -lean_dec(x_238); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_14); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_248 = lean_apply_1(x_8, x_1); -return x_248; -} -else -{ -lean_object* x_249; lean_object* x_250; uint8_t x_251; -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_249 = x_1; -} else { - lean_dec_ref(x_1); - x_249 = lean_box(0); -} -x_250 = l_Lean_mkAppStx___closed__3; -x_251 = lean_string_dec_eq(x_240, x_250); -if (x_251 == 0) -{ -lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_245)) { - x_252 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_252 = x_245; -} -lean_ctor_set(x_252, 0, x_13); -lean_ctor_set(x_252, 1, x_246); -lean_ctor_set_usize(x_252, 2, x_244); -if (lean_is_scalar(x_242)) { - x_253 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_253 = x_242; -} -lean_ctor_set(x_253, 0, x_252); -lean_ctor_set(x_253, 1, x_240); -lean_ctor_set_usize(x_253, 2, x_241); -x_254 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_254, 0, x_253); -lean_ctor_set(x_254, 1, x_238); -lean_ctor_set_usize(x_254, 2, x_239); -lean_ctor_set(x_9, 0, x_254); -if (lean_is_scalar(x_249)) { - x_255 = lean_alloc_ctor(1, 2, 0); -} else { - x_255 = x_249; -} -lean_ctor_set(x_255, 0, x_9); -lean_ctor_set(x_255, 1, x_14); -x_256 = lean_apply_1(x_8, x_255); -return x_256; -} -else -{ -lean_object* x_257; uint8_t x_258; -lean_dec(x_240); -x_257 = l_Lean_mkAppStx___closed__5; -x_258 = lean_string_dec_eq(x_238, x_257); -if (x_258 == 0) -{ -lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_245)) { - x_259 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_259 = x_245; -} -lean_ctor_set(x_259, 0, x_13); -lean_ctor_set(x_259, 1, x_246); -lean_ctor_set_usize(x_259, 2, x_244); -if (lean_is_scalar(x_242)) { - x_260 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_260 = x_242; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set(x_260, 1, x_250); -lean_ctor_set_usize(x_260, 2, x_241); -x_261 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_261, 0, x_260); -lean_ctor_set(x_261, 1, x_238); -lean_ctor_set_usize(x_261, 2, x_239); -lean_ctor_set(x_9, 0, x_261); -if (lean_is_scalar(x_249)) { - x_262 = lean_alloc_ctor(1, 2, 0); -} else { - x_262 = x_249; -} -lean_ctor_set(x_262, 0, x_9); -lean_ctor_set(x_262, 1, x_14); -x_263 = lean_apply_1(x_8, x_262); -return x_263; -} -else -{ -lean_object* x_264; uint8_t x_265; -lean_dec(x_238); -x_264 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; -x_265 = lean_string_dec_eq(x_16, x_264); -if (x_265 == 0) -{ -lean_object* x_266; uint8_t x_267; -lean_dec(x_2); -x_266 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; -x_267 = lean_string_dec_eq(x_16, x_266); -if (x_267 == 0) -{ -lean_object* x_268; uint8_t x_269; -lean_dec(x_3); -x_268 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; -x_269 = lean_string_dec_eq(x_16, x_268); -if (x_269 == 0) -{ -lean_object* x_270; uint8_t x_271; -lean_dec(x_4); -x_270 = l_Lean_mkHole___closed__1; -x_271 = lean_string_dec_eq(x_16, x_270); -if (x_271 == 0) -{ -lean_object* x_272; uint8_t x_273; -lean_dec(x_5); -x_272 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; -x_273 = lean_string_dec_eq(x_16, x_272); -if (x_273 == 0) -{ -lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; -lean_dec(x_6); -if (lean_is_scalar(x_245)) { - x_274 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_274 = x_245; -} -lean_ctor_set(x_274, 0, x_13); -lean_ctor_set(x_274, 1, x_246); -lean_ctor_set_usize(x_274, 2, x_244); -if (lean_is_scalar(x_242)) { - x_275 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_275 = x_242; -} -lean_ctor_set(x_275, 0, x_274); -lean_ctor_set(x_275, 1, x_250); -lean_ctor_set_usize(x_275, 2, x_241); -x_276 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_276, 0, x_275); -lean_ctor_set(x_276, 1, x_257); -lean_ctor_set_usize(x_276, 2, x_239); -lean_ctor_set(x_9, 0, x_276); -if (lean_is_scalar(x_249)) { - x_277 = lean_alloc_ctor(1, 2, 0); -} else { - x_277 = x_249; -} -lean_ctor_set(x_277, 0, x_9); -lean_ctor_set(x_277, 1, x_14); -x_278 = lean_apply_1(x_8, x_277); -return x_278; -} -else -{ -lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; -lean_dec(x_249); -lean_dec(x_245); -lean_dec(x_242); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -x_279 = lean_box_usize(x_244); -x_280 = lean_box_usize(x_241); -x_281 = lean_box_usize(x_239); -x_282 = lean_box_usize(x_17); -x_283 = lean_apply_5(x_6, x_14, x_279, x_280, x_281, x_282); -return x_283; -} -} -else -{ -lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; -lean_dec(x_249); -lean_dec(x_245); -lean_dec(x_242); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -x_284 = lean_box_usize(x_244); -x_285 = lean_box_usize(x_241); -x_286 = lean_box_usize(x_239); -x_287 = lean_box_usize(x_17); -x_288 = lean_apply_5(x_5, x_14, x_284, x_285, x_286, x_287); -return x_288; -} -} -else -{ -lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; -lean_dec(x_249); -lean_dec(x_245); -lean_dec(x_242); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -x_289 = lean_box_usize(x_244); -x_290 = lean_box_usize(x_241); -x_291 = lean_box_usize(x_239); -x_292 = lean_box_usize(x_17); -x_293 = lean_apply_5(x_4, x_14, x_289, x_290, x_291, x_292); -return x_293; -} -} -else -{ -lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -lean_dec(x_249); -lean_dec(x_245); -lean_dec(x_242); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_294 = lean_box_usize(x_244); -x_295 = lean_box_usize(x_241); -x_296 = lean_box_usize(x_239); -x_297 = lean_box_usize(x_17); -x_298 = lean_apply_5(x_3, x_14, x_294, x_295, x_296, x_297); -return x_298; -} -} -else -{ -lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; -lean_dec(x_249); -lean_dec(x_245); -lean_dec(x_242); -lean_free_object(x_9); -lean_dec(x_16); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_299 = lean_box_usize(x_244); -x_300 = lean_box_usize(x_241); -x_301 = lean_box_usize(x_239); -x_302 = lean_box_usize(x_17); -x_303 = lean_apply_5(x_2, x_14, x_299, x_300, x_301, x_302); -return x_303; -} -} -} -} -} -} -else -{ -lean_object* x_304; size_t x_305; lean_object* x_306; size_t x_307; lean_object* x_308; lean_object* x_309; size_t x_310; lean_object* x_311; lean_object* x_312; size_t x_313; lean_object* x_314; lean_object* x_315; uint8_t x_316; -x_304 = lean_ctor_get(x_9, 1); -x_305 = lean_ctor_get_usize(x_9, 2); -lean_inc(x_304); -lean_dec(x_9); -x_306 = lean_ctor_get(x_10, 1); -lean_inc(x_306); -x_307 = lean_ctor_get_usize(x_10, 2); -if (lean_is_exclusive(x_10)) { - lean_ctor_release(x_10, 0); - lean_ctor_release(x_10, 1); - x_308 = x_10; -} else { - lean_dec_ref(x_10); - x_308 = lean_box(0); -} -x_309 = lean_ctor_get(x_11, 1); -lean_inc(x_309); -x_310 = lean_ctor_get_usize(x_11, 2); -if (lean_is_exclusive(x_11)) { - lean_ctor_release(x_11, 0); - lean_ctor_release(x_11, 1); - x_311 = x_11; -} else { - lean_dec_ref(x_11); - x_311 = lean_box(0); -} -x_312 = lean_ctor_get(x_12, 1); -lean_inc(x_312); -x_313 = lean_ctor_get_usize(x_12, 2); -if (lean_is_exclusive(x_12)) { - lean_ctor_release(x_12, 0); - lean_ctor_release(x_12, 1); - x_314 = x_12; -} else { - lean_dec_ref(x_12); - x_314 = lean_box(0); -} -x_315 = l_Lean_mkAppStx___closed__1; -x_316 = lean_string_dec_eq(x_312, x_315); -lean_dec(x_312); -if (x_316 == 0) -{ -lean_object* x_317; -lean_dec(x_314); -lean_dec(x_311); -lean_dec(x_309); -lean_dec(x_308); -lean_dec(x_306); -lean_dec(x_304); -lean_dec(x_14); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_317 = lean_apply_1(x_8, x_1); -return x_317; -} -else -{ -lean_object* x_318; lean_object* x_319; uint8_t x_320; -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_318 = x_1; -} else { - lean_dec_ref(x_1); - x_318 = lean_box(0); -} -x_319 = l_Lean_mkAppStx___closed__3; -x_320 = lean_string_dec_eq(x_309, x_319); -if (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_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_314)) { - x_321 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_321 = x_314; -} -lean_ctor_set(x_321, 0, x_13); -lean_ctor_set(x_321, 1, x_315); -lean_ctor_set_usize(x_321, 2, x_313); -if (lean_is_scalar(x_311)) { - x_322 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_322 = x_311; -} -lean_ctor_set(x_322, 0, x_321); -lean_ctor_set(x_322, 1, x_309); -lean_ctor_set_usize(x_322, 2, x_310); -if (lean_is_scalar(x_308)) { - x_323 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_323 = x_308; -} -lean_ctor_set(x_323, 0, x_322); -lean_ctor_set(x_323, 1, x_306); -lean_ctor_set_usize(x_323, 2, x_307); -x_324 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_324, 0, x_323); -lean_ctor_set(x_324, 1, x_304); -lean_ctor_set_usize(x_324, 2, x_305); -if (lean_is_scalar(x_318)) { - x_325 = lean_alloc_ctor(1, 2, 0); -} else { - x_325 = x_318; -} -lean_ctor_set(x_325, 0, x_324); -lean_ctor_set(x_325, 1, x_14); -x_326 = lean_apply_1(x_8, x_325); -return x_326; -} -else -{ -lean_object* x_327; uint8_t x_328; -lean_dec(x_309); -x_327 = l_Lean_mkAppStx___closed__5; -x_328 = lean_string_dec_eq(x_306, x_327); -if (x_328 == 0) -{ -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_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_314)) { - x_329 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_329 = x_314; -} -lean_ctor_set(x_329, 0, x_13); -lean_ctor_set(x_329, 1, x_315); -lean_ctor_set_usize(x_329, 2, x_313); -if (lean_is_scalar(x_311)) { - x_330 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_330 = x_311; -} -lean_ctor_set(x_330, 0, x_329); -lean_ctor_set(x_330, 1, x_319); -lean_ctor_set_usize(x_330, 2, x_310); -if (lean_is_scalar(x_308)) { - x_331 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_331 = x_308; -} -lean_ctor_set(x_331, 0, x_330); -lean_ctor_set(x_331, 1, x_306); -lean_ctor_set_usize(x_331, 2, x_307); -x_332 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_332, 0, x_331); -lean_ctor_set(x_332, 1, x_304); -lean_ctor_set_usize(x_332, 2, x_305); -if (lean_is_scalar(x_318)) { - x_333 = lean_alloc_ctor(1, 2, 0); -} else { - x_333 = x_318; -} -lean_ctor_set(x_333, 0, x_332); -lean_ctor_set(x_333, 1, x_14); -x_334 = lean_apply_1(x_8, x_333); -return x_334; -} -else -{ -lean_object* x_335; uint8_t x_336; -lean_dec(x_306); -x_335 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; -x_336 = lean_string_dec_eq(x_304, x_335); -if (x_336 == 0) -{ -lean_object* x_337; uint8_t x_338; -lean_dec(x_2); -x_337 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; -x_338 = lean_string_dec_eq(x_304, x_337); -if (x_338 == 0) -{ -lean_object* x_339; uint8_t x_340; -lean_dec(x_3); -x_339 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; -x_340 = lean_string_dec_eq(x_304, x_339); -if (x_340 == 0) -{ -lean_object* x_341; uint8_t x_342; -lean_dec(x_4); -x_341 = l_Lean_mkHole___closed__1; -x_342 = lean_string_dec_eq(x_304, x_341); -if (x_342 == 0) -{ -lean_object* x_343; uint8_t x_344; -lean_dec(x_5); -x_343 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; -x_344 = lean_string_dec_eq(x_304, x_343); -if (x_344 == 0) -{ -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_dec(x_6); -if (lean_is_scalar(x_314)) { - x_345 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_345 = x_314; -} -lean_ctor_set(x_345, 0, x_13); -lean_ctor_set(x_345, 1, x_315); -lean_ctor_set_usize(x_345, 2, x_313); -if (lean_is_scalar(x_311)) { - x_346 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_346 = x_311; -} -lean_ctor_set(x_346, 0, x_345); -lean_ctor_set(x_346, 1, x_319); -lean_ctor_set_usize(x_346, 2, x_310); -if (lean_is_scalar(x_308)) { - x_347 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -} else { - x_347 = x_308; -} -lean_ctor_set(x_347, 0, x_346); -lean_ctor_set(x_347, 1, x_327); -lean_ctor_set_usize(x_347, 2, x_307); -x_348 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_348, 0, x_347); -lean_ctor_set(x_348, 1, x_304); -lean_ctor_set_usize(x_348, 2, x_305); -if (lean_is_scalar(x_318)) { - x_349 = lean_alloc_ctor(1, 2, 0); -} else { - x_349 = x_318; -} -lean_ctor_set(x_349, 0, x_348); -lean_ctor_set(x_349, 1, x_14); -x_350 = lean_apply_1(x_8, x_349); -return x_350; -} -else -{ -lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; -lean_dec(x_318); -lean_dec(x_314); -lean_dec(x_311); -lean_dec(x_308); -lean_dec(x_304); -lean_dec(x_8); -x_351 = lean_box_usize(x_313); -x_352 = lean_box_usize(x_310); -x_353 = lean_box_usize(x_307); -x_354 = lean_box_usize(x_305); -x_355 = lean_apply_5(x_6, x_14, x_351, x_352, x_353, x_354); -return x_355; -} -} -else -{ -lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; -lean_dec(x_318); -lean_dec(x_314); -lean_dec(x_311); -lean_dec(x_308); -lean_dec(x_304); -lean_dec(x_8); -lean_dec(x_6); -x_356 = lean_box_usize(x_313); -x_357 = lean_box_usize(x_310); -x_358 = lean_box_usize(x_307); -x_359 = lean_box_usize(x_305); -x_360 = lean_apply_5(x_5, x_14, x_356, x_357, x_358, x_359); -return x_360; -} -} -else -{ -lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; -lean_dec(x_318); -lean_dec(x_314); -lean_dec(x_311); -lean_dec(x_308); -lean_dec(x_304); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -x_361 = lean_box_usize(x_313); -x_362 = lean_box_usize(x_310); -x_363 = lean_box_usize(x_307); -x_364 = lean_box_usize(x_305); -x_365 = lean_apply_5(x_4, x_14, x_361, x_362, x_363, x_364); -return x_365; -} -} -else -{ -lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; -lean_dec(x_318); -lean_dec(x_314); -lean_dec(x_311); -lean_dec(x_308); -lean_dec(x_304); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_366 = lean_box_usize(x_313); -x_367 = lean_box_usize(x_310); -x_368 = lean_box_usize(x_307); -x_369 = lean_box_usize(x_305); -x_370 = lean_apply_5(x_3, x_14, x_366, x_367, x_368, x_369); -return x_370; -} -} -else -{ -lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; -lean_dec(x_318); -lean_dec(x_314); -lean_dec(x_311); -lean_dec(x_308); -lean_dec(x_304); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_371 = lean_box_usize(x_313); -x_372 = lean_box_usize(x_310); -x_373 = lean_box_usize(x_307); -x_374 = lean_box_usize(x_305); -x_375 = lean_apply_5(x_2, x_14, x_371, x_372, x_373, x_374); -return x_375; -} -} -} -} -} -} -else -{ -lean_object* x_376; -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_376 = lean_apply_1(x_8, x_1); -return x_376; -} -} -else -{ -lean_object* x_377; -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_377 = lean_apply_1(x_8, x_1); -return x_377; -} -} -else -{ -lean_object* x_378; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_378 = lean_apply_1(x_8, x_1); -return x_378; -} -} -else -{ -lean_object* x_379; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_379 = lean_apply_1(x_8, x_1); -return x_379; -} -} -else -{ -lean_object* x_380; -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_380 = lean_apply_1(x_8, x_1); -return x_380; -} -} -case 3: -{ -lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_381 = lean_ctor_get(x_1, 0); -lean_inc(x_381); -x_382 = lean_ctor_get(x_1, 1); -lean_inc(x_382); -x_383 = lean_ctor_get(x_1, 2); -lean_inc(x_383); -x_384 = lean_ctor_get(x_1, 3); -lean_inc(x_384); -lean_dec(x_1); -x_385 = lean_apply_4(x_7, x_381, x_382, x_383, x_384); -return x_385; -} -default: -{ -lean_object* x_386; +lean_dec(x_17); +lean_dec(x_15); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_386 = lean_apply_1(x_8, x_1); -return x_386; +x_34 = lean_apply_1(x_9, x_1); +return x_34; +} +else +{ +uint8_t x_35; +x_35 = !lean_is_exclusive(x_1); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_36 = lean_ctor_get(x_1, 1); +lean_dec(x_36); +x_37 = lean_ctor_get(x_1, 0); +lean_dec(x_37); +x_38 = l_Lean_mkAppStx___closed__3; +x_39 = lean_string_dec_eq(x_25, x_38); +if (x_39 == 0) +{ +lean_object* x_40; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_13, 1, x_32); +x_40 = lean_apply_1(x_9, x_1); +return x_40; +} +else +{ +lean_object* x_41; uint8_t x_42; +lean_dec(x_25); +x_41 = l_Lean_mkAppStx___closed__5; +x_42 = lean_string_dec_eq(x_21, x_41); +if (x_42 == 0) +{ +lean_object* x_43; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_13, 1, x_32); +lean_ctor_set(x_12, 1, x_38); +x_43 = lean_apply_1(x_9, x_1); +return x_43; +} +else +{ +lean_object* x_44; uint8_t x_45; +lean_dec(x_21); +x_44 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; +x_45 = lean_string_dec_eq(x_17, x_44); +if (x_45 == 0) +{ +lean_object* x_46; uint8_t x_47; +lean_dec(x_2); +x_46 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; +x_47 = lean_string_dec_eq(x_17, x_46); +if (x_47 == 0) +{ +lean_object* x_48; uint8_t x_49; +lean_dec(x_3); +x_48 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; +x_49 = lean_string_dec_eq(x_17, x_48); +if (x_49 == 0) +{ +lean_object* x_50; uint8_t x_51; +lean_dec(x_4); +x_50 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_51 = lean_string_dec_eq(x_17, x_50); +if (x_51 == 0) +{ +lean_object* x_52; uint8_t x_53; +lean_dec(x_5); +x_52 = l_Lean_mkHole___closed__1; +x_53 = lean_string_dec_eq(x_17, x_52); +if (x_53 == 0) +{ +lean_object* x_54; uint8_t x_55; +lean_dec(x_6); +x_54 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; +x_55 = lean_string_dec_eq(x_17, x_54); +if (x_55 == 0) +{ +lean_object* x_56; +lean_dec(x_7); +lean_ctor_set(x_13, 1, x_32); +lean_ctor_set(x_12, 1, x_38); +lean_ctor_set(x_11, 1, x_41); +x_56 = lean_apply_1(x_9, x_1); +return x_56; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +lean_free_object(x_1); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +x_57 = lean_box_usize(x_30); +x_58 = lean_box_usize(x_26); +x_59 = lean_box_usize(x_22); +x_60 = lean_box_usize(x_18); +x_61 = lean_apply_5(x_7, x_15, x_57, x_58, x_59, x_60); +return x_61; +} +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +lean_free_object(x_1); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +x_62 = lean_box_usize(x_30); +x_63 = lean_box_usize(x_26); +x_64 = lean_box_usize(x_22); +x_65 = lean_box_usize(x_18); +x_66 = lean_apply_5(x_6, x_15, x_62, x_63, x_64, x_65); +return x_66; +} +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +lean_free_object(x_1); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +x_67 = lean_box_usize(x_30); +x_68 = lean_box_usize(x_26); +x_69 = lean_box_usize(x_22); +x_70 = lean_box_usize(x_18); +x_71 = lean_apply_5(x_5, x_15, x_67, x_68, x_69, x_70); +return x_71; +} +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +lean_free_object(x_1); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_72 = lean_box_usize(x_30); +x_73 = lean_box_usize(x_26); +x_74 = lean_box_usize(x_22); +x_75 = lean_box_usize(x_18); +x_76 = lean_apply_5(x_4, x_15, x_72, x_73, x_74, x_75); +return x_76; +} +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +lean_free_object(x_1); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_77 = lean_box_usize(x_30); +x_78 = lean_box_usize(x_26); +x_79 = lean_box_usize(x_22); +x_80 = lean_box_usize(x_18); +x_81 = lean_apply_5(x_3, x_15, x_77, x_78, x_79, x_80); +return x_81; +} +} +else +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +lean_free_object(x_1); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_82 = lean_box_usize(x_30); +x_83 = lean_box_usize(x_26); +x_84 = lean_box_usize(x_22); +x_85 = lean_box_usize(x_18); +x_86 = lean_apply_5(x_2, x_15, x_82, x_83, x_84, x_85); +return x_86; +} +} +} +} +else +{ +lean_object* x_87; uint8_t x_88; +lean_dec(x_1); +x_87 = l_Lean_mkAppStx___closed__3; +x_88 = lean_string_dec_eq(x_25, x_87); +if (x_88 == 0) +{ +lean_object* x_89; lean_object* x_90; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_13, 1, x_32); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_10); +lean_ctor_set(x_89, 1, x_15); +x_90 = lean_apply_1(x_9, x_89); +return x_90; +} +else +{ +lean_object* x_91; uint8_t x_92; +lean_dec(x_25); +x_91 = l_Lean_mkAppStx___closed__5; +x_92 = lean_string_dec_eq(x_21, x_91); +if (x_92 == 0) +{ +lean_object* x_93; lean_object* x_94; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_13, 1, x_32); +lean_ctor_set(x_12, 1, x_87); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_10); +lean_ctor_set(x_93, 1, x_15); +x_94 = lean_apply_1(x_9, x_93); +return x_94; +} +else +{ +lean_object* x_95; uint8_t x_96; +lean_dec(x_21); +x_95 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; +x_96 = lean_string_dec_eq(x_17, x_95); +if (x_96 == 0) +{ +lean_object* x_97; uint8_t x_98; +lean_dec(x_2); +x_97 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; +x_98 = lean_string_dec_eq(x_17, x_97); +if (x_98 == 0) +{ +lean_object* x_99; uint8_t x_100; +lean_dec(x_3); +x_99 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; +x_100 = lean_string_dec_eq(x_17, x_99); +if (x_100 == 0) +{ +lean_object* x_101; uint8_t x_102; +lean_dec(x_4); +x_101 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_102 = lean_string_dec_eq(x_17, x_101); +if (x_102 == 0) +{ +lean_object* x_103; uint8_t x_104; +lean_dec(x_5); +x_103 = l_Lean_mkHole___closed__1; +x_104 = lean_string_dec_eq(x_17, x_103); +if (x_104 == 0) +{ +lean_object* x_105; uint8_t x_106; +lean_dec(x_6); +x_105 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; +x_106 = lean_string_dec_eq(x_17, x_105); +if (x_106 == 0) +{ +lean_object* x_107; lean_object* x_108; +lean_dec(x_7); +lean_ctor_set(x_13, 1, x_32); +lean_ctor_set(x_12, 1, x_87); +lean_ctor_set(x_11, 1, x_91); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_10); +lean_ctor_set(x_107, 1, x_15); +x_108 = lean_apply_1(x_9, x_107); +return x_108; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +x_109 = lean_box_usize(x_30); +x_110 = lean_box_usize(x_26); +x_111 = lean_box_usize(x_22); +x_112 = lean_box_usize(x_18); +x_113 = lean_apply_5(x_7, x_15, x_109, x_110, x_111, x_112); +return x_113; +} +} +else +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +x_114 = lean_box_usize(x_30); +x_115 = lean_box_usize(x_26); +x_116 = lean_box_usize(x_22); +x_117 = lean_box_usize(x_18); +x_118 = lean_apply_5(x_6, x_15, x_114, x_115, x_116, x_117); +return x_118; +} +} +else +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +x_119 = lean_box_usize(x_30); +x_120 = lean_box_usize(x_26); +x_121 = lean_box_usize(x_22); +x_122 = lean_box_usize(x_18); +x_123 = lean_apply_5(x_5, x_15, x_119, x_120, x_121, x_122); +return x_123; +} +} +else +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_124 = lean_box_usize(x_30); +x_125 = lean_box_usize(x_26); +x_126 = lean_box_usize(x_22); +x_127 = lean_box_usize(x_18); +x_128 = lean_apply_5(x_4, x_15, x_124, x_125, x_126, x_127); +return x_128; +} +} +else +{ +lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_129 = lean_box_usize(x_30); +x_130 = lean_box_usize(x_26); +x_131 = lean_box_usize(x_22); +x_132 = lean_box_usize(x_18); +x_133 = lean_apply_5(x_3, x_15, x_129, x_130, x_131, x_132); +return x_133; +} +} +else +{ +lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_134 = lean_box_usize(x_30); +x_135 = lean_box_usize(x_26); +x_136 = lean_box_usize(x_22); +x_137 = lean_box_usize(x_18); +x_138 = lean_apply_5(x_2, x_15, x_134, x_135, x_136, x_137); +return x_138; +} +} +} +} +} +} +else +{ +lean_object* x_139; size_t x_140; lean_object* x_141; uint8_t x_142; +x_139 = lean_ctor_get(x_13, 1); +x_140 = lean_ctor_get_usize(x_13, 2); +lean_inc(x_139); +lean_dec(x_13); +x_141 = l_Lean_mkAppStx___closed__1; +x_142 = lean_string_dec_eq(x_139, x_141); +lean_dec(x_139); +if (x_142 == 0) +{ +lean_object* x_143; +lean_free_object(x_12); +lean_dec(x_25); +lean_free_object(x_11); +lean_dec(x_21); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_15); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_143 = lean_apply_1(x_9, x_1); +return x_143; +} +else +{ +lean_object* x_144; lean_object* x_145; uint8_t x_146; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_144 = x_1; +} else { + lean_dec_ref(x_1); + x_144 = lean_box(0); +} +x_145 = l_Lean_mkAppStx___closed__3; +x_146 = lean_string_dec_eq(x_25, x_145); +if (x_146 == 0) +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_147 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_147, 0, x_14); +lean_ctor_set(x_147, 1, x_141); +lean_ctor_set_usize(x_147, 2, x_140); +lean_ctor_set(x_12, 0, x_147); +if (lean_is_scalar(x_144)) { + x_148 = lean_alloc_ctor(1, 2, 0); +} else { + x_148 = x_144; +} +lean_ctor_set(x_148, 0, x_10); +lean_ctor_set(x_148, 1, x_15); +x_149 = lean_apply_1(x_9, x_148); +return x_149; +} +else +{ +lean_object* x_150; uint8_t x_151; +lean_dec(x_25); +x_150 = l_Lean_mkAppStx___closed__5; +x_151 = lean_string_dec_eq(x_21, x_150); +if (x_151 == 0) +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_152 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_152, 0, x_14); +lean_ctor_set(x_152, 1, x_141); +lean_ctor_set_usize(x_152, 2, x_140); +lean_ctor_set(x_12, 1, x_145); +lean_ctor_set(x_12, 0, x_152); +if (lean_is_scalar(x_144)) { + x_153 = lean_alloc_ctor(1, 2, 0); +} else { + x_153 = x_144; +} +lean_ctor_set(x_153, 0, x_10); +lean_ctor_set(x_153, 1, x_15); +x_154 = lean_apply_1(x_9, x_153); +return x_154; +} +else +{ +lean_object* x_155; uint8_t x_156; +lean_dec(x_21); +x_155 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; +x_156 = lean_string_dec_eq(x_17, x_155); +if (x_156 == 0) +{ +lean_object* x_157; uint8_t x_158; +lean_dec(x_2); +x_157 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; +x_158 = lean_string_dec_eq(x_17, x_157); +if (x_158 == 0) +{ +lean_object* x_159; uint8_t x_160; +lean_dec(x_3); +x_159 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; +x_160 = lean_string_dec_eq(x_17, x_159); +if (x_160 == 0) +{ +lean_object* x_161; uint8_t x_162; +lean_dec(x_4); +x_161 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_162 = lean_string_dec_eq(x_17, x_161); +if (x_162 == 0) +{ +lean_object* x_163; uint8_t x_164; +lean_dec(x_5); +x_163 = l_Lean_mkHole___closed__1; +x_164 = lean_string_dec_eq(x_17, x_163); +if (x_164 == 0) +{ +lean_object* x_165; uint8_t x_166; +lean_dec(x_6); +x_165 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; +x_166 = lean_string_dec_eq(x_17, x_165); +if (x_166 == 0) +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; +lean_dec(x_7); +x_167 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_167, 0, x_14); +lean_ctor_set(x_167, 1, x_141); +lean_ctor_set_usize(x_167, 2, x_140); +lean_ctor_set(x_12, 1, x_145); +lean_ctor_set(x_12, 0, x_167); +lean_ctor_set(x_11, 1, x_150); +if (lean_is_scalar(x_144)) { + x_168 = lean_alloc_ctor(1, 2, 0); +} else { + x_168 = x_144; +} +lean_ctor_set(x_168, 0, x_10); +lean_ctor_set(x_168, 1, x_15); +x_169 = lean_apply_1(x_9, x_168); +return x_169; +} +else +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_144); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +x_170 = lean_box_usize(x_140); +x_171 = lean_box_usize(x_26); +x_172 = lean_box_usize(x_22); +x_173 = lean_box_usize(x_18); +x_174 = lean_apply_5(x_7, x_15, x_170, x_171, x_172, x_173); +return x_174; +} +} +else +{ +lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +lean_dec(x_144); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +x_175 = lean_box_usize(x_140); +x_176 = lean_box_usize(x_26); +x_177 = lean_box_usize(x_22); +x_178 = lean_box_usize(x_18); +x_179 = lean_apply_5(x_6, x_15, x_175, x_176, x_177, x_178); +return x_179; +} +} +else +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; +lean_dec(x_144); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +x_180 = lean_box_usize(x_140); +x_181 = lean_box_usize(x_26); +x_182 = lean_box_usize(x_22); +x_183 = lean_box_usize(x_18); +x_184 = lean_apply_5(x_5, x_15, x_180, x_181, x_182, x_183); +return x_184; +} +} +else +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; +lean_dec(x_144); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_185 = lean_box_usize(x_140); +x_186 = lean_box_usize(x_26); +x_187 = lean_box_usize(x_22); +x_188 = lean_box_usize(x_18); +x_189 = lean_apply_5(x_4, x_15, x_185, x_186, x_187, x_188); +return x_189; +} +} +else +{ +lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +lean_dec(x_144); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_190 = lean_box_usize(x_140); +x_191 = lean_box_usize(x_26); +x_192 = lean_box_usize(x_22); +x_193 = lean_box_usize(x_18); +x_194 = lean_apply_5(x_3, x_15, x_190, x_191, x_192, x_193); +return x_194; +} +} +else +{ +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; +lean_dec(x_144); +lean_free_object(x_12); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_195 = lean_box_usize(x_140); +x_196 = lean_box_usize(x_26); +x_197 = lean_box_usize(x_22); +x_198 = lean_box_usize(x_18); +x_199 = lean_apply_5(x_2, x_15, x_195, x_196, x_197, x_198); +return x_199; +} +} +} +} +} +} +else +{ +lean_object* x_200; size_t x_201; lean_object* x_202; size_t x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; +x_200 = lean_ctor_get(x_12, 1); +x_201 = lean_ctor_get_usize(x_12, 2); +lean_inc(x_200); +lean_dec(x_12); +x_202 = lean_ctor_get(x_13, 1); +lean_inc(x_202); +x_203 = lean_ctor_get_usize(x_13, 2); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + lean_ctor_release(x_13, 1); + x_204 = x_13; +} else { + lean_dec_ref(x_13); + x_204 = lean_box(0); +} +x_205 = l_Lean_mkAppStx___closed__1; +x_206 = lean_string_dec_eq(x_202, x_205); +lean_dec(x_202); +if (x_206 == 0) +{ +lean_object* x_207; +lean_dec(x_204); +lean_dec(x_200); +lean_free_object(x_11); +lean_dec(x_21); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_15); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_207 = lean_apply_1(x_9, x_1); +return x_207; +} +else +{ +lean_object* x_208; lean_object* x_209; uint8_t x_210; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_208 = x_1; +} else { + lean_dec_ref(x_1); + x_208 = lean_box(0); +} +x_209 = l_Lean_mkAppStx___closed__3; +x_210 = lean_string_dec_eq(x_200, x_209); +if (x_210 == 0) +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_204)) { + x_211 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_211 = x_204; +} +lean_ctor_set(x_211, 0, x_14); +lean_ctor_set(x_211, 1, x_205); +lean_ctor_set_usize(x_211, 2, x_203); +x_212 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_212, 0, x_211); +lean_ctor_set(x_212, 1, x_200); +lean_ctor_set_usize(x_212, 2, x_201); +lean_ctor_set(x_11, 0, x_212); +if (lean_is_scalar(x_208)) { + x_213 = lean_alloc_ctor(1, 2, 0); +} else { + x_213 = x_208; +} +lean_ctor_set(x_213, 0, x_10); +lean_ctor_set(x_213, 1, x_15); +x_214 = lean_apply_1(x_9, x_213); +return x_214; +} +else +{ +lean_object* x_215; uint8_t x_216; +lean_dec(x_200); +x_215 = l_Lean_mkAppStx___closed__5; +x_216 = lean_string_dec_eq(x_21, x_215); +if (x_216 == 0) +{ +lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_204)) { + x_217 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_217 = x_204; +} +lean_ctor_set(x_217, 0, x_14); +lean_ctor_set(x_217, 1, x_205); +lean_ctor_set_usize(x_217, 2, x_203); +x_218 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_218, 0, x_217); +lean_ctor_set(x_218, 1, x_209); +lean_ctor_set_usize(x_218, 2, x_201); +lean_ctor_set(x_11, 0, x_218); +if (lean_is_scalar(x_208)) { + x_219 = lean_alloc_ctor(1, 2, 0); +} else { + x_219 = x_208; +} +lean_ctor_set(x_219, 0, x_10); +lean_ctor_set(x_219, 1, x_15); +x_220 = lean_apply_1(x_9, x_219); +return x_220; +} +else +{ +lean_object* x_221; uint8_t x_222; +lean_dec(x_21); +x_221 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; +x_222 = lean_string_dec_eq(x_17, x_221); +if (x_222 == 0) +{ +lean_object* x_223; uint8_t x_224; +lean_dec(x_2); +x_223 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; +x_224 = lean_string_dec_eq(x_17, x_223); +if (x_224 == 0) +{ +lean_object* x_225; uint8_t x_226; +lean_dec(x_3); +x_225 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; +x_226 = lean_string_dec_eq(x_17, x_225); +if (x_226 == 0) +{ +lean_object* x_227; uint8_t x_228; +lean_dec(x_4); +x_227 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_228 = lean_string_dec_eq(x_17, x_227); +if (x_228 == 0) +{ +lean_object* x_229; uint8_t x_230; +lean_dec(x_5); +x_229 = l_Lean_mkHole___closed__1; +x_230 = lean_string_dec_eq(x_17, x_229); +if (x_230 == 0) +{ +lean_object* x_231; uint8_t x_232; +lean_dec(x_6); +x_231 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; +x_232 = lean_string_dec_eq(x_17, x_231); +if (x_232 == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; +lean_dec(x_7); +if (lean_is_scalar(x_204)) { + x_233 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_233 = x_204; +} +lean_ctor_set(x_233, 0, x_14); +lean_ctor_set(x_233, 1, x_205); +lean_ctor_set_usize(x_233, 2, x_203); +x_234 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_234, 0, x_233); +lean_ctor_set(x_234, 1, x_209); +lean_ctor_set_usize(x_234, 2, x_201); +lean_ctor_set(x_11, 1, x_215); +lean_ctor_set(x_11, 0, x_234); +if (lean_is_scalar(x_208)) { + x_235 = lean_alloc_ctor(1, 2, 0); +} else { + x_235 = x_208; +} +lean_ctor_set(x_235, 0, x_10); +lean_ctor_set(x_235, 1, x_15); +x_236 = lean_apply_1(x_9, x_235); +return x_236; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; +lean_dec(x_208); +lean_dec(x_204); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +x_237 = lean_box_usize(x_203); +x_238 = lean_box_usize(x_201); +x_239 = lean_box_usize(x_22); +x_240 = lean_box_usize(x_18); +x_241 = lean_apply_5(x_7, x_15, x_237, x_238, x_239, x_240); +return x_241; +} +} +else +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +lean_dec(x_208); +lean_dec(x_204); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +x_242 = lean_box_usize(x_203); +x_243 = lean_box_usize(x_201); +x_244 = lean_box_usize(x_22); +x_245 = lean_box_usize(x_18); +x_246 = lean_apply_5(x_6, x_15, x_242, x_243, x_244, x_245); +return x_246; +} +} +else +{ +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; +lean_dec(x_208); +lean_dec(x_204); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +x_247 = lean_box_usize(x_203); +x_248 = lean_box_usize(x_201); +x_249 = lean_box_usize(x_22); +x_250 = lean_box_usize(x_18); +x_251 = lean_apply_5(x_5, x_15, x_247, x_248, x_249, x_250); +return x_251; +} +} +else +{ +lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; +lean_dec(x_208); +lean_dec(x_204); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_252 = lean_box_usize(x_203); +x_253 = lean_box_usize(x_201); +x_254 = lean_box_usize(x_22); +x_255 = lean_box_usize(x_18); +x_256 = lean_apply_5(x_4, x_15, x_252, x_253, x_254, x_255); +return x_256; +} +} +else +{ +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; +lean_dec(x_208); +lean_dec(x_204); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_257 = lean_box_usize(x_203); +x_258 = lean_box_usize(x_201); +x_259 = lean_box_usize(x_22); +x_260 = lean_box_usize(x_18); +x_261 = lean_apply_5(x_3, x_15, x_257, x_258, x_259, x_260); +return x_261; +} +} +else +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; +lean_dec(x_208); +lean_dec(x_204); +lean_free_object(x_11); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_262 = lean_box_usize(x_203); +x_263 = lean_box_usize(x_201); +x_264 = lean_box_usize(x_22); +x_265 = lean_box_usize(x_18); +x_266 = lean_apply_5(x_2, x_15, x_262, x_263, x_264, x_265); +return x_266; +} +} +} +} +} +} +else +{ +lean_object* x_267; size_t x_268; lean_object* x_269; size_t x_270; lean_object* x_271; lean_object* x_272; size_t x_273; lean_object* x_274; lean_object* x_275; uint8_t x_276; +x_267 = lean_ctor_get(x_11, 1); +x_268 = lean_ctor_get_usize(x_11, 2); +lean_inc(x_267); +lean_dec(x_11); +x_269 = lean_ctor_get(x_12, 1); +lean_inc(x_269); +x_270 = lean_ctor_get_usize(x_12, 2); +if (lean_is_exclusive(x_12)) { + lean_ctor_release(x_12, 0); + lean_ctor_release(x_12, 1); + x_271 = x_12; +} else { + lean_dec_ref(x_12); + x_271 = lean_box(0); +} +x_272 = lean_ctor_get(x_13, 1); +lean_inc(x_272); +x_273 = lean_ctor_get_usize(x_13, 2); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + lean_ctor_release(x_13, 1); + x_274 = x_13; +} else { + lean_dec_ref(x_13); + x_274 = lean_box(0); +} +x_275 = l_Lean_mkAppStx___closed__1; +x_276 = lean_string_dec_eq(x_272, x_275); +lean_dec(x_272); +if (x_276 == 0) +{ +lean_object* x_277; +lean_dec(x_274); +lean_dec(x_271); +lean_dec(x_269); +lean_dec(x_267); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_15); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_277 = lean_apply_1(x_9, x_1); +return x_277; +} +else +{ +lean_object* x_278; lean_object* x_279; uint8_t x_280; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_278 = x_1; +} else { + lean_dec_ref(x_1); + x_278 = lean_box(0); +} +x_279 = l_Lean_mkAppStx___closed__3; +x_280 = lean_string_dec_eq(x_269, x_279); +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_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_274)) { + x_281 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_281 = x_274; +} +lean_ctor_set(x_281, 0, x_14); +lean_ctor_set(x_281, 1, x_275); +lean_ctor_set_usize(x_281, 2, x_273); +if (lean_is_scalar(x_271)) { + x_282 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_282 = x_271; +} +lean_ctor_set(x_282, 0, x_281); +lean_ctor_set(x_282, 1, x_269); +lean_ctor_set_usize(x_282, 2, x_270); +x_283 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_283, 0, x_282); +lean_ctor_set(x_283, 1, x_267); +lean_ctor_set_usize(x_283, 2, x_268); +lean_ctor_set(x_10, 0, x_283); +if (lean_is_scalar(x_278)) { + x_284 = lean_alloc_ctor(1, 2, 0); +} else { + x_284 = x_278; +} +lean_ctor_set(x_284, 0, x_10); +lean_ctor_set(x_284, 1, x_15); +x_285 = lean_apply_1(x_9, x_284); +return x_285; +} +else +{ +lean_object* x_286; uint8_t x_287; +lean_dec(x_269); +x_286 = l_Lean_mkAppStx___closed__5; +x_287 = lean_string_dec_eq(x_267, x_286); +if (x_287 == 0) +{ +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_274)) { + x_288 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_288 = x_274; +} +lean_ctor_set(x_288, 0, x_14); +lean_ctor_set(x_288, 1, x_275); +lean_ctor_set_usize(x_288, 2, x_273); +if (lean_is_scalar(x_271)) { + x_289 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_289 = x_271; +} +lean_ctor_set(x_289, 0, x_288); +lean_ctor_set(x_289, 1, x_279); +lean_ctor_set_usize(x_289, 2, x_270); +x_290 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_290, 0, x_289); +lean_ctor_set(x_290, 1, x_267); +lean_ctor_set_usize(x_290, 2, x_268); +lean_ctor_set(x_10, 0, x_290); +if (lean_is_scalar(x_278)) { + x_291 = lean_alloc_ctor(1, 2, 0); +} else { + x_291 = x_278; +} +lean_ctor_set(x_291, 0, x_10); +lean_ctor_set(x_291, 1, x_15); +x_292 = lean_apply_1(x_9, x_291); +return x_292; +} +else +{ +lean_object* x_293; uint8_t x_294; +lean_dec(x_267); +x_293 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; +x_294 = lean_string_dec_eq(x_17, x_293); +if (x_294 == 0) +{ +lean_object* x_295; uint8_t x_296; +lean_dec(x_2); +x_295 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; +x_296 = lean_string_dec_eq(x_17, x_295); +if (x_296 == 0) +{ +lean_object* x_297; uint8_t x_298; +lean_dec(x_3); +x_297 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; +x_298 = lean_string_dec_eq(x_17, x_297); +if (x_298 == 0) +{ +lean_object* x_299; uint8_t x_300; +lean_dec(x_4); +x_299 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_300 = lean_string_dec_eq(x_17, x_299); +if (x_300 == 0) +{ +lean_object* x_301; uint8_t x_302; +lean_dec(x_5); +x_301 = l_Lean_mkHole___closed__1; +x_302 = lean_string_dec_eq(x_17, x_301); +if (x_302 == 0) +{ +lean_object* x_303; uint8_t x_304; +lean_dec(x_6); +x_303 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; +x_304 = lean_string_dec_eq(x_17, x_303); +if (x_304 == 0) +{ +lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; +lean_dec(x_7); +if (lean_is_scalar(x_274)) { + x_305 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_305 = x_274; +} +lean_ctor_set(x_305, 0, x_14); +lean_ctor_set(x_305, 1, x_275); +lean_ctor_set_usize(x_305, 2, x_273); +if (lean_is_scalar(x_271)) { + x_306 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_306 = x_271; +} +lean_ctor_set(x_306, 0, x_305); +lean_ctor_set(x_306, 1, x_279); +lean_ctor_set_usize(x_306, 2, x_270); +x_307 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_307, 0, x_306); +lean_ctor_set(x_307, 1, x_286); +lean_ctor_set_usize(x_307, 2, x_268); +lean_ctor_set(x_10, 0, x_307); +if (lean_is_scalar(x_278)) { + x_308 = lean_alloc_ctor(1, 2, 0); +} else { + x_308 = x_278; +} +lean_ctor_set(x_308, 0, x_10); +lean_ctor_set(x_308, 1, x_15); +x_309 = lean_apply_1(x_9, x_308); +return x_309; +} +else +{ +lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; +lean_dec(x_278); +lean_dec(x_274); +lean_dec(x_271); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +x_310 = lean_box_usize(x_273); +x_311 = lean_box_usize(x_270); +x_312 = lean_box_usize(x_268); +x_313 = lean_box_usize(x_18); +x_314 = lean_apply_5(x_7, x_15, x_310, x_311, x_312, x_313); +return x_314; +} +} +else +{ +lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; +lean_dec(x_278); +lean_dec(x_274); +lean_dec(x_271); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +x_315 = lean_box_usize(x_273); +x_316 = lean_box_usize(x_270); +x_317 = lean_box_usize(x_268); +x_318 = lean_box_usize(x_18); +x_319 = lean_apply_5(x_6, x_15, x_315, x_316, x_317, x_318); +return x_319; +} +} +else +{ +lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; +lean_dec(x_278); +lean_dec(x_274); +lean_dec(x_271); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +x_320 = lean_box_usize(x_273); +x_321 = lean_box_usize(x_270); +x_322 = lean_box_usize(x_268); +x_323 = lean_box_usize(x_18); +x_324 = lean_apply_5(x_5, x_15, x_320, x_321, x_322, x_323); +return x_324; +} +} +else +{ +lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +lean_dec(x_278); +lean_dec(x_274); +lean_dec(x_271); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_325 = lean_box_usize(x_273); +x_326 = lean_box_usize(x_270); +x_327 = lean_box_usize(x_268); +x_328 = lean_box_usize(x_18); +x_329 = lean_apply_5(x_4, x_15, x_325, x_326, x_327, x_328); +return x_329; +} +} +else +{ +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; +lean_dec(x_278); +lean_dec(x_274); +lean_dec(x_271); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_330 = lean_box_usize(x_273); +x_331 = lean_box_usize(x_270); +x_332 = lean_box_usize(x_268); +x_333 = lean_box_usize(x_18); +x_334 = lean_apply_5(x_3, x_15, x_330, x_331, x_332, x_333); +return x_334; +} +} +else +{ +lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; +lean_dec(x_278); +lean_dec(x_274); +lean_dec(x_271); +lean_free_object(x_10); +lean_dec(x_17); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_335 = lean_box_usize(x_273); +x_336 = lean_box_usize(x_270); +x_337 = lean_box_usize(x_268); +x_338 = lean_box_usize(x_18); +x_339 = lean_apply_5(x_2, x_15, x_335, x_336, x_337, x_338); +return x_339; +} +} +} +} +} +} +else +{ +lean_object* x_340; size_t x_341; lean_object* x_342; size_t x_343; lean_object* x_344; lean_object* x_345; size_t x_346; lean_object* x_347; lean_object* x_348; size_t x_349; lean_object* x_350; lean_object* x_351; uint8_t x_352; +x_340 = lean_ctor_get(x_10, 1); +x_341 = lean_ctor_get_usize(x_10, 2); +lean_inc(x_340); +lean_dec(x_10); +x_342 = lean_ctor_get(x_11, 1); +lean_inc(x_342); +x_343 = lean_ctor_get_usize(x_11, 2); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_344 = x_11; +} else { + lean_dec_ref(x_11); + x_344 = lean_box(0); +} +x_345 = lean_ctor_get(x_12, 1); +lean_inc(x_345); +x_346 = lean_ctor_get_usize(x_12, 2); +if (lean_is_exclusive(x_12)) { + lean_ctor_release(x_12, 0); + lean_ctor_release(x_12, 1); + x_347 = x_12; +} else { + lean_dec_ref(x_12); + x_347 = lean_box(0); +} +x_348 = lean_ctor_get(x_13, 1); +lean_inc(x_348); +x_349 = lean_ctor_get_usize(x_13, 2); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + lean_ctor_release(x_13, 1); + x_350 = x_13; +} else { + lean_dec_ref(x_13); + x_350 = lean_box(0); +} +x_351 = l_Lean_mkAppStx___closed__1; +x_352 = lean_string_dec_eq(x_348, x_351); +lean_dec(x_348); +if (x_352 == 0) +{ +lean_object* x_353; +lean_dec(x_350); +lean_dec(x_347); +lean_dec(x_345); +lean_dec(x_344); +lean_dec(x_342); +lean_dec(x_340); +lean_dec(x_15); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_353 = lean_apply_1(x_9, x_1); +return x_353; +} +else +{ +lean_object* x_354; lean_object* x_355; uint8_t x_356; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_354 = x_1; +} else { + lean_dec_ref(x_1); + x_354 = lean_box(0); +} +x_355 = l_Lean_mkAppStx___closed__3; +x_356 = lean_string_dec_eq(x_345, x_355); +if (x_356 == 0) +{ +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_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_350)) { + x_357 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_357 = x_350; +} +lean_ctor_set(x_357, 0, x_14); +lean_ctor_set(x_357, 1, x_351); +lean_ctor_set_usize(x_357, 2, x_349); +if (lean_is_scalar(x_347)) { + x_358 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_358 = x_347; +} +lean_ctor_set(x_358, 0, x_357); +lean_ctor_set(x_358, 1, x_345); +lean_ctor_set_usize(x_358, 2, x_346); +if (lean_is_scalar(x_344)) { + x_359 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_359 = x_344; +} +lean_ctor_set(x_359, 0, x_358); +lean_ctor_set(x_359, 1, x_342); +lean_ctor_set_usize(x_359, 2, x_343); +x_360 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_360, 0, x_359); +lean_ctor_set(x_360, 1, x_340); +lean_ctor_set_usize(x_360, 2, x_341); +if (lean_is_scalar(x_354)) { + x_361 = lean_alloc_ctor(1, 2, 0); +} else { + x_361 = x_354; +} +lean_ctor_set(x_361, 0, x_360); +lean_ctor_set(x_361, 1, x_15); +x_362 = lean_apply_1(x_9, x_361); +return x_362; +} +else +{ +lean_object* x_363; uint8_t x_364; +lean_dec(x_345); +x_363 = l_Lean_mkAppStx___closed__5; +x_364 = lean_string_dec_eq(x_342, x_363); +if (x_364 == 0) +{ +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_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_350)) { + x_365 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_365 = x_350; +} +lean_ctor_set(x_365, 0, x_14); +lean_ctor_set(x_365, 1, x_351); +lean_ctor_set_usize(x_365, 2, x_349); +if (lean_is_scalar(x_347)) { + x_366 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_366 = x_347; +} +lean_ctor_set(x_366, 0, x_365); +lean_ctor_set(x_366, 1, x_355); +lean_ctor_set_usize(x_366, 2, x_346); +if (lean_is_scalar(x_344)) { + x_367 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_367 = x_344; +} +lean_ctor_set(x_367, 0, x_366); +lean_ctor_set(x_367, 1, x_342); +lean_ctor_set_usize(x_367, 2, x_343); +x_368 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_368, 0, x_367); +lean_ctor_set(x_368, 1, x_340); +lean_ctor_set_usize(x_368, 2, x_341); +if (lean_is_scalar(x_354)) { + x_369 = lean_alloc_ctor(1, 2, 0); +} else { + x_369 = x_354; +} +lean_ctor_set(x_369, 0, x_368); +lean_ctor_set(x_369, 1, x_15); +x_370 = lean_apply_1(x_9, x_369); +return x_370; +} +else +{ +lean_object* x_371; uint8_t x_372; +lean_dec(x_342); +x_371 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; +x_372 = lean_string_dec_eq(x_340, x_371); +if (x_372 == 0) +{ +lean_object* x_373; uint8_t x_374; +lean_dec(x_2); +x_373 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; +x_374 = lean_string_dec_eq(x_340, x_373); +if (x_374 == 0) +{ +lean_object* x_375; uint8_t x_376; +lean_dec(x_3); +x_375 = l_Lean_Elab_Term_mkExplicitBinder___closed__1; +x_376 = lean_string_dec_eq(x_340, x_375); +if (x_376 == 0) +{ +lean_object* x_377; uint8_t x_378; +lean_dec(x_4); +x_377 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_378 = lean_string_dec_eq(x_340, x_377); +if (x_378 == 0) +{ +lean_object* x_379; uint8_t x_380; +lean_dec(x_5); +x_379 = l_Lean_mkHole___closed__1; +x_380 = lean_string_dec_eq(x_340, x_379); +if (x_380 == 0) +{ +lean_object* x_381; uint8_t x_382; +lean_dec(x_6); +x_381 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; +x_382 = lean_string_dec_eq(x_340, x_381); +if (x_382 == 0) +{ +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_dec(x_7); +if (lean_is_scalar(x_350)) { + x_383 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_383 = x_350; +} +lean_ctor_set(x_383, 0, x_14); +lean_ctor_set(x_383, 1, x_351); +lean_ctor_set_usize(x_383, 2, x_349); +if (lean_is_scalar(x_347)) { + x_384 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_384 = x_347; +} +lean_ctor_set(x_384, 0, x_383); +lean_ctor_set(x_384, 1, x_355); +lean_ctor_set_usize(x_384, 2, x_346); +if (lean_is_scalar(x_344)) { + x_385 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +} else { + x_385 = x_344; +} +lean_ctor_set(x_385, 0, x_384); +lean_ctor_set(x_385, 1, x_363); +lean_ctor_set_usize(x_385, 2, x_343); +x_386 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_386, 0, x_385); +lean_ctor_set(x_386, 1, x_340); +lean_ctor_set_usize(x_386, 2, x_341); +if (lean_is_scalar(x_354)) { + x_387 = lean_alloc_ctor(1, 2, 0); +} else { + x_387 = x_354; +} +lean_ctor_set(x_387, 0, x_386); +lean_ctor_set(x_387, 1, x_15); +x_388 = lean_apply_1(x_9, x_387); +return x_388; +} +else +{ +lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; +lean_dec(x_354); +lean_dec(x_350); +lean_dec(x_347); +lean_dec(x_344); +lean_dec(x_340); +lean_dec(x_9); +x_389 = lean_box_usize(x_349); +x_390 = lean_box_usize(x_346); +x_391 = lean_box_usize(x_343); +x_392 = lean_box_usize(x_341); +x_393 = lean_apply_5(x_7, x_15, x_389, x_390, x_391, x_392); +return x_393; +} +} +else +{ +lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; +lean_dec(x_354); +lean_dec(x_350); +lean_dec(x_347); +lean_dec(x_344); +lean_dec(x_340); +lean_dec(x_9); +lean_dec(x_7); +x_394 = lean_box_usize(x_349); +x_395 = lean_box_usize(x_346); +x_396 = lean_box_usize(x_343); +x_397 = lean_box_usize(x_341); +x_398 = lean_apply_5(x_6, x_15, x_394, x_395, x_396, x_397); +return x_398; +} +} +else +{ +lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; +lean_dec(x_354); +lean_dec(x_350); +lean_dec(x_347); +lean_dec(x_344); +lean_dec(x_340); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +x_399 = lean_box_usize(x_349); +x_400 = lean_box_usize(x_346); +x_401 = lean_box_usize(x_343); +x_402 = lean_box_usize(x_341); +x_403 = lean_apply_5(x_5, x_15, x_399, x_400, x_401, x_402); +return x_403; +} +} +else +{ +lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; +lean_dec(x_354); +lean_dec(x_350); +lean_dec(x_347); +lean_dec(x_344); +lean_dec(x_340); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_404 = lean_box_usize(x_349); +x_405 = lean_box_usize(x_346); +x_406 = lean_box_usize(x_343); +x_407 = lean_box_usize(x_341); +x_408 = lean_apply_5(x_4, x_15, x_404, x_405, x_406, x_407); +return x_408; +} +} +else +{ +lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; +lean_dec(x_354); +lean_dec(x_350); +lean_dec(x_347); +lean_dec(x_344); +lean_dec(x_340); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_409 = lean_box_usize(x_349); +x_410 = lean_box_usize(x_346); +x_411 = lean_box_usize(x_343); +x_412 = lean_box_usize(x_341); +x_413 = lean_apply_5(x_3, x_15, x_409, x_410, x_411, x_412); +return x_413; +} +} +else +{ +lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; +lean_dec(x_354); +lean_dec(x_350); +lean_dec(x_347); +lean_dec(x_344); +lean_dec(x_340); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_414 = lean_box_usize(x_349); +x_415 = lean_box_usize(x_346); +x_416 = lean_box_usize(x_343); +x_417 = lean_box_usize(x_341); +x_418 = lean_apply_5(x_2, x_15, x_414, x_415, x_416, x_417); +return x_418; +} +} +} +} +} +} +else +{ +lean_object* x_419; +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_419 = lean_apply_1(x_9, x_1); +return x_419; +} +} +else +{ +lean_object* x_420; +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_420 = lean_apply_1(x_9, x_1); +return x_420; +} +} +else +{ +lean_object* x_421; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_421 = lean_apply_1(x_9, x_1); +return x_421; +} +} +else +{ +lean_object* x_422; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_422 = lean_apply_1(x_9, x_1); +return x_422; +} +} +else +{ +lean_object* x_423; +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_423 = lean_apply_1(x_9, x_1); +return x_423; +} +} +case 3: +{ +lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_424 = lean_ctor_get(x_1, 0); +lean_inc(x_424); +x_425 = lean_ctor_get(x_1, 1); +lean_inc(x_425); +x_426 = lean_ctor_get(x_1, 2); +lean_inc(x_426); +x_427 = lean_ctor_get(x_1, 3); +lean_inc(x_427); +lean_dec(x_1); +x_428 = lean_apply_4(x_8, x_424, x_425, x_426, x_427); +return x_428; +} +default: +{ +lean_object* x_429; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_429 = lean_apply_1(x_9, x_1); +return x_429; } } } @@ -8762,7 +8991,7 @@ lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg), 8, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg), 9, 0); return x_2; } } @@ -8860,7 +9089,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -9068,7 +9297,7 @@ lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); x_50 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_51 = lean_array_push(x_50, x_49); -x_52 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_52 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_53 = lean_array_push(x_51, x_52); x_54 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_55 = lean_array_push(x_53, x_54); @@ -9126,7 +9355,7 @@ lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_81); x_84 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_85 = lean_array_push(x_84, x_83); -x_86 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_86 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_87 = lean_array_push(x_85, x_86); x_88 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_89 = lean_array_push(x_87, x_88); @@ -9203,7 +9432,7 @@ lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_121); x_124 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_125 = lean_array_push(x_124, x_123); -x_126 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_126 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_127 = lean_array_push(x_125, x_126); x_128 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_129 = lean_array_push(x_127, x_128); @@ -9296,7 +9525,7 @@ lean_ctor_set(x_166, 0, x_165); lean_ctor_set(x_166, 1, x_164); x_167 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_168 = lean_array_push(x_167, x_166); -x_169 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_169 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_170 = lean_array_push(x_168, x_169); x_171 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_172 = lean_array_push(x_170, x_171); @@ -9460,7 +9689,7 @@ lean_ctor_set(x_235, 0, x_234); lean_ctor_set(x_235, 1, x_233); x_236 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_237 = lean_array_push(x_236, x_235); -x_238 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_238 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_239 = lean_array_push(x_237, x_238); x_240 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_241 = lean_array_push(x_239, x_240); @@ -9564,7 +9793,7 @@ lean_ctor_set(x_289, 0, x_288); lean_ctor_set(x_289, 1, x_287); x_290 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_291 = lean_array_push(x_290, x_289); -x_292 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_292 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_293 = lean_array_push(x_291, x_292); x_294 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_295 = lean_array_push(x_293, x_294); @@ -9654,7 +9883,7 @@ lean_ctor_set(x_330, 0, x_329); lean_ctor_set(x_330, 1, x_328); x_331 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_332 = lean_array_push(x_331, x_330); -x_333 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_333 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_334 = lean_array_push(x_332, x_333); x_335 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_336 = lean_array_push(x_334, x_335); @@ -9760,7 +9989,7 @@ lean_ctor_set(x_374, 0, x_373); lean_ctor_set(x_374, 1, x_372); x_375 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_376 = lean_array_push(x_375, x_374); -x_377 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_377 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_378 = lean_array_push(x_376, x_377); x_379 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_380 = lean_array_push(x_378, x_379); @@ -9899,7 +10128,7 @@ lean_ctor_set(x_435, 0, x_434); lean_ctor_set(x_435, 1, x_433); x_436 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_437 = lean_array_push(x_436, x_435); -x_438 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_438 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_439 = lean_array_push(x_437, x_438); x_440 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_441 = lean_array_push(x_439, x_440); @@ -10003,7 +10232,7 @@ lean_ctor_set(x_489, 0, x_488); lean_ctor_set(x_489, 1, x_487); x_490 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_491 = lean_array_push(x_490, x_489); -x_492 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_492 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_493 = lean_array_push(x_491, x_492); x_494 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_495 = lean_array_push(x_493, x_494); @@ -10093,7 +10322,7 @@ lean_ctor_set(x_530, 0, x_529); lean_ctor_set(x_530, 1, x_528); x_531 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_532 = lean_array_push(x_531, x_530); -x_533 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_533 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_534 = lean_array_push(x_532, x_533); x_535 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_536 = lean_array_push(x_534, x_535); @@ -10199,7 +10428,7 @@ lean_ctor_set(x_574, 0, x_573); lean_ctor_set(x_574, 1, x_572); x_575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_576 = lean_array_push(x_575, x_574); -x_577 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_577 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_578 = lean_array_push(x_576, x_577); x_579 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_580 = lean_array_push(x_578, x_579); @@ -10337,7 +10566,7 @@ lean_ctor_set(x_635, 0, x_634); lean_ctor_set(x_635, 1, x_633); x_636 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_637 = lean_array_push(x_636, x_635); -x_638 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_638 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_639 = lean_array_push(x_637, x_638); x_640 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_641 = lean_array_push(x_639, x_640); @@ -10441,7 +10670,7 @@ lean_ctor_set(x_689, 0, x_688); lean_ctor_set(x_689, 1, x_687); x_690 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_691 = lean_array_push(x_690, x_689); -x_692 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_692 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_693 = lean_array_push(x_691, x_692); x_694 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_695 = lean_array_push(x_693, x_694); @@ -10531,7 +10760,7 @@ lean_ctor_set(x_730, 0, x_729); lean_ctor_set(x_730, 1, x_728); x_731 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_732 = lean_array_push(x_731, x_730); -x_733 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_733 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_734 = lean_array_push(x_732, x_733); x_735 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_736 = lean_array_push(x_734, x_735); @@ -10637,7 +10866,7 @@ lean_ctor_set(x_774, 0, x_773); lean_ctor_set(x_774, 1, x_772); x_775 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_776 = lean_array_push(x_775, x_774); -x_777 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_777 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_778 = lean_array_push(x_776, x_777); x_779 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_780 = lean_array_push(x_778, x_779); @@ -10721,2296 +10950,2314 @@ x_809 = lean_string_dec_eq(x_200, x_808); if (x_809 == 0) { lean_object* x_810; uint8_t x_811; -x_810 = l_Lean_mkHole___closed__1; +x_810 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; x_811 = lean_string_dec_eq(x_200, x_810); if (x_811 == 0) { lean_object* x_812; uint8_t x_813; -x_812 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; +x_812 = l_Lean_mkHole___closed__1; x_813 = lean_string_dec_eq(x_200, x_812); -lean_dec(x_200); if (x_813 == 0) { -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; uint8_t x_826; -lean_inc(x_5); -x_814 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_815 = lean_ctor_get(x_814, 0); -lean_inc(x_815); -x_816 = lean_ctor_get(x_814, 1); -lean_inc(x_816); -lean_dec(x_814); -x_817 = lean_unsigned_to_nat(1u); -x_818 = lean_nat_add(x_3, x_817); -lean_dec(x_3); -x_819 = l_Lean_mkHole(x_19); -lean_inc(x_815); -x_820 = l_Lean_Elab_Term_mkExplicitBinder(x_815, x_819); -x_821 = lean_array_push(x_4, x_820); -lean_inc(x_5); -x_822 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_818, x_821, x_5, x_6, x_7, x_8, x_9, x_10, x_816); -x_823 = lean_ctor_get(x_822, 0); -lean_inc(x_823); -x_824 = lean_ctor_get(x_823, 1); -lean_inc(x_824); -x_825 = lean_ctor_get(x_822, 1); -lean_inc(x_825); -lean_dec(x_822); -x_826 = !lean_is_exclusive(x_823); -if (x_826 == 0) +lean_object* x_814; uint8_t x_815; +x_814 = l_myMacro____x40_Init_Tactics___hyg_720____closed__3; +x_815 = lean_string_dec_eq(x_200, x_814); +lean_dec(x_200); +if (x_815 == 0) { -lean_object* x_827; uint8_t x_828; -x_827 = lean_ctor_get(x_823, 1); -lean_dec(x_827); -x_828 = !lean_is_exclusive(x_824); +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; uint8_t x_828; +lean_inc(x_5); +x_816 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_817 = lean_ctor_get(x_816, 0); +lean_inc(x_817); +x_818 = lean_ctor_get(x_816, 1); +lean_inc(x_818); +lean_dec(x_816); +x_819 = lean_unsigned_to_nat(1u); +x_820 = lean_nat_add(x_3, x_819); +lean_dec(x_3); +x_821 = l_Lean_mkHole(x_19); +lean_inc(x_817); +x_822 = l_Lean_Elab_Term_mkExplicitBinder(x_817, x_821); +x_823 = lean_array_push(x_4, x_822); +lean_inc(x_5); +x_824 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_820, x_823, x_5, x_6, x_7, x_8, x_9, x_10, x_818); +x_825 = lean_ctor_get(x_824, 0); +lean_inc(x_825); +x_826 = lean_ctor_get(x_825, 1); +lean_inc(x_826); +x_827 = lean_ctor_get(x_824, 1); +lean_inc(x_827); +lean_dec(x_824); +x_828 = !lean_is_exclusive(x_825); if (x_828 == 0) { -lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; uint8_t x_834; -x_829 = lean_ctor_get(x_824, 0); -x_830 = lean_ctor_get(x_824, 1); -lean_dec(x_830); -x_831 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_825); +lean_object* x_829; uint8_t x_830; +x_829 = lean_ctor_get(x_825, 1); +lean_dec(x_829); +x_830 = !lean_is_exclusive(x_826); +if (x_830 == 0) +{ +lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; uint8_t x_836; +x_831 = lean_ctor_get(x_826, 0); +x_832 = lean_ctor_get(x_826, 1); +lean_dec(x_832); +x_833 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_827); lean_dec(x_5); -x_832 = lean_ctor_get(x_831, 1); -lean_inc(x_832); -lean_dec(x_831); -x_833 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_832); -x_834 = !lean_is_exclusive(x_833); -if (x_834 == 0) -{ -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; uint8_t x_851; -x_835 = lean_ctor_get(x_833, 0); -lean_dec(x_835); -x_836 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_837 = lean_array_push(x_836, x_815); -x_838 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_839 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_839, 0, x_838); -lean_ctor_set(x_839, 1, x_837); -x_840 = l_Array_empty___closed__1; -x_841 = lean_array_push(x_840, x_839); -x_842 = l_Lean_nullKind___closed__2; -x_843 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_843, 0, x_842); -lean_ctor_set(x_843, 1, x_841); -x_844 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_845 = lean_array_push(x_844, x_843); -x_846 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_847 = lean_array_push(x_845, x_846); -x_848 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_849 = lean_array_push(x_847, x_848); -lean_inc(x_19); -x_850 = lean_array_push(x_840, x_19); -x_851 = !lean_is_exclusive(x_19); -if (x_851 == 0) -{ -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; uint8_t x_869; lean_object* x_870; -x_852 = lean_ctor_get(x_19, 1); -lean_dec(x_852); -x_853 = lean_ctor_get(x_19, 0); -lean_dec(x_853); -lean_ctor_set(x_19, 1, x_850); -lean_ctor_set(x_19, 0, x_842); -x_854 = lean_array_push(x_840, x_19); -x_855 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_856 = lean_array_push(x_854, x_855); -x_857 = lean_array_push(x_856, x_829); -x_858 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_859 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_859, 0, x_858); -lean_ctor_set(x_859, 1, x_857); -x_860 = lean_array_push(x_840, x_859); -x_861 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_861, 0, x_842); -lean_ctor_set(x_861, 1, x_860); -x_862 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_863 = lean_array_push(x_862, x_861); -x_864 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_865 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_865, 0, x_864); -lean_ctor_set(x_865, 1, x_863); -x_866 = lean_array_push(x_849, x_865); -x_867 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_868 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_868, 0, x_867); -lean_ctor_set(x_868, 1, x_866); -x_869 = 1; -x_870 = lean_box(x_869); -lean_ctor_set(x_824, 1, x_870); -lean_ctor_set(x_824, 0, x_868); -lean_ctor_set(x_833, 0, x_823); -return x_833; -} -else -{ -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; uint8_t x_887; lean_object* x_888; -lean_dec(x_19); -x_871 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_871, 0, x_842); -lean_ctor_set(x_871, 1, x_850); -x_872 = lean_array_push(x_840, x_871); -x_873 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_874 = lean_array_push(x_872, x_873); -x_875 = lean_array_push(x_874, x_829); -x_876 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_877 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_877, 0, x_876); -lean_ctor_set(x_877, 1, x_875); -x_878 = lean_array_push(x_840, x_877); -x_879 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_879, 0, x_842); -lean_ctor_set(x_879, 1, x_878); -x_880 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_881 = lean_array_push(x_880, x_879); -x_882 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_883 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_883, 0, x_882); -lean_ctor_set(x_883, 1, x_881); -x_884 = lean_array_push(x_849, x_883); -x_885 = l_Lean_Elab_Term_expandFunBinders_loop___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 = 1; -x_888 = lean_box(x_887); -lean_ctor_set(x_824, 1, x_888); -lean_ctor_set(x_824, 0, x_886); -lean_ctor_set(x_833, 0, x_823); -return x_833; -} -} -else -{ -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; uint8_t x_922; lean_object* x_923; lean_object* x_924; -x_889 = lean_ctor_get(x_833, 1); -lean_inc(x_889); +x_834 = lean_ctor_get(x_833, 1); +lean_inc(x_834); lean_dec(x_833); -x_890 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_891 = lean_array_push(x_890, x_815); -x_892 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_893 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_893, 0, x_892); -lean_ctor_set(x_893, 1, x_891); -x_894 = l_Array_empty___closed__1; -x_895 = lean_array_push(x_894, x_893); -x_896 = l_Lean_nullKind___closed__2; -x_897 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_897, 0, x_896); -lean_ctor_set(x_897, 1, x_895); -x_898 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_899 = lean_array_push(x_898, x_897); -x_900 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_901 = lean_array_push(x_899, x_900); -x_902 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_903 = lean_array_push(x_901, x_902); +x_835 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_834); +x_836 = !lean_is_exclusive(x_835); +if (x_836 == 0) +{ +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; uint8_t x_853; +x_837 = lean_ctor_get(x_835, 0); +lean_dec(x_837); +x_838 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_839 = lean_array_push(x_838, x_817); +x_840 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_841 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_841, 0, x_840); +lean_ctor_set(x_841, 1, x_839); +x_842 = l_Array_empty___closed__1; +x_843 = lean_array_push(x_842, x_841); +x_844 = l_Lean_nullKind___closed__2; +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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_847 = lean_array_push(x_846, x_845); +x_848 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_849 = lean_array_push(x_847, x_848); +x_850 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_851 = lean_array_push(x_849, x_850); lean_inc(x_19); -x_904 = lean_array_push(x_894, x_19); +x_852 = lean_array_push(x_842, x_19); +x_853 = !lean_is_exclusive(x_19); +if (x_853 == 0) +{ +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; uint8_t x_871; lean_object* x_872; +x_854 = lean_ctor_get(x_19, 1); +lean_dec(x_854); +x_855 = lean_ctor_get(x_19, 0); +lean_dec(x_855); +lean_ctor_set(x_19, 1, x_852); +lean_ctor_set(x_19, 0, x_844); +x_856 = lean_array_push(x_842, x_19); +x_857 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_858 = lean_array_push(x_856, x_857); +x_859 = lean_array_push(x_858, x_831); +x_860 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_861 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_861, 0, x_860); +lean_ctor_set(x_861, 1, x_859); +x_862 = lean_array_push(x_842, x_861); +x_863 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_863, 0, x_844); +lean_ctor_set(x_863, 1, x_862); +x_864 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_865 = lean_array_push(x_864, x_863); +x_866 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_867 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_867, 0, x_866); +lean_ctor_set(x_867, 1, x_865); +x_868 = lean_array_push(x_851, x_867); +x_869 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_870 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_870, 0, x_869); +lean_ctor_set(x_870, 1, x_868); +x_871 = 1; +x_872 = lean_box(x_871); +lean_ctor_set(x_826, 1, x_872); +lean_ctor_set(x_826, 0, x_870); +lean_ctor_set(x_835, 0, x_825); +return x_835; +} +else +{ +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; uint8_t x_889; lean_object* x_890; +lean_dec(x_19); +x_873 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_873, 0, x_844); +lean_ctor_set(x_873, 1, x_852); +x_874 = lean_array_push(x_842, x_873); +x_875 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_876 = lean_array_push(x_874, x_875); +x_877 = lean_array_push(x_876, x_831); +x_878 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_879 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_879, 0, x_878); +lean_ctor_set(x_879, 1, x_877); +x_880 = lean_array_push(x_842, x_879); +x_881 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_881, 0, x_844); +lean_ctor_set(x_881, 1, x_880); +x_882 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_883 = lean_array_push(x_882, x_881); +x_884 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_885 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_885, 0, x_884); +lean_ctor_set(x_885, 1, x_883); +x_886 = lean_array_push(x_851, x_885); +x_887 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_888 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_888, 0, x_887); +lean_ctor_set(x_888, 1, x_886); +x_889 = 1; +x_890 = lean_box(x_889); +lean_ctor_set(x_826, 1, x_890); +lean_ctor_set(x_826, 0, x_888); +lean_ctor_set(x_835, 0, x_825); +return x_835; +} +} +else +{ +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; uint8_t x_924; lean_object* x_925; lean_object* x_926; +x_891 = lean_ctor_get(x_835, 1); +lean_inc(x_891); +lean_dec(x_835); +x_892 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_893 = lean_array_push(x_892, x_817); +x_894 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_895 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_895, 0, x_894); +lean_ctor_set(x_895, 1, x_893); +x_896 = l_Array_empty___closed__1; +x_897 = lean_array_push(x_896, x_895); +x_898 = l_Lean_nullKind___closed__2; +x_899 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_899, 0, x_898); +lean_ctor_set(x_899, 1, x_897); +x_900 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_901 = lean_array_push(x_900, x_899); +x_902 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_903 = lean_array_push(x_901, x_902); +x_904 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_905 = lean_array_push(x_903, x_904); +lean_inc(x_19); +x_906 = lean_array_push(x_896, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_905 = x_19; + x_907 = x_19; } else { lean_dec_ref(x_19); - x_905 = lean_box(0); + x_907 = lean_box(0); } -if (lean_is_scalar(x_905)) { - x_906 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_907)) { + x_908 = lean_alloc_ctor(1, 2, 0); } else { - x_906 = x_905; + x_908 = x_907; } -lean_ctor_set(x_906, 0, x_896); -lean_ctor_set(x_906, 1, x_904); -x_907 = lean_array_push(x_894, x_906); -x_908 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_909 = lean_array_push(x_907, x_908); -x_910 = lean_array_push(x_909, x_829); -x_911 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_912 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_912, 0, x_911); -lean_ctor_set(x_912, 1, x_910); -x_913 = lean_array_push(x_894, x_912); +lean_ctor_set(x_908, 0, x_898); +lean_ctor_set(x_908, 1, x_906); +x_909 = lean_array_push(x_896, x_908); +x_910 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_911 = lean_array_push(x_909, x_910); +x_912 = lean_array_push(x_911, x_831); +x_913 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_914 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_914, 0, x_896); -lean_ctor_set(x_914, 1, x_913); -x_915 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_916 = lean_array_push(x_915, x_914); -x_917 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_918 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_918, 0, x_917); -lean_ctor_set(x_918, 1, x_916); -x_919 = lean_array_push(x_903, x_918); -x_920 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_921 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_921, 0, x_920); -lean_ctor_set(x_921, 1, x_919); -x_922 = 1; -x_923 = lean_box(x_922); -lean_ctor_set(x_824, 1, x_923); -lean_ctor_set(x_824, 0, x_921); -x_924 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_924, 0, x_823); -lean_ctor_set(x_924, 1, x_889); -return x_924; +lean_ctor_set(x_914, 0, x_913); +lean_ctor_set(x_914, 1, x_912); +x_915 = lean_array_push(x_896, x_914); +x_916 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_916, 0, x_898); +lean_ctor_set(x_916, 1, x_915); +x_917 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_918 = lean_array_push(x_917, x_916); +x_919 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_920 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_920, 0, x_919); +lean_ctor_set(x_920, 1, x_918); +x_921 = lean_array_push(x_905, x_920); +x_922 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_923 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_923, 0, x_922); +lean_ctor_set(x_923, 1, x_921); +x_924 = 1; +x_925 = lean_box(x_924); +lean_ctor_set(x_826, 1, x_925); +lean_ctor_set(x_826, 0, x_923); +x_926 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_926, 0, x_825); +lean_ctor_set(x_926, 1, x_891); +return x_926; } } else { -lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; uint8_t x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; -x_925 = lean_ctor_get(x_824, 0); -lean_inc(x_925); -lean_dec(x_824); -x_926 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_825); -lean_dec(x_5); -x_927 = lean_ctor_get(x_926, 1); +lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; uint8_t x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; +x_927 = lean_ctor_get(x_826, 0); lean_inc(x_927); -lean_dec(x_926); -x_928 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_927); +lean_dec(x_826); +x_928 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_827); +lean_dec(x_5); x_929 = lean_ctor_get(x_928, 1); lean_inc(x_929); -if (lean_is_exclusive(x_928)) { - lean_ctor_release(x_928, 0); - lean_ctor_release(x_928, 1); - x_930 = x_928; +lean_dec(x_928); +x_930 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_929); +x_931 = lean_ctor_get(x_930, 1); +lean_inc(x_931); +if (lean_is_exclusive(x_930)) { + lean_ctor_release(x_930, 0); + lean_ctor_release(x_930, 1); + x_932 = x_930; } else { - lean_dec_ref(x_928); - x_930 = lean_box(0); + lean_dec_ref(x_930); + x_932 = lean_box(0); } -x_931 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_932 = lean_array_push(x_931, x_815); -x_933 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_934 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_934, 0, x_933); -lean_ctor_set(x_934, 1, x_932); -x_935 = l_Array_empty___closed__1; -x_936 = lean_array_push(x_935, x_934); -x_937 = l_Lean_nullKind___closed__2; -x_938 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_938, 0, x_937); -lean_ctor_set(x_938, 1, x_936); -x_939 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_940 = lean_array_push(x_939, x_938); -x_941 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_942 = lean_array_push(x_940, x_941); -x_943 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_933 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_934 = lean_array_push(x_933, x_817); +x_935 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_936 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_936, 0, x_935); +lean_ctor_set(x_936, 1, x_934); +x_937 = l_Array_empty___closed__1; +x_938 = lean_array_push(x_937, x_936); +x_939 = l_Lean_nullKind___closed__2; +x_940 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_940, 0, x_939); +lean_ctor_set(x_940, 1, x_938); +x_941 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_942 = lean_array_push(x_941, x_940); +x_943 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_944 = lean_array_push(x_942, x_943); +x_945 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_946 = lean_array_push(x_944, x_945); lean_inc(x_19); -x_945 = lean_array_push(x_935, x_19); +x_947 = lean_array_push(x_937, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_946 = x_19; + x_948 = x_19; } else { lean_dec_ref(x_19); - x_946 = lean_box(0); + x_948 = lean_box(0); } -if (lean_is_scalar(x_946)) { - x_947 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_948)) { + x_949 = lean_alloc_ctor(1, 2, 0); } else { - x_947 = x_946; + x_949 = x_948; } -lean_ctor_set(x_947, 0, x_937); -lean_ctor_set(x_947, 1, x_945); -x_948 = lean_array_push(x_935, x_947); -x_949 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_950 = lean_array_push(x_948, x_949); -x_951 = lean_array_push(x_950, x_925); -x_952 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_953 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_953, 0, x_952); -lean_ctor_set(x_953, 1, x_951); -x_954 = lean_array_push(x_935, x_953); +lean_ctor_set(x_949, 0, x_939); +lean_ctor_set(x_949, 1, x_947); +x_950 = lean_array_push(x_937, x_949); +x_951 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_952 = lean_array_push(x_950, x_951); +x_953 = lean_array_push(x_952, x_927); +x_954 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_955 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_955, 0, x_937); -lean_ctor_set(x_955, 1, x_954); -x_956 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_957 = lean_array_push(x_956, x_955); -x_958 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_959 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_959, 0, x_958); -lean_ctor_set(x_959, 1, x_957); -x_960 = lean_array_push(x_944, x_959); -x_961 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_962 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_962, 0, x_961); -lean_ctor_set(x_962, 1, x_960); -x_963 = 1; -x_964 = lean_box(x_963); -x_965 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_965, 0, x_962); -lean_ctor_set(x_965, 1, x_964); -lean_ctor_set(x_823, 1, x_965); -if (lean_is_scalar(x_930)) { - x_966 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_955, 0, x_954); +lean_ctor_set(x_955, 1, x_953); +x_956 = lean_array_push(x_937, x_955); +x_957 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_957, 0, x_939); +lean_ctor_set(x_957, 1, x_956); +x_958 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_959 = lean_array_push(x_958, x_957); +x_960 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_961 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_961, 0, x_960); +lean_ctor_set(x_961, 1, x_959); +x_962 = lean_array_push(x_946, x_961); +x_963 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_964 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_964, 0, x_963); +lean_ctor_set(x_964, 1, x_962); +x_965 = 1; +x_966 = lean_box(x_965); +x_967 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_967, 0, x_964); +lean_ctor_set(x_967, 1, x_966); +lean_ctor_set(x_825, 1, x_967); +if (lean_is_scalar(x_932)) { + x_968 = lean_alloc_ctor(0, 2, 0); } else { - x_966 = x_930; + x_968 = x_932; } -lean_ctor_set(x_966, 0, x_823); -lean_ctor_set(x_966, 1, x_929); -return x_966; +lean_ctor_set(x_968, 0, x_825); +lean_ctor_set(x_968, 1, x_931); +return x_968; } } else { -lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; uint8_t x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; -x_967 = lean_ctor_get(x_823, 0); -lean_inc(x_967); -lean_dec(x_823); -x_968 = lean_ctor_get(x_824, 0); -lean_inc(x_968); -if (lean_is_exclusive(x_824)) { - lean_ctor_release(x_824, 0); - lean_ctor_release(x_824, 1); - x_969 = x_824; +lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; uint8_t x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; +x_969 = lean_ctor_get(x_825, 0); +lean_inc(x_969); +lean_dec(x_825); +x_970 = lean_ctor_get(x_826, 0); +lean_inc(x_970); +if (lean_is_exclusive(x_826)) { + lean_ctor_release(x_826, 0); + lean_ctor_release(x_826, 1); + x_971 = x_826; } else { - lean_dec_ref(x_824); - x_969 = lean_box(0); + lean_dec_ref(x_826); + x_971 = lean_box(0); } -x_970 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_825); +x_972 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_827); lean_dec(x_5); -x_971 = lean_ctor_get(x_970, 1); -lean_inc(x_971); -lean_dec(x_970); -x_972 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_971); x_973 = lean_ctor_get(x_972, 1); lean_inc(x_973); -if (lean_is_exclusive(x_972)) { - lean_ctor_release(x_972, 0); - lean_ctor_release(x_972, 1); - x_974 = x_972; +lean_dec(x_972); +x_974 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_973); +x_975 = lean_ctor_get(x_974, 1); +lean_inc(x_975); +if (lean_is_exclusive(x_974)) { + lean_ctor_release(x_974, 0); + lean_ctor_release(x_974, 1); + x_976 = x_974; } else { - lean_dec_ref(x_972); - x_974 = lean_box(0); + lean_dec_ref(x_974); + x_976 = lean_box(0); } -x_975 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_976 = lean_array_push(x_975, x_815); -x_977 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_978 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_978, 0, x_977); -lean_ctor_set(x_978, 1, x_976); -x_979 = l_Array_empty___closed__1; -x_980 = lean_array_push(x_979, x_978); -x_981 = l_Lean_nullKind___closed__2; -x_982 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_982, 0, x_981); -lean_ctor_set(x_982, 1, x_980); -x_983 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_984 = lean_array_push(x_983, x_982); -x_985 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_986 = lean_array_push(x_984, x_985); -x_987 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_977 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_978 = lean_array_push(x_977, x_817); +x_979 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_980 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_980, 0, x_979); +lean_ctor_set(x_980, 1, x_978); +x_981 = l_Array_empty___closed__1; +x_982 = lean_array_push(x_981, x_980); +x_983 = l_Lean_nullKind___closed__2; +x_984 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_984, 0, x_983); +lean_ctor_set(x_984, 1, x_982); +x_985 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_986 = lean_array_push(x_985, x_984); +x_987 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_988 = lean_array_push(x_986, x_987); +x_989 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_990 = lean_array_push(x_988, x_989); lean_inc(x_19); -x_989 = lean_array_push(x_979, x_19); +x_991 = lean_array_push(x_981, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_990 = x_19; + x_992 = x_19; } else { lean_dec_ref(x_19); - x_990 = lean_box(0); + x_992 = lean_box(0); } -if (lean_is_scalar(x_990)) { - x_991 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_992)) { + x_993 = lean_alloc_ctor(1, 2, 0); } else { - x_991 = x_990; + x_993 = x_992; } -lean_ctor_set(x_991, 0, x_981); -lean_ctor_set(x_991, 1, x_989); -x_992 = lean_array_push(x_979, x_991); -x_993 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_994 = lean_array_push(x_992, x_993); -x_995 = lean_array_push(x_994, x_968); -x_996 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_997 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_997, 0, x_996); -lean_ctor_set(x_997, 1, x_995); -x_998 = lean_array_push(x_979, x_997); +lean_ctor_set(x_993, 0, x_983); +lean_ctor_set(x_993, 1, x_991); +x_994 = lean_array_push(x_981, x_993); +x_995 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_996 = lean_array_push(x_994, x_995); +x_997 = lean_array_push(x_996, x_970); +x_998 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_999 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_999, 0, x_981); -lean_ctor_set(x_999, 1, x_998); -x_1000 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1001 = lean_array_push(x_1000, x_999); -x_1002 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1003 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1003, 0, x_1002); -lean_ctor_set(x_1003, 1, x_1001); -x_1004 = lean_array_push(x_988, x_1003); -x_1005 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1006 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1006, 0, x_1005); -lean_ctor_set(x_1006, 1, x_1004); -x_1007 = 1; -x_1008 = lean_box(x_1007); -if (lean_is_scalar(x_969)) { - x_1009 = lean_alloc_ctor(0, 2, 0); -} else { - x_1009 = x_969; -} -lean_ctor_set(x_1009, 0, x_1006); -lean_ctor_set(x_1009, 1, x_1008); -x_1010 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1010, 0, x_967); -lean_ctor_set(x_1010, 1, x_1009); -if (lean_is_scalar(x_974)) { +lean_ctor_set(x_999, 0, x_998); +lean_ctor_set(x_999, 1, x_997); +x_1000 = lean_array_push(x_981, x_999); +x_1001 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1001, 0, x_983); +lean_ctor_set(x_1001, 1, x_1000); +x_1002 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1003 = lean_array_push(x_1002, x_1001); +x_1004 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1005 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1005, 0, x_1004); +lean_ctor_set(x_1005, 1, x_1003); +x_1006 = lean_array_push(x_990, x_1005); +x_1007 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1008 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1008, 0, x_1007); +lean_ctor_set(x_1008, 1, x_1006); +x_1009 = 1; +x_1010 = lean_box(x_1009); +if (lean_is_scalar(x_971)) { x_1011 = lean_alloc_ctor(0, 2, 0); } else { - x_1011 = x_974; + x_1011 = x_971; } -lean_ctor_set(x_1011, 0, x_1010); -lean_ctor_set(x_1011, 1, x_973); -return x_1011; +lean_ctor_set(x_1011, 0, x_1008); +lean_ctor_set(x_1011, 1, x_1010); +x_1012 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1012, 0, x_969); +lean_ctor_set(x_1012, 1, x_1011); +if (lean_is_scalar(x_976)) { + x_1013 = lean_alloc_ctor(0, 2, 0); +} else { + x_1013 = x_976; +} +lean_ctor_set(x_1013, 0, x_1012); +lean_ctor_set(x_1013, 1, x_975); +return x_1013; } } else { -lean_object* x_1012; lean_object* x_1013; uint8_t x_1014; -x_1012 = lean_unsigned_to_nat(1u); -x_1013 = l_Lean_Syntax_getArg(x_19, x_1012); -x_1014 = l_Lean_Syntax_isNone(x_1013); -if (x_1014 == 0) +lean_object* x_1014; lean_object* x_1015; uint8_t x_1016; +x_1014 = lean_unsigned_to_nat(1u); +x_1015 = l_Lean_Syntax_getArg(x_19, x_1014); +x_1016 = l_Lean_Syntax_isNone(x_1015); +if (x_1016 == 0) { -lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; uint8_t x_1018; -x_1015 = lean_unsigned_to_nat(0u); -x_1016 = l_Lean_Syntax_getArg(x_1013, x_1015); -x_1017 = l_Lean_Syntax_getArg(x_1013, x_1012); -lean_dec(x_1013); -x_1018 = l_Lean_Syntax_isNone(x_1017); -if (x_1018 == 0) +lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; uint8_t x_1020; +x_1017 = lean_unsigned_to_nat(0u); +x_1018 = l_Lean_Syntax_getArg(x_1015, x_1017); +x_1019 = l_Lean_Syntax_getArg(x_1015, x_1014); +lean_dec(x_1015); +x_1020 = l_Lean_Syntax_isNone(x_1019); +if (x_1020 == 0) { -lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; uint8_t x_1022; -x_1019 = l_Lean_Syntax_getArg(x_1017, x_1015); -lean_dec(x_1017); -lean_inc(x_1019); -x_1020 = l_Lean_Syntax_getKind(x_1019); -x_1021 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__8; -x_1022 = lean_name_eq(x_1020, x_1021); -lean_dec(x_1020); -if (x_1022 == 0) -{ -lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; uint8_t x_1034; +lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; uint8_t x_1024; +x_1021 = l_Lean_Syntax_getArg(x_1019, x_1017); lean_dec(x_1019); -lean_dec(x_1016); -lean_inc(x_5); -x_1023 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1024 = lean_ctor_get(x_1023, 0); -lean_inc(x_1024); -x_1025 = lean_ctor_get(x_1023, 1); -lean_inc(x_1025); -lean_dec(x_1023); -x_1026 = lean_nat_add(x_3, x_1012); -lean_dec(x_3); -x_1027 = l_Lean_mkHole(x_19); -lean_inc(x_1024); -x_1028 = l_Lean_Elab_Term_mkExplicitBinder(x_1024, x_1027); -x_1029 = lean_array_push(x_4, x_1028); -lean_inc(x_5); -x_1030 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1026, x_1029, x_5, x_6, x_7, x_8, x_9, x_10, x_1025); -x_1031 = lean_ctor_get(x_1030, 0); -lean_inc(x_1031); -x_1032 = lean_ctor_get(x_1031, 1); -lean_inc(x_1032); -x_1033 = lean_ctor_get(x_1030, 1); -lean_inc(x_1033); -lean_dec(x_1030); -x_1034 = !lean_is_exclusive(x_1031); -if (x_1034 == 0) +lean_inc(x_1021); +x_1022 = l_Lean_Syntax_getKind(x_1021); +x_1023 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__8; +x_1024 = lean_name_eq(x_1022, x_1023); +lean_dec(x_1022); +if (x_1024 == 0) { -lean_object* x_1035; uint8_t x_1036; -x_1035 = lean_ctor_get(x_1031, 1); -lean_dec(x_1035); -x_1036 = !lean_is_exclusive(x_1032); +lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; uint8_t x_1036; +lean_dec(x_1021); +lean_dec(x_1018); +lean_inc(x_5); +x_1025 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1026 = lean_ctor_get(x_1025, 0); +lean_inc(x_1026); +x_1027 = lean_ctor_get(x_1025, 1); +lean_inc(x_1027); +lean_dec(x_1025); +x_1028 = lean_nat_add(x_3, x_1014); +lean_dec(x_3); +x_1029 = l_Lean_mkHole(x_19); +lean_inc(x_1026); +x_1030 = l_Lean_Elab_Term_mkExplicitBinder(x_1026, x_1029); +x_1031 = lean_array_push(x_4, x_1030); +lean_inc(x_5); +x_1032 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1028, x_1031, x_5, x_6, x_7, x_8, x_9, x_10, x_1027); +x_1033 = lean_ctor_get(x_1032, 0); +lean_inc(x_1033); +x_1034 = lean_ctor_get(x_1033, 1); +lean_inc(x_1034); +x_1035 = lean_ctor_get(x_1032, 1); +lean_inc(x_1035); +lean_dec(x_1032); +x_1036 = !lean_is_exclusive(x_1033); if (x_1036 == 0) { -lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; uint8_t x_1042; -x_1037 = lean_ctor_get(x_1032, 0); -x_1038 = lean_ctor_get(x_1032, 1); -lean_dec(x_1038); -x_1039 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1033); +lean_object* x_1037; uint8_t x_1038; +x_1037 = lean_ctor_get(x_1033, 1); +lean_dec(x_1037); +x_1038 = !lean_is_exclusive(x_1034); +if (x_1038 == 0) +{ +lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; uint8_t x_1044; +x_1039 = lean_ctor_get(x_1034, 0); +x_1040 = lean_ctor_get(x_1034, 1); +lean_dec(x_1040); +x_1041 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1035); lean_dec(x_5); -x_1040 = lean_ctor_get(x_1039, 1); -lean_inc(x_1040); -lean_dec(x_1039); -x_1041 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1040); -x_1042 = !lean_is_exclusive(x_1041); -if (x_1042 == 0) -{ -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; uint8_t x_1059; -x_1043 = lean_ctor_get(x_1041, 0); -lean_dec(x_1043); -x_1044 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1045 = lean_array_push(x_1044, x_1024); -x_1046 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -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 = l_Array_empty___closed__1; -x_1049 = lean_array_push(x_1048, x_1047); -x_1050 = l_Lean_nullKind___closed__2; -x_1051 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1051, 0, x_1050); -lean_ctor_set(x_1051, 1, x_1049); -x_1052 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1053 = lean_array_push(x_1052, x_1051); -x_1054 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1055 = lean_array_push(x_1053, x_1054); -x_1056 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1057 = lean_array_push(x_1055, x_1056); -lean_inc(x_19); -x_1058 = lean_array_push(x_1048, x_19); -x_1059 = !lean_is_exclusive(x_19); -if (x_1059 == 0) -{ -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; uint8_t x_1077; lean_object* x_1078; -x_1060 = lean_ctor_get(x_19, 1); -lean_dec(x_1060); -x_1061 = lean_ctor_get(x_19, 0); -lean_dec(x_1061); -lean_ctor_set(x_19, 1, x_1058); -lean_ctor_set(x_19, 0, x_1050); -x_1062 = lean_array_push(x_1048, x_19); -x_1063 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1064 = lean_array_push(x_1062, x_1063); -x_1065 = lean_array_push(x_1064, x_1037); -x_1066 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -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 = lean_array_push(x_1048, x_1067); -x_1069 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1069, 0, x_1050); -lean_ctor_set(x_1069, 1, x_1068); -x_1070 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1071 = lean_array_push(x_1070, x_1069); -x_1072 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1073 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1073, 0, x_1072); -lean_ctor_set(x_1073, 1, x_1071); -x_1074 = lean_array_push(x_1057, x_1073); -x_1075 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1076 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1076, 0, x_1075); -lean_ctor_set(x_1076, 1, x_1074); -x_1077 = 1; -x_1078 = lean_box(x_1077); -lean_ctor_set(x_1032, 1, x_1078); -lean_ctor_set(x_1032, 0, x_1076); -lean_ctor_set(x_1041, 0, x_1031); -return x_1041; -} -else -{ -lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; uint8_t x_1095; lean_object* x_1096; -lean_dec(x_19); -x_1079 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1079, 0, x_1050); -lean_ctor_set(x_1079, 1, x_1058); -x_1080 = lean_array_push(x_1048, x_1079); -x_1081 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1082 = lean_array_push(x_1080, x_1081); -x_1083 = lean_array_push(x_1082, x_1037); -x_1084 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1085 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1085, 0, x_1084); -lean_ctor_set(x_1085, 1, x_1083); -x_1086 = lean_array_push(x_1048, x_1085); -x_1087 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1087, 0, x_1050); -lean_ctor_set(x_1087, 1, x_1086); -x_1088 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1089 = lean_array_push(x_1088, x_1087); -x_1090 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1091 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1091, 0, x_1090); -lean_ctor_set(x_1091, 1, x_1089); -x_1092 = lean_array_push(x_1057, x_1091); -x_1093 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1094 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1094, 0, x_1093); -lean_ctor_set(x_1094, 1, x_1092); -x_1095 = 1; -x_1096 = lean_box(x_1095); -lean_ctor_set(x_1032, 1, x_1096); -lean_ctor_set(x_1032, 0, x_1094); -lean_ctor_set(x_1041, 0, x_1031); -return x_1041; -} -} -else -{ -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; uint8_t x_1130; lean_object* x_1131; lean_object* x_1132; -x_1097 = lean_ctor_get(x_1041, 1); -lean_inc(x_1097); +x_1042 = lean_ctor_get(x_1041, 1); +lean_inc(x_1042); lean_dec(x_1041); -x_1098 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1099 = lean_array_push(x_1098, x_1024); -x_1100 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1101 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1101, 0, x_1100); -lean_ctor_set(x_1101, 1, x_1099); -x_1102 = l_Array_empty___closed__1; -x_1103 = lean_array_push(x_1102, x_1101); -x_1104 = l_Lean_nullKind___closed__2; -x_1105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1105, 0, x_1104); -lean_ctor_set(x_1105, 1, x_1103); -x_1106 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1107 = lean_array_push(x_1106, x_1105); -x_1108 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1109 = lean_array_push(x_1107, x_1108); -x_1110 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1111 = lean_array_push(x_1109, x_1110); +x_1043 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1042); +x_1044 = !lean_is_exclusive(x_1043); +if (x_1044 == 0) +{ +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; uint8_t x_1061; +x_1045 = lean_ctor_get(x_1043, 0); +lean_dec(x_1045); +x_1046 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1047 = lean_array_push(x_1046, x_1026); +x_1048 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1049 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1049, 0, x_1048); +lean_ctor_set(x_1049, 1, x_1047); +x_1050 = l_Array_empty___closed__1; +x_1051 = lean_array_push(x_1050, x_1049); +x_1052 = l_Lean_nullKind___closed__2; +x_1053 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1053, 0, x_1052); +lean_ctor_set(x_1053, 1, x_1051); +x_1054 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1055 = lean_array_push(x_1054, x_1053); +x_1056 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1057 = lean_array_push(x_1055, x_1056); +x_1058 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1059 = lean_array_push(x_1057, x_1058); lean_inc(x_19); -x_1112 = lean_array_push(x_1102, x_19); +x_1060 = lean_array_push(x_1050, x_19); +x_1061 = !lean_is_exclusive(x_19); +if (x_1061 == 0) +{ +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; uint8_t x_1079; lean_object* x_1080; +x_1062 = lean_ctor_get(x_19, 1); +lean_dec(x_1062); +x_1063 = lean_ctor_get(x_19, 0); +lean_dec(x_1063); +lean_ctor_set(x_19, 1, x_1060); +lean_ctor_set(x_19, 0, x_1052); +x_1064 = lean_array_push(x_1050, x_19); +x_1065 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1066 = lean_array_push(x_1064, x_1065); +x_1067 = lean_array_push(x_1066, x_1039); +x_1068 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1069 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1069, 0, x_1068); +lean_ctor_set(x_1069, 1, x_1067); +x_1070 = lean_array_push(x_1050, x_1069); +x_1071 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1071, 0, x_1052); +lean_ctor_set(x_1071, 1, x_1070); +x_1072 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1073 = lean_array_push(x_1072, x_1071); +x_1074 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1075 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1075, 0, x_1074); +lean_ctor_set(x_1075, 1, x_1073); +x_1076 = lean_array_push(x_1059, x_1075); +x_1077 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1078 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1078, 0, x_1077); +lean_ctor_set(x_1078, 1, x_1076); +x_1079 = 1; +x_1080 = lean_box(x_1079); +lean_ctor_set(x_1034, 1, x_1080); +lean_ctor_set(x_1034, 0, x_1078); +lean_ctor_set(x_1043, 0, x_1033); +return x_1043; +} +else +{ +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; uint8_t x_1097; lean_object* x_1098; +lean_dec(x_19); +x_1081 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1081, 0, x_1052); +lean_ctor_set(x_1081, 1, x_1060); +x_1082 = lean_array_push(x_1050, x_1081); +x_1083 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1084 = lean_array_push(x_1082, x_1083); +x_1085 = lean_array_push(x_1084, x_1039); +x_1086 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1087 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1087, 0, x_1086); +lean_ctor_set(x_1087, 1, x_1085); +x_1088 = lean_array_push(x_1050, x_1087); +x_1089 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1089, 0, x_1052); +lean_ctor_set(x_1089, 1, x_1088); +x_1090 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1091 = lean_array_push(x_1090, x_1089); +x_1092 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1093 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1093, 0, x_1092); +lean_ctor_set(x_1093, 1, x_1091); +x_1094 = lean_array_push(x_1059, x_1093); +x_1095 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1096 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1096, 0, x_1095); +lean_ctor_set(x_1096, 1, x_1094); +x_1097 = 1; +x_1098 = lean_box(x_1097); +lean_ctor_set(x_1034, 1, x_1098); +lean_ctor_set(x_1034, 0, x_1096); +lean_ctor_set(x_1043, 0, x_1033); +return x_1043; +} +} +else +{ +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; uint8_t x_1132; lean_object* x_1133; lean_object* x_1134; +x_1099 = lean_ctor_get(x_1043, 1); +lean_inc(x_1099); +lean_dec(x_1043); +x_1100 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1101 = lean_array_push(x_1100, x_1026); +x_1102 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1103, 0, x_1102); +lean_ctor_set(x_1103, 1, x_1101); +x_1104 = l_Array_empty___closed__1; +x_1105 = lean_array_push(x_1104, x_1103); +x_1106 = l_Lean_nullKind___closed__2; +x_1107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1107, 0, x_1106); +lean_ctor_set(x_1107, 1, x_1105); +x_1108 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1109 = lean_array_push(x_1108, x_1107); +x_1110 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1111 = lean_array_push(x_1109, x_1110); +x_1112 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1113 = lean_array_push(x_1111, x_1112); +lean_inc(x_19); +x_1114 = lean_array_push(x_1104, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1113 = x_19; + x_1115 = x_19; } else { lean_dec_ref(x_19); - x_1113 = lean_box(0); + x_1115 = lean_box(0); } -if (lean_is_scalar(x_1113)) { - x_1114 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1115)) { + x_1116 = lean_alloc_ctor(1, 2, 0); } else { - x_1114 = x_1113; + x_1116 = x_1115; } -lean_ctor_set(x_1114, 0, x_1104); -lean_ctor_set(x_1114, 1, x_1112); -x_1115 = lean_array_push(x_1102, x_1114); -x_1116 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1117 = lean_array_push(x_1115, x_1116); -x_1118 = lean_array_push(x_1117, x_1037); -x_1119 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1120, 0, x_1119); -lean_ctor_set(x_1120, 1, x_1118); -x_1121 = lean_array_push(x_1102, x_1120); +lean_ctor_set(x_1116, 0, x_1106); +lean_ctor_set(x_1116, 1, x_1114); +x_1117 = lean_array_push(x_1104, x_1116); +x_1118 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1119 = lean_array_push(x_1117, x_1118); +x_1120 = lean_array_push(x_1119, x_1039); +x_1121 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1122, 0, x_1104); -lean_ctor_set(x_1122, 1, x_1121); -x_1123 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1124 = lean_array_push(x_1123, x_1122); -x_1125 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1126, 0, x_1125); -lean_ctor_set(x_1126, 1, x_1124); -x_1127 = lean_array_push(x_1111, x_1126); -x_1128 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1129, 0, x_1128); -lean_ctor_set(x_1129, 1, x_1127); -x_1130 = 1; -x_1131 = lean_box(x_1130); -lean_ctor_set(x_1032, 1, x_1131); -lean_ctor_set(x_1032, 0, x_1129); -x_1132 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1132, 0, x_1031); -lean_ctor_set(x_1132, 1, x_1097); -return x_1132; +lean_ctor_set(x_1122, 0, x_1121); +lean_ctor_set(x_1122, 1, x_1120); +x_1123 = lean_array_push(x_1104, x_1122); +x_1124 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1124, 0, x_1106); +lean_ctor_set(x_1124, 1, x_1123); +x_1125 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1126 = lean_array_push(x_1125, x_1124); +x_1127 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1128 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1128, 0, x_1127); +lean_ctor_set(x_1128, 1, x_1126); +x_1129 = lean_array_push(x_1113, x_1128); +x_1130 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1131, 0, x_1130); +lean_ctor_set(x_1131, 1, x_1129); +x_1132 = 1; +x_1133 = lean_box(x_1132); +lean_ctor_set(x_1034, 1, x_1133); +lean_ctor_set(x_1034, 0, x_1131); +x_1134 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1134, 0, x_1033); +lean_ctor_set(x_1134, 1, x_1099); +return x_1134; } } else { -lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; uint8_t x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; -x_1133 = lean_ctor_get(x_1032, 0); -lean_inc(x_1133); -lean_dec(x_1032); -x_1134 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1033); -lean_dec(x_5); -x_1135 = lean_ctor_get(x_1134, 1); +lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; uint8_t x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; +x_1135 = lean_ctor_get(x_1034, 0); lean_inc(x_1135); -lean_dec(x_1134); -x_1136 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1135); +lean_dec(x_1034); +x_1136 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1035); +lean_dec(x_5); x_1137 = lean_ctor_get(x_1136, 1); lean_inc(x_1137); -if (lean_is_exclusive(x_1136)) { - lean_ctor_release(x_1136, 0); - lean_ctor_release(x_1136, 1); - x_1138 = x_1136; +lean_dec(x_1136); +x_1138 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1137); +x_1139 = lean_ctor_get(x_1138, 1); +lean_inc(x_1139); +if (lean_is_exclusive(x_1138)) { + lean_ctor_release(x_1138, 0); + lean_ctor_release(x_1138, 1); + x_1140 = x_1138; } else { - lean_dec_ref(x_1136); - x_1138 = lean_box(0); + lean_dec_ref(x_1138); + x_1140 = lean_box(0); } -x_1139 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1140 = lean_array_push(x_1139, x_1024); -x_1141 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1142, 0, x_1141); -lean_ctor_set(x_1142, 1, x_1140); -x_1143 = l_Array_empty___closed__1; -x_1144 = lean_array_push(x_1143, x_1142); -x_1145 = l_Lean_nullKind___closed__2; -x_1146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1146, 0, x_1145); -lean_ctor_set(x_1146, 1, x_1144); -x_1147 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1148 = lean_array_push(x_1147, x_1146); -x_1149 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1150 = lean_array_push(x_1148, x_1149); -x_1151 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1141 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1142 = lean_array_push(x_1141, x_1026); +x_1143 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1144, 0, x_1143); +lean_ctor_set(x_1144, 1, x_1142); +x_1145 = l_Array_empty___closed__1; +x_1146 = lean_array_push(x_1145, x_1144); +x_1147 = l_Lean_nullKind___closed__2; +x_1148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1148, 0, x_1147); +lean_ctor_set(x_1148, 1, x_1146); +x_1149 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1150 = lean_array_push(x_1149, x_1148); +x_1151 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1152 = lean_array_push(x_1150, x_1151); +x_1153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1154 = lean_array_push(x_1152, x_1153); lean_inc(x_19); -x_1153 = lean_array_push(x_1143, x_19); +x_1155 = lean_array_push(x_1145, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1154 = x_19; + x_1156 = x_19; } else { lean_dec_ref(x_19); - x_1154 = lean_box(0); + x_1156 = lean_box(0); } -if (lean_is_scalar(x_1154)) { - x_1155 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1156)) { + x_1157 = lean_alloc_ctor(1, 2, 0); } else { - x_1155 = x_1154; + x_1157 = x_1156; } -lean_ctor_set(x_1155, 0, x_1145); -lean_ctor_set(x_1155, 1, x_1153); -x_1156 = lean_array_push(x_1143, x_1155); -x_1157 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1158 = lean_array_push(x_1156, x_1157); -x_1159 = lean_array_push(x_1158, x_1133); -x_1160 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1161 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1161, 0, x_1160); -lean_ctor_set(x_1161, 1, x_1159); -x_1162 = lean_array_push(x_1143, x_1161); +lean_ctor_set(x_1157, 0, x_1147); +lean_ctor_set(x_1157, 1, x_1155); +x_1158 = lean_array_push(x_1145, x_1157); +x_1159 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1160 = lean_array_push(x_1158, x_1159); +x_1161 = lean_array_push(x_1160, x_1135); +x_1162 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1163 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1163, 0, x_1145); -lean_ctor_set(x_1163, 1, x_1162); -x_1164 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1165 = lean_array_push(x_1164, x_1163); -x_1166 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1167 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1167, 0, x_1166); -lean_ctor_set(x_1167, 1, x_1165); -x_1168 = lean_array_push(x_1152, x_1167); -x_1169 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1170, 0, x_1169); -lean_ctor_set(x_1170, 1, x_1168); -x_1171 = 1; -x_1172 = lean_box(x_1171); -x_1173 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1173, 0, x_1170); -lean_ctor_set(x_1173, 1, x_1172); -lean_ctor_set(x_1031, 1, x_1173); -if (lean_is_scalar(x_1138)) { - x_1174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1163, 0, x_1162); +lean_ctor_set(x_1163, 1, x_1161); +x_1164 = lean_array_push(x_1145, x_1163); +x_1165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1165, 0, x_1147); +lean_ctor_set(x_1165, 1, x_1164); +x_1166 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1167 = lean_array_push(x_1166, x_1165); +x_1168 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1169, 0, x_1168); +lean_ctor_set(x_1169, 1, x_1167); +x_1170 = lean_array_push(x_1154, x_1169); +x_1171 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1172, 0, x_1171); +lean_ctor_set(x_1172, 1, x_1170); +x_1173 = 1; +x_1174 = lean_box(x_1173); +x_1175 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1175, 0, x_1172); +lean_ctor_set(x_1175, 1, x_1174); +lean_ctor_set(x_1033, 1, x_1175); +if (lean_is_scalar(x_1140)) { + x_1176 = lean_alloc_ctor(0, 2, 0); } else { - x_1174 = x_1138; + x_1176 = x_1140; } -lean_ctor_set(x_1174, 0, x_1031); -lean_ctor_set(x_1174, 1, x_1137); -return x_1174; +lean_ctor_set(x_1176, 0, x_1033); +lean_ctor_set(x_1176, 1, x_1139); +return x_1176; } } else { -lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; uint8_t x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; -x_1175 = lean_ctor_get(x_1031, 0); -lean_inc(x_1175); -lean_dec(x_1031); -x_1176 = lean_ctor_get(x_1032, 0); -lean_inc(x_1176); -if (lean_is_exclusive(x_1032)) { - lean_ctor_release(x_1032, 0); - lean_ctor_release(x_1032, 1); - x_1177 = x_1032; +lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; uint8_t x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; +x_1177 = lean_ctor_get(x_1033, 0); +lean_inc(x_1177); +lean_dec(x_1033); +x_1178 = lean_ctor_get(x_1034, 0); +lean_inc(x_1178); +if (lean_is_exclusive(x_1034)) { + lean_ctor_release(x_1034, 0); + lean_ctor_release(x_1034, 1); + x_1179 = x_1034; } else { - lean_dec_ref(x_1032); - x_1177 = lean_box(0); + lean_dec_ref(x_1034); + x_1179 = lean_box(0); } -x_1178 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1033); +x_1180 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1035); lean_dec(x_5); -x_1179 = lean_ctor_get(x_1178, 1); -lean_inc(x_1179); -lean_dec(x_1178); -x_1180 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1179); x_1181 = lean_ctor_get(x_1180, 1); lean_inc(x_1181); -if (lean_is_exclusive(x_1180)) { - lean_ctor_release(x_1180, 0); - lean_ctor_release(x_1180, 1); - x_1182 = x_1180; +lean_dec(x_1180); +x_1182 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1181); +x_1183 = lean_ctor_get(x_1182, 1); +lean_inc(x_1183); +if (lean_is_exclusive(x_1182)) { + lean_ctor_release(x_1182, 0); + lean_ctor_release(x_1182, 1); + x_1184 = x_1182; } else { - lean_dec_ref(x_1180); - x_1182 = lean_box(0); + lean_dec_ref(x_1182); + x_1184 = lean_box(0); } -x_1183 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1184 = lean_array_push(x_1183, x_1024); -x_1185 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1186 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1186, 0, x_1185); -lean_ctor_set(x_1186, 1, x_1184); -x_1187 = l_Array_empty___closed__1; -x_1188 = lean_array_push(x_1187, x_1186); -x_1189 = l_Lean_nullKind___closed__2; -x_1190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1190, 0, x_1189); -lean_ctor_set(x_1190, 1, x_1188); -x_1191 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1192 = lean_array_push(x_1191, x_1190); -x_1193 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1194 = lean_array_push(x_1192, x_1193); -x_1195 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1185 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1186 = lean_array_push(x_1185, x_1026); +x_1187 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1188, 0, x_1187); +lean_ctor_set(x_1188, 1, x_1186); +x_1189 = l_Array_empty___closed__1; +x_1190 = lean_array_push(x_1189, x_1188); +x_1191 = l_Lean_nullKind___closed__2; +x_1192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1192, 0, x_1191); +lean_ctor_set(x_1192, 1, x_1190); +x_1193 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1194 = lean_array_push(x_1193, x_1192); +x_1195 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1196 = lean_array_push(x_1194, x_1195); +x_1197 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1198 = lean_array_push(x_1196, x_1197); lean_inc(x_19); -x_1197 = lean_array_push(x_1187, x_19); +x_1199 = lean_array_push(x_1189, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1198 = x_19; + x_1200 = x_19; } else { lean_dec_ref(x_19); - x_1198 = lean_box(0); + x_1200 = lean_box(0); } -if (lean_is_scalar(x_1198)) { - x_1199 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1200)) { + x_1201 = lean_alloc_ctor(1, 2, 0); } else { - x_1199 = x_1198; + x_1201 = x_1200; } -lean_ctor_set(x_1199, 0, x_1189); -lean_ctor_set(x_1199, 1, x_1197); -x_1200 = lean_array_push(x_1187, x_1199); -x_1201 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1202 = lean_array_push(x_1200, x_1201); -x_1203 = lean_array_push(x_1202, x_1176); -x_1204 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1205, 0, x_1204); -lean_ctor_set(x_1205, 1, x_1203); -x_1206 = lean_array_push(x_1187, x_1205); +lean_ctor_set(x_1201, 0, x_1191); +lean_ctor_set(x_1201, 1, x_1199); +x_1202 = lean_array_push(x_1189, x_1201); +x_1203 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1204 = lean_array_push(x_1202, x_1203); +x_1205 = lean_array_push(x_1204, x_1178); +x_1206 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1207 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1207, 0, x_1189); -lean_ctor_set(x_1207, 1, x_1206); -x_1208 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1209 = lean_array_push(x_1208, x_1207); -x_1210 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1211 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1211, 0, x_1210); -lean_ctor_set(x_1211, 1, x_1209); -x_1212 = lean_array_push(x_1196, x_1211); -x_1213 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1214, 0, x_1213); -lean_ctor_set(x_1214, 1, x_1212); -x_1215 = 1; -x_1216 = lean_box(x_1215); -if (lean_is_scalar(x_1177)) { - x_1217 = lean_alloc_ctor(0, 2, 0); -} else { - x_1217 = x_1177; -} -lean_ctor_set(x_1217, 0, x_1214); -lean_ctor_set(x_1217, 1, x_1216); -x_1218 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1218, 0, x_1175); -lean_ctor_set(x_1218, 1, x_1217); -if (lean_is_scalar(x_1182)) { +lean_ctor_set(x_1207, 0, x_1206); +lean_ctor_set(x_1207, 1, x_1205); +x_1208 = lean_array_push(x_1189, x_1207); +x_1209 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1209, 0, x_1191); +lean_ctor_set(x_1209, 1, x_1208); +x_1210 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1211 = lean_array_push(x_1210, x_1209); +x_1212 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1213 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1213, 0, x_1212); +lean_ctor_set(x_1213, 1, x_1211); +x_1214 = lean_array_push(x_1198, x_1213); +x_1215 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1216 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1216, 0, x_1215); +lean_ctor_set(x_1216, 1, x_1214); +x_1217 = 1; +x_1218 = lean_box(x_1217); +if (lean_is_scalar(x_1179)) { x_1219 = lean_alloc_ctor(0, 2, 0); } else { - x_1219 = x_1182; + x_1219 = x_1179; } -lean_ctor_set(x_1219, 0, x_1218); -lean_ctor_set(x_1219, 1, x_1181); -return x_1219; +lean_ctor_set(x_1219, 0, x_1216); +lean_ctor_set(x_1219, 1, x_1218); +x_1220 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1220, 0, x_1177); +lean_ctor_set(x_1220, 1, x_1219); +if (lean_is_scalar(x_1184)) { + x_1221 = lean_alloc_ctor(0, 2, 0); +} else { + x_1221 = x_1184; +} +lean_ctor_set(x_1221, 0, x_1220); +lean_ctor_set(x_1221, 1, x_1183); +return x_1221; } } else { -lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; -x_1220 = l_Lean_Syntax_getArg(x_1019, x_1012); -lean_dec(x_1019); +lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; +x_1222 = l_Lean_Syntax_getArg(x_1021, x_1014); +lean_dec(x_1021); lean_inc(x_5); -x_1221 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f(x_1016, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1222 = lean_ctor_get(x_1221, 0); -lean_inc(x_1222); -if (lean_obj_tag(x_1222) == 0) +x_1223 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f(x_1018, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1224 = lean_ctor_get(x_1223, 0); +lean_inc(x_1224); +if (lean_obj_tag(x_1224) == 0) { -lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; uint8_t x_1235; -lean_dec(x_1220); -x_1223 = lean_ctor_get(x_1221, 1); -lean_inc(x_1223); -lean_dec(x_1221); -lean_inc(x_5); -x_1224 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_1223); -x_1225 = lean_ctor_get(x_1224, 0); +lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; uint8_t x_1237; +lean_dec(x_1222); +x_1225 = lean_ctor_get(x_1223, 1); lean_inc(x_1225); -x_1226 = lean_ctor_get(x_1224, 1); -lean_inc(x_1226); -lean_dec(x_1224); -x_1227 = lean_nat_add(x_3, x_1012); +lean_dec(x_1223); +lean_inc(x_5); +x_1226 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_1225); +x_1227 = lean_ctor_get(x_1226, 0); +lean_inc(x_1227); +x_1228 = lean_ctor_get(x_1226, 1); +lean_inc(x_1228); +lean_dec(x_1226); +x_1229 = lean_nat_add(x_3, x_1014); lean_dec(x_3); -x_1228 = l_Lean_mkHole(x_19); -lean_inc(x_1225); -x_1229 = l_Lean_Elab_Term_mkExplicitBinder(x_1225, x_1228); -x_1230 = lean_array_push(x_4, x_1229); +x_1230 = l_Lean_mkHole(x_19); +lean_inc(x_1227); +x_1231 = l_Lean_Elab_Term_mkExplicitBinder(x_1227, x_1230); +x_1232 = lean_array_push(x_4, x_1231); lean_inc(x_5); -x_1231 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1227, x_1230, x_5, x_6, x_7, x_8, x_9, x_10, x_1226); -x_1232 = lean_ctor_get(x_1231, 0); -lean_inc(x_1232); -x_1233 = lean_ctor_get(x_1232, 1); -lean_inc(x_1233); -x_1234 = lean_ctor_get(x_1231, 1); +x_1233 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1229, x_1232, x_5, x_6, x_7, x_8, x_9, x_10, x_1228); +x_1234 = lean_ctor_get(x_1233, 0); lean_inc(x_1234); -lean_dec(x_1231); -x_1235 = !lean_is_exclusive(x_1232); -if (x_1235 == 0) -{ -lean_object* x_1236; uint8_t x_1237; -x_1236 = lean_ctor_get(x_1232, 1); -lean_dec(x_1236); -x_1237 = !lean_is_exclusive(x_1233); +x_1235 = lean_ctor_get(x_1234, 1); +lean_inc(x_1235); +x_1236 = lean_ctor_get(x_1233, 1); +lean_inc(x_1236); +lean_dec(x_1233); +x_1237 = !lean_is_exclusive(x_1234); if (x_1237 == 0) { -lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; uint8_t x_1243; -x_1238 = lean_ctor_get(x_1233, 0); -x_1239 = lean_ctor_get(x_1233, 1); -lean_dec(x_1239); -x_1240 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1234); +lean_object* x_1238; uint8_t x_1239; +x_1238 = lean_ctor_get(x_1234, 1); +lean_dec(x_1238); +x_1239 = !lean_is_exclusive(x_1235); +if (x_1239 == 0) +{ +lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; uint8_t x_1245; +x_1240 = lean_ctor_get(x_1235, 0); +x_1241 = lean_ctor_get(x_1235, 1); +lean_dec(x_1241); +x_1242 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1236); lean_dec(x_5); -x_1241 = lean_ctor_get(x_1240, 1); -lean_inc(x_1241); -lean_dec(x_1240); -x_1242 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1241); -x_1243 = !lean_is_exclusive(x_1242); -if (x_1243 == 0) -{ -lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; uint8_t x_1260; -x_1244 = lean_ctor_get(x_1242, 0); -lean_dec(x_1244); -x_1245 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1246 = lean_array_push(x_1245, x_1225); -x_1247 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1248 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1248, 0, x_1247); -lean_ctor_set(x_1248, 1, x_1246); -x_1249 = l_Array_empty___closed__1; -x_1250 = lean_array_push(x_1249, x_1248); -x_1251 = l_Lean_nullKind___closed__2; -x_1252 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1252, 0, x_1251); -lean_ctor_set(x_1252, 1, x_1250); -x_1253 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1254 = lean_array_push(x_1253, x_1252); -x_1255 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1256 = lean_array_push(x_1254, x_1255); -x_1257 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1258 = lean_array_push(x_1256, x_1257); -lean_inc(x_19); -x_1259 = lean_array_push(x_1249, x_19); -x_1260 = !lean_is_exclusive(x_19); -if (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; uint8_t x_1278; lean_object* x_1279; -x_1261 = lean_ctor_get(x_19, 1); -lean_dec(x_1261); -x_1262 = lean_ctor_get(x_19, 0); -lean_dec(x_1262); -lean_ctor_set(x_19, 1, x_1259); -lean_ctor_set(x_19, 0, x_1251); -x_1263 = lean_array_push(x_1249, x_19); -x_1264 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1265 = lean_array_push(x_1263, x_1264); -x_1266 = lean_array_push(x_1265, x_1238); -x_1267 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1268 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1268, 0, x_1267); -lean_ctor_set(x_1268, 1, x_1266); -x_1269 = lean_array_push(x_1249, x_1268); -x_1270 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1270, 0, x_1251); -lean_ctor_set(x_1270, 1, x_1269); -x_1271 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1272 = lean_array_push(x_1271, x_1270); -x_1273 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1274 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1274, 0, x_1273); -lean_ctor_set(x_1274, 1, x_1272); -x_1275 = lean_array_push(x_1258, x_1274); -x_1276 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1277 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1277, 0, x_1276); -lean_ctor_set(x_1277, 1, x_1275); -x_1278 = 1; -x_1279 = lean_box(x_1278); -lean_ctor_set(x_1233, 1, x_1279); -lean_ctor_set(x_1233, 0, x_1277); -lean_ctor_set(x_1242, 0, x_1232); -return x_1242; -} -else -{ -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; uint8_t x_1296; lean_object* x_1297; -lean_dec(x_19); -x_1280 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1280, 0, x_1251); -lean_ctor_set(x_1280, 1, x_1259); -x_1281 = lean_array_push(x_1249, x_1280); -x_1282 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1283 = lean_array_push(x_1281, x_1282); -x_1284 = lean_array_push(x_1283, x_1238); -x_1285 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1286 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1286, 0, x_1285); -lean_ctor_set(x_1286, 1, x_1284); -x_1287 = lean_array_push(x_1249, x_1286); -x_1288 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1288, 0, x_1251); -lean_ctor_set(x_1288, 1, x_1287); -x_1289 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1290 = lean_array_push(x_1289, x_1288); -x_1291 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1292 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1292, 0, x_1291); -lean_ctor_set(x_1292, 1, x_1290); -x_1293 = lean_array_push(x_1258, x_1292); -x_1294 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1295 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1295, 0, x_1294); -lean_ctor_set(x_1295, 1, x_1293); -x_1296 = 1; -x_1297 = lean_box(x_1296); -lean_ctor_set(x_1233, 1, x_1297); -lean_ctor_set(x_1233, 0, x_1295); -lean_ctor_set(x_1242, 0, x_1232); -return x_1242; -} -} -else -{ -lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; uint8_t x_1331; lean_object* x_1332; lean_object* x_1333; -x_1298 = lean_ctor_get(x_1242, 1); -lean_inc(x_1298); +x_1243 = lean_ctor_get(x_1242, 1); +lean_inc(x_1243); lean_dec(x_1242); -x_1299 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1300 = lean_array_push(x_1299, x_1225); -x_1301 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1302 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1302, 0, x_1301); -lean_ctor_set(x_1302, 1, x_1300); -x_1303 = l_Array_empty___closed__1; -x_1304 = lean_array_push(x_1303, x_1302); -x_1305 = l_Lean_nullKind___closed__2; -x_1306 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1306, 0, x_1305); -lean_ctor_set(x_1306, 1, x_1304); -x_1307 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1308 = lean_array_push(x_1307, x_1306); -x_1309 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1310 = lean_array_push(x_1308, x_1309); -x_1311 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1312 = lean_array_push(x_1310, x_1311); +x_1244 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1243); +x_1245 = !lean_is_exclusive(x_1244); +if (x_1245 == 0) +{ +lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; uint8_t x_1262; +x_1246 = lean_ctor_get(x_1244, 0); +lean_dec(x_1246); +x_1247 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1248 = lean_array_push(x_1247, x_1227); +x_1249 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1250, 0, x_1249); +lean_ctor_set(x_1250, 1, x_1248); +x_1251 = l_Array_empty___closed__1; +x_1252 = lean_array_push(x_1251, x_1250); +x_1253 = l_Lean_nullKind___closed__2; +x_1254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1254, 0, x_1253); +lean_ctor_set(x_1254, 1, x_1252); +x_1255 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1256 = lean_array_push(x_1255, x_1254); +x_1257 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1258 = lean_array_push(x_1256, x_1257); +x_1259 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1260 = lean_array_push(x_1258, x_1259); lean_inc(x_19); -x_1313 = lean_array_push(x_1303, x_19); +x_1261 = lean_array_push(x_1251, x_19); +x_1262 = !lean_is_exclusive(x_19); +if (x_1262 == 0) +{ +lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; uint8_t x_1280; lean_object* x_1281; +x_1263 = lean_ctor_get(x_19, 1); +lean_dec(x_1263); +x_1264 = lean_ctor_get(x_19, 0); +lean_dec(x_1264); +lean_ctor_set(x_19, 1, x_1261); +lean_ctor_set(x_19, 0, x_1253); +x_1265 = lean_array_push(x_1251, x_19); +x_1266 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1267 = lean_array_push(x_1265, x_1266); +x_1268 = lean_array_push(x_1267, x_1240); +x_1269 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1270, 0, x_1269); +lean_ctor_set(x_1270, 1, x_1268); +x_1271 = lean_array_push(x_1251, x_1270); +x_1272 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1272, 0, x_1253); +lean_ctor_set(x_1272, 1, x_1271); +x_1273 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1274 = lean_array_push(x_1273, x_1272); +x_1275 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1276 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1276, 0, x_1275); +lean_ctor_set(x_1276, 1, x_1274); +x_1277 = lean_array_push(x_1260, x_1276); +x_1278 = l_Lean_Elab_Term_expandFunBinders_loop___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 = 1; +x_1281 = lean_box(x_1280); +lean_ctor_set(x_1235, 1, x_1281); +lean_ctor_set(x_1235, 0, x_1279); +lean_ctor_set(x_1244, 0, x_1234); +return x_1244; +} +else +{ +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; uint8_t x_1298; lean_object* x_1299; +lean_dec(x_19); +x_1282 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1282, 0, x_1253); +lean_ctor_set(x_1282, 1, x_1261); +x_1283 = lean_array_push(x_1251, x_1282); +x_1284 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1285 = lean_array_push(x_1283, x_1284); +x_1286 = lean_array_push(x_1285, x_1240); +x_1287 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1288 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1288, 0, x_1287); +lean_ctor_set(x_1288, 1, x_1286); +x_1289 = lean_array_push(x_1251, x_1288); +x_1290 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1290, 0, x_1253); +lean_ctor_set(x_1290, 1, x_1289); +x_1291 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1292 = lean_array_push(x_1291, x_1290); +x_1293 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1294 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1294, 0, x_1293); +lean_ctor_set(x_1294, 1, x_1292); +x_1295 = lean_array_push(x_1260, x_1294); +x_1296 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1297 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1297, 0, x_1296); +lean_ctor_set(x_1297, 1, x_1295); +x_1298 = 1; +x_1299 = lean_box(x_1298); +lean_ctor_set(x_1235, 1, x_1299); +lean_ctor_set(x_1235, 0, x_1297); +lean_ctor_set(x_1244, 0, x_1234); +return x_1244; +} +} +else +{ +lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; uint8_t x_1333; lean_object* x_1334; lean_object* x_1335; +x_1300 = lean_ctor_get(x_1244, 1); +lean_inc(x_1300); +lean_dec(x_1244); +x_1301 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1302 = lean_array_push(x_1301, x_1227); +x_1303 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1304 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1304, 0, x_1303); +lean_ctor_set(x_1304, 1, x_1302); +x_1305 = l_Array_empty___closed__1; +x_1306 = lean_array_push(x_1305, x_1304); +x_1307 = l_Lean_nullKind___closed__2; +x_1308 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1308, 0, x_1307); +lean_ctor_set(x_1308, 1, x_1306); +x_1309 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1310 = lean_array_push(x_1309, x_1308); +x_1311 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1312 = lean_array_push(x_1310, x_1311); +x_1313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1314 = lean_array_push(x_1312, x_1313); +lean_inc(x_19); +x_1315 = lean_array_push(x_1305, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1314 = x_19; + x_1316 = x_19; } else { lean_dec_ref(x_19); - x_1314 = lean_box(0); + x_1316 = lean_box(0); } -if (lean_is_scalar(x_1314)) { - x_1315 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1316)) { + x_1317 = lean_alloc_ctor(1, 2, 0); } else { - x_1315 = x_1314; + x_1317 = x_1316; } -lean_ctor_set(x_1315, 0, x_1305); -lean_ctor_set(x_1315, 1, x_1313); -x_1316 = lean_array_push(x_1303, x_1315); -x_1317 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1318 = lean_array_push(x_1316, x_1317); -x_1319 = lean_array_push(x_1318, x_1238); -x_1320 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1321 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1321, 0, x_1320); -lean_ctor_set(x_1321, 1, x_1319); -x_1322 = lean_array_push(x_1303, x_1321); +lean_ctor_set(x_1317, 0, x_1307); +lean_ctor_set(x_1317, 1, x_1315); +x_1318 = lean_array_push(x_1305, x_1317); +x_1319 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1320 = lean_array_push(x_1318, x_1319); +x_1321 = lean_array_push(x_1320, x_1240); +x_1322 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1323 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1323, 0, x_1305); -lean_ctor_set(x_1323, 1, x_1322); -x_1324 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1325 = lean_array_push(x_1324, x_1323); -x_1326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1327 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1327, 0, x_1326); -lean_ctor_set(x_1327, 1, x_1325); -x_1328 = lean_array_push(x_1312, x_1327); -x_1329 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1330, 0, x_1329); -lean_ctor_set(x_1330, 1, x_1328); -x_1331 = 1; -x_1332 = lean_box(x_1331); -lean_ctor_set(x_1233, 1, x_1332); -lean_ctor_set(x_1233, 0, x_1330); -x_1333 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1333, 0, x_1232); -lean_ctor_set(x_1333, 1, x_1298); -return x_1333; +lean_ctor_set(x_1323, 0, x_1322); +lean_ctor_set(x_1323, 1, x_1321); +x_1324 = lean_array_push(x_1305, x_1323); +x_1325 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1325, 0, x_1307); +lean_ctor_set(x_1325, 1, x_1324); +x_1326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1327 = lean_array_push(x_1326, x_1325); +x_1328 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1329, 0, x_1328); +lean_ctor_set(x_1329, 1, x_1327); +x_1330 = lean_array_push(x_1314, x_1329); +x_1331 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1332 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1332, 0, x_1331); +lean_ctor_set(x_1332, 1, x_1330); +x_1333 = 1; +x_1334 = lean_box(x_1333); +lean_ctor_set(x_1235, 1, x_1334); +lean_ctor_set(x_1235, 0, x_1332); +x_1335 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1335, 0, x_1234); +lean_ctor_set(x_1335, 1, x_1300); +return x_1335; } } else { -lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; uint8_t x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; -x_1334 = lean_ctor_get(x_1233, 0); -lean_inc(x_1334); -lean_dec(x_1233); -x_1335 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1234); -lean_dec(x_5); -x_1336 = lean_ctor_get(x_1335, 1); +lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; uint8_t x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; +x_1336 = lean_ctor_get(x_1235, 0); lean_inc(x_1336); -lean_dec(x_1335); -x_1337 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1336); +lean_dec(x_1235); +x_1337 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1236); +lean_dec(x_5); x_1338 = lean_ctor_get(x_1337, 1); lean_inc(x_1338); -if (lean_is_exclusive(x_1337)) { - lean_ctor_release(x_1337, 0); - lean_ctor_release(x_1337, 1); - x_1339 = x_1337; +lean_dec(x_1337); +x_1339 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1338); +x_1340 = lean_ctor_get(x_1339, 1); +lean_inc(x_1340); +if (lean_is_exclusive(x_1339)) { + lean_ctor_release(x_1339, 0); + lean_ctor_release(x_1339, 1); + x_1341 = x_1339; } else { - lean_dec_ref(x_1337); - x_1339 = lean_box(0); + lean_dec_ref(x_1339); + x_1341 = lean_box(0); } -x_1340 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1341 = lean_array_push(x_1340, x_1225); -x_1342 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1343 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1343, 0, x_1342); -lean_ctor_set(x_1343, 1, x_1341); -x_1344 = l_Array_empty___closed__1; -x_1345 = lean_array_push(x_1344, x_1343); -x_1346 = l_Lean_nullKind___closed__2; -x_1347 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1347, 0, x_1346); -lean_ctor_set(x_1347, 1, x_1345); -x_1348 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1349 = lean_array_push(x_1348, x_1347); -x_1350 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1351 = lean_array_push(x_1349, x_1350); -x_1352 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1342 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1343 = lean_array_push(x_1342, x_1227); +x_1344 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1345, 0, x_1344); +lean_ctor_set(x_1345, 1, x_1343); +x_1346 = l_Array_empty___closed__1; +x_1347 = lean_array_push(x_1346, x_1345); +x_1348 = l_Lean_nullKind___closed__2; +x_1349 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1349, 0, x_1348); +lean_ctor_set(x_1349, 1, x_1347); +x_1350 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1351 = lean_array_push(x_1350, x_1349); +x_1352 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1353 = lean_array_push(x_1351, x_1352); +x_1354 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1355 = lean_array_push(x_1353, x_1354); lean_inc(x_19); -x_1354 = lean_array_push(x_1344, x_19); +x_1356 = lean_array_push(x_1346, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1355 = x_19; + x_1357 = x_19; } else { lean_dec_ref(x_19); - x_1355 = lean_box(0); + x_1357 = lean_box(0); } -if (lean_is_scalar(x_1355)) { - x_1356 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1357)) { + x_1358 = lean_alloc_ctor(1, 2, 0); } else { - x_1356 = x_1355; + x_1358 = x_1357; } -lean_ctor_set(x_1356, 0, x_1346); -lean_ctor_set(x_1356, 1, x_1354); -x_1357 = lean_array_push(x_1344, x_1356); -x_1358 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1359 = lean_array_push(x_1357, x_1358); -x_1360 = lean_array_push(x_1359, x_1334); -x_1361 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1362 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1362, 0, x_1361); -lean_ctor_set(x_1362, 1, x_1360); -x_1363 = lean_array_push(x_1344, x_1362); +lean_ctor_set(x_1358, 0, x_1348); +lean_ctor_set(x_1358, 1, x_1356); +x_1359 = lean_array_push(x_1346, x_1358); +x_1360 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1361 = lean_array_push(x_1359, x_1360); +x_1362 = lean_array_push(x_1361, x_1336); +x_1363 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1364 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1364, 0, x_1346); -lean_ctor_set(x_1364, 1, x_1363); -x_1365 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1366 = lean_array_push(x_1365, x_1364); -x_1367 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1368 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1368, 0, x_1367); -lean_ctor_set(x_1368, 1, x_1366); -x_1369 = lean_array_push(x_1353, x_1368); -x_1370 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1371 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1371, 0, x_1370); -lean_ctor_set(x_1371, 1, x_1369); -x_1372 = 1; -x_1373 = lean_box(x_1372); -x_1374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1374, 0, x_1371); -lean_ctor_set(x_1374, 1, x_1373); -lean_ctor_set(x_1232, 1, x_1374); -if (lean_is_scalar(x_1339)) { - x_1375 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1364, 0, x_1363); +lean_ctor_set(x_1364, 1, x_1362); +x_1365 = lean_array_push(x_1346, x_1364); +x_1366 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1366, 0, x_1348); +lean_ctor_set(x_1366, 1, x_1365); +x_1367 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1368 = lean_array_push(x_1367, x_1366); +x_1369 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1370 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1370, 0, x_1369); +lean_ctor_set(x_1370, 1, x_1368); +x_1371 = lean_array_push(x_1355, x_1370); +x_1372 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1373, 0, x_1372); +lean_ctor_set(x_1373, 1, x_1371); +x_1374 = 1; +x_1375 = lean_box(x_1374); +x_1376 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1376, 0, x_1373); +lean_ctor_set(x_1376, 1, x_1375); +lean_ctor_set(x_1234, 1, x_1376); +if (lean_is_scalar(x_1341)) { + x_1377 = lean_alloc_ctor(0, 2, 0); } else { - x_1375 = x_1339; + x_1377 = x_1341; } -lean_ctor_set(x_1375, 0, x_1232); -lean_ctor_set(x_1375, 1, x_1338); -return x_1375; +lean_ctor_set(x_1377, 0, x_1234); +lean_ctor_set(x_1377, 1, x_1340); +return x_1377; } } else { -lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; uint8_t x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; -x_1376 = lean_ctor_get(x_1232, 0); -lean_inc(x_1376); -lean_dec(x_1232); -x_1377 = lean_ctor_get(x_1233, 0); -lean_inc(x_1377); -if (lean_is_exclusive(x_1233)) { - lean_ctor_release(x_1233, 0); - lean_ctor_release(x_1233, 1); - x_1378 = x_1233; +lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; uint8_t x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; +x_1378 = lean_ctor_get(x_1234, 0); +lean_inc(x_1378); +lean_dec(x_1234); +x_1379 = lean_ctor_get(x_1235, 0); +lean_inc(x_1379); +if (lean_is_exclusive(x_1235)) { + lean_ctor_release(x_1235, 0); + lean_ctor_release(x_1235, 1); + x_1380 = x_1235; } else { - lean_dec_ref(x_1233); - x_1378 = lean_box(0); + lean_dec_ref(x_1235); + x_1380 = lean_box(0); } -x_1379 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1234); +x_1381 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1236); lean_dec(x_5); -x_1380 = lean_ctor_get(x_1379, 1); -lean_inc(x_1380); -lean_dec(x_1379); -x_1381 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1380); x_1382 = lean_ctor_get(x_1381, 1); lean_inc(x_1382); -if (lean_is_exclusive(x_1381)) { - lean_ctor_release(x_1381, 0); - lean_ctor_release(x_1381, 1); - x_1383 = x_1381; +lean_dec(x_1381); +x_1383 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1382); +x_1384 = lean_ctor_get(x_1383, 1); +lean_inc(x_1384); +if (lean_is_exclusive(x_1383)) { + lean_ctor_release(x_1383, 0); + lean_ctor_release(x_1383, 1); + x_1385 = x_1383; } else { - lean_dec_ref(x_1381); - x_1383 = lean_box(0); + lean_dec_ref(x_1383); + x_1385 = lean_box(0); } -x_1384 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1385 = lean_array_push(x_1384, x_1225); -x_1386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1387 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1387, 0, x_1386); -lean_ctor_set(x_1387, 1, x_1385); -x_1388 = l_Array_empty___closed__1; -x_1389 = lean_array_push(x_1388, x_1387); -x_1390 = l_Lean_nullKind___closed__2; -x_1391 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1391, 0, x_1390); -lean_ctor_set(x_1391, 1, x_1389); -x_1392 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1393 = lean_array_push(x_1392, x_1391); -x_1394 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1395 = lean_array_push(x_1393, x_1394); -x_1396 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1387 = lean_array_push(x_1386, x_1227); +x_1388 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1389, 0, x_1388); +lean_ctor_set(x_1389, 1, x_1387); +x_1390 = l_Array_empty___closed__1; +x_1391 = lean_array_push(x_1390, x_1389); +x_1392 = l_Lean_nullKind___closed__2; +x_1393 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1393, 0, x_1392); +lean_ctor_set(x_1393, 1, x_1391); +x_1394 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1395 = lean_array_push(x_1394, x_1393); +x_1396 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1397 = lean_array_push(x_1395, x_1396); +x_1398 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1399 = lean_array_push(x_1397, x_1398); lean_inc(x_19); -x_1398 = lean_array_push(x_1388, x_19); +x_1400 = lean_array_push(x_1390, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1399 = x_19; + x_1401 = x_19; } else { lean_dec_ref(x_19); - x_1399 = lean_box(0); + x_1401 = lean_box(0); } -if (lean_is_scalar(x_1399)) { - x_1400 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1401)) { + x_1402 = lean_alloc_ctor(1, 2, 0); } else { - x_1400 = x_1399; + x_1402 = x_1401; } -lean_ctor_set(x_1400, 0, x_1390); -lean_ctor_set(x_1400, 1, x_1398); -x_1401 = lean_array_push(x_1388, x_1400); -x_1402 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1403 = lean_array_push(x_1401, x_1402); -x_1404 = lean_array_push(x_1403, x_1377); -x_1405 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1406 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1406, 0, x_1405); -lean_ctor_set(x_1406, 1, x_1404); -x_1407 = lean_array_push(x_1388, x_1406); +lean_ctor_set(x_1402, 0, x_1392); +lean_ctor_set(x_1402, 1, x_1400); +x_1403 = lean_array_push(x_1390, x_1402); +x_1404 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1405 = lean_array_push(x_1403, x_1404); +x_1406 = lean_array_push(x_1405, x_1379); +x_1407 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1408 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1408, 0, x_1390); -lean_ctor_set(x_1408, 1, x_1407); -x_1409 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1410 = lean_array_push(x_1409, x_1408); -x_1411 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1412 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1412, 0, x_1411); -lean_ctor_set(x_1412, 1, x_1410); -x_1413 = lean_array_push(x_1397, x_1412); -x_1414 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1415 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1415, 0, x_1414); -lean_ctor_set(x_1415, 1, x_1413); -x_1416 = 1; -x_1417 = lean_box(x_1416); -if (lean_is_scalar(x_1378)) { - x_1418 = lean_alloc_ctor(0, 2, 0); -} else { - x_1418 = x_1378; -} -lean_ctor_set(x_1418, 0, x_1415); -lean_ctor_set(x_1418, 1, x_1417); -x_1419 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1419, 0, x_1376); -lean_ctor_set(x_1419, 1, x_1418); -if (lean_is_scalar(x_1383)) { +lean_ctor_set(x_1408, 0, x_1407); +lean_ctor_set(x_1408, 1, x_1406); +x_1409 = lean_array_push(x_1390, x_1408); +x_1410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1410, 0, x_1392); +lean_ctor_set(x_1410, 1, x_1409); +x_1411 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1412 = lean_array_push(x_1411, x_1410); +x_1413 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1414 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1414, 0, x_1413); +lean_ctor_set(x_1414, 1, x_1412); +x_1415 = lean_array_push(x_1399, x_1414); +x_1416 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1417 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1417, 0, x_1416); +lean_ctor_set(x_1417, 1, x_1415); +x_1418 = 1; +x_1419 = lean_box(x_1418); +if (lean_is_scalar(x_1380)) { x_1420 = lean_alloc_ctor(0, 2, 0); } else { - x_1420 = x_1383; + x_1420 = x_1380; } -lean_ctor_set(x_1420, 0, x_1419); -lean_ctor_set(x_1420, 1, x_1382); -return x_1420; +lean_ctor_set(x_1420, 0, x_1417); +lean_ctor_set(x_1420, 1, x_1419); +x_1421 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1421, 0, x_1378); +lean_ctor_set(x_1421, 1, x_1420); +if (lean_is_scalar(x_1385)) { + x_1422 = lean_alloc_ctor(0, 2, 0); +} else { + x_1422 = x_1385; +} +lean_ctor_set(x_1422, 0, x_1421); +lean_ctor_set(x_1422, 1, x_1384); +return x_1422; } } else { -lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; size_t x_1425; size_t x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; +lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; size_t x_1427; size_t x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_dec(x_19); -x_1421 = lean_ctor_get(x_1221, 1); -lean_inc(x_1421); -lean_dec(x_1221); -x_1422 = lean_ctor_get(x_1222, 0); -lean_inc(x_1422); -lean_dec(x_1222); -x_1423 = lean_nat_add(x_3, x_1012); +x_1423 = lean_ctor_get(x_1223, 1); +lean_inc(x_1423); +lean_dec(x_1223); +x_1424 = lean_ctor_get(x_1224, 0); +lean_inc(x_1424); +lean_dec(x_1224); +x_1425 = lean_nat_add(x_3, x_1014); lean_dec(x_3); -x_1424 = lean_array_get_size(x_1422); -x_1425 = lean_usize_of_nat(x_1424); -lean_dec(x_1424); -x_1426 = 0; -x_1427 = x_1422; -x_1428 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_1220, x_1425, x_1426, x_1427); -x_1429 = x_1428; -x_1430 = l_Array_append___rarg(x_4, x_1429); -lean_dec(x_1429); -x_3 = x_1423; -x_4 = x_1430; -x_11 = x_1421; +x_1426 = lean_array_get_size(x_1424); +x_1427 = lean_usize_of_nat(x_1426); +lean_dec(x_1426); +x_1428 = 0; +x_1429 = x_1424; +x_1430 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_1222, x_1427, x_1428, x_1429); +x_1431 = x_1430; +x_1432 = l_Array_append___rarg(x_4, x_1431); +lean_dec(x_1431); +x_3 = x_1425; +x_4 = x_1432; +x_11 = x_1423; goto _start; } } } else { -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; uint8_t x_1443; -lean_dec(x_1017); -lean_dec(x_1016); +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; uint8_t x_1445; +lean_dec(x_1019); +lean_dec(x_1018); lean_inc(x_5); -x_1432 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1433 = lean_ctor_get(x_1432, 0); -lean_inc(x_1433); -x_1434 = lean_ctor_get(x_1432, 1); -lean_inc(x_1434); -lean_dec(x_1432); -x_1435 = lean_nat_add(x_3, x_1012); +x_1434 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1435 = lean_ctor_get(x_1434, 0); +lean_inc(x_1435); +x_1436 = lean_ctor_get(x_1434, 1); +lean_inc(x_1436); +lean_dec(x_1434); +x_1437 = lean_nat_add(x_3, x_1014); lean_dec(x_3); -x_1436 = l_Lean_mkHole(x_19); -lean_inc(x_1433); -x_1437 = l_Lean_Elab_Term_mkExplicitBinder(x_1433, x_1436); -x_1438 = lean_array_push(x_4, x_1437); +x_1438 = l_Lean_mkHole(x_19); +lean_inc(x_1435); +x_1439 = l_Lean_Elab_Term_mkExplicitBinder(x_1435, x_1438); +x_1440 = lean_array_push(x_4, x_1439); lean_inc(x_5); -x_1439 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1435, x_1438, x_5, x_6, x_7, x_8, x_9, x_10, x_1434); -x_1440 = lean_ctor_get(x_1439, 0); -lean_inc(x_1440); -x_1441 = lean_ctor_get(x_1440, 1); -lean_inc(x_1441); -x_1442 = lean_ctor_get(x_1439, 1); +x_1441 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1437, x_1440, x_5, x_6, x_7, x_8, x_9, x_10, x_1436); +x_1442 = lean_ctor_get(x_1441, 0); lean_inc(x_1442); -lean_dec(x_1439); -x_1443 = !lean_is_exclusive(x_1440); -if (x_1443 == 0) -{ -lean_object* x_1444; uint8_t x_1445; -x_1444 = lean_ctor_get(x_1440, 1); -lean_dec(x_1444); -x_1445 = !lean_is_exclusive(x_1441); +x_1443 = lean_ctor_get(x_1442, 1); +lean_inc(x_1443); +x_1444 = lean_ctor_get(x_1441, 1); +lean_inc(x_1444); +lean_dec(x_1441); +x_1445 = !lean_is_exclusive(x_1442); if (x_1445 == 0) { -lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; uint8_t x_1451; -x_1446 = lean_ctor_get(x_1441, 0); -x_1447 = lean_ctor_get(x_1441, 1); -lean_dec(x_1447); -x_1448 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1442); +lean_object* x_1446; uint8_t x_1447; +x_1446 = lean_ctor_get(x_1442, 1); +lean_dec(x_1446); +x_1447 = !lean_is_exclusive(x_1443); +if (x_1447 == 0) +{ +lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; uint8_t x_1453; +x_1448 = lean_ctor_get(x_1443, 0); +x_1449 = lean_ctor_get(x_1443, 1); +lean_dec(x_1449); +x_1450 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1444); lean_dec(x_5); -x_1449 = lean_ctor_get(x_1448, 1); -lean_inc(x_1449); -lean_dec(x_1448); -x_1450 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1449); -x_1451 = !lean_is_exclusive(x_1450); -if (x_1451 == 0) -{ -lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; uint8_t x_1468; -x_1452 = lean_ctor_get(x_1450, 0); -lean_dec(x_1452); -x_1453 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1454 = lean_array_push(x_1453, x_1433); -x_1455 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1456 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1456, 0, x_1455); -lean_ctor_set(x_1456, 1, x_1454); -x_1457 = l_Array_empty___closed__1; -x_1458 = lean_array_push(x_1457, x_1456); -x_1459 = l_Lean_nullKind___closed__2; -x_1460 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1460, 0, x_1459); -lean_ctor_set(x_1460, 1, x_1458); -x_1461 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1462 = lean_array_push(x_1461, x_1460); -x_1463 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1464 = lean_array_push(x_1462, x_1463); -x_1465 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1466 = lean_array_push(x_1464, x_1465); -lean_inc(x_19); -x_1467 = lean_array_push(x_1457, x_19); -x_1468 = !lean_is_exclusive(x_19); -if (x_1468 == 0) -{ -lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; uint8_t x_1486; lean_object* x_1487; -x_1469 = lean_ctor_get(x_19, 1); -lean_dec(x_1469); -x_1470 = lean_ctor_get(x_19, 0); -lean_dec(x_1470); -lean_ctor_set(x_19, 1, x_1467); -lean_ctor_set(x_19, 0, x_1459); -x_1471 = lean_array_push(x_1457, x_19); -x_1472 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1473 = lean_array_push(x_1471, x_1472); -x_1474 = lean_array_push(x_1473, x_1446); -x_1475 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1476 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1476, 0, x_1475); -lean_ctor_set(x_1476, 1, x_1474); -x_1477 = lean_array_push(x_1457, x_1476); -x_1478 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1478, 0, x_1459); -lean_ctor_set(x_1478, 1, x_1477); -x_1479 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1480 = lean_array_push(x_1479, x_1478); -x_1481 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1482 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1482, 0, x_1481); -lean_ctor_set(x_1482, 1, x_1480); -x_1483 = lean_array_push(x_1466, x_1482); -x_1484 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1485 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1485, 0, x_1484); -lean_ctor_set(x_1485, 1, x_1483); -x_1486 = 1; -x_1487 = lean_box(x_1486); -lean_ctor_set(x_1441, 1, x_1487); -lean_ctor_set(x_1441, 0, x_1485); -lean_ctor_set(x_1450, 0, x_1440); -return x_1450; -} -else -{ -lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; uint8_t x_1504; lean_object* x_1505; -lean_dec(x_19); -x_1488 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1488, 0, x_1459); -lean_ctor_set(x_1488, 1, x_1467); -x_1489 = lean_array_push(x_1457, x_1488); -x_1490 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1491 = lean_array_push(x_1489, x_1490); -x_1492 = lean_array_push(x_1491, x_1446); -x_1493 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1494 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1494, 0, x_1493); -lean_ctor_set(x_1494, 1, x_1492); -x_1495 = lean_array_push(x_1457, x_1494); -x_1496 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1496, 0, x_1459); -lean_ctor_set(x_1496, 1, x_1495); -x_1497 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1498 = lean_array_push(x_1497, x_1496); -x_1499 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1500 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1500, 0, x_1499); -lean_ctor_set(x_1500, 1, x_1498); -x_1501 = lean_array_push(x_1466, x_1500); -x_1502 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1503 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1503, 0, x_1502); -lean_ctor_set(x_1503, 1, x_1501); -x_1504 = 1; -x_1505 = lean_box(x_1504); -lean_ctor_set(x_1441, 1, x_1505); -lean_ctor_set(x_1441, 0, x_1503); -lean_ctor_set(x_1450, 0, x_1440); -return x_1450; -} -} -else -{ -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; uint8_t x_1539; lean_object* x_1540; lean_object* x_1541; -x_1506 = lean_ctor_get(x_1450, 1); -lean_inc(x_1506); +x_1451 = lean_ctor_get(x_1450, 1); +lean_inc(x_1451); lean_dec(x_1450); -x_1507 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1508 = lean_array_push(x_1507, x_1433); -x_1509 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1510 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1510, 0, x_1509); -lean_ctor_set(x_1510, 1, x_1508); -x_1511 = l_Array_empty___closed__1; -x_1512 = lean_array_push(x_1511, x_1510); -x_1513 = l_Lean_nullKind___closed__2; -x_1514 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1514, 0, x_1513); -lean_ctor_set(x_1514, 1, x_1512); -x_1515 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1516 = lean_array_push(x_1515, x_1514); -x_1517 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1518 = lean_array_push(x_1516, x_1517); -x_1519 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1520 = lean_array_push(x_1518, x_1519); +x_1452 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1451); +x_1453 = !lean_is_exclusive(x_1452); +if (x_1453 == 0) +{ +lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; uint8_t x_1470; +x_1454 = lean_ctor_get(x_1452, 0); +lean_dec(x_1454); +x_1455 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1456 = lean_array_push(x_1455, x_1435); +x_1457 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1458 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1458, 0, x_1457); +lean_ctor_set(x_1458, 1, x_1456); +x_1459 = l_Array_empty___closed__1; +x_1460 = lean_array_push(x_1459, x_1458); +x_1461 = l_Lean_nullKind___closed__2; +x_1462 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1462, 0, x_1461); +lean_ctor_set(x_1462, 1, x_1460); +x_1463 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1464 = lean_array_push(x_1463, x_1462); +x_1465 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1466 = lean_array_push(x_1464, x_1465); +x_1467 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1468 = lean_array_push(x_1466, x_1467); lean_inc(x_19); -x_1521 = lean_array_push(x_1511, x_19); +x_1469 = lean_array_push(x_1459, x_19); +x_1470 = !lean_is_exclusive(x_19); +if (x_1470 == 0) +{ +lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; uint8_t x_1488; lean_object* x_1489; +x_1471 = lean_ctor_get(x_19, 1); +lean_dec(x_1471); +x_1472 = lean_ctor_get(x_19, 0); +lean_dec(x_1472); +lean_ctor_set(x_19, 1, x_1469); +lean_ctor_set(x_19, 0, x_1461); +x_1473 = lean_array_push(x_1459, x_19); +x_1474 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1475 = lean_array_push(x_1473, x_1474); +x_1476 = lean_array_push(x_1475, x_1448); +x_1477 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1478 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1478, 0, x_1477); +lean_ctor_set(x_1478, 1, x_1476); +x_1479 = lean_array_push(x_1459, x_1478); +x_1480 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1480, 0, x_1461); +lean_ctor_set(x_1480, 1, x_1479); +x_1481 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1482 = lean_array_push(x_1481, x_1480); +x_1483 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1484 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1484, 0, x_1483); +lean_ctor_set(x_1484, 1, x_1482); +x_1485 = lean_array_push(x_1468, x_1484); +x_1486 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1487 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1487, 0, x_1486); +lean_ctor_set(x_1487, 1, x_1485); +x_1488 = 1; +x_1489 = lean_box(x_1488); +lean_ctor_set(x_1443, 1, x_1489); +lean_ctor_set(x_1443, 0, x_1487); +lean_ctor_set(x_1452, 0, x_1442); +return x_1452; +} +else +{ +lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; uint8_t x_1506; lean_object* x_1507; +lean_dec(x_19); +x_1490 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1490, 0, x_1461); +lean_ctor_set(x_1490, 1, x_1469); +x_1491 = lean_array_push(x_1459, x_1490); +x_1492 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1493 = lean_array_push(x_1491, x_1492); +x_1494 = lean_array_push(x_1493, x_1448); +x_1495 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1496 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1496, 0, x_1495); +lean_ctor_set(x_1496, 1, x_1494); +x_1497 = lean_array_push(x_1459, x_1496); +x_1498 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1498, 0, x_1461); +lean_ctor_set(x_1498, 1, x_1497); +x_1499 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1500 = lean_array_push(x_1499, x_1498); +x_1501 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1502 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1502, 0, x_1501); +lean_ctor_set(x_1502, 1, x_1500); +x_1503 = lean_array_push(x_1468, x_1502); +x_1504 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1505 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1505, 0, x_1504); +lean_ctor_set(x_1505, 1, x_1503); +x_1506 = 1; +x_1507 = lean_box(x_1506); +lean_ctor_set(x_1443, 1, x_1507); +lean_ctor_set(x_1443, 0, x_1505); +lean_ctor_set(x_1452, 0, x_1442); +return x_1452; +} +} +else +{ +lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; uint8_t x_1541; lean_object* x_1542; lean_object* x_1543; +x_1508 = lean_ctor_get(x_1452, 1); +lean_inc(x_1508); +lean_dec(x_1452); +x_1509 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1510 = lean_array_push(x_1509, x_1435); +x_1511 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1512 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1512, 0, x_1511); +lean_ctor_set(x_1512, 1, x_1510); +x_1513 = l_Array_empty___closed__1; +x_1514 = lean_array_push(x_1513, x_1512); +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_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1518 = lean_array_push(x_1517, x_1516); +x_1519 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1520 = lean_array_push(x_1518, x_1519); +x_1521 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1522 = lean_array_push(x_1520, x_1521); +lean_inc(x_19); +x_1523 = lean_array_push(x_1513, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1522 = x_19; + x_1524 = x_19; } else { lean_dec_ref(x_19); - x_1522 = lean_box(0); + x_1524 = lean_box(0); } -if (lean_is_scalar(x_1522)) { - x_1523 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1524)) { + x_1525 = lean_alloc_ctor(1, 2, 0); } else { - x_1523 = x_1522; + x_1525 = x_1524; } -lean_ctor_set(x_1523, 0, x_1513); -lean_ctor_set(x_1523, 1, x_1521); -x_1524 = lean_array_push(x_1511, x_1523); -x_1525 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1526 = lean_array_push(x_1524, x_1525); -x_1527 = lean_array_push(x_1526, x_1446); -x_1528 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1529 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1529, 0, x_1528); -lean_ctor_set(x_1529, 1, x_1527); -x_1530 = lean_array_push(x_1511, x_1529); +lean_ctor_set(x_1525, 0, x_1515); +lean_ctor_set(x_1525, 1, x_1523); +x_1526 = lean_array_push(x_1513, x_1525); +x_1527 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1528 = lean_array_push(x_1526, x_1527); +x_1529 = lean_array_push(x_1528, x_1448); +x_1530 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1531 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1531, 0, x_1513); -lean_ctor_set(x_1531, 1, x_1530); -x_1532 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1533 = lean_array_push(x_1532, x_1531); -x_1534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1535 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1535, 0, x_1534); -lean_ctor_set(x_1535, 1, x_1533); -x_1536 = lean_array_push(x_1520, x_1535); -x_1537 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1538 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1538, 0, x_1537); -lean_ctor_set(x_1538, 1, x_1536); -x_1539 = 1; -x_1540 = lean_box(x_1539); -lean_ctor_set(x_1441, 1, x_1540); -lean_ctor_set(x_1441, 0, x_1538); -x_1541 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1541, 0, x_1440); -lean_ctor_set(x_1541, 1, x_1506); -return x_1541; +lean_ctor_set(x_1531, 0, x_1530); +lean_ctor_set(x_1531, 1, x_1529); +x_1532 = lean_array_push(x_1513, x_1531); +x_1533 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1533, 0, x_1515); +lean_ctor_set(x_1533, 1, x_1532); +x_1534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1535 = lean_array_push(x_1534, x_1533); +x_1536 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1537 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1537, 0, x_1536); +lean_ctor_set(x_1537, 1, x_1535); +x_1538 = lean_array_push(x_1522, x_1537); +x_1539 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1540 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1540, 0, x_1539); +lean_ctor_set(x_1540, 1, x_1538); +x_1541 = 1; +x_1542 = lean_box(x_1541); +lean_ctor_set(x_1443, 1, x_1542); +lean_ctor_set(x_1443, 0, x_1540); +x_1543 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1543, 0, x_1442); +lean_ctor_set(x_1543, 1, x_1508); +return x_1543; } } else { -lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; uint8_t x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; -x_1542 = lean_ctor_get(x_1441, 0); -lean_inc(x_1542); -lean_dec(x_1441); -x_1543 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1442); -lean_dec(x_5); -x_1544 = lean_ctor_get(x_1543, 1); +lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; uint8_t x_1582; lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; +x_1544 = lean_ctor_get(x_1443, 0); lean_inc(x_1544); -lean_dec(x_1543); -x_1545 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1544); +lean_dec(x_1443); +x_1545 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1444); +lean_dec(x_5); x_1546 = lean_ctor_get(x_1545, 1); lean_inc(x_1546); -if (lean_is_exclusive(x_1545)) { - lean_ctor_release(x_1545, 0); - lean_ctor_release(x_1545, 1); - x_1547 = x_1545; +lean_dec(x_1545); +x_1547 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1546); +x_1548 = lean_ctor_get(x_1547, 1); +lean_inc(x_1548); +if (lean_is_exclusive(x_1547)) { + lean_ctor_release(x_1547, 0); + lean_ctor_release(x_1547, 1); + x_1549 = x_1547; } else { - lean_dec_ref(x_1545); - x_1547 = lean_box(0); + lean_dec_ref(x_1547); + x_1549 = lean_box(0); } -x_1548 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1549 = lean_array_push(x_1548, x_1433); -x_1550 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1551 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1551, 0, x_1550); -lean_ctor_set(x_1551, 1, x_1549); -x_1552 = l_Array_empty___closed__1; -x_1553 = lean_array_push(x_1552, x_1551); -x_1554 = l_Lean_nullKind___closed__2; -x_1555 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1555, 0, x_1554); -lean_ctor_set(x_1555, 1, x_1553); -x_1556 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1557 = lean_array_push(x_1556, x_1555); -x_1558 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1559 = lean_array_push(x_1557, x_1558); -x_1560 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1550 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1551 = lean_array_push(x_1550, x_1435); +x_1552 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1553 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1553, 0, x_1552); +lean_ctor_set(x_1553, 1, x_1551); +x_1554 = l_Array_empty___closed__1; +x_1555 = lean_array_push(x_1554, x_1553); +x_1556 = l_Lean_nullKind___closed__2; +x_1557 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1557, 0, x_1556); +lean_ctor_set(x_1557, 1, x_1555); +x_1558 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1559 = lean_array_push(x_1558, x_1557); +x_1560 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1561 = lean_array_push(x_1559, x_1560); +x_1562 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1563 = lean_array_push(x_1561, x_1562); lean_inc(x_19); -x_1562 = lean_array_push(x_1552, x_19); +x_1564 = lean_array_push(x_1554, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1563 = x_19; + x_1565 = x_19; } else { lean_dec_ref(x_19); - x_1563 = lean_box(0); + x_1565 = lean_box(0); } -if (lean_is_scalar(x_1563)) { - x_1564 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1565)) { + x_1566 = lean_alloc_ctor(1, 2, 0); } else { - x_1564 = x_1563; + x_1566 = x_1565; } -lean_ctor_set(x_1564, 0, x_1554); -lean_ctor_set(x_1564, 1, x_1562); -x_1565 = lean_array_push(x_1552, x_1564); -x_1566 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1567 = lean_array_push(x_1565, x_1566); -x_1568 = lean_array_push(x_1567, x_1542); -x_1569 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1570 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1570, 0, x_1569); -lean_ctor_set(x_1570, 1, x_1568); -x_1571 = lean_array_push(x_1552, x_1570); +lean_ctor_set(x_1566, 0, x_1556); +lean_ctor_set(x_1566, 1, x_1564); +x_1567 = lean_array_push(x_1554, x_1566); +x_1568 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1569 = lean_array_push(x_1567, x_1568); +x_1570 = lean_array_push(x_1569, x_1544); +x_1571 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1572 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1572, 0, x_1554); -lean_ctor_set(x_1572, 1, x_1571); -x_1573 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1574 = lean_array_push(x_1573, x_1572); -x_1575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1576 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1576, 0, x_1575); -lean_ctor_set(x_1576, 1, x_1574); -x_1577 = lean_array_push(x_1561, x_1576); -x_1578 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1579 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1579, 0, x_1578); -lean_ctor_set(x_1579, 1, x_1577); -x_1580 = 1; -x_1581 = lean_box(x_1580); -x_1582 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1582, 0, x_1579); -lean_ctor_set(x_1582, 1, x_1581); -lean_ctor_set(x_1440, 1, x_1582); -if (lean_is_scalar(x_1547)) { - x_1583 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1572, 0, x_1571); +lean_ctor_set(x_1572, 1, x_1570); +x_1573 = lean_array_push(x_1554, x_1572); +x_1574 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1574, 0, x_1556); +lean_ctor_set(x_1574, 1, x_1573); +x_1575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1576 = lean_array_push(x_1575, x_1574); +x_1577 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1578 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1578, 0, x_1577); +lean_ctor_set(x_1578, 1, x_1576); +x_1579 = lean_array_push(x_1563, x_1578); +x_1580 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1581 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1581, 0, x_1580); +lean_ctor_set(x_1581, 1, x_1579); +x_1582 = 1; +x_1583 = lean_box(x_1582); +x_1584 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1584, 0, x_1581); +lean_ctor_set(x_1584, 1, x_1583); +lean_ctor_set(x_1442, 1, x_1584); +if (lean_is_scalar(x_1549)) { + x_1585 = lean_alloc_ctor(0, 2, 0); } else { - x_1583 = x_1547; + x_1585 = x_1549; } -lean_ctor_set(x_1583, 0, x_1440); -lean_ctor_set(x_1583, 1, x_1546); -return x_1583; +lean_ctor_set(x_1585, 0, x_1442); +lean_ctor_set(x_1585, 1, x_1548); +return x_1585; } } else { -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; uint8_t x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; -x_1584 = lean_ctor_get(x_1440, 0); -lean_inc(x_1584); -lean_dec(x_1440); -x_1585 = lean_ctor_get(x_1441, 0); -lean_inc(x_1585); -if (lean_is_exclusive(x_1441)) { - lean_ctor_release(x_1441, 0); - lean_ctor_release(x_1441, 1); - x_1586 = x_1441; +lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; uint8_t x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; lean_object* x_1630; +x_1586 = lean_ctor_get(x_1442, 0); +lean_inc(x_1586); +lean_dec(x_1442); +x_1587 = lean_ctor_get(x_1443, 0); +lean_inc(x_1587); +if (lean_is_exclusive(x_1443)) { + lean_ctor_release(x_1443, 0); + lean_ctor_release(x_1443, 1); + x_1588 = x_1443; } else { - lean_dec_ref(x_1441); - x_1586 = lean_box(0); + lean_dec_ref(x_1443); + x_1588 = lean_box(0); } -x_1587 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1442); +x_1589 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1444); lean_dec(x_5); -x_1588 = lean_ctor_get(x_1587, 1); -lean_inc(x_1588); -lean_dec(x_1587); -x_1589 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1588); x_1590 = lean_ctor_get(x_1589, 1); lean_inc(x_1590); -if (lean_is_exclusive(x_1589)) { - lean_ctor_release(x_1589, 0); - lean_ctor_release(x_1589, 1); - x_1591 = x_1589; +lean_dec(x_1589); +x_1591 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1590); +x_1592 = lean_ctor_get(x_1591, 1); +lean_inc(x_1592); +if (lean_is_exclusive(x_1591)) { + lean_ctor_release(x_1591, 0); + lean_ctor_release(x_1591, 1); + x_1593 = x_1591; } else { - lean_dec_ref(x_1589); - x_1591 = lean_box(0); + lean_dec_ref(x_1591); + x_1593 = lean_box(0); } -x_1592 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1593 = lean_array_push(x_1592, x_1433); -x_1594 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1595 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1595, 0, x_1594); -lean_ctor_set(x_1595, 1, x_1593); -x_1596 = l_Array_empty___closed__1; -x_1597 = lean_array_push(x_1596, x_1595); -x_1598 = l_Lean_nullKind___closed__2; -x_1599 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1599, 0, x_1598); -lean_ctor_set(x_1599, 1, x_1597); -x_1600 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1601 = lean_array_push(x_1600, x_1599); -x_1602 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1603 = lean_array_push(x_1601, x_1602); -x_1604 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1594 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1595 = lean_array_push(x_1594, x_1435); +x_1596 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1597 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1597, 0, x_1596); +lean_ctor_set(x_1597, 1, x_1595); +x_1598 = l_Array_empty___closed__1; +x_1599 = lean_array_push(x_1598, x_1597); +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_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1603 = lean_array_push(x_1602, x_1601); +x_1604 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1605 = lean_array_push(x_1603, x_1604); +x_1606 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1607 = lean_array_push(x_1605, x_1606); lean_inc(x_19); -x_1606 = lean_array_push(x_1596, x_19); +x_1608 = lean_array_push(x_1598, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1607 = x_19; + x_1609 = x_19; } else { lean_dec_ref(x_19); - x_1607 = lean_box(0); + x_1609 = lean_box(0); } -if (lean_is_scalar(x_1607)) { - x_1608 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1609)) { + x_1610 = lean_alloc_ctor(1, 2, 0); } else { - x_1608 = x_1607; + x_1610 = x_1609; } -lean_ctor_set(x_1608, 0, x_1598); -lean_ctor_set(x_1608, 1, x_1606); -x_1609 = lean_array_push(x_1596, x_1608); -x_1610 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1611 = lean_array_push(x_1609, x_1610); -x_1612 = lean_array_push(x_1611, x_1585); -x_1613 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1614 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1614, 0, x_1613); -lean_ctor_set(x_1614, 1, x_1612); -x_1615 = lean_array_push(x_1596, x_1614); +lean_ctor_set(x_1610, 0, x_1600); +lean_ctor_set(x_1610, 1, x_1608); +x_1611 = lean_array_push(x_1598, x_1610); +x_1612 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1613 = lean_array_push(x_1611, x_1612); +x_1614 = lean_array_push(x_1613, x_1587); +x_1615 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1616 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1616, 0, x_1598); -lean_ctor_set(x_1616, 1, x_1615); -x_1617 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1618 = lean_array_push(x_1617, x_1616); -x_1619 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1620 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1620, 0, x_1619); -lean_ctor_set(x_1620, 1, x_1618); -x_1621 = lean_array_push(x_1605, x_1620); -x_1622 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1623 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1623, 0, x_1622); -lean_ctor_set(x_1623, 1, x_1621); -x_1624 = 1; -x_1625 = lean_box(x_1624); -if (lean_is_scalar(x_1586)) { - x_1626 = lean_alloc_ctor(0, 2, 0); -} else { - x_1626 = x_1586; -} -lean_ctor_set(x_1626, 0, x_1623); -lean_ctor_set(x_1626, 1, x_1625); -x_1627 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1627, 0, x_1584); -lean_ctor_set(x_1627, 1, x_1626); -if (lean_is_scalar(x_1591)) { +lean_ctor_set(x_1616, 0, x_1615); +lean_ctor_set(x_1616, 1, x_1614); +x_1617 = lean_array_push(x_1598, x_1616); +x_1618 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1618, 0, x_1600); +lean_ctor_set(x_1618, 1, x_1617); +x_1619 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1620 = lean_array_push(x_1619, x_1618); +x_1621 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1622 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1622, 0, x_1621); +lean_ctor_set(x_1622, 1, x_1620); +x_1623 = lean_array_push(x_1607, x_1622); +x_1624 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1625 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1625, 0, x_1624); +lean_ctor_set(x_1625, 1, x_1623); +x_1626 = 1; +x_1627 = lean_box(x_1626); +if (lean_is_scalar(x_1588)) { x_1628 = lean_alloc_ctor(0, 2, 0); } else { - x_1628 = x_1591; + x_1628 = x_1588; } -lean_ctor_set(x_1628, 0, x_1627); -lean_ctor_set(x_1628, 1, x_1590); -return x_1628; +lean_ctor_set(x_1628, 0, x_1625); +lean_ctor_set(x_1628, 1, x_1627); +x_1629 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1629, 0, x_1586); +lean_ctor_set(x_1629, 1, x_1628); +if (lean_is_scalar(x_1593)) { + x_1630 = lean_alloc_ctor(0, 2, 0); +} else { + x_1630 = x_1593; +} +lean_ctor_set(x_1630, 0, x_1629); +lean_ctor_set(x_1630, 1, x_1592); +return x_1630; } } } else { -lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; uint8_t x_1640; -lean_dec(x_1013); +lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; uint8_t x_1642; +lean_dec(x_1015); lean_inc(x_5); -x_1629 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1630 = lean_ctor_get(x_1629, 0); -lean_inc(x_1630); -x_1631 = lean_ctor_get(x_1629, 1); -lean_inc(x_1631); -lean_dec(x_1629); -x_1632 = lean_nat_add(x_3, x_1012); +x_1631 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1632 = lean_ctor_get(x_1631, 0); +lean_inc(x_1632); +x_1633 = lean_ctor_get(x_1631, 1); +lean_inc(x_1633); +lean_dec(x_1631); +x_1634 = lean_nat_add(x_3, x_1014); lean_dec(x_3); -x_1633 = l_Lean_mkHole(x_19); -lean_inc(x_1630); -x_1634 = l_Lean_Elab_Term_mkExplicitBinder(x_1630, x_1633); -x_1635 = lean_array_push(x_4, x_1634); +x_1635 = l_Lean_mkHole(x_19); +lean_inc(x_1632); +x_1636 = l_Lean_Elab_Term_mkExplicitBinder(x_1632, x_1635); +x_1637 = lean_array_push(x_4, x_1636); lean_inc(x_5); -x_1636 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1632, x_1635, x_5, x_6, x_7, x_8, x_9, x_10, x_1631); -x_1637 = lean_ctor_get(x_1636, 0); -lean_inc(x_1637); -x_1638 = lean_ctor_get(x_1637, 1); -lean_inc(x_1638); -x_1639 = lean_ctor_get(x_1636, 1); +x_1638 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1634, x_1637, x_5, x_6, x_7, x_8, x_9, x_10, x_1633); +x_1639 = lean_ctor_get(x_1638, 0); lean_inc(x_1639); -lean_dec(x_1636); -x_1640 = !lean_is_exclusive(x_1637); -if (x_1640 == 0) -{ -lean_object* x_1641; uint8_t x_1642; -x_1641 = lean_ctor_get(x_1637, 1); -lean_dec(x_1641); -x_1642 = !lean_is_exclusive(x_1638); +x_1640 = lean_ctor_get(x_1639, 1); +lean_inc(x_1640); +x_1641 = lean_ctor_get(x_1638, 1); +lean_inc(x_1641); +lean_dec(x_1638); +x_1642 = !lean_is_exclusive(x_1639); if (x_1642 == 0) { -lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; uint8_t x_1648; -x_1643 = lean_ctor_get(x_1638, 0); -x_1644 = lean_ctor_get(x_1638, 1); -lean_dec(x_1644); -x_1645 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1639); +lean_object* x_1643; uint8_t x_1644; +x_1643 = lean_ctor_get(x_1639, 1); +lean_dec(x_1643); +x_1644 = !lean_is_exclusive(x_1640); +if (x_1644 == 0) +{ +lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; uint8_t x_1650; +x_1645 = lean_ctor_get(x_1640, 0); +x_1646 = lean_ctor_get(x_1640, 1); +lean_dec(x_1646); +x_1647 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1641); lean_dec(x_5); -x_1646 = lean_ctor_get(x_1645, 1); -lean_inc(x_1646); -lean_dec(x_1645); -x_1647 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1646); -x_1648 = !lean_is_exclusive(x_1647); -if (x_1648 == 0) -{ -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; uint8_t x_1665; -x_1649 = lean_ctor_get(x_1647, 0); -lean_dec(x_1649); -x_1650 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1651 = lean_array_push(x_1650, x_1630); -x_1652 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1653 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1653, 0, x_1652); -lean_ctor_set(x_1653, 1, x_1651); -x_1654 = l_Array_empty___closed__1; -x_1655 = lean_array_push(x_1654, x_1653); -x_1656 = l_Lean_nullKind___closed__2; -x_1657 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1657, 0, x_1656); -lean_ctor_set(x_1657, 1, x_1655); -x_1658 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1659 = lean_array_push(x_1658, x_1657); -x_1660 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1661 = lean_array_push(x_1659, x_1660); -x_1662 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1663 = lean_array_push(x_1661, x_1662); -lean_inc(x_19); -x_1664 = lean_array_push(x_1654, x_19); -x_1665 = !lean_is_exclusive(x_19); -if (x_1665 == 0) -{ -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; uint8_t x_1683; lean_object* x_1684; -x_1666 = lean_ctor_get(x_19, 1); -lean_dec(x_1666); -x_1667 = lean_ctor_get(x_19, 0); -lean_dec(x_1667); -lean_ctor_set(x_19, 1, x_1664); -lean_ctor_set(x_19, 0, x_1656); -x_1668 = lean_array_push(x_1654, x_19); -x_1669 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1670 = lean_array_push(x_1668, x_1669); -x_1671 = lean_array_push(x_1670, x_1643); -x_1672 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1673 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1673, 0, x_1672); -lean_ctor_set(x_1673, 1, x_1671); -x_1674 = lean_array_push(x_1654, x_1673); -x_1675 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1675, 0, x_1656); -lean_ctor_set(x_1675, 1, x_1674); -x_1676 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1677 = lean_array_push(x_1676, x_1675); -x_1678 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1679 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1679, 0, x_1678); -lean_ctor_set(x_1679, 1, x_1677); -x_1680 = lean_array_push(x_1663, x_1679); -x_1681 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1682 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1682, 0, x_1681); -lean_ctor_set(x_1682, 1, x_1680); -x_1683 = 1; -x_1684 = lean_box(x_1683); -lean_ctor_set(x_1638, 1, x_1684); -lean_ctor_set(x_1638, 0, x_1682); -lean_ctor_set(x_1647, 0, x_1637); -return x_1647; -} -else -{ -lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; uint8_t x_1701; lean_object* x_1702; -lean_dec(x_19); -x_1685 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1685, 0, x_1656); -lean_ctor_set(x_1685, 1, x_1664); -x_1686 = lean_array_push(x_1654, x_1685); -x_1687 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1688 = lean_array_push(x_1686, x_1687); -x_1689 = lean_array_push(x_1688, x_1643); -x_1690 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1691 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1691, 0, x_1690); -lean_ctor_set(x_1691, 1, x_1689); -x_1692 = lean_array_push(x_1654, x_1691); -x_1693 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1693, 0, x_1656); -lean_ctor_set(x_1693, 1, x_1692); -x_1694 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1695 = lean_array_push(x_1694, x_1693); -x_1696 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1697 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1697, 0, x_1696); -lean_ctor_set(x_1697, 1, x_1695); -x_1698 = lean_array_push(x_1663, x_1697); -x_1699 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1700 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1700, 0, x_1699); -lean_ctor_set(x_1700, 1, x_1698); -x_1701 = 1; -x_1702 = lean_box(x_1701); -lean_ctor_set(x_1638, 1, x_1702); -lean_ctor_set(x_1638, 0, x_1700); -lean_ctor_set(x_1647, 0, x_1637); -return x_1647; -} -} -else -{ -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; uint8_t x_1736; lean_object* x_1737; lean_object* x_1738; -x_1703 = lean_ctor_get(x_1647, 1); -lean_inc(x_1703); +x_1648 = lean_ctor_get(x_1647, 1); +lean_inc(x_1648); lean_dec(x_1647); -x_1704 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1705 = lean_array_push(x_1704, x_1630); -x_1706 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1707 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1707, 0, x_1706); -lean_ctor_set(x_1707, 1, x_1705); -x_1708 = l_Array_empty___closed__1; -x_1709 = lean_array_push(x_1708, x_1707); -x_1710 = l_Lean_nullKind___closed__2; -x_1711 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1711, 0, x_1710); -lean_ctor_set(x_1711, 1, x_1709); -x_1712 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1713 = lean_array_push(x_1712, x_1711); -x_1714 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1715 = lean_array_push(x_1713, x_1714); -x_1716 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1717 = lean_array_push(x_1715, x_1716); +x_1649 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1648); +x_1650 = !lean_is_exclusive(x_1649); +if (x_1650 == 0) +{ +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; uint8_t x_1667; +x_1651 = lean_ctor_get(x_1649, 0); +lean_dec(x_1651); +x_1652 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1653 = lean_array_push(x_1652, x_1632); +x_1654 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1655 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1655, 0, x_1654); +lean_ctor_set(x_1655, 1, x_1653); +x_1656 = l_Array_empty___closed__1; +x_1657 = lean_array_push(x_1656, x_1655); +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_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1661 = lean_array_push(x_1660, x_1659); +x_1662 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1663 = lean_array_push(x_1661, x_1662); +x_1664 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1665 = lean_array_push(x_1663, x_1664); lean_inc(x_19); -x_1718 = lean_array_push(x_1708, x_19); +x_1666 = lean_array_push(x_1656, x_19); +x_1667 = !lean_is_exclusive(x_19); +if (x_1667 == 0) +{ +lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; uint8_t x_1685; lean_object* x_1686; +x_1668 = lean_ctor_get(x_19, 1); +lean_dec(x_1668); +x_1669 = lean_ctor_get(x_19, 0); +lean_dec(x_1669); +lean_ctor_set(x_19, 1, x_1666); +lean_ctor_set(x_19, 0, x_1658); +x_1670 = lean_array_push(x_1656, x_19); +x_1671 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1672 = lean_array_push(x_1670, x_1671); +x_1673 = lean_array_push(x_1672, x_1645); +x_1674 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1675 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1675, 0, x_1674); +lean_ctor_set(x_1675, 1, x_1673); +x_1676 = lean_array_push(x_1656, x_1675); +x_1677 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1677, 0, x_1658); +lean_ctor_set(x_1677, 1, x_1676); +x_1678 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1679 = lean_array_push(x_1678, x_1677); +x_1680 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1681 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1681, 0, x_1680); +lean_ctor_set(x_1681, 1, x_1679); +x_1682 = lean_array_push(x_1665, x_1681); +x_1683 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1684 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1684, 0, x_1683); +lean_ctor_set(x_1684, 1, x_1682); +x_1685 = 1; +x_1686 = lean_box(x_1685); +lean_ctor_set(x_1640, 1, x_1686); +lean_ctor_set(x_1640, 0, x_1684); +lean_ctor_set(x_1649, 0, x_1639); +return x_1649; +} +else +{ +lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; uint8_t x_1703; lean_object* x_1704; +lean_dec(x_19); +x_1687 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1687, 0, x_1658); +lean_ctor_set(x_1687, 1, x_1666); +x_1688 = lean_array_push(x_1656, x_1687); +x_1689 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1690 = lean_array_push(x_1688, x_1689); +x_1691 = lean_array_push(x_1690, x_1645); +x_1692 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1693 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1693, 0, x_1692); +lean_ctor_set(x_1693, 1, x_1691); +x_1694 = lean_array_push(x_1656, x_1693); +x_1695 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1695, 0, x_1658); +lean_ctor_set(x_1695, 1, x_1694); +x_1696 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1697 = lean_array_push(x_1696, x_1695); +x_1698 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1699 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1699, 0, x_1698); +lean_ctor_set(x_1699, 1, x_1697); +x_1700 = lean_array_push(x_1665, x_1699); +x_1701 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1702 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1702, 0, x_1701); +lean_ctor_set(x_1702, 1, x_1700); +x_1703 = 1; +x_1704 = lean_box(x_1703); +lean_ctor_set(x_1640, 1, x_1704); +lean_ctor_set(x_1640, 0, x_1702); +lean_ctor_set(x_1649, 0, x_1639); +return x_1649; +} +} +else +{ +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; uint8_t x_1738; lean_object* x_1739; lean_object* x_1740; +x_1705 = lean_ctor_get(x_1649, 1); +lean_inc(x_1705); +lean_dec(x_1649); +x_1706 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1707 = lean_array_push(x_1706, x_1632); +x_1708 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1709 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1709, 0, x_1708); +lean_ctor_set(x_1709, 1, x_1707); +x_1710 = l_Array_empty___closed__1; +x_1711 = lean_array_push(x_1710, x_1709); +x_1712 = l_Lean_nullKind___closed__2; +x_1713 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1713, 0, x_1712); +lean_ctor_set(x_1713, 1, x_1711); +x_1714 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1715 = lean_array_push(x_1714, x_1713); +x_1716 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1717 = lean_array_push(x_1715, x_1716); +x_1718 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1719 = lean_array_push(x_1717, x_1718); +lean_inc(x_19); +x_1720 = lean_array_push(x_1710, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1719 = x_19; + x_1721 = x_19; } else { lean_dec_ref(x_19); - x_1719 = lean_box(0); + x_1721 = lean_box(0); } -if (lean_is_scalar(x_1719)) { - x_1720 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1721)) { + x_1722 = lean_alloc_ctor(1, 2, 0); } else { - x_1720 = x_1719; + x_1722 = x_1721; } -lean_ctor_set(x_1720, 0, x_1710); -lean_ctor_set(x_1720, 1, x_1718); -x_1721 = lean_array_push(x_1708, x_1720); -x_1722 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1723 = lean_array_push(x_1721, x_1722); -x_1724 = lean_array_push(x_1723, x_1643); -x_1725 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1726 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1726, 0, x_1725); -lean_ctor_set(x_1726, 1, x_1724); -x_1727 = lean_array_push(x_1708, x_1726); +lean_ctor_set(x_1722, 0, x_1712); +lean_ctor_set(x_1722, 1, x_1720); +x_1723 = lean_array_push(x_1710, x_1722); +x_1724 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1725 = lean_array_push(x_1723, x_1724); +x_1726 = lean_array_push(x_1725, x_1645); +x_1727 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1728 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1728, 0, x_1710); -lean_ctor_set(x_1728, 1, x_1727); -x_1729 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1730 = lean_array_push(x_1729, x_1728); -x_1731 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1732 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1732, 0, x_1731); -lean_ctor_set(x_1732, 1, x_1730); -x_1733 = lean_array_push(x_1717, x_1732); -x_1734 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1735 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1735, 0, x_1734); -lean_ctor_set(x_1735, 1, x_1733); -x_1736 = 1; -x_1737 = lean_box(x_1736); -lean_ctor_set(x_1638, 1, x_1737); -lean_ctor_set(x_1638, 0, x_1735); -x_1738 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1738, 0, x_1637); -lean_ctor_set(x_1738, 1, x_1703); -return x_1738; +lean_ctor_set(x_1728, 0, x_1727); +lean_ctor_set(x_1728, 1, x_1726); +x_1729 = lean_array_push(x_1710, x_1728); +x_1730 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1730, 0, x_1712); +lean_ctor_set(x_1730, 1, x_1729); +x_1731 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1732 = lean_array_push(x_1731, x_1730); +x_1733 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1734 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1734, 0, x_1733); +lean_ctor_set(x_1734, 1, x_1732); +x_1735 = lean_array_push(x_1719, x_1734); +x_1736 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1737 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1737, 0, x_1736); +lean_ctor_set(x_1737, 1, x_1735); +x_1738 = 1; +x_1739 = lean_box(x_1738); +lean_ctor_set(x_1640, 1, x_1739); +lean_ctor_set(x_1640, 0, x_1737); +x_1740 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1740, 0, x_1639); +lean_ctor_set(x_1740, 1, x_1705); +return x_1740; } } else { -lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; lean_object* x_1742; lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; lean_object* x_1757; lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; uint8_t x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; -x_1739 = lean_ctor_get(x_1638, 0); -lean_inc(x_1739); -lean_dec(x_1638); -x_1740 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1639); -lean_dec(x_5); -x_1741 = lean_ctor_get(x_1740, 1); +lean_object* x_1741; lean_object* x_1742; lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; lean_object* x_1757; lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; lean_object* x_1778; uint8_t x_1779; lean_object* x_1780; lean_object* x_1781; lean_object* x_1782; +x_1741 = lean_ctor_get(x_1640, 0); lean_inc(x_1741); -lean_dec(x_1740); -x_1742 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1741); +lean_dec(x_1640); +x_1742 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1641); +lean_dec(x_5); x_1743 = lean_ctor_get(x_1742, 1); lean_inc(x_1743); -if (lean_is_exclusive(x_1742)) { - lean_ctor_release(x_1742, 0); - lean_ctor_release(x_1742, 1); - x_1744 = x_1742; +lean_dec(x_1742); +x_1744 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1743); +x_1745 = lean_ctor_get(x_1744, 1); +lean_inc(x_1745); +if (lean_is_exclusive(x_1744)) { + lean_ctor_release(x_1744, 0); + lean_ctor_release(x_1744, 1); + x_1746 = x_1744; } else { - lean_dec_ref(x_1742); - x_1744 = lean_box(0); + lean_dec_ref(x_1744); + x_1746 = lean_box(0); } -x_1745 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1746 = lean_array_push(x_1745, x_1630); -x_1747 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1748 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1748, 0, x_1747); -lean_ctor_set(x_1748, 1, x_1746); -x_1749 = l_Array_empty___closed__1; -x_1750 = lean_array_push(x_1749, x_1748); -x_1751 = l_Lean_nullKind___closed__2; -x_1752 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1752, 0, x_1751); -lean_ctor_set(x_1752, 1, x_1750); -x_1753 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1754 = lean_array_push(x_1753, x_1752); -x_1755 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1756 = lean_array_push(x_1754, x_1755); -x_1757 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1747 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1748 = lean_array_push(x_1747, x_1632); +x_1749 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1750 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1750, 0, x_1749); +lean_ctor_set(x_1750, 1, x_1748); +x_1751 = l_Array_empty___closed__1; +x_1752 = lean_array_push(x_1751, x_1750); +x_1753 = l_Lean_nullKind___closed__2; +x_1754 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1754, 0, x_1753); +lean_ctor_set(x_1754, 1, x_1752); +x_1755 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1756 = lean_array_push(x_1755, x_1754); +x_1757 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1758 = lean_array_push(x_1756, x_1757); +x_1759 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1760 = lean_array_push(x_1758, x_1759); lean_inc(x_19); -x_1759 = lean_array_push(x_1749, x_19); +x_1761 = lean_array_push(x_1751, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1760 = x_19; + x_1762 = x_19; } else { lean_dec_ref(x_19); - x_1760 = lean_box(0); + x_1762 = lean_box(0); } -if (lean_is_scalar(x_1760)) { - x_1761 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1762)) { + x_1763 = lean_alloc_ctor(1, 2, 0); } else { - x_1761 = x_1760; + x_1763 = x_1762; } -lean_ctor_set(x_1761, 0, x_1751); -lean_ctor_set(x_1761, 1, x_1759); -x_1762 = lean_array_push(x_1749, x_1761); -x_1763 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1764 = lean_array_push(x_1762, x_1763); -x_1765 = lean_array_push(x_1764, x_1739); -x_1766 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1767 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1767, 0, x_1766); -lean_ctor_set(x_1767, 1, x_1765); -x_1768 = lean_array_push(x_1749, x_1767); +lean_ctor_set(x_1763, 0, x_1753); +lean_ctor_set(x_1763, 1, x_1761); +x_1764 = lean_array_push(x_1751, x_1763); +x_1765 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1766 = lean_array_push(x_1764, x_1765); +x_1767 = lean_array_push(x_1766, x_1741); +x_1768 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1769 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1769, 0, x_1751); -lean_ctor_set(x_1769, 1, x_1768); -x_1770 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1771 = lean_array_push(x_1770, x_1769); -x_1772 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1773 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1773, 0, x_1772); -lean_ctor_set(x_1773, 1, x_1771); -x_1774 = lean_array_push(x_1758, x_1773); -x_1775 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1776 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1776, 0, x_1775); -lean_ctor_set(x_1776, 1, x_1774); -x_1777 = 1; -x_1778 = lean_box(x_1777); -x_1779 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1779, 0, x_1776); -lean_ctor_set(x_1779, 1, x_1778); -lean_ctor_set(x_1637, 1, x_1779); -if (lean_is_scalar(x_1744)) { - x_1780 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1769, 0, x_1768); +lean_ctor_set(x_1769, 1, x_1767); +x_1770 = lean_array_push(x_1751, x_1769); +x_1771 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1771, 0, x_1753); +lean_ctor_set(x_1771, 1, x_1770); +x_1772 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1773 = lean_array_push(x_1772, x_1771); +x_1774 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +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 = lean_array_push(x_1760, x_1775); +x_1777 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1778 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1778, 0, x_1777); +lean_ctor_set(x_1778, 1, x_1776); +x_1779 = 1; +x_1780 = lean_box(x_1779); +x_1781 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1781, 0, x_1778); +lean_ctor_set(x_1781, 1, x_1780); +lean_ctor_set(x_1639, 1, x_1781); +if (lean_is_scalar(x_1746)) { + x_1782 = lean_alloc_ctor(0, 2, 0); } else { - x_1780 = x_1744; + x_1782 = x_1746; } -lean_ctor_set(x_1780, 0, x_1637); -lean_ctor_set(x_1780, 1, x_1743); -return x_1780; +lean_ctor_set(x_1782, 0, x_1639); +lean_ctor_set(x_1782, 1, x_1745); +return x_1782; } } else { -lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; lean_object* x_1800; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; lean_object* x_1812; lean_object* x_1813; lean_object* x_1814; lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; lean_object* x_1820; uint8_t x_1821; lean_object* x_1822; lean_object* x_1823; lean_object* x_1824; lean_object* x_1825; -x_1781 = lean_ctor_get(x_1637, 0); -lean_inc(x_1781); -lean_dec(x_1637); -x_1782 = lean_ctor_get(x_1638, 0); -lean_inc(x_1782); -if (lean_is_exclusive(x_1638)) { - lean_ctor_release(x_1638, 0); - lean_ctor_release(x_1638, 1); - x_1783 = x_1638; +lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; lean_object* x_1800; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; lean_object* x_1812; lean_object* x_1813; lean_object* x_1814; lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; lean_object* x_1820; lean_object* x_1821; lean_object* x_1822; uint8_t x_1823; lean_object* x_1824; lean_object* x_1825; lean_object* x_1826; lean_object* x_1827; +x_1783 = lean_ctor_get(x_1639, 0); +lean_inc(x_1783); +lean_dec(x_1639); +x_1784 = lean_ctor_get(x_1640, 0); +lean_inc(x_1784); +if (lean_is_exclusive(x_1640)) { + lean_ctor_release(x_1640, 0); + lean_ctor_release(x_1640, 1); + x_1785 = x_1640; } else { - lean_dec_ref(x_1638); - x_1783 = lean_box(0); + lean_dec_ref(x_1640); + x_1785 = lean_box(0); } -x_1784 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1639); +x_1786 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1641); lean_dec(x_5); -x_1785 = lean_ctor_get(x_1784, 1); -lean_inc(x_1785); -lean_dec(x_1784); -x_1786 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1785); x_1787 = lean_ctor_get(x_1786, 1); lean_inc(x_1787); -if (lean_is_exclusive(x_1786)) { - lean_ctor_release(x_1786, 0); - lean_ctor_release(x_1786, 1); - x_1788 = x_1786; +lean_dec(x_1786); +x_1788 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1787); +x_1789 = lean_ctor_get(x_1788, 1); +lean_inc(x_1789); +if (lean_is_exclusive(x_1788)) { + lean_ctor_release(x_1788, 0); + lean_ctor_release(x_1788, 1); + x_1790 = x_1788; } else { - lean_dec_ref(x_1786); - x_1788 = lean_box(0); + lean_dec_ref(x_1788); + x_1790 = lean_box(0); } -x_1789 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1790 = lean_array_push(x_1789, x_1630); -x_1791 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1792 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1792, 0, x_1791); -lean_ctor_set(x_1792, 1, x_1790); -x_1793 = l_Array_empty___closed__1; -x_1794 = lean_array_push(x_1793, x_1792); -x_1795 = l_Lean_nullKind___closed__2; -x_1796 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1796, 0, x_1795); -lean_ctor_set(x_1796, 1, x_1794); -x_1797 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1798 = lean_array_push(x_1797, x_1796); -x_1799 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1800 = lean_array_push(x_1798, x_1799); -x_1801 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1791 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1792 = lean_array_push(x_1791, x_1632); +x_1793 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1794 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1794, 0, x_1793); +lean_ctor_set(x_1794, 1, x_1792); +x_1795 = l_Array_empty___closed__1; +x_1796 = lean_array_push(x_1795, x_1794); +x_1797 = l_Lean_nullKind___closed__2; +x_1798 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1798, 0, x_1797); +lean_ctor_set(x_1798, 1, x_1796); +x_1799 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1800 = lean_array_push(x_1799, x_1798); +x_1801 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1802 = lean_array_push(x_1800, x_1801); +x_1803 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1804 = lean_array_push(x_1802, x_1803); lean_inc(x_19); -x_1803 = lean_array_push(x_1793, x_19); +x_1805 = lean_array_push(x_1795, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1804 = x_19; + x_1806 = x_19; } else { lean_dec_ref(x_19); - x_1804 = lean_box(0); + x_1806 = lean_box(0); } -if (lean_is_scalar(x_1804)) { - x_1805 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1806)) { + x_1807 = lean_alloc_ctor(1, 2, 0); } else { - x_1805 = x_1804; + x_1807 = x_1806; } -lean_ctor_set(x_1805, 0, x_1795); -lean_ctor_set(x_1805, 1, x_1803); -x_1806 = lean_array_push(x_1793, x_1805); -x_1807 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1808 = lean_array_push(x_1806, x_1807); -x_1809 = lean_array_push(x_1808, x_1782); -x_1810 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1811 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1811, 0, x_1810); -lean_ctor_set(x_1811, 1, x_1809); -x_1812 = lean_array_push(x_1793, x_1811); +lean_ctor_set(x_1807, 0, x_1797); +lean_ctor_set(x_1807, 1, x_1805); +x_1808 = lean_array_push(x_1795, x_1807); +x_1809 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1810 = lean_array_push(x_1808, x_1809); +x_1811 = lean_array_push(x_1810, x_1784); +x_1812 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1813 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1813, 0, x_1795); -lean_ctor_set(x_1813, 1, x_1812); -x_1814 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1815 = lean_array_push(x_1814, x_1813); -x_1816 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1817 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1817, 0, x_1816); -lean_ctor_set(x_1817, 1, x_1815); -x_1818 = lean_array_push(x_1802, x_1817); -x_1819 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1820 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1820, 0, x_1819); -lean_ctor_set(x_1820, 1, x_1818); -x_1821 = 1; -x_1822 = lean_box(x_1821); -if (lean_is_scalar(x_1783)) { - x_1823 = lean_alloc_ctor(0, 2, 0); -} else { - x_1823 = x_1783; -} -lean_ctor_set(x_1823, 0, x_1820); -lean_ctor_set(x_1823, 1, x_1822); -x_1824 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1824, 0, x_1781); -lean_ctor_set(x_1824, 1, x_1823); -if (lean_is_scalar(x_1788)) { +lean_ctor_set(x_1813, 0, x_1812); +lean_ctor_set(x_1813, 1, x_1811); +x_1814 = lean_array_push(x_1795, x_1813); +x_1815 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1815, 0, x_1797); +lean_ctor_set(x_1815, 1, x_1814); +x_1816 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1817 = lean_array_push(x_1816, x_1815); +x_1818 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1819 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1819, 0, x_1818); +lean_ctor_set(x_1819, 1, x_1817); +x_1820 = lean_array_push(x_1804, x_1819); +x_1821 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1822 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1822, 0, x_1821); +lean_ctor_set(x_1822, 1, x_1820); +x_1823 = 1; +x_1824 = lean_box(x_1823); +if (lean_is_scalar(x_1785)) { x_1825 = lean_alloc_ctor(0, 2, 0); } else { - x_1825 = x_1788; + x_1825 = x_1785; } -lean_ctor_set(x_1825, 0, x_1824); -lean_ctor_set(x_1825, 1, x_1787); -return x_1825; +lean_ctor_set(x_1825, 0, x_1822); +lean_ctor_set(x_1825, 1, x_1824); +x_1826 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1826, 0, x_1783); +lean_ctor_set(x_1826, 1, x_1825); +if (lean_is_scalar(x_1790)) { + x_1827 = lean_alloc_ctor(0, 2, 0); +} else { + x_1827 = x_1790; +} +lean_ctor_set(x_1827, 0, x_1826); +lean_ctor_set(x_1827, 1, x_1789); +return x_1827; } } } } else { -lean_object* x_1826; lean_object* x_1827; lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; +lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; lean_object* x_1833; lean_object* x_1834; lean_dec(x_200); lean_inc(x_5); -x_1826 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1827 = lean_ctor_get(x_1826, 0); -lean_inc(x_1827); -x_1828 = lean_ctor_get(x_1826, 1); -lean_inc(x_1828); -lean_dec(x_1826); -x_1829 = lean_unsigned_to_nat(1u); -x_1830 = lean_nat_add(x_3, x_1829); +x_1828 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1829 = lean_ctor_get(x_1828, 0); +lean_inc(x_1829); +x_1830 = lean_ctor_get(x_1828, 1); +lean_inc(x_1830); +lean_dec(x_1828); +x_1831 = lean_unsigned_to_nat(1u); +x_1832 = lean_nat_add(x_3, x_1831); lean_dec(x_3); -x_1831 = l_Lean_Elab_Term_mkExplicitBinder(x_1827, x_19); -x_1832 = lean_array_push(x_4, x_1831); -x_3 = x_1830; -x_4 = x_1832; -x_11 = x_1828; +x_1833 = l_Lean_Elab_Term_mkExplicitBinder(x_1829, x_19); +x_1834 = lean_array_push(x_4, x_1833); +x_3 = x_1832; +x_4 = x_1834; +x_11 = x_1830; goto _start; } } else { -lean_object* x_1834; lean_object* x_1835; lean_object* x_1836; +lean_object* x_1836; lean_object* x_1837; lean_object* x_1838; lean_dec(x_200); -x_1834 = lean_unsigned_to_nat(1u); -x_1835 = lean_nat_add(x_3, x_1834); +x_1836 = lean_unsigned_to_nat(1u); +x_1837 = lean_nat_add(x_3, x_1836); lean_dec(x_3); -x_1836 = lean_array_push(x_4, x_19); -x_3 = x_1835; -x_4 = x_1836; +x_1838 = lean_array_push(x_4, x_19); +x_3 = x_1837; +x_4 = x_1838; goto _start; } } else { -lean_object* x_1838; lean_object* x_1839; lean_object* x_1840; +lean_object* x_1840; lean_object* x_1841; lean_object* x_1842; lean_dec(x_200); -x_1838 = lean_unsigned_to_nat(1u); -x_1839 = lean_nat_add(x_3, x_1838); +x_1840 = lean_unsigned_to_nat(1u); +x_1841 = lean_nat_add(x_3, x_1840); lean_dec(x_3); -x_1840 = lean_array_push(x_4, x_19); -x_3 = x_1839; -x_4 = x_1840; +x_1842 = lean_array_push(x_4, x_19); +x_3 = x_1841; +x_4 = x_1842; goto _start; } } else { -lean_object* x_1842; lean_object* x_1843; lean_object* x_1844; +lean_object* x_1844; lean_object* x_1845; lean_object* x_1846; lean_dec(x_200); -x_1842 = lean_unsigned_to_nat(1u); -x_1843 = lean_nat_add(x_3, x_1842); +x_1844 = lean_unsigned_to_nat(1u); +x_1845 = lean_nat_add(x_3, x_1844); lean_dec(x_3); -x_1844 = lean_array_push(x_4, x_19); -x_3 = x_1843; -x_4 = x_1844; +x_1846 = lean_array_push(x_4, x_19); +x_3 = x_1845; +x_4 = x_1846; +goto _start; +} +} +else +{ +lean_object* x_1848; lean_object* x_1849; lean_object* x_1850; +lean_dec(x_200); +x_1848 = lean_unsigned_to_nat(1u); +x_1849 = lean_nat_add(x_3, x_1848); +lean_dec(x_3); +x_1850 = lean_array_push(x_4, x_19); +x_3 = x_1849; +x_4 = x_1850; goto _start; } } @@ -13019,2625 +13266,2625 @@ goto _start; } else { -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; uint8_t x_1858; +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; uint8_t x_1864; lean_dec(x_199); lean_dec(x_198); lean_dec(x_197); lean_dec(x_196); lean_dec(x_195); lean_inc(x_5); -x_1846 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1847 = lean_ctor_get(x_1846, 0); -lean_inc(x_1847); -x_1848 = lean_ctor_get(x_1846, 1); -lean_inc(x_1848); -lean_dec(x_1846); -x_1849 = lean_unsigned_to_nat(1u); -x_1850 = lean_nat_add(x_3, x_1849); +x_1852 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_1853 = lean_ctor_get(x_1852, 0); +lean_inc(x_1853); +x_1854 = lean_ctor_get(x_1852, 1); +lean_inc(x_1854); +lean_dec(x_1852); +x_1855 = lean_unsigned_to_nat(1u); +x_1856 = lean_nat_add(x_3, x_1855); lean_dec(x_3); -x_1851 = l_Lean_mkHole(x_19); -lean_inc(x_1847); -x_1852 = l_Lean_Elab_Term_mkExplicitBinder(x_1847, x_1851); -x_1853 = lean_array_push(x_4, x_1852); +x_1857 = l_Lean_mkHole(x_19); +lean_inc(x_1853); +x_1858 = l_Lean_Elab_Term_mkExplicitBinder(x_1853, x_1857); +x_1859 = lean_array_push(x_4, x_1858); lean_inc(x_5); -x_1854 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1850, x_1853, x_5, x_6, x_7, x_8, x_9, x_10, x_1848); -x_1855 = lean_ctor_get(x_1854, 0); -lean_inc(x_1855); -x_1856 = lean_ctor_get(x_1855, 1); -lean_inc(x_1856); -x_1857 = lean_ctor_get(x_1854, 1); -lean_inc(x_1857); -lean_dec(x_1854); -x_1858 = !lean_is_exclusive(x_1855); -if (x_1858 == 0) +x_1860 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1856, x_1859, x_5, x_6, x_7, x_8, x_9, x_10, x_1854); +x_1861 = lean_ctor_get(x_1860, 0); +lean_inc(x_1861); +x_1862 = lean_ctor_get(x_1861, 1); +lean_inc(x_1862); +x_1863 = lean_ctor_get(x_1860, 1); +lean_inc(x_1863); +lean_dec(x_1860); +x_1864 = !lean_is_exclusive(x_1861); +if (x_1864 == 0) { -lean_object* x_1859; uint8_t x_1860; -x_1859 = lean_ctor_get(x_1855, 1); -lean_dec(x_1859); -x_1860 = !lean_is_exclusive(x_1856); -if (x_1860 == 0) -{ -lean_object* x_1861; lean_object* x_1862; lean_object* x_1863; lean_object* x_1864; lean_object* x_1865; uint8_t x_1866; -x_1861 = lean_ctor_get(x_1856, 0); -x_1862 = lean_ctor_get(x_1856, 1); -lean_dec(x_1862); -x_1863 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1857); -lean_dec(x_5); -x_1864 = lean_ctor_get(x_1863, 1); -lean_inc(x_1864); -lean_dec(x_1863); -x_1865 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1864); -x_1866 = !lean_is_exclusive(x_1865); +lean_object* x_1865; uint8_t x_1866; +x_1865 = lean_ctor_get(x_1861, 1); +lean_dec(x_1865); +x_1866 = !lean_is_exclusive(x_1862); if (x_1866 == 0) { -lean_object* x_1867; lean_object* x_1868; lean_object* x_1869; lean_object* x_1870; lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; lean_object* x_1882; uint8_t x_1883; -x_1867 = lean_ctor_get(x_1865, 0); -lean_dec(x_1867); -x_1868 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1869 = lean_array_push(x_1868, x_1847); -x_1870 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1871 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1871, 0, x_1870); -lean_ctor_set(x_1871, 1, x_1869); -x_1872 = l_Array_empty___closed__1; -x_1873 = lean_array_push(x_1872, x_1871); -x_1874 = l_Lean_nullKind___closed__2; -x_1875 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1875, 0, x_1874); -lean_ctor_set(x_1875, 1, x_1873); -x_1876 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1877 = lean_array_push(x_1876, x_1875); -x_1878 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1879 = lean_array_push(x_1877, x_1878); -x_1880 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1881 = lean_array_push(x_1879, x_1880); -lean_inc(x_19); -x_1882 = lean_array_push(x_1872, x_19); -x_1883 = !lean_is_exclusive(x_19); -if (x_1883 == 0) +lean_object* x_1867; lean_object* x_1868; lean_object* x_1869; lean_object* x_1870; lean_object* x_1871; uint8_t x_1872; +x_1867 = lean_ctor_get(x_1862, 0); +x_1868 = lean_ctor_get(x_1862, 1); +lean_dec(x_1868); +x_1869 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1863); +lean_dec(x_5); +x_1870 = lean_ctor_get(x_1869, 1); +lean_inc(x_1870); +lean_dec(x_1869); +x_1871 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1870); +x_1872 = !lean_is_exclusive(x_1871); +if (x_1872 == 0) { -lean_object* x_1884; lean_object* x_1885; lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; lean_object* x_1889; lean_object* x_1890; lean_object* x_1891; lean_object* x_1892; lean_object* x_1893; lean_object* x_1894; lean_object* x_1895; lean_object* x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; lean_object* x_1900; uint8_t x_1901; lean_object* x_1902; -x_1884 = lean_ctor_get(x_19, 1); -lean_dec(x_1884); -x_1885 = lean_ctor_get(x_19, 0); -lean_dec(x_1885); -lean_ctor_set(x_19, 1, x_1882); -lean_ctor_set(x_19, 0, x_1874); -x_1886 = lean_array_push(x_1872, x_19); -x_1887 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1888 = lean_array_push(x_1886, x_1887); -x_1889 = lean_array_push(x_1888, x_1861); -x_1890 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1891 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1891, 0, x_1890); -lean_ctor_set(x_1891, 1, x_1889); -x_1892 = lean_array_push(x_1872, x_1891); -x_1893 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1893, 0, x_1874); -lean_ctor_set(x_1893, 1, x_1892); -x_1894 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1895 = lean_array_push(x_1894, x_1893); -x_1896 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; lean_object* x_1882; lean_object* x_1883; lean_object* x_1884; lean_object* x_1885; lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; uint8_t x_1889; +x_1873 = lean_ctor_get(x_1871, 0); +lean_dec(x_1873); +x_1874 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1875 = lean_array_push(x_1874, x_1853); +x_1876 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1877 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1877, 0, x_1876); +lean_ctor_set(x_1877, 1, x_1875); +x_1878 = l_Array_empty___closed__1; +x_1879 = lean_array_push(x_1878, x_1877); +x_1880 = l_Lean_nullKind___closed__2; +x_1881 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1881, 0, x_1880); +lean_ctor_set(x_1881, 1, x_1879); +x_1882 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1883 = lean_array_push(x_1882, x_1881); +x_1884 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1885 = lean_array_push(x_1883, x_1884); +x_1886 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1887 = lean_array_push(x_1885, x_1886); +lean_inc(x_19); +x_1888 = lean_array_push(x_1878, x_19); +x_1889 = !lean_is_exclusive(x_19); +if (x_1889 == 0) +{ +lean_object* x_1890; lean_object* x_1891; lean_object* x_1892; lean_object* x_1893; lean_object* x_1894; lean_object* x_1895; lean_object* x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; lean_object* x_1900; lean_object* x_1901; lean_object* x_1902; lean_object* x_1903; lean_object* x_1904; lean_object* x_1905; lean_object* x_1906; uint8_t x_1907; lean_object* x_1908; +x_1890 = lean_ctor_get(x_19, 1); +lean_dec(x_1890); +x_1891 = lean_ctor_get(x_19, 0); +lean_dec(x_1891); +lean_ctor_set(x_19, 1, x_1888); +lean_ctor_set(x_19, 0, x_1880); +x_1892 = lean_array_push(x_1878, x_19); +x_1893 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1894 = lean_array_push(x_1892, x_1893); +x_1895 = lean_array_push(x_1894, x_1867); +x_1896 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1897 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1897, 0, x_1896); lean_ctor_set(x_1897, 1, x_1895); -x_1898 = lean_array_push(x_1881, x_1897); -x_1899 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1900 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1900, 0, x_1899); -lean_ctor_set(x_1900, 1, x_1898); -x_1901 = 1; -x_1902 = lean_box(x_1901); -lean_ctor_set(x_1856, 1, x_1902); -lean_ctor_set(x_1856, 0, x_1900); -lean_ctor_set(x_1865, 0, x_1855); -return x_1865; +x_1898 = lean_array_push(x_1878, x_1897); +x_1899 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1899, 0, x_1880); +lean_ctor_set(x_1899, 1, x_1898); +x_1900 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1901 = lean_array_push(x_1900, x_1899); +x_1902 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1903 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1903, 0, x_1902); +lean_ctor_set(x_1903, 1, x_1901); +x_1904 = lean_array_push(x_1887, x_1903); +x_1905 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1906 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1906, 0, x_1905); +lean_ctor_set(x_1906, 1, x_1904); +x_1907 = 1; +x_1908 = lean_box(x_1907); +lean_ctor_set(x_1862, 1, x_1908); +lean_ctor_set(x_1862, 0, x_1906); +lean_ctor_set(x_1871, 0, x_1861); +return x_1871; } else { -lean_object* x_1903; lean_object* x_1904; lean_object* x_1905; lean_object* x_1906; lean_object* x_1907; lean_object* x_1908; lean_object* x_1909; lean_object* x_1910; lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; lean_object* x_1915; lean_object* x_1916; lean_object* x_1917; lean_object* x_1918; uint8_t x_1919; lean_object* x_1920; +lean_object* x_1909; lean_object* x_1910; lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; lean_object* x_1915; lean_object* x_1916; lean_object* x_1917; lean_object* x_1918; lean_object* x_1919; lean_object* x_1920; lean_object* x_1921; lean_object* x_1922; lean_object* x_1923; lean_object* x_1924; uint8_t x_1925; lean_object* x_1926; lean_dec(x_19); -x_1903 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1903, 0, x_1874); -lean_ctor_set(x_1903, 1, x_1882); -x_1904 = lean_array_push(x_1872, x_1903); -x_1905 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1906 = lean_array_push(x_1904, x_1905); -x_1907 = lean_array_push(x_1906, x_1861); -x_1908 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1909 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1909, 0, x_1908); -lean_ctor_set(x_1909, 1, x_1907); -x_1910 = lean_array_push(x_1872, x_1909); -x_1911 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1911, 0, x_1874); -lean_ctor_set(x_1911, 1, x_1910); -x_1912 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1913 = lean_array_push(x_1912, x_1911); -x_1914 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_ctor_set(x_1909, 0, x_1880); +lean_ctor_set(x_1909, 1, x_1888); +x_1910 = lean_array_push(x_1878, x_1909); +x_1911 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1912 = lean_array_push(x_1910, x_1911); +x_1913 = lean_array_push(x_1912, x_1867); +x_1914 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1915 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1915, 0, x_1914); lean_ctor_set(x_1915, 1, x_1913); -x_1916 = lean_array_push(x_1881, x_1915); -x_1917 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1918 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1918, 0, x_1917); -lean_ctor_set(x_1918, 1, x_1916); -x_1919 = 1; -x_1920 = lean_box(x_1919); -lean_ctor_set(x_1856, 1, x_1920); -lean_ctor_set(x_1856, 0, x_1918); -lean_ctor_set(x_1865, 0, x_1855); -return x_1865; +x_1916 = lean_array_push(x_1878, x_1915); +x_1917 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1917, 0, x_1880); +lean_ctor_set(x_1917, 1, x_1916); +x_1918 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1919 = lean_array_push(x_1918, x_1917); +x_1920 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1921 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1921, 0, x_1920); +lean_ctor_set(x_1921, 1, x_1919); +x_1922 = lean_array_push(x_1887, x_1921); +x_1923 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1924 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1924, 0, x_1923); +lean_ctor_set(x_1924, 1, x_1922); +x_1925 = 1; +x_1926 = lean_box(x_1925); +lean_ctor_set(x_1862, 1, x_1926); +lean_ctor_set(x_1862, 0, x_1924); +lean_ctor_set(x_1871, 0, x_1861); +return x_1871; } } else { -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; uint8_t x_1954; lean_object* x_1955; lean_object* x_1956; -x_1921 = lean_ctor_get(x_1865, 1); -lean_inc(x_1921); -lean_dec(x_1865); -x_1922 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1923 = lean_array_push(x_1922, x_1847); -x_1924 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1925 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1925, 0, x_1924); -lean_ctor_set(x_1925, 1, x_1923); -x_1926 = l_Array_empty___closed__1; -x_1927 = lean_array_push(x_1926, x_1925); -x_1928 = l_Lean_nullKind___closed__2; -x_1929 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1929, 0, x_1928); -lean_ctor_set(x_1929, 1, x_1927); -x_1930 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1931 = lean_array_push(x_1930, x_1929); -x_1932 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1933 = lean_array_push(x_1931, x_1932); -x_1934 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1935 = lean_array_push(x_1933, x_1934); +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; lean_object* x_1957; lean_object* x_1958; lean_object* x_1959; uint8_t x_1960; lean_object* x_1961; lean_object* x_1962; +x_1927 = lean_ctor_get(x_1871, 1); +lean_inc(x_1927); +lean_dec(x_1871); +x_1928 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1929 = lean_array_push(x_1928, x_1853); +x_1930 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1931 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1931, 0, x_1930); +lean_ctor_set(x_1931, 1, x_1929); +x_1932 = l_Array_empty___closed__1; +x_1933 = lean_array_push(x_1932, x_1931); +x_1934 = l_Lean_nullKind___closed__2; +x_1935 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1935, 0, x_1934); +lean_ctor_set(x_1935, 1, x_1933); +x_1936 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1937 = lean_array_push(x_1936, x_1935); +x_1938 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1939 = lean_array_push(x_1937, x_1938); +x_1940 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1941 = lean_array_push(x_1939, x_1940); lean_inc(x_19); -x_1936 = lean_array_push(x_1926, x_19); +x_1942 = lean_array_push(x_1932, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1937 = x_19; + x_1943 = x_19; } else { lean_dec_ref(x_19); - x_1937 = lean_box(0); + x_1943 = lean_box(0); } -if (lean_is_scalar(x_1937)) { - x_1938 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1943)) { + x_1944 = lean_alloc_ctor(1, 2, 0); } else { - x_1938 = x_1937; + x_1944 = x_1943; } -lean_ctor_set(x_1938, 0, x_1928); -lean_ctor_set(x_1938, 1, x_1936); -x_1939 = lean_array_push(x_1926, x_1938); -x_1940 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1941 = lean_array_push(x_1939, x_1940); -x_1942 = lean_array_push(x_1941, x_1861); -x_1943 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1944 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1944, 0, x_1943); +lean_ctor_set(x_1944, 0, x_1934); lean_ctor_set(x_1944, 1, x_1942); -x_1945 = lean_array_push(x_1926, x_1944); -x_1946 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1946, 0, x_1928); -lean_ctor_set(x_1946, 1, x_1945); -x_1947 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1948 = lean_array_push(x_1947, x_1946); -x_1949 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1945 = lean_array_push(x_1932, x_1944); +x_1946 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1947 = lean_array_push(x_1945, x_1946); +x_1948 = lean_array_push(x_1947, x_1867); +x_1949 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1950 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1950, 0, x_1949); lean_ctor_set(x_1950, 1, x_1948); -x_1951 = lean_array_push(x_1935, x_1950); -x_1952 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1953 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1953, 0, x_1952); -lean_ctor_set(x_1953, 1, x_1951); -x_1954 = 1; -x_1955 = lean_box(x_1954); -lean_ctor_set(x_1856, 1, x_1955); -lean_ctor_set(x_1856, 0, x_1953); -x_1956 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1956, 0, x_1855); -lean_ctor_set(x_1956, 1, x_1921); -return x_1956; +x_1951 = lean_array_push(x_1932, x_1950); +x_1952 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1952, 0, x_1934); +lean_ctor_set(x_1952, 1, x_1951); +x_1953 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1954 = lean_array_push(x_1953, x_1952); +x_1955 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1956 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1956, 0, x_1955); +lean_ctor_set(x_1956, 1, x_1954); +x_1957 = lean_array_push(x_1941, x_1956); +x_1958 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1959 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1959, 0, x_1958); +lean_ctor_set(x_1959, 1, x_1957); +x_1960 = 1; +x_1961 = lean_box(x_1960); +lean_ctor_set(x_1862, 1, x_1961); +lean_ctor_set(x_1862, 0, x_1959); +x_1962 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1962, 0, x_1861); +lean_ctor_set(x_1962, 1, x_1927); +return x_1962; } } else { -lean_object* x_1957; lean_object* x_1958; lean_object* x_1959; lean_object* x_1960; lean_object* x_1961; lean_object* x_1962; lean_object* x_1963; lean_object* x_1964; lean_object* x_1965; lean_object* x_1966; lean_object* x_1967; lean_object* x_1968; lean_object* x_1969; lean_object* x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; lean_object* x_1976; lean_object* x_1977; lean_object* x_1978; lean_object* x_1979; lean_object* x_1980; lean_object* x_1981; lean_object* x_1982; lean_object* x_1983; lean_object* x_1984; lean_object* x_1985; lean_object* x_1986; lean_object* x_1987; lean_object* x_1988; lean_object* x_1989; lean_object* x_1990; lean_object* x_1991; lean_object* x_1992; lean_object* x_1993; lean_object* x_1994; uint8_t x_1995; lean_object* x_1996; lean_object* x_1997; lean_object* x_1998; -x_1957 = lean_ctor_get(x_1856, 0); -lean_inc(x_1957); -lean_dec(x_1856); -x_1958 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1857); +lean_object* x_1963; lean_object* x_1964; lean_object* x_1965; lean_object* x_1966; lean_object* x_1967; lean_object* x_1968; lean_object* x_1969; lean_object* x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; lean_object* x_1976; lean_object* x_1977; lean_object* x_1978; lean_object* x_1979; lean_object* x_1980; lean_object* x_1981; lean_object* x_1982; lean_object* x_1983; lean_object* x_1984; lean_object* x_1985; lean_object* x_1986; lean_object* x_1987; lean_object* x_1988; lean_object* x_1989; lean_object* x_1990; lean_object* x_1991; lean_object* x_1992; lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; lean_object* x_1996; lean_object* x_1997; lean_object* x_1998; lean_object* x_1999; lean_object* x_2000; uint8_t x_2001; lean_object* x_2002; lean_object* x_2003; lean_object* x_2004; +x_1963 = lean_ctor_get(x_1862, 0); +lean_inc(x_1963); +lean_dec(x_1862); +x_1964 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1863); lean_dec(x_5); -x_1959 = lean_ctor_get(x_1958, 1); -lean_inc(x_1959); -lean_dec(x_1958); -x_1960 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1959); -x_1961 = lean_ctor_get(x_1960, 1); -lean_inc(x_1961); -if (lean_is_exclusive(x_1960)) { - lean_ctor_release(x_1960, 0); - lean_ctor_release(x_1960, 1); - x_1962 = x_1960; +x_1965 = lean_ctor_get(x_1964, 1); +lean_inc(x_1965); +lean_dec(x_1964); +x_1966 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_1965); +x_1967 = lean_ctor_get(x_1966, 1); +lean_inc(x_1967); +if (lean_is_exclusive(x_1966)) { + lean_ctor_release(x_1966, 0); + lean_ctor_release(x_1966, 1); + x_1968 = x_1966; } else { - lean_dec_ref(x_1960); - x_1962 = lean_box(0); + lean_dec_ref(x_1966); + x_1968 = lean_box(0); } -x_1963 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1964 = lean_array_push(x_1963, x_1847); -x_1965 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1966 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1966, 0, x_1965); -lean_ctor_set(x_1966, 1, x_1964); -x_1967 = l_Array_empty___closed__1; -x_1968 = lean_array_push(x_1967, x_1966); -x_1969 = l_Lean_nullKind___closed__2; -x_1970 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1970, 0, x_1969); -lean_ctor_set(x_1970, 1, x_1968); -x_1971 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1972 = lean_array_push(x_1971, x_1970); -x_1973 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_1974 = lean_array_push(x_1972, x_1973); -x_1975 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1976 = lean_array_push(x_1974, x_1975); +x_1969 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1970 = lean_array_push(x_1969, x_1853); +x_1971 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1972 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1972, 0, x_1971); +lean_ctor_set(x_1972, 1, x_1970); +x_1973 = l_Array_empty___closed__1; +x_1974 = lean_array_push(x_1973, x_1972); +x_1975 = l_Lean_nullKind___closed__2; +x_1976 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1976, 0, x_1975); +lean_ctor_set(x_1976, 1, x_1974); +x_1977 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1978 = lean_array_push(x_1977, x_1976); +x_1979 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_1980 = lean_array_push(x_1978, x_1979); +x_1981 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1982 = lean_array_push(x_1980, x_1981); lean_inc(x_19); -x_1977 = lean_array_push(x_1967, x_19); +x_1983 = lean_array_push(x_1973, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1978 = x_19; + x_1984 = x_19; } else { lean_dec_ref(x_19); - x_1978 = lean_box(0); + x_1984 = lean_box(0); } -if (lean_is_scalar(x_1978)) { - x_1979 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1984)) { + x_1985 = lean_alloc_ctor(1, 2, 0); } else { - x_1979 = x_1978; + x_1985 = x_1984; } -lean_ctor_set(x_1979, 0, x_1969); -lean_ctor_set(x_1979, 1, x_1977); -x_1980 = lean_array_push(x_1967, x_1979); -x_1981 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_1982 = lean_array_push(x_1980, x_1981); -x_1983 = lean_array_push(x_1982, x_1957); -x_1984 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1985 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1985, 0, x_1984); +lean_ctor_set(x_1985, 0, x_1975); lean_ctor_set(x_1985, 1, x_1983); -x_1986 = lean_array_push(x_1967, x_1985); -x_1987 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1987, 0, x_1969); -lean_ctor_set(x_1987, 1, x_1986); -x_1988 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1989 = lean_array_push(x_1988, x_1987); -x_1990 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1986 = lean_array_push(x_1973, x_1985); +x_1987 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_1988 = lean_array_push(x_1986, x_1987); +x_1989 = lean_array_push(x_1988, x_1963); +x_1990 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_1991 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1991, 0, x_1990); lean_ctor_set(x_1991, 1, x_1989); -x_1992 = lean_array_push(x_1976, x_1991); -x_1993 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1994 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1994, 0, x_1993); -lean_ctor_set(x_1994, 1, x_1992); -x_1995 = 1; -x_1996 = lean_box(x_1995); -x_1997 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1997, 0, x_1994); -lean_ctor_set(x_1997, 1, x_1996); -lean_ctor_set(x_1855, 1, x_1997); -if (lean_is_scalar(x_1962)) { - x_1998 = lean_alloc_ctor(0, 2, 0); +x_1992 = lean_array_push(x_1973, x_1991); +x_1993 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1993, 0, x_1975); +lean_ctor_set(x_1993, 1, x_1992); +x_1994 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1995 = lean_array_push(x_1994, x_1993); +x_1996 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1997 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1997, 0, x_1996); +lean_ctor_set(x_1997, 1, x_1995); +x_1998 = lean_array_push(x_1982, x_1997); +x_1999 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2000 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2000, 0, x_1999); +lean_ctor_set(x_2000, 1, x_1998); +x_2001 = 1; +x_2002 = lean_box(x_2001); +x_2003 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2003, 0, x_2000); +lean_ctor_set(x_2003, 1, x_2002); +lean_ctor_set(x_1861, 1, x_2003); +if (lean_is_scalar(x_1968)) { + x_2004 = lean_alloc_ctor(0, 2, 0); } else { - x_1998 = x_1962; + x_2004 = x_1968; } -lean_ctor_set(x_1998, 0, x_1855); -lean_ctor_set(x_1998, 1, x_1961); -return x_1998; +lean_ctor_set(x_2004, 0, x_1861); +lean_ctor_set(x_2004, 1, x_1967); +return x_2004; } } else { -lean_object* x_1999; lean_object* x_2000; lean_object* x_2001; lean_object* x_2002; lean_object* x_2003; lean_object* x_2004; lean_object* x_2005; lean_object* x_2006; lean_object* x_2007; lean_object* x_2008; lean_object* x_2009; lean_object* x_2010; lean_object* x_2011; lean_object* x_2012; lean_object* x_2013; lean_object* x_2014; lean_object* x_2015; lean_object* x_2016; lean_object* x_2017; lean_object* x_2018; lean_object* x_2019; lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; lean_object* x_2023; lean_object* x_2024; lean_object* x_2025; lean_object* x_2026; lean_object* x_2027; lean_object* x_2028; lean_object* x_2029; lean_object* x_2030; lean_object* x_2031; lean_object* x_2032; lean_object* x_2033; lean_object* x_2034; lean_object* x_2035; lean_object* x_2036; lean_object* x_2037; lean_object* x_2038; uint8_t x_2039; lean_object* x_2040; lean_object* x_2041; lean_object* x_2042; lean_object* x_2043; -x_1999 = lean_ctor_get(x_1855, 0); -lean_inc(x_1999); -lean_dec(x_1855); -x_2000 = lean_ctor_get(x_1856, 0); -lean_inc(x_2000); -if (lean_is_exclusive(x_1856)) { - lean_ctor_release(x_1856, 0); - lean_ctor_release(x_1856, 1); - x_2001 = x_1856; -} else { - lean_dec_ref(x_1856); - x_2001 = lean_box(0); -} -x_2002 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1857); -lean_dec(x_5); -x_2003 = lean_ctor_get(x_2002, 1); -lean_inc(x_2003); -lean_dec(x_2002); -x_2004 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2003); -x_2005 = lean_ctor_get(x_2004, 1); +lean_object* x_2005; lean_object* x_2006; lean_object* x_2007; lean_object* x_2008; lean_object* x_2009; lean_object* x_2010; lean_object* x_2011; lean_object* x_2012; lean_object* x_2013; lean_object* x_2014; lean_object* x_2015; lean_object* x_2016; lean_object* x_2017; lean_object* x_2018; lean_object* x_2019; lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; lean_object* x_2023; lean_object* x_2024; lean_object* x_2025; lean_object* x_2026; lean_object* x_2027; lean_object* x_2028; lean_object* x_2029; lean_object* x_2030; lean_object* x_2031; lean_object* x_2032; lean_object* x_2033; lean_object* x_2034; lean_object* x_2035; lean_object* x_2036; lean_object* x_2037; lean_object* x_2038; lean_object* x_2039; lean_object* x_2040; lean_object* x_2041; lean_object* x_2042; lean_object* x_2043; lean_object* x_2044; uint8_t x_2045; lean_object* x_2046; lean_object* x_2047; lean_object* x_2048; lean_object* x_2049; +x_2005 = lean_ctor_get(x_1861, 0); lean_inc(x_2005); -if (lean_is_exclusive(x_2004)) { - lean_ctor_release(x_2004, 0); - lean_ctor_release(x_2004, 1); - x_2006 = x_2004; +lean_dec(x_1861); +x_2006 = lean_ctor_get(x_1862, 0); +lean_inc(x_2006); +if (lean_is_exclusive(x_1862)) { + lean_ctor_release(x_1862, 0); + lean_ctor_release(x_1862, 1); + x_2007 = x_1862; } else { - lean_dec_ref(x_2004); - x_2006 = lean_box(0); + lean_dec_ref(x_1862); + x_2007 = lean_box(0); } -x_2007 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2008 = lean_array_push(x_2007, x_1847); -x_2009 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2010 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2010, 0, x_2009); -lean_ctor_set(x_2010, 1, x_2008); -x_2011 = l_Array_empty___closed__1; -x_2012 = lean_array_push(x_2011, x_2010); -x_2013 = l_Lean_nullKind___closed__2; -x_2014 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2014, 0, x_2013); -lean_ctor_set(x_2014, 1, x_2012); -x_2015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2016 = lean_array_push(x_2015, x_2014); -x_2017 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2018 = lean_array_push(x_2016, x_2017); -x_2019 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2020 = lean_array_push(x_2018, x_2019); +x_2008 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_1863); +lean_dec(x_5); +x_2009 = lean_ctor_get(x_2008, 1); +lean_inc(x_2009); +lean_dec(x_2008); +x_2010 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2009); +x_2011 = lean_ctor_get(x_2010, 1); +lean_inc(x_2011); +if (lean_is_exclusive(x_2010)) { + lean_ctor_release(x_2010, 0); + lean_ctor_release(x_2010, 1); + x_2012 = x_2010; +} else { + lean_dec_ref(x_2010); + x_2012 = lean_box(0); +} +x_2013 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2014 = lean_array_push(x_2013, x_1853); +x_2015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2016 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2016, 0, x_2015); +lean_ctor_set(x_2016, 1, x_2014); +x_2017 = l_Array_empty___closed__1; +x_2018 = lean_array_push(x_2017, x_2016); +x_2019 = l_Lean_nullKind___closed__2; +x_2020 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2020, 0, x_2019); +lean_ctor_set(x_2020, 1, x_2018); +x_2021 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2022 = lean_array_push(x_2021, x_2020); +x_2023 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2024 = lean_array_push(x_2022, x_2023); +x_2025 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2026 = lean_array_push(x_2024, x_2025); lean_inc(x_19); -x_2021 = lean_array_push(x_2011, x_19); +x_2027 = lean_array_push(x_2017, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2022 = x_19; + x_2028 = x_19; } else { lean_dec_ref(x_19); - x_2022 = lean_box(0); + x_2028 = lean_box(0); } -if (lean_is_scalar(x_2022)) { - x_2023 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2028)) { + x_2029 = lean_alloc_ctor(1, 2, 0); } else { - x_2023 = x_2022; + x_2029 = x_2028; } -lean_ctor_set(x_2023, 0, x_2013); -lean_ctor_set(x_2023, 1, x_2021); -x_2024 = lean_array_push(x_2011, x_2023); -x_2025 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2026 = lean_array_push(x_2024, x_2025); -x_2027 = lean_array_push(x_2026, x_2000); -x_2028 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2029 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2029, 0, x_2028); +lean_ctor_set(x_2029, 0, x_2019); lean_ctor_set(x_2029, 1, x_2027); -x_2030 = lean_array_push(x_2011, x_2029); -x_2031 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2031, 0, x_2013); -lean_ctor_set(x_2031, 1, x_2030); -x_2032 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2033 = lean_array_push(x_2032, x_2031); -x_2034 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2030 = lean_array_push(x_2017, x_2029); +x_2031 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2032 = lean_array_push(x_2030, x_2031); +x_2033 = lean_array_push(x_2032, x_2006); +x_2034 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2035 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2035, 0, x_2034); lean_ctor_set(x_2035, 1, x_2033); -x_2036 = lean_array_push(x_2020, x_2035); -x_2037 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2038 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2038, 0, x_2037); -lean_ctor_set(x_2038, 1, x_2036); -x_2039 = 1; -x_2040 = lean_box(x_2039); -if (lean_is_scalar(x_2001)) { - x_2041 = lean_alloc_ctor(0, 2, 0); +x_2036 = lean_array_push(x_2017, x_2035); +x_2037 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2037, 0, x_2019); +lean_ctor_set(x_2037, 1, x_2036); +x_2038 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2039 = lean_array_push(x_2038, x_2037); +x_2040 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2041 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2041, 0, x_2040); +lean_ctor_set(x_2041, 1, x_2039); +x_2042 = lean_array_push(x_2026, x_2041); +x_2043 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2044 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2044, 0, x_2043); +lean_ctor_set(x_2044, 1, x_2042); +x_2045 = 1; +x_2046 = lean_box(x_2045); +if (lean_is_scalar(x_2007)) { + x_2047 = lean_alloc_ctor(0, 2, 0); } else { - x_2041 = x_2001; + x_2047 = x_2007; } -lean_ctor_set(x_2041, 0, x_2038); -lean_ctor_set(x_2041, 1, x_2040); -x_2042 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2042, 0, x_1999); -lean_ctor_set(x_2042, 1, x_2041); -if (lean_is_scalar(x_2006)) { - x_2043 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2047, 0, x_2044); +lean_ctor_set(x_2047, 1, x_2046); +x_2048 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2048, 0, x_2005); +lean_ctor_set(x_2048, 1, x_2047); +if (lean_is_scalar(x_2012)) { + x_2049 = lean_alloc_ctor(0, 2, 0); } else { - x_2043 = x_2006; + x_2049 = x_2012; } -lean_ctor_set(x_2043, 0, x_2042); -lean_ctor_set(x_2043, 1, x_2005); -return x_2043; +lean_ctor_set(x_2049, 0, x_2048); +lean_ctor_set(x_2049, 1, x_2011); +return x_2049; } } } else { -lean_object* x_2044; lean_object* x_2045; lean_object* x_2046; lean_object* x_2047; lean_object* x_2048; lean_object* x_2049; lean_object* x_2050; lean_object* x_2051; lean_object* x_2052; lean_object* x_2053; lean_object* x_2054; lean_object* x_2055; uint8_t x_2056; +lean_object* x_2050; lean_object* x_2051; lean_object* x_2052; lean_object* x_2053; lean_object* x_2054; lean_object* x_2055; lean_object* x_2056; lean_object* x_2057; lean_object* x_2058; lean_object* x_2059; lean_object* x_2060; lean_object* x_2061; uint8_t x_2062; lean_dec(x_198); lean_dec(x_197); lean_dec(x_196); lean_dec(x_195); lean_inc(x_5); -x_2044 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2045 = lean_ctor_get(x_2044, 0); -lean_inc(x_2045); -x_2046 = lean_ctor_get(x_2044, 1); -lean_inc(x_2046); -lean_dec(x_2044); -x_2047 = lean_unsigned_to_nat(1u); -x_2048 = lean_nat_add(x_3, x_2047); +x_2050 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2051 = lean_ctor_get(x_2050, 0); +lean_inc(x_2051); +x_2052 = lean_ctor_get(x_2050, 1); +lean_inc(x_2052); +lean_dec(x_2050); +x_2053 = lean_unsigned_to_nat(1u); +x_2054 = lean_nat_add(x_3, x_2053); lean_dec(x_3); -x_2049 = l_Lean_mkHole(x_19); -lean_inc(x_2045); -x_2050 = l_Lean_Elab_Term_mkExplicitBinder(x_2045, x_2049); -x_2051 = lean_array_push(x_4, x_2050); +x_2055 = l_Lean_mkHole(x_19); +lean_inc(x_2051); +x_2056 = l_Lean_Elab_Term_mkExplicitBinder(x_2051, x_2055); +x_2057 = lean_array_push(x_4, x_2056); lean_inc(x_5); -x_2052 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2048, x_2051, x_5, x_6, x_7, x_8, x_9, x_10, x_2046); -x_2053 = lean_ctor_get(x_2052, 0); -lean_inc(x_2053); -x_2054 = lean_ctor_get(x_2053, 1); -lean_inc(x_2054); -x_2055 = lean_ctor_get(x_2052, 1); -lean_inc(x_2055); -lean_dec(x_2052); -x_2056 = !lean_is_exclusive(x_2053); -if (x_2056 == 0) +x_2058 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2054, x_2057, x_5, x_6, x_7, x_8, x_9, x_10, x_2052); +x_2059 = lean_ctor_get(x_2058, 0); +lean_inc(x_2059); +x_2060 = lean_ctor_get(x_2059, 1); +lean_inc(x_2060); +x_2061 = lean_ctor_get(x_2058, 1); +lean_inc(x_2061); +lean_dec(x_2058); +x_2062 = !lean_is_exclusive(x_2059); +if (x_2062 == 0) { -lean_object* x_2057; uint8_t x_2058; -x_2057 = lean_ctor_get(x_2053, 1); -lean_dec(x_2057); -x_2058 = !lean_is_exclusive(x_2054); -if (x_2058 == 0) -{ -lean_object* x_2059; lean_object* x_2060; lean_object* x_2061; lean_object* x_2062; lean_object* x_2063; uint8_t x_2064; -x_2059 = lean_ctor_get(x_2054, 0); -x_2060 = lean_ctor_get(x_2054, 1); -lean_dec(x_2060); -x_2061 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2055); -lean_dec(x_5); -x_2062 = lean_ctor_get(x_2061, 1); -lean_inc(x_2062); -lean_dec(x_2061); -x_2063 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2062); -x_2064 = !lean_is_exclusive(x_2063); +lean_object* x_2063; uint8_t x_2064; +x_2063 = lean_ctor_get(x_2059, 1); +lean_dec(x_2063); +x_2064 = !lean_is_exclusive(x_2060); if (x_2064 == 0) { -lean_object* x_2065; lean_object* x_2066; lean_object* x_2067; lean_object* x_2068; lean_object* x_2069; lean_object* x_2070; lean_object* x_2071; lean_object* x_2072; lean_object* x_2073; lean_object* x_2074; lean_object* x_2075; lean_object* x_2076; lean_object* x_2077; lean_object* x_2078; lean_object* x_2079; lean_object* x_2080; uint8_t x_2081; -x_2065 = lean_ctor_get(x_2063, 0); -lean_dec(x_2065); -x_2066 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2067 = lean_array_push(x_2066, x_2045); -x_2068 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2069 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2069, 0, x_2068); -lean_ctor_set(x_2069, 1, x_2067); -x_2070 = l_Array_empty___closed__1; -x_2071 = lean_array_push(x_2070, x_2069); -x_2072 = l_Lean_nullKind___closed__2; -x_2073 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2073, 0, x_2072); -lean_ctor_set(x_2073, 1, x_2071); -x_2074 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2075 = lean_array_push(x_2074, x_2073); -x_2076 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2077 = lean_array_push(x_2075, x_2076); -x_2078 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2079 = lean_array_push(x_2077, x_2078); -lean_inc(x_19); -x_2080 = lean_array_push(x_2070, x_19); -x_2081 = !lean_is_exclusive(x_19); -if (x_2081 == 0) +lean_object* x_2065; lean_object* x_2066; lean_object* x_2067; lean_object* x_2068; lean_object* x_2069; uint8_t x_2070; +x_2065 = lean_ctor_get(x_2060, 0); +x_2066 = lean_ctor_get(x_2060, 1); +lean_dec(x_2066); +x_2067 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2061); +lean_dec(x_5); +x_2068 = lean_ctor_get(x_2067, 1); +lean_inc(x_2068); +lean_dec(x_2067); +x_2069 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2068); +x_2070 = !lean_is_exclusive(x_2069); +if (x_2070 == 0) { -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; uint8_t x_2099; lean_object* x_2100; -x_2082 = lean_ctor_get(x_19, 1); -lean_dec(x_2082); -x_2083 = lean_ctor_get(x_19, 0); -lean_dec(x_2083); -lean_ctor_set(x_19, 1, x_2080); -lean_ctor_set(x_19, 0, x_2072); -x_2084 = lean_array_push(x_2070, x_19); -x_2085 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2086 = lean_array_push(x_2084, x_2085); -x_2087 = lean_array_push(x_2086, x_2059); -x_2088 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2089 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2089, 0, x_2088); -lean_ctor_set(x_2089, 1, x_2087); -x_2090 = lean_array_push(x_2070, x_2089); -x_2091 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2091, 0, x_2072); -lean_ctor_set(x_2091, 1, x_2090); -x_2092 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2093 = lean_array_push(x_2092, x_2091); -x_2094 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_object* x_2071; lean_object* x_2072; lean_object* x_2073; lean_object* x_2074; lean_object* x_2075; lean_object* x_2076; lean_object* x_2077; lean_object* x_2078; lean_object* x_2079; lean_object* x_2080; lean_object* x_2081; lean_object* x_2082; lean_object* x_2083; lean_object* x_2084; lean_object* x_2085; lean_object* x_2086; uint8_t x_2087; +x_2071 = lean_ctor_get(x_2069, 0); +lean_dec(x_2071); +x_2072 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2073 = lean_array_push(x_2072, x_2051); +x_2074 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2075 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2075, 0, x_2074); +lean_ctor_set(x_2075, 1, x_2073); +x_2076 = l_Array_empty___closed__1; +x_2077 = lean_array_push(x_2076, x_2075); +x_2078 = l_Lean_nullKind___closed__2; +x_2079 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2079, 0, x_2078); +lean_ctor_set(x_2079, 1, x_2077); +x_2080 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2081 = lean_array_push(x_2080, x_2079); +x_2082 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2083 = lean_array_push(x_2081, x_2082); +x_2084 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2085 = lean_array_push(x_2083, x_2084); +lean_inc(x_19); +x_2086 = lean_array_push(x_2076, x_19); +x_2087 = !lean_is_exclusive(x_19); +if (x_2087 == 0) +{ +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; uint8_t x_2105; lean_object* x_2106; +x_2088 = lean_ctor_get(x_19, 1); +lean_dec(x_2088); +x_2089 = lean_ctor_get(x_19, 0); +lean_dec(x_2089); +lean_ctor_set(x_19, 1, x_2086); +lean_ctor_set(x_19, 0, x_2078); +x_2090 = lean_array_push(x_2076, x_19); +x_2091 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2092 = lean_array_push(x_2090, x_2091); +x_2093 = lean_array_push(x_2092, x_2065); +x_2094 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; 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 = lean_array_push(x_2079, x_2095); -x_2097 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2098 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2098, 0, x_2097); -lean_ctor_set(x_2098, 1, x_2096); -x_2099 = 1; -x_2100 = lean_box(x_2099); -lean_ctor_set(x_2054, 1, x_2100); -lean_ctor_set(x_2054, 0, x_2098); -lean_ctor_set(x_2063, 0, x_2053); -return x_2063; +x_2096 = lean_array_push(x_2076, x_2095); +x_2097 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2097, 0, x_2078); +lean_ctor_set(x_2097, 1, x_2096); +x_2098 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2099 = lean_array_push(x_2098, x_2097); +x_2100 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2101, 0, x_2100); +lean_ctor_set(x_2101, 1, x_2099); +x_2102 = lean_array_push(x_2085, x_2101); +x_2103 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2104, 0, x_2103); +lean_ctor_set(x_2104, 1, x_2102); +x_2105 = 1; +x_2106 = lean_box(x_2105); +lean_ctor_set(x_2060, 1, x_2106); +lean_ctor_set(x_2060, 0, x_2104); +lean_ctor_set(x_2069, 0, x_2059); +return x_2069; } else { -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; uint8_t x_2117; lean_object* x_2118; +lean_object* x_2107; lean_object* x_2108; lean_object* x_2109; lean_object* x_2110; lean_object* x_2111; lean_object* x_2112; lean_object* x_2113; lean_object* x_2114; lean_object* x_2115; lean_object* x_2116; lean_object* x_2117; lean_object* x_2118; lean_object* x_2119; lean_object* x_2120; lean_object* x_2121; lean_object* x_2122; uint8_t x_2123; lean_object* x_2124; lean_dec(x_19); -x_2101 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2101, 0, x_2072); -lean_ctor_set(x_2101, 1, x_2080); -x_2102 = lean_array_push(x_2070, x_2101); -x_2103 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2104 = lean_array_push(x_2102, x_2103); -x_2105 = lean_array_push(x_2104, x_2059); -x_2106 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2107, 0, x_2106); -lean_ctor_set(x_2107, 1, x_2105); -x_2108 = lean_array_push(x_2070, x_2107); -x_2109 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2109, 0, x_2072); -lean_ctor_set(x_2109, 1, x_2108); -x_2110 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2111 = lean_array_push(x_2110, x_2109); -x_2112 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_ctor_set(x_2107, 0, x_2078); +lean_ctor_set(x_2107, 1, x_2086); +x_2108 = lean_array_push(x_2076, x_2107); +x_2109 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2110 = lean_array_push(x_2108, x_2109); +x_2111 = lean_array_push(x_2110, x_2065); +x_2112 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2113, 0, x_2112); lean_ctor_set(x_2113, 1, x_2111); -x_2114 = lean_array_push(x_2079, x_2113); -x_2115 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2116, 0, x_2115); -lean_ctor_set(x_2116, 1, x_2114); -x_2117 = 1; -x_2118 = lean_box(x_2117); -lean_ctor_set(x_2054, 1, x_2118); -lean_ctor_set(x_2054, 0, x_2116); -lean_ctor_set(x_2063, 0, x_2053); -return x_2063; +x_2114 = lean_array_push(x_2076, x_2113); +x_2115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2115, 0, x_2078); +lean_ctor_set(x_2115, 1, x_2114); +x_2116 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2117 = lean_array_push(x_2116, x_2115); +x_2118 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2119, 0, x_2118); +lean_ctor_set(x_2119, 1, x_2117); +x_2120 = lean_array_push(x_2085, x_2119); +x_2121 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2122, 0, x_2121); +lean_ctor_set(x_2122, 1, x_2120); +x_2123 = 1; +x_2124 = lean_box(x_2123); +lean_ctor_set(x_2060, 1, x_2124); +lean_ctor_set(x_2060, 0, x_2122); +lean_ctor_set(x_2069, 0, x_2059); +return x_2069; } } else { -lean_object* x_2119; lean_object* x_2120; 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; lean_object* x_2129; lean_object* x_2130; lean_object* x_2131; lean_object* x_2132; lean_object* x_2133; lean_object* x_2134; lean_object* x_2135; lean_object* x_2136; lean_object* x_2137; lean_object* x_2138; lean_object* x_2139; lean_object* x_2140; lean_object* x_2141; lean_object* x_2142; lean_object* x_2143; lean_object* x_2144; lean_object* x_2145; lean_object* x_2146; lean_object* x_2147; lean_object* x_2148; lean_object* x_2149; lean_object* x_2150; lean_object* x_2151; uint8_t x_2152; lean_object* x_2153; lean_object* x_2154; -x_2119 = lean_ctor_get(x_2063, 1); -lean_inc(x_2119); -lean_dec(x_2063); -x_2120 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2121 = lean_array_push(x_2120, x_2045); -x_2122 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2123, 0, x_2122); -lean_ctor_set(x_2123, 1, x_2121); -x_2124 = l_Array_empty___closed__1; -x_2125 = lean_array_push(x_2124, x_2123); -x_2126 = l_Lean_nullKind___closed__2; -x_2127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2127, 0, x_2126); -lean_ctor_set(x_2127, 1, x_2125); -x_2128 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2129 = lean_array_push(x_2128, x_2127); -x_2130 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2131 = lean_array_push(x_2129, x_2130); -x_2132 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2133 = lean_array_push(x_2131, x_2132); +lean_object* x_2125; lean_object* x_2126; lean_object* x_2127; lean_object* x_2128; lean_object* x_2129; lean_object* x_2130; lean_object* x_2131; lean_object* x_2132; lean_object* x_2133; lean_object* x_2134; lean_object* x_2135; lean_object* x_2136; lean_object* x_2137; lean_object* x_2138; lean_object* x_2139; lean_object* x_2140; lean_object* x_2141; lean_object* x_2142; lean_object* x_2143; lean_object* x_2144; lean_object* x_2145; lean_object* x_2146; lean_object* x_2147; lean_object* x_2148; lean_object* x_2149; lean_object* x_2150; lean_object* x_2151; lean_object* x_2152; lean_object* x_2153; lean_object* x_2154; lean_object* x_2155; lean_object* x_2156; lean_object* x_2157; uint8_t x_2158; lean_object* x_2159; lean_object* x_2160; +x_2125 = lean_ctor_get(x_2069, 1); +lean_inc(x_2125); +lean_dec(x_2069); +x_2126 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2127 = lean_array_push(x_2126, x_2051); +x_2128 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2129, 0, x_2128); +lean_ctor_set(x_2129, 1, x_2127); +x_2130 = l_Array_empty___closed__1; +x_2131 = lean_array_push(x_2130, x_2129); +x_2132 = l_Lean_nullKind___closed__2; +x_2133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2133, 0, x_2132); +lean_ctor_set(x_2133, 1, x_2131); +x_2134 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2135 = lean_array_push(x_2134, x_2133); +x_2136 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2137 = lean_array_push(x_2135, x_2136); +x_2138 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2139 = lean_array_push(x_2137, x_2138); lean_inc(x_19); -x_2134 = lean_array_push(x_2124, x_19); +x_2140 = lean_array_push(x_2130, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2135 = x_19; + x_2141 = x_19; } else { lean_dec_ref(x_19); - x_2135 = lean_box(0); + x_2141 = lean_box(0); } -if (lean_is_scalar(x_2135)) { - x_2136 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2141)) { + x_2142 = lean_alloc_ctor(1, 2, 0); } else { - x_2136 = x_2135; + x_2142 = x_2141; } -lean_ctor_set(x_2136, 0, x_2126); -lean_ctor_set(x_2136, 1, x_2134); -x_2137 = lean_array_push(x_2124, x_2136); -x_2138 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2139 = lean_array_push(x_2137, x_2138); -x_2140 = lean_array_push(x_2139, x_2059); -x_2141 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2142, 0, x_2141); +lean_ctor_set(x_2142, 0, x_2132); lean_ctor_set(x_2142, 1, x_2140); -x_2143 = lean_array_push(x_2124, x_2142); -x_2144 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2144, 0, x_2126); -lean_ctor_set(x_2144, 1, x_2143); -x_2145 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2146 = lean_array_push(x_2145, x_2144); -x_2147 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2143 = lean_array_push(x_2130, x_2142); +x_2144 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2145 = lean_array_push(x_2143, x_2144); +x_2146 = lean_array_push(x_2145, x_2065); +x_2147 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2148 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2148, 0, x_2147); lean_ctor_set(x_2148, 1, x_2146); -x_2149 = lean_array_push(x_2133, x_2148); -x_2150 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2151, 0, x_2150); -lean_ctor_set(x_2151, 1, x_2149); -x_2152 = 1; -x_2153 = lean_box(x_2152); -lean_ctor_set(x_2054, 1, x_2153); -lean_ctor_set(x_2054, 0, x_2151); -x_2154 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2154, 0, x_2053); -lean_ctor_set(x_2154, 1, x_2119); -return x_2154; +x_2149 = lean_array_push(x_2130, x_2148); +x_2150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2150, 0, x_2132); +lean_ctor_set(x_2150, 1, x_2149); +x_2151 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2152 = lean_array_push(x_2151, x_2150); +x_2153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2154, 0, x_2153); +lean_ctor_set(x_2154, 1, x_2152); +x_2155 = lean_array_push(x_2139, x_2154); +x_2156 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2157 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2157, 0, x_2156); +lean_ctor_set(x_2157, 1, x_2155); +x_2158 = 1; +x_2159 = lean_box(x_2158); +lean_ctor_set(x_2060, 1, x_2159); +lean_ctor_set(x_2060, 0, x_2157); +x_2160 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2160, 0, x_2059); +lean_ctor_set(x_2160, 1, x_2125); +return x_2160; } } else { -lean_object* x_2155; lean_object* x_2156; lean_object* x_2157; lean_object* x_2158; lean_object* x_2159; lean_object* x_2160; lean_object* x_2161; lean_object* x_2162; lean_object* x_2163; lean_object* x_2164; lean_object* x_2165; lean_object* x_2166; lean_object* x_2167; lean_object* x_2168; lean_object* x_2169; lean_object* x_2170; lean_object* x_2171; lean_object* x_2172; lean_object* x_2173; lean_object* x_2174; lean_object* x_2175; lean_object* x_2176; lean_object* x_2177; lean_object* x_2178; lean_object* x_2179; lean_object* x_2180; lean_object* x_2181; lean_object* x_2182; lean_object* x_2183; lean_object* x_2184; lean_object* x_2185; lean_object* x_2186; lean_object* x_2187; lean_object* x_2188; lean_object* x_2189; lean_object* x_2190; lean_object* x_2191; lean_object* x_2192; uint8_t x_2193; lean_object* x_2194; lean_object* x_2195; lean_object* x_2196; -x_2155 = lean_ctor_get(x_2054, 0); -lean_inc(x_2155); -lean_dec(x_2054); -x_2156 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2055); +lean_object* x_2161; lean_object* x_2162; lean_object* x_2163; lean_object* x_2164; lean_object* x_2165; lean_object* x_2166; lean_object* x_2167; lean_object* x_2168; lean_object* x_2169; lean_object* x_2170; lean_object* x_2171; lean_object* x_2172; lean_object* x_2173; lean_object* x_2174; lean_object* x_2175; lean_object* x_2176; lean_object* x_2177; lean_object* x_2178; lean_object* x_2179; lean_object* x_2180; lean_object* x_2181; lean_object* x_2182; lean_object* x_2183; lean_object* x_2184; lean_object* x_2185; lean_object* x_2186; lean_object* x_2187; lean_object* x_2188; lean_object* x_2189; lean_object* x_2190; lean_object* x_2191; lean_object* x_2192; lean_object* x_2193; lean_object* x_2194; lean_object* x_2195; lean_object* x_2196; lean_object* x_2197; lean_object* x_2198; uint8_t x_2199; lean_object* x_2200; lean_object* x_2201; lean_object* x_2202; +x_2161 = lean_ctor_get(x_2060, 0); +lean_inc(x_2161); +lean_dec(x_2060); +x_2162 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2061); lean_dec(x_5); -x_2157 = lean_ctor_get(x_2156, 1); -lean_inc(x_2157); -lean_dec(x_2156); -x_2158 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2157); -x_2159 = lean_ctor_get(x_2158, 1); -lean_inc(x_2159); -if (lean_is_exclusive(x_2158)) { - lean_ctor_release(x_2158, 0); - lean_ctor_release(x_2158, 1); - x_2160 = x_2158; +x_2163 = lean_ctor_get(x_2162, 1); +lean_inc(x_2163); +lean_dec(x_2162); +x_2164 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2163); +x_2165 = lean_ctor_get(x_2164, 1); +lean_inc(x_2165); +if (lean_is_exclusive(x_2164)) { + lean_ctor_release(x_2164, 0); + lean_ctor_release(x_2164, 1); + x_2166 = x_2164; } else { - lean_dec_ref(x_2158); - x_2160 = lean_box(0); + lean_dec_ref(x_2164); + x_2166 = lean_box(0); } -x_2161 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2162 = lean_array_push(x_2161, x_2045); -x_2163 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2164 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2164, 0, x_2163); -lean_ctor_set(x_2164, 1, x_2162); -x_2165 = l_Array_empty___closed__1; -x_2166 = lean_array_push(x_2165, x_2164); -x_2167 = l_Lean_nullKind___closed__2; -x_2168 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2168, 0, x_2167); -lean_ctor_set(x_2168, 1, x_2166); -x_2169 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2170 = lean_array_push(x_2169, x_2168); -x_2171 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2172 = lean_array_push(x_2170, x_2171); -x_2173 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2174 = lean_array_push(x_2172, x_2173); +x_2167 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2168 = lean_array_push(x_2167, x_2051); +x_2169 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2170, 0, x_2169); +lean_ctor_set(x_2170, 1, x_2168); +x_2171 = l_Array_empty___closed__1; +x_2172 = lean_array_push(x_2171, x_2170); +x_2173 = l_Lean_nullKind___closed__2; +x_2174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2174, 0, x_2173); +lean_ctor_set(x_2174, 1, x_2172); +x_2175 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2176 = lean_array_push(x_2175, x_2174); +x_2177 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2178 = lean_array_push(x_2176, x_2177); +x_2179 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2180 = lean_array_push(x_2178, x_2179); lean_inc(x_19); -x_2175 = lean_array_push(x_2165, x_19); +x_2181 = lean_array_push(x_2171, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2176 = x_19; + x_2182 = x_19; } else { lean_dec_ref(x_19); - x_2176 = lean_box(0); + x_2182 = lean_box(0); } -if (lean_is_scalar(x_2176)) { - x_2177 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2182)) { + x_2183 = lean_alloc_ctor(1, 2, 0); } else { - x_2177 = x_2176; + x_2183 = x_2182; } -lean_ctor_set(x_2177, 0, x_2167); -lean_ctor_set(x_2177, 1, x_2175); -x_2178 = lean_array_push(x_2165, x_2177); -x_2179 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2180 = lean_array_push(x_2178, x_2179); -x_2181 = lean_array_push(x_2180, x_2155); -x_2182 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2183 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2183, 0, x_2182); +lean_ctor_set(x_2183, 0, x_2173); lean_ctor_set(x_2183, 1, x_2181); -x_2184 = lean_array_push(x_2165, x_2183); -x_2185 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2185, 0, x_2167); -lean_ctor_set(x_2185, 1, x_2184); -x_2186 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2187 = lean_array_push(x_2186, x_2185); -x_2188 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2184 = lean_array_push(x_2171, x_2183); +x_2185 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2186 = lean_array_push(x_2184, x_2185); +x_2187 = lean_array_push(x_2186, x_2161); +x_2188 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2189, 0, x_2188); lean_ctor_set(x_2189, 1, x_2187); -x_2190 = lean_array_push(x_2174, x_2189); -x_2191 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2192 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2192, 0, x_2191); -lean_ctor_set(x_2192, 1, x_2190); -x_2193 = 1; -x_2194 = lean_box(x_2193); -x_2195 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2195, 0, x_2192); -lean_ctor_set(x_2195, 1, x_2194); -lean_ctor_set(x_2053, 1, x_2195); -if (lean_is_scalar(x_2160)) { - x_2196 = lean_alloc_ctor(0, 2, 0); +x_2190 = lean_array_push(x_2171, x_2189); +x_2191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2191, 0, x_2173); +lean_ctor_set(x_2191, 1, x_2190); +x_2192 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2193 = lean_array_push(x_2192, x_2191); +x_2194 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2195, 0, x_2194); +lean_ctor_set(x_2195, 1, x_2193); +x_2196 = lean_array_push(x_2180, x_2195); +x_2197 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2198 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2198, 0, x_2197); +lean_ctor_set(x_2198, 1, x_2196); +x_2199 = 1; +x_2200 = lean_box(x_2199); +x_2201 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2201, 0, x_2198); +lean_ctor_set(x_2201, 1, x_2200); +lean_ctor_set(x_2059, 1, x_2201); +if (lean_is_scalar(x_2166)) { + x_2202 = lean_alloc_ctor(0, 2, 0); } else { - x_2196 = x_2160; + x_2202 = x_2166; } -lean_ctor_set(x_2196, 0, x_2053); -lean_ctor_set(x_2196, 1, x_2159); -return x_2196; +lean_ctor_set(x_2202, 0, x_2059); +lean_ctor_set(x_2202, 1, x_2165); +return x_2202; } } else { -lean_object* x_2197; lean_object* x_2198; lean_object* x_2199; lean_object* x_2200; lean_object* x_2201; lean_object* x_2202; lean_object* x_2203; lean_object* x_2204; lean_object* x_2205; lean_object* x_2206; lean_object* x_2207; lean_object* x_2208; lean_object* x_2209; lean_object* x_2210; lean_object* x_2211; lean_object* x_2212; lean_object* x_2213; lean_object* x_2214; lean_object* x_2215; lean_object* x_2216; lean_object* x_2217; lean_object* x_2218; lean_object* x_2219; lean_object* x_2220; lean_object* x_2221; lean_object* x_2222; lean_object* x_2223; lean_object* x_2224; lean_object* x_2225; lean_object* x_2226; lean_object* x_2227; lean_object* x_2228; lean_object* x_2229; lean_object* x_2230; lean_object* x_2231; lean_object* x_2232; lean_object* x_2233; lean_object* x_2234; lean_object* x_2235; lean_object* x_2236; uint8_t x_2237; lean_object* x_2238; lean_object* x_2239; lean_object* x_2240; lean_object* x_2241; -x_2197 = lean_ctor_get(x_2053, 0); -lean_inc(x_2197); -lean_dec(x_2053); -x_2198 = lean_ctor_get(x_2054, 0); -lean_inc(x_2198); -if (lean_is_exclusive(x_2054)) { - lean_ctor_release(x_2054, 0); - lean_ctor_release(x_2054, 1); - x_2199 = x_2054; -} else { - lean_dec_ref(x_2054); - x_2199 = lean_box(0); -} -x_2200 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2055); -lean_dec(x_5); -x_2201 = lean_ctor_get(x_2200, 1); -lean_inc(x_2201); -lean_dec(x_2200); -x_2202 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2201); -x_2203 = lean_ctor_get(x_2202, 1); +lean_object* x_2203; lean_object* x_2204; lean_object* x_2205; lean_object* x_2206; lean_object* x_2207; lean_object* x_2208; lean_object* x_2209; lean_object* x_2210; lean_object* x_2211; lean_object* x_2212; lean_object* x_2213; lean_object* x_2214; lean_object* x_2215; lean_object* x_2216; lean_object* x_2217; lean_object* x_2218; lean_object* x_2219; lean_object* x_2220; lean_object* x_2221; lean_object* x_2222; lean_object* x_2223; lean_object* x_2224; lean_object* x_2225; lean_object* x_2226; lean_object* x_2227; lean_object* x_2228; lean_object* x_2229; lean_object* x_2230; lean_object* x_2231; lean_object* x_2232; lean_object* x_2233; lean_object* x_2234; lean_object* x_2235; lean_object* x_2236; lean_object* x_2237; lean_object* x_2238; lean_object* x_2239; lean_object* x_2240; lean_object* x_2241; lean_object* x_2242; uint8_t x_2243; lean_object* x_2244; lean_object* x_2245; lean_object* x_2246; lean_object* x_2247; +x_2203 = lean_ctor_get(x_2059, 0); lean_inc(x_2203); -if (lean_is_exclusive(x_2202)) { - lean_ctor_release(x_2202, 0); - lean_ctor_release(x_2202, 1); - x_2204 = x_2202; +lean_dec(x_2059); +x_2204 = lean_ctor_get(x_2060, 0); +lean_inc(x_2204); +if (lean_is_exclusive(x_2060)) { + lean_ctor_release(x_2060, 0); + lean_ctor_release(x_2060, 1); + x_2205 = x_2060; } else { - lean_dec_ref(x_2202); - x_2204 = lean_box(0); + lean_dec_ref(x_2060); + x_2205 = lean_box(0); } -x_2205 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2206 = lean_array_push(x_2205, x_2045); -x_2207 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2208, 0, x_2207); -lean_ctor_set(x_2208, 1, x_2206); -x_2209 = l_Array_empty___closed__1; -x_2210 = lean_array_push(x_2209, x_2208); -x_2211 = l_Lean_nullKind___closed__2; -x_2212 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2212, 0, x_2211); -lean_ctor_set(x_2212, 1, x_2210); -x_2213 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2214 = lean_array_push(x_2213, x_2212); -x_2215 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2216 = lean_array_push(x_2214, x_2215); -x_2217 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2218 = lean_array_push(x_2216, x_2217); +x_2206 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2061); +lean_dec(x_5); +x_2207 = lean_ctor_get(x_2206, 1); +lean_inc(x_2207); +lean_dec(x_2206); +x_2208 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2207); +x_2209 = lean_ctor_get(x_2208, 1); +lean_inc(x_2209); +if (lean_is_exclusive(x_2208)) { + lean_ctor_release(x_2208, 0); + lean_ctor_release(x_2208, 1); + x_2210 = x_2208; +} else { + lean_dec_ref(x_2208); + x_2210 = lean_box(0); +} +x_2211 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2212 = lean_array_push(x_2211, x_2051); +x_2213 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2214 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2214, 0, x_2213); +lean_ctor_set(x_2214, 1, x_2212); +x_2215 = l_Array_empty___closed__1; +x_2216 = lean_array_push(x_2215, x_2214); +x_2217 = l_Lean_nullKind___closed__2; +x_2218 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2218, 0, x_2217); +lean_ctor_set(x_2218, 1, x_2216); +x_2219 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2220 = lean_array_push(x_2219, x_2218); +x_2221 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2222 = lean_array_push(x_2220, x_2221); +x_2223 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2224 = lean_array_push(x_2222, x_2223); lean_inc(x_19); -x_2219 = lean_array_push(x_2209, x_19); +x_2225 = lean_array_push(x_2215, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2220 = x_19; + x_2226 = x_19; } else { lean_dec_ref(x_19); - x_2220 = lean_box(0); + x_2226 = lean_box(0); } -if (lean_is_scalar(x_2220)) { - x_2221 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2226)) { + x_2227 = lean_alloc_ctor(1, 2, 0); } else { - x_2221 = x_2220; + x_2227 = x_2226; } -lean_ctor_set(x_2221, 0, x_2211); -lean_ctor_set(x_2221, 1, x_2219); -x_2222 = lean_array_push(x_2209, x_2221); -x_2223 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2224 = lean_array_push(x_2222, x_2223); -x_2225 = lean_array_push(x_2224, x_2198); -x_2226 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2227, 0, x_2226); +lean_ctor_set(x_2227, 0, x_2217); lean_ctor_set(x_2227, 1, x_2225); -x_2228 = lean_array_push(x_2209, x_2227); -x_2229 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2229, 0, x_2211); -lean_ctor_set(x_2229, 1, x_2228); -x_2230 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2231 = lean_array_push(x_2230, x_2229); -x_2232 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2228 = lean_array_push(x_2215, x_2227); +x_2229 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2230 = lean_array_push(x_2228, x_2229); +x_2231 = lean_array_push(x_2230, x_2204); +x_2232 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2233 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2233, 0, x_2232); lean_ctor_set(x_2233, 1, x_2231); -x_2234 = lean_array_push(x_2218, x_2233); -x_2235 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2236, 0, x_2235); -lean_ctor_set(x_2236, 1, x_2234); -x_2237 = 1; -x_2238 = lean_box(x_2237); -if (lean_is_scalar(x_2199)) { - x_2239 = lean_alloc_ctor(0, 2, 0); +x_2234 = lean_array_push(x_2215, x_2233); +x_2235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2235, 0, x_2217); +lean_ctor_set(x_2235, 1, x_2234); +x_2236 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2237 = lean_array_push(x_2236, x_2235); +x_2238 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2239, 0, x_2238); +lean_ctor_set(x_2239, 1, x_2237); +x_2240 = lean_array_push(x_2224, x_2239); +x_2241 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2242, 0, x_2241); +lean_ctor_set(x_2242, 1, x_2240); +x_2243 = 1; +x_2244 = lean_box(x_2243); +if (lean_is_scalar(x_2205)) { + x_2245 = lean_alloc_ctor(0, 2, 0); } else { - x_2239 = x_2199; + x_2245 = x_2205; } -lean_ctor_set(x_2239, 0, x_2236); -lean_ctor_set(x_2239, 1, x_2238); -x_2240 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2240, 0, x_2197); -lean_ctor_set(x_2240, 1, x_2239); -if (lean_is_scalar(x_2204)) { - x_2241 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2245, 0, x_2242); +lean_ctor_set(x_2245, 1, x_2244); +x_2246 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2246, 0, x_2203); +lean_ctor_set(x_2246, 1, x_2245); +if (lean_is_scalar(x_2210)) { + x_2247 = lean_alloc_ctor(0, 2, 0); } else { - x_2241 = x_2204; + x_2247 = x_2210; } -lean_ctor_set(x_2241, 0, x_2240); -lean_ctor_set(x_2241, 1, x_2203); -return x_2241; +lean_ctor_set(x_2247, 0, x_2246); +lean_ctor_set(x_2247, 1, x_2209); +return x_2247; } } } else { -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; uint8_t x_2254; +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; uint8_t x_2260; lean_dec(x_197); lean_dec(x_196); lean_dec(x_195); lean_inc(x_5); -x_2242 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2243 = lean_ctor_get(x_2242, 0); -lean_inc(x_2243); -x_2244 = lean_ctor_get(x_2242, 1); -lean_inc(x_2244); -lean_dec(x_2242); -x_2245 = lean_unsigned_to_nat(1u); -x_2246 = lean_nat_add(x_3, x_2245); +x_2248 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2249 = lean_ctor_get(x_2248, 0); +lean_inc(x_2249); +x_2250 = lean_ctor_get(x_2248, 1); +lean_inc(x_2250); +lean_dec(x_2248); +x_2251 = lean_unsigned_to_nat(1u); +x_2252 = lean_nat_add(x_3, x_2251); lean_dec(x_3); -x_2247 = l_Lean_mkHole(x_19); -lean_inc(x_2243); -x_2248 = l_Lean_Elab_Term_mkExplicitBinder(x_2243, x_2247); -x_2249 = lean_array_push(x_4, x_2248); +x_2253 = l_Lean_mkHole(x_19); +lean_inc(x_2249); +x_2254 = l_Lean_Elab_Term_mkExplicitBinder(x_2249, x_2253); +x_2255 = lean_array_push(x_4, x_2254); lean_inc(x_5); -x_2250 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2246, x_2249, x_5, x_6, x_7, x_8, x_9, x_10, x_2244); -x_2251 = lean_ctor_get(x_2250, 0); -lean_inc(x_2251); -x_2252 = lean_ctor_get(x_2251, 1); -lean_inc(x_2252); -x_2253 = lean_ctor_get(x_2250, 1); -lean_inc(x_2253); -lean_dec(x_2250); -x_2254 = !lean_is_exclusive(x_2251); -if (x_2254 == 0) +x_2256 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2252, x_2255, x_5, x_6, x_7, x_8, x_9, x_10, x_2250); +x_2257 = lean_ctor_get(x_2256, 0); +lean_inc(x_2257); +x_2258 = lean_ctor_get(x_2257, 1); +lean_inc(x_2258); +x_2259 = lean_ctor_get(x_2256, 1); +lean_inc(x_2259); +lean_dec(x_2256); +x_2260 = !lean_is_exclusive(x_2257); +if (x_2260 == 0) { -lean_object* x_2255; uint8_t x_2256; -x_2255 = lean_ctor_get(x_2251, 1); -lean_dec(x_2255); -x_2256 = !lean_is_exclusive(x_2252); -if (x_2256 == 0) -{ -lean_object* x_2257; lean_object* x_2258; lean_object* x_2259; lean_object* x_2260; lean_object* x_2261; uint8_t x_2262; -x_2257 = lean_ctor_get(x_2252, 0); -x_2258 = lean_ctor_get(x_2252, 1); -lean_dec(x_2258); -x_2259 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2253); -lean_dec(x_5); -x_2260 = lean_ctor_get(x_2259, 1); -lean_inc(x_2260); -lean_dec(x_2259); -x_2261 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2260); -x_2262 = !lean_is_exclusive(x_2261); +lean_object* x_2261; uint8_t x_2262; +x_2261 = lean_ctor_get(x_2257, 1); +lean_dec(x_2261); +x_2262 = !lean_is_exclusive(x_2258); if (x_2262 == 0) { -lean_object* x_2263; lean_object* x_2264; lean_object* x_2265; lean_object* x_2266; lean_object* x_2267; lean_object* x_2268; lean_object* x_2269; lean_object* x_2270; lean_object* x_2271; lean_object* x_2272; lean_object* x_2273; lean_object* x_2274; lean_object* x_2275; lean_object* x_2276; lean_object* x_2277; lean_object* x_2278; uint8_t x_2279; -x_2263 = lean_ctor_get(x_2261, 0); -lean_dec(x_2263); -x_2264 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2265 = lean_array_push(x_2264, x_2243); -x_2266 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2267, 0, x_2266); -lean_ctor_set(x_2267, 1, x_2265); -x_2268 = l_Array_empty___closed__1; -x_2269 = lean_array_push(x_2268, x_2267); -x_2270 = l_Lean_nullKind___closed__2; -x_2271 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2271, 0, x_2270); -lean_ctor_set(x_2271, 1, x_2269); -x_2272 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2273 = lean_array_push(x_2272, x_2271); -x_2274 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2275 = lean_array_push(x_2273, x_2274); -x_2276 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2277 = lean_array_push(x_2275, x_2276); -lean_inc(x_19); -x_2278 = lean_array_push(x_2268, x_19); -x_2279 = !lean_is_exclusive(x_19); -if (x_2279 == 0) +lean_object* x_2263; lean_object* x_2264; lean_object* x_2265; lean_object* x_2266; lean_object* x_2267; uint8_t x_2268; +x_2263 = lean_ctor_get(x_2258, 0); +x_2264 = lean_ctor_get(x_2258, 1); +lean_dec(x_2264); +x_2265 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2259); +lean_dec(x_5); +x_2266 = lean_ctor_get(x_2265, 1); +lean_inc(x_2266); +lean_dec(x_2265); +x_2267 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2266); +x_2268 = !lean_is_exclusive(x_2267); +if (x_2268 == 0) { -lean_object* x_2280; lean_object* x_2281; lean_object* x_2282; lean_object* x_2283; lean_object* x_2284; lean_object* x_2285; lean_object* x_2286; lean_object* x_2287; 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; uint8_t x_2297; lean_object* x_2298; -x_2280 = lean_ctor_get(x_19, 1); -lean_dec(x_2280); -x_2281 = lean_ctor_get(x_19, 0); -lean_dec(x_2281); -lean_ctor_set(x_19, 1, x_2278); -lean_ctor_set(x_19, 0, x_2270); -x_2282 = lean_array_push(x_2268, x_19); -x_2283 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2284 = lean_array_push(x_2282, x_2283); -x_2285 = lean_array_push(x_2284, x_2257); -x_2286 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2287 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2287, 0, x_2286); -lean_ctor_set(x_2287, 1, x_2285); -x_2288 = lean_array_push(x_2268, x_2287); -x_2289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2289, 0, x_2270); -lean_ctor_set(x_2289, 1, x_2288); -x_2290 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2291 = lean_array_push(x_2290, x_2289); -x_2292 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_object* x_2269; lean_object* x_2270; lean_object* x_2271; lean_object* x_2272; lean_object* x_2273; lean_object* x_2274; lean_object* x_2275; lean_object* x_2276; lean_object* x_2277; lean_object* x_2278; lean_object* x_2279; lean_object* x_2280; lean_object* x_2281; lean_object* x_2282; lean_object* x_2283; lean_object* x_2284; uint8_t x_2285; +x_2269 = lean_ctor_get(x_2267, 0); +lean_dec(x_2269); +x_2270 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2271 = lean_array_push(x_2270, x_2249); +x_2272 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2273, 0, x_2272); +lean_ctor_set(x_2273, 1, x_2271); +x_2274 = l_Array_empty___closed__1; +x_2275 = lean_array_push(x_2274, x_2273); +x_2276 = l_Lean_nullKind___closed__2; +x_2277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2277, 0, x_2276); +lean_ctor_set(x_2277, 1, x_2275); +x_2278 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2279 = lean_array_push(x_2278, x_2277); +x_2280 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2281 = lean_array_push(x_2279, x_2280); +x_2282 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2283 = lean_array_push(x_2281, x_2282); +lean_inc(x_19); +x_2284 = lean_array_push(x_2274, x_19); +x_2285 = !lean_is_exclusive(x_19); +if (x_2285 == 0) +{ +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; uint8_t x_2303; lean_object* x_2304; +x_2286 = lean_ctor_get(x_19, 1); +lean_dec(x_2286); +x_2287 = lean_ctor_get(x_19, 0); +lean_dec(x_2287); +lean_ctor_set(x_19, 1, x_2284); +lean_ctor_set(x_19, 0, x_2276); +x_2288 = lean_array_push(x_2274, x_19); +x_2289 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2290 = lean_array_push(x_2288, x_2289); +x_2291 = lean_array_push(x_2290, x_2263); +x_2292 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2293 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2293, 0, x_2292); lean_ctor_set(x_2293, 1, x_2291); -x_2294 = lean_array_push(x_2277, x_2293); -x_2295 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2296 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2296, 0, x_2295); -lean_ctor_set(x_2296, 1, x_2294); -x_2297 = 1; -x_2298 = lean_box(x_2297); -lean_ctor_set(x_2252, 1, x_2298); -lean_ctor_set(x_2252, 0, x_2296); -lean_ctor_set(x_2261, 0, x_2251); -return x_2261; +x_2294 = lean_array_push(x_2274, x_2293); +x_2295 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2295, 0, x_2276); +lean_ctor_set(x_2295, 1, x_2294); +x_2296 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2297 = lean_array_push(x_2296, x_2295); +x_2298 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2299 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2299, 0, x_2298); +lean_ctor_set(x_2299, 1, x_2297); +x_2300 = lean_array_push(x_2283, x_2299); +x_2301 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2302, 0, x_2301); +lean_ctor_set(x_2302, 1, x_2300); +x_2303 = 1; +x_2304 = lean_box(x_2303); +lean_ctor_set(x_2258, 1, x_2304); +lean_ctor_set(x_2258, 0, x_2302); +lean_ctor_set(x_2267, 0, x_2257); +return x_2267; } else { -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; uint8_t x_2315; lean_object* x_2316; +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; uint8_t x_2321; lean_object* x_2322; lean_dec(x_19); -x_2299 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2299, 0, x_2270); -lean_ctor_set(x_2299, 1, x_2278); -x_2300 = lean_array_push(x_2268, x_2299); -x_2301 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2302 = lean_array_push(x_2300, x_2301); -x_2303 = lean_array_push(x_2302, x_2257); -x_2304 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2305 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2305, 0, x_2304); -lean_ctor_set(x_2305, 1, x_2303); -x_2306 = lean_array_push(x_2268, x_2305); -x_2307 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2307, 0, x_2270); -lean_ctor_set(x_2307, 1, x_2306); -x_2308 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2309 = lean_array_push(x_2308, x_2307); -x_2310 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_ctor_set(x_2305, 0, x_2276); +lean_ctor_set(x_2305, 1, x_2284); +x_2306 = lean_array_push(x_2274, x_2305); +x_2307 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2308 = lean_array_push(x_2306, x_2307); +x_2309 = lean_array_push(x_2308, x_2263); +x_2310 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2311 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2311, 0, x_2310); lean_ctor_set(x_2311, 1, x_2309); -x_2312 = lean_array_push(x_2277, x_2311); -x_2313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2314, 0, x_2313); -lean_ctor_set(x_2314, 1, x_2312); -x_2315 = 1; -x_2316 = lean_box(x_2315); -lean_ctor_set(x_2252, 1, x_2316); -lean_ctor_set(x_2252, 0, x_2314); -lean_ctor_set(x_2261, 0, x_2251); -return x_2261; +x_2312 = lean_array_push(x_2274, x_2311); +x_2313 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2313, 0, x_2276); +lean_ctor_set(x_2313, 1, x_2312); +x_2314 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2315 = lean_array_push(x_2314, x_2313); +x_2316 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2317, 0, x_2316); +lean_ctor_set(x_2317, 1, x_2315); +x_2318 = lean_array_push(x_2283, x_2317); +x_2319 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2320 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2320, 0, x_2319); +lean_ctor_set(x_2320, 1, x_2318); +x_2321 = 1; +x_2322 = lean_box(x_2321); +lean_ctor_set(x_2258, 1, x_2322); +lean_ctor_set(x_2258, 0, x_2320); +lean_ctor_set(x_2267, 0, x_2257); +return x_2267; } } else { -lean_object* x_2317; lean_object* x_2318; lean_object* x_2319; lean_object* x_2320; lean_object* x_2321; lean_object* x_2322; lean_object* x_2323; lean_object* x_2324; lean_object* x_2325; lean_object* x_2326; lean_object* x_2327; lean_object* x_2328; lean_object* x_2329; lean_object* x_2330; lean_object* x_2331; lean_object* x_2332; lean_object* x_2333; lean_object* x_2334; lean_object* x_2335; lean_object* x_2336; lean_object* x_2337; lean_object* x_2338; lean_object* x_2339; lean_object* x_2340; lean_object* x_2341; lean_object* x_2342; lean_object* x_2343; lean_object* x_2344; lean_object* x_2345; lean_object* x_2346; lean_object* x_2347; lean_object* x_2348; lean_object* x_2349; uint8_t x_2350; lean_object* x_2351; lean_object* x_2352; -x_2317 = lean_ctor_get(x_2261, 1); -lean_inc(x_2317); -lean_dec(x_2261); -x_2318 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2319 = lean_array_push(x_2318, x_2243); -x_2320 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2321 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2321, 0, x_2320); -lean_ctor_set(x_2321, 1, x_2319); -x_2322 = l_Array_empty___closed__1; -x_2323 = lean_array_push(x_2322, x_2321); -x_2324 = l_Lean_nullKind___closed__2; -x_2325 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2325, 0, x_2324); -lean_ctor_set(x_2325, 1, x_2323); -x_2326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2327 = lean_array_push(x_2326, x_2325); -x_2328 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2329 = lean_array_push(x_2327, x_2328); -x_2330 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2331 = lean_array_push(x_2329, x_2330); +lean_object* x_2323; lean_object* x_2324; lean_object* x_2325; lean_object* x_2326; lean_object* x_2327; lean_object* x_2328; lean_object* x_2329; lean_object* x_2330; lean_object* x_2331; lean_object* x_2332; lean_object* x_2333; lean_object* x_2334; lean_object* x_2335; lean_object* x_2336; lean_object* x_2337; lean_object* x_2338; lean_object* x_2339; lean_object* x_2340; lean_object* x_2341; lean_object* x_2342; lean_object* x_2343; lean_object* x_2344; lean_object* x_2345; lean_object* x_2346; lean_object* x_2347; lean_object* x_2348; lean_object* x_2349; lean_object* x_2350; lean_object* x_2351; lean_object* x_2352; lean_object* x_2353; lean_object* x_2354; lean_object* x_2355; uint8_t x_2356; lean_object* x_2357; lean_object* x_2358; +x_2323 = lean_ctor_get(x_2267, 1); +lean_inc(x_2323); +lean_dec(x_2267); +x_2324 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2325 = lean_array_push(x_2324, x_2249); +x_2326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2327, 0, x_2326); +lean_ctor_set(x_2327, 1, x_2325); +x_2328 = l_Array_empty___closed__1; +x_2329 = lean_array_push(x_2328, x_2327); +x_2330 = l_Lean_nullKind___closed__2; +x_2331 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2331, 0, x_2330); +lean_ctor_set(x_2331, 1, x_2329); +x_2332 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2333 = lean_array_push(x_2332, x_2331); +x_2334 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2335 = lean_array_push(x_2333, x_2334); +x_2336 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2337 = lean_array_push(x_2335, x_2336); lean_inc(x_19); -x_2332 = lean_array_push(x_2322, x_19); +x_2338 = lean_array_push(x_2328, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2333 = x_19; + x_2339 = x_19; } else { lean_dec_ref(x_19); - x_2333 = lean_box(0); + x_2339 = lean_box(0); } -if (lean_is_scalar(x_2333)) { - x_2334 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2339)) { + x_2340 = lean_alloc_ctor(1, 2, 0); } else { - x_2334 = x_2333; + x_2340 = x_2339; } -lean_ctor_set(x_2334, 0, x_2324); -lean_ctor_set(x_2334, 1, x_2332); -x_2335 = lean_array_push(x_2322, x_2334); -x_2336 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2337 = lean_array_push(x_2335, x_2336); -x_2338 = lean_array_push(x_2337, x_2257); -x_2339 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2340 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2340, 0, x_2339); +lean_ctor_set(x_2340, 0, x_2330); lean_ctor_set(x_2340, 1, x_2338); -x_2341 = lean_array_push(x_2322, x_2340); -x_2342 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2342, 0, x_2324); -lean_ctor_set(x_2342, 1, x_2341); -x_2343 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2344 = lean_array_push(x_2343, x_2342); -x_2345 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2341 = lean_array_push(x_2328, x_2340); +x_2342 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2343 = lean_array_push(x_2341, x_2342); +x_2344 = lean_array_push(x_2343, x_2263); +x_2345 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2346 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2346, 0, x_2345); lean_ctor_set(x_2346, 1, x_2344); -x_2347 = lean_array_push(x_2331, x_2346); -x_2348 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2349 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2349, 0, x_2348); -lean_ctor_set(x_2349, 1, x_2347); -x_2350 = 1; -x_2351 = lean_box(x_2350); -lean_ctor_set(x_2252, 1, x_2351); -lean_ctor_set(x_2252, 0, x_2349); -x_2352 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2352, 0, x_2251); -lean_ctor_set(x_2352, 1, x_2317); -return x_2352; +x_2347 = lean_array_push(x_2328, x_2346); +x_2348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2348, 0, x_2330); +lean_ctor_set(x_2348, 1, x_2347); +x_2349 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2350 = lean_array_push(x_2349, x_2348); +x_2351 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2352 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2352, 0, x_2351); +lean_ctor_set(x_2352, 1, x_2350); +x_2353 = lean_array_push(x_2337, x_2352); +x_2354 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2355 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2355, 0, x_2354); +lean_ctor_set(x_2355, 1, x_2353); +x_2356 = 1; +x_2357 = lean_box(x_2356); +lean_ctor_set(x_2258, 1, x_2357); +lean_ctor_set(x_2258, 0, x_2355); +x_2358 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2358, 0, x_2257); +lean_ctor_set(x_2358, 1, x_2323); +return x_2358; } } else { -lean_object* x_2353; lean_object* x_2354; lean_object* x_2355; lean_object* x_2356; lean_object* x_2357; lean_object* x_2358; lean_object* x_2359; lean_object* x_2360; lean_object* x_2361; lean_object* x_2362; lean_object* x_2363; lean_object* x_2364; lean_object* x_2365; lean_object* x_2366; lean_object* x_2367; lean_object* x_2368; lean_object* x_2369; lean_object* x_2370; lean_object* x_2371; lean_object* x_2372; lean_object* x_2373; lean_object* x_2374; lean_object* x_2375; lean_object* x_2376; lean_object* x_2377; lean_object* x_2378; lean_object* x_2379; lean_object* x_2380; lean_object* x_2381; lean_object* x_2382; lean_object* x_2383; lean_object* x_2384; lean_object* x_2385; lean_object* x_2386; lean_object* x_2387; lean_object* x_2388; lean_object* x_2389; lean_object* x_2390; uint8_t x_2391; lean_object* x_2392; lean_object* x_2393; lean_object* x_2394; -x_2353 = lean_ctor_get(x_2252, 0); -lean_inc(x_2353); -lean_dec(x_2252); -x_2354 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2253); +lean_object* x_2359; lean_object* x_2360; lean_object* x_2361; lean_object* x_2362; lean_object* x_2363; lean_object* x_2364; lean_object* x_2365; lean_object* x_2366; lean_object* x_2367; lean_object* x_2368; lean_object* x_2369; lean_object* x_2370; lean_object* x_2371; lean_object* x_2372; lean_object* x_2373; lean_object* x_2374; lean_object* x_2375; lean_object* x_2376; lean_object* x_2377; lean_object* x_2378; lean_object* x_2379; lean_object* x_2380; lean_object* x_2381; lean_object* x_2382; lean_object* x_2383; lean_object* x_2384; lean_object* x_2385; lean_object* x_2386; lean_object* x_2387; lean_object* x_2388; lean_object* x_2389; lean_object* x_2390; lean_object* x_2391; lean_object* x_2392; lean_object* x_2393; lean_object* x_2394; lean_object* x_2395; lean_object* x_2396; uint8_t x_2397; lean_object* x_2398; lean_object* x_2399; lean_object* x_2400; +x_2359 = lean_ctor_get(x_2258, 0); +lean_inc(x_2359); +lean_dec(x_2258); +x_2360 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2259); lean_dec(x_5); -x_2355 = lean_ctor_get(x_2354, 1); -lean_inc(x_2355); -lean_dec(x_2354); -x_2356 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2355); -x_2357 = lean_ctor_get(x_2356, 1); -lean_inc(x_2357); -if (lean_is_exclusive(x_2356)) { - lean_ctor_release(x_2356, 0); - lean_ctor_release(x_2356, 1); - x_2358 = x_2356; +x_2361 = lean_ctor_get(x_2360, 1); +lean_inc(x_2361); +lean_dec(x_2360); +x_2362 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2361); +x_2363 = lean_ctor_get(x_2362, 1); +lean_inc(x_2363); +if (lean_is_exclusive(x_2362)) { + lean_ctor_release(x_2362, 0); + lean_ctor_release(x_2362, 1); + x_2364 = x_2362; } else { - lean_dec_ref(x_2356); - x_2358 = lean_box(0); + lean_dec_ref(x_2362); + x_2364 = lean_box(0); } -x_2359 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2360 = lean_array_push(x_2359, x_2243); -x_2361 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2362 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2362, 0, x_2361); -lean_ctor_set(x_2362, 1, x_2360); -x_2363 = l_Array_empty___closed__1; -x_2364 = lean_array_push(x_2363, x_2362); -x_2365 = l_Lean_nullKind___closed__2; -x_2366 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2366, 0, x_2365); -lean_ctor_set(x_2366, 1, x_2364); -x_2367 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2368 = lean_array_push(x_2367, x_2366); -x_2369 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2370 = lean_array_push(x_2368, x_2369); -x_2371 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2372 = lean_array_push(x_2370, x_2371); +x_2365 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2366 = lean_array_push(x_2365, x_2249); +x_2367 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2368 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2368, 0, x_2367); +lean_ctor_set(x_2368, 1, x_2366); +x_2369 = l_Array_empty___closed__1; +x_2370 = lean_array_push(x_2369, x_2368); +x_2371 = l_Lean_nullKind___closed__2; +x_2372 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2372, 0, x_2371); +lean_ctor_set(x_2372, 1, x_2370); +x_2373 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2374 = lean_array_push(x_2373, x_2372); +x_2375 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2376 = lean_array_push(x_2374, x_2375); +x_2377 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2378 = lean_array_push(x_2376, x_2377); lean_inc(x_19); -x_2373 = lean_array_push(x_2363, x_19); +x_2379 = lean_array_push(x_2369, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2374 = x_19; + x_2380 = x_19; } else { lean_dec_ref(x_19); - x_2374 = lean_box(0); + x_2380 = lean_box(0); } -if (lean_is_scalar(x_2374)) { - x_2375 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2380)) { + x_2381 = lean_alloc_ctor(1, 2, 0); } else { - x_2375 = x_2374; + x_2381 = x_2380; } -lean_ctor_set(x_2375, 0, x_2365); -lean_ctor_set(x_2375, 1, x_2373); -x_2376 = lean_array_push(x_2363, x_2375); -x_2377 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2378 = lean_array_push(x_2376, x_2377); -x_2379 = lean_array_push(x_2378, x_2353); -x_2380 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2381 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2381, 0, x_2380); +lean_ctor_set(x_2381, 0, x_2371); lean_ctor_set(x_2381, 1, x_2379); -x_2382 = lean_array_push(x_2363, x_2381); -x_2383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2383, 0, x_2365); -lean_ctor_set(x_2383, 1, x_2382); -x_2384 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2385 = lean_array_push(x_2384, x_2383); -x_2386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2382 = lean_array_push(x_2369, x_2381); +x_2383 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2384 = lean_array_push(x_2382, x_2383); +x_2385 = lean_array_push(x_2384, x_2359); +x_2386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2387 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2387, 0, x_2386); lean_ctor_set(x_2387, 1, x_2385); -x_2388 = lean_array_push(x_2372, x_2387); -x_2389 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2390 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2390, 0, x_2389); -lean_ctor_set(x_2390, 1, x_2388); -x_2391 = 1; -x_2392 = lean_box(x_2391); -x_2393 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2393, 0, x_2390); -lean_ctor_set(x_2393, 1, x_2392); -lean_ctor_set(x_2251, 1, x_2393); -if (lean_is_scalar(x_2358)) { - x_2394 = lean_alloc_ctor(0, 2, 0); +x_2388 = lean_array_push(x_2369, x_2387); +x_2389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2389, 0, x_2371); +lean_ctor_set(x_2389, 1, x_2388); +x_2390 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2391 = lean_array_push(x_2390, x_2389); +x_2392 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2393 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2393, 0, x_2392); +lean_ctor_set(x_2393, 1, x_2391); +x_2394 = lean_array_push(x_2378, x_2393); +x_2395 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2396 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2396, 0, x_2395); +lean_ctor_set(x_2396, 1, x_2394); +x_2397 = 1; +x_2398 = lean_box(x_2397); +x_2399 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2399, 0, x_2396); +lean_ctor_set(x_2399, 1, x_2398); +lean_ctor_set(x_2257, 1, x_2399); +if (lean_is_scalar(x_2364)) { + x_2400 = lean_alloc_ctor(0, 2, 0); } else { - x_2394 = x_2358; + x_2400 = x_2364; } -lean_ctor_set(x_2394, 0, x_2251); -lean_ctor_set(x_2394, 1, x_2357); -return x_2394; +lean_ctor_set(x_2400, 0, x_2257); +lean_ctor_set(x_2400, 1, x_2363); +return x_2400; } } else { -lean_object* x_2395; lean_object* x_2396; lean_object* x_2397; lean_object* x_2398; lean_object* x_2399; lean_object* x_2400; lean_object* x_2401; lean_object* x_2402; lean_object* x_2403; lean_object* x_2404; lean_object* x_2405; lean_object* x_2406; lean_object* x_2407; lean_object* x_2408; lean_object* x_2409; lean_object* x_2410; lean_object* x_2411; lean_object* x_2412; lean_object* x_2413; lean_object* x_2414; lean_object* x_2415; lean_object* x_2416; lean_object* x_2417; lean_object* x_2418; lean_object* x_2419; lean_object* x_2420; lean_object* x_2421; lean_object* x_2422; lean_object* x_2423; lean_object* x_2424; lean_object* x_2425; lean_object* x_2426; lean_object* x_2427; lean_object* x_2428; lean_object* x_2429; lean_object* x_2430; lean_object* x_2431; lean_object* x_2432; lean_object* x_2433; lean_object* x_2434; uint8_t x_2435; lean_object* x_2436; lean_object* x_2437; lean_object* x_2438; lean_object* x_2439; -x_2395 = lean_ctor_get(x_2251, 0); -lean_inc(x_2395); -lean_dec(x_2251); -x_2396 = lean_ctor_get(x_2252, 0); -lean_inc(x_2396); -if (lean_is_exclusive(x_2252)) { - lean_ctor_release(x_2252, 0); - lean_ctor_release(x_2252, 1); - x_2397 = x_2252; -} else { - lean_dec_ref(x_2252); - x_2397 = lean_box(0); -} -x_2398 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2253); -lean_dec(x_5); -x_2399 = lean_ctor_get(x_2398, 1); -lean_inc(x_2399); -lean_dec(x_2398); -x_2400 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2399); -x_2401 = lean_ctor_get(x_2400, 1); +lean_object* x_2401; lean_object* x_2402; lean_object* x_2403; lean_object* x_2404; lean_object* x_2405; lean_object* x_2406; lean_object* x_2407; lean_object* x_2408; lean_object* x_2409; lean_object* x_2410; lean_object* x_2411; lean_object* x_2412; lean_object* x_2413; lean_object* x_2414; lean_object* x_2415; lean_object* x_2416; lean_object* x_2417; lean_object* x_2418; lean_object* x_2419; lean_object* x_2420; lean_object* x_2421; lean_object* x_2422; lean_object* x_2423; lean_object* x_2424; lean_object* x_2425; lean_object* x_2426; lean_object* x_2427; lean_object* x_2428; lean_object* x_2429; lean_object* x_2430; lean_object* x_2431; lean_object* x_2432; lean_object* x_2433; lean_object* x_2434; lean_object* x_2435; lean_object* x_2436; lean_object* x_2437; lean_object* x_2438; lean_object* x_2439; lean_object* x_2440; uint8_t x_2441; lean_object* x_2442; lean_object* x_2443; lean_object* x_2444; lean_object* x_2445; +x_2401 = lean_ctor_get(x_2257, 0); lean_inc(x_2401); -if (lean_is_exclusive(x_2400)) { - lean_ctor_release(x_2400, 0); - lean_ctor_release(x_2400, 1); - x_2402 = x_2400; +lean_dec(x_2257); +x_2402 = lean_ctor_get(x_2258, 0); +lean_inc(x_2402); +if (lean_is_exclusive(x_2258)) { + lean_ctor_release(x_2258, 0); + lean_ctor_release(x_2258, 1); + x_2403 = x_2258; } else { - lean_dec_ref(x_2400); - x_2402 = lean_box(0); + lean_dec_ref(x_2258); + x_2403 = lean_box(0); } -x_2403 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2404 = lean_array_push(x_2403, x_2243); -x_2405 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2406 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2406, 0, x_2405); -lean_ctor_set(x_2406, 1, x_2404); -x_2407 = l_Array_empty___closed__1; -x_2408 = lean_array_push(x_2407, x_2406); -x_2409 = l_Lean_nullKind___closed__2; -x_2410 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2410, 0, x_2409); -lean_ctor_set(x_2410, 1, x_2408); -x_2411 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2412 = lean_array_push(x_2411, x_2410); -x_2413 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2414 = lean_array_push(x_2412, x_2413); -x_2415 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2416 = lean_array_push(x_2414, x_2415); +x_2404 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2259); +lean_dec(x_5); +x_2405 = lean_ctor_get(x_2404, 1); +lean_inc(x_2405); +lean_dec(x_2404); +x_2406 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2405); +x_2407 = lean_ctor_get(x_2406, 1); +lean_inc(x_2407); +if (lean_is_exclusive(x_2406)) { + lean_ctor_release(x_2406, 0); + lean_ctor_release(x_2406, 1); + x_2408 = x_2406; +} else { + lean_dec_ref(x_2406); + x_2408 = lean_box(0); +} +x_2409 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2410 = lean_array_push(x_2409, x_2249); +x_2411 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2412 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2412, 0, x_2411); +lean_ctor_set(x_2412, 1, x_2410); +x_2413 = l_Array_empty___closed__1; +x_2414 = lean_array_push(x_2413, x_2412); +x_2415 = l_Lean_nullKind___closed__2; +x_2416 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2416, 0, x_2415); +lean_ctor_set(x_2416, 1, x_2414); +x_2417 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2418 = lean_array_push(x_2417, x_2416); +x_2419 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2420 = lean_array_push(x_2418, x_2419); +x_2421 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2422 = lean_array_push(x_2420, x_2421); lean_inc(x_19); -x_2417 = lean_array_push(x_2407, x_19); +x_2423 = lean_array_push(x_2413, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2418 = x_19; + x_2424 = x_19; } else { lean_dec_ref(x_19); - x_2418 = lean_box(0); + x_2424 = lean_box(0); } -if (lean_is_scalar(x_2418)) { - x_2419 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2424)) { + x_2425 = lean_alloc_ctor(1, 2, 0); } else { - x_2419 = x_2418; + x_2425 = x_2424; } -lean_ctor_set(x_2419, 0, x_2409); -lean_ctor_set(x_2419, 1, x_2417); -x_2420 = lean_array_push(x_2407, x_2419); -x_2421 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2422 = lean_array_push(x_2420, x_2421); -x_2423 = lean_array_push(x_2422, x_2396); -x_2424 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2425 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2425, 0, x_2424); +lean_ctor_set(x_2425, 0, x_2415); lean_ctor_set(x_2425, 1, x_2423); -x_2426 = lean_array_push(x_2407, x_2425); -x_2427 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2427, 0, x_2409); -lean_ctor_set(x_2427, 1, x_2426); -x_2428 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2429 = lean_array_push(x_2428, x_2427); -x_2430 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2426 = lean_array_push(x_2413, x_2425); +x_2427 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2428 = lean_array_push(x_2426, x_2427); +x_2429 = lean_array_push(x_2428, x_2402); +x_2430 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2431 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2431, 0, x_2430); lean_ctor_set(x_2431, 1, x_2429); -x_2432 = lean_array_push(x_2416, x_2431); -x_2433 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2434 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2434, 0, x_2433); -lean_ctor_set(x_2434, 1, x_2432); -x_2435 = 1; -x_2436 = lean_box(x_2435); -if (lean_is_scalar(x_2397)) { - x_2437 = lean_alloc_ctor(0, 2, 0); +x_2432 = lean_array_push(x_2413, x_2431); +x_2433 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2433, 0, x_2415); +lean_ctor_set(x_2433, 1, x_2432); +x_2434 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2435 = lean_array_push(x_2434, x_2433); +x_2436 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +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 = lean_array_push(x_2422, x_2437); +x_2439 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2440 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2440, 0, x_2439); +lean_ctor_set(x_2440, 1, x_2438); +x_2441 = 1; +x_2442 = lean_box(x_2441); +if (lean_is_scalar(x_2403)) { + x_2443 = lean_alloc_ctor(0, 2, 0); } else { - x_2437 = x_2397; + x_2443 = x_2403; } -lean_ctor_set(x_2437, 0, x_2434); -lean_ctor_set(x_2437, 1, x_2436); -x_2438 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2438, 0, x_2395); -lean_ctor_set(x_2438, 1, x_2437); -if (lean_is_scalar(x_2402)) { - x_2439 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2443, 0, x_2440); +lean_ctor_set(x_2443, 1, x_2442); +x_2444 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2444, 0, x_2401); +lean_ctor_set(x_2444, 1, x_2443); +if (lean_is_scalar(x_2408)) { + x_2445 = lean_alloc_ctor(0, 2, 0); } else { - x_2439 = x_2402; + x_2445 = x_2408; } -lean_ctor_set(x_2439, 0, x_2438); -lean_ctor_set(x_2439, 1, x_2401); -return x_2439; +lean_ctor_set(x_2445, 0, x_2444); +lean_ctor_set(x_2445, 1, x_2407); +return x_2445; } } } else { -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; uint8_t x_2452; +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; uint8_t x_2458; lean_dec(x_196); lean_dec(x_195); lean_inc(x_5); -x_2440 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2441 = lean_ctor_get(x_2440, 0); -lean_inc(x_2441); -x_2442 = lean_ctor_get(x_2440, 1); -lean_inc(x_2442); -lean_dec(x_2440); -x_2443 = lean_unsigned_to_nat(1u); -x_2444 = lean_nat_add(x_3, x_2443); +x_2446 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2447 = lean_ctor_get(x_2446, 0); +lean_inc(x_2447); +x_2448 = lean_ctor_get(x_2446, 1); +lean_inc(x_2448); +lean_dec(x_2446); +x_2449 = lean_unsigned_to_nat(1u); +x_2450 = lean_nat_add(x_3, x_2449); lean_dec(x_3); -x_2445 = l_Lean_mkHole(x_19); -lean_inc(x_2441); -x_2446 = l_Lean_Elab_Term_mkExplicitBinder(x_2441, x_2445); -x_2447 = lean_array_push(x_4, x_2446); +x_2451 = l_Lean_mkHole(x_19); +lean_inc(x_2447); +x_2452 = l_Lean_Elab_Term_mkExplicitBinder(x_2447, x_2451); +x_2453 = lean_array_push(x_4, x_2452); lean_inc(x_5); -x_2448 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2444, x_2447, x_5, x_6, x_7, x_8, x_9, x_10, x_2442); -x_2449 = lean_ctor_get(x_2448, 0); -lean_inc(x_2449); -x_2450 = lean_ctor_get(x_2449, 1); -lean_inc(x_2450); -x_2451 = lean_ctor_get(x_2448, 1); -lean_inc(x_2451); -lean_dec(x_2448); -x_2452 = !lean_is_exclusive(x_2449); -if (x_2452 == 0) +x_2454 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2450, x_2453, x_5, x_6, x_7, x_8, x_9, x_10, x_2448); +x_2455 = lean_ctor_get(x_2454, 0); +lean_inc(x_2455); +x_2456 = lean_ctor_get(x_2455, 1); +lean_inc(x_2456); +x_2457 = lean_ctor_get(x_2454, 1); +lean_inc(x_2457); +lean_dec(x_2454); +x_2458 = !lean_is_exclusive(x_2455); +if (x_2458 == 0) { -lean_object* x_2453; uint8_t x_2454; -x_2453 = lean_ctor_get(x_2449, 1); -lean_dec(x_2453); -x_2454 = !lean_is_exclusive(x_2450); -if (x_2454 == 0) -{ -lean_object* x_2455; lean_object* x_2456; lean_object* x_2457; lean_object* x_2458; lean_object* x_2459; uint8_t x_2460; -x_2455 = lean_ctor_get(x_2450, 0); -x_2456 = lean_ctor_get(x_2450, 1); -lean_dec(x_2456); -x_2457 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2451); -lean_dec(x_5); -x_2458 = lean_ctor_get(x_2457, 1); -lean_inc(x_2458); -lean_dec(x_2457); -x_2459 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2458); -x_2460 = !lean_is_exclusive(x_2459); +lean_object* x_2459; uint8_t x_2460; +x_2459 = lean_ctor_get(x_2455, 1); +lean_dec(x_2459); +x_2460 = !lean_is_exclusive(x_2456); if (x_2460 == 0) { -lean_object* x_2461; lean_object* x_2462; lean_object* x_2463; lean_object* x_2464; lean_object* x_2465; lean_object* x_2466; lean_object* x_2467; lean_object* x_2468; lean_object* x_2469; lean_object* x_2470; lean_object* x_2471; lean_object* x_2472; lean_object* x_2473; lean_object* x_2474; lean_object* x_2475; lean_object* x_2476; uint8_t x_2477; -x_2461 = lean_ctor_get(x_2459, 0); -lean_dec(x_2461); -x_2462 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2463 = lean_array_push(x_2462, x_2441); -x_2464 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2465 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2465, 0, x_2464); -lean_ctor_set(x_2465, 1, x_2463); -x_2466 = l_Array_empty___closed__1; -x_2467 = lean_array_push(x_2466, x_2465); -x_2468 = l_Lean_nullKind___closed__2; -x_2469 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2469, 0, x_2468); -lean_ctor_set(x_2469, 1, x_2467); -x_2470 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2471 = lean_array_push(x_2470, x_2469); -x_2472 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2473 = lean_array_push(x_2471, x_2472); -x_2474 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2475 = lean_array_push(x_2473, x_2474); -lean_inc(x_19); -x_2476 = lean_array_push(x_2466, x_19); -x_2477 = !lean_is_exclusive(x_19); -if (x_2477 == 0) +lean_object* x_2461; lean_object* x_2462; lean_object* x_2463; lean_object* x_2464; lean_object* x_2465; uint8_t x_2466; +x_2461 = lean_ctor_get(x_2456, 0); +x_2462 = lean_ctor_get(x_2456, 1); +lean_dec(x_2462); +x_2463 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2457); +lean_dec(x_5); +x_2464 = lean_ctor_get(x_2463, 1); +lean_inc(x_2464); +lean_dec(x_2463); +x_2465 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2464); +x_2466 = !lean_is_exclusive(x_2465); +if (x_2466 == 0) { -lean_object* x_2478; lean_object* x_2479; lean_object* x_2480; lean_object* x_2481; lean_object* x_2482; lean_object* x_2483; lean_object* x_2484; lean_object* x_2485; lean_object* x_2486; lean_object* x_2487; lean_object* x_2488; lean_object* x_2489; lean_object* x_2490; lean_object* x_2491; lean_object* x_2492; lean_object* x_2493; lean_object* x_2494; uint8_t x_2495; lean_object* x_2496; -x_2478 = lean_ctor_get(x_19, 1); -lean_dec(x_2478); -x_2479 = lean_ctor_get(x_19, 0); -lean_dec(x_2479); -lean_ctor_set(x_19, 1, x_2476); -lean_ctor_set(x_19, 0, x_2468); -x_2480 = lean_array_push(x_2466, x_19); -x_2481 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2482 = lean_array_push(x_2480, x_2481); -x_2483 = lean_array_push(x_2482, x_2455); -x_2484 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2485 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2485, 0, x_2484); -lean_ctor_set(x_2485, 1, x_2483); -x_2486 = lean_array_push(x_2466, x_2485); -x_2487 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2487, 0, x_2468); -lean_ctor_set(x_2487, 1, x_2486); -x_2488 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2489 = lean_array_push(x_2488, x_2487); -x_2490 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +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; lean_object* x_2482; uint8_t x_2483; +x_2467 = lean_ctor_get(x_2465, 0); +lean_dec(x_2467); +x_2468 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2469 = lean_array_push(x_2468, x_2447); +x_2470 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2471 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2471, 0, x_2470); +lean_ctor_set(x_2471, 1, x_2469); +x_2472 = l_Array_empty___closed__1; +x_2473 = lean_array_push(x_2472, x_2471); +x_2474 = l_Lean_nullKind___closed__2; +x_2475 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2475, 0, x_2474); +lean_ctor_set(x_2475, 1, x_2473); +x_2476 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2477 = lean_array_push(x_2476, x_2475); +x_2478 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2479 = lean_array_push(x_2477, x_2478); +x_2480 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2481 = lean_array_push(x_2479, x_2480); +lean_inc(x_19); +x_2482 = lean_array_push(x_2472, x_19); +x_2483 = !lean_is_exclusive(x_19); +if (x_2483 == 0) +{ +lean_object* x_2484; lean_object* x_2485; lean_object* x_2486; lean_object* x_2487; lean_object* x_2488; lean_object* x_2489; lean_object* x_2490; lean_object* x_2491; lean_object* x_2492; lean_object* x_2493; 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; uint8_t x_2501; lean_object* x_2502; +x_2484 = lean_ctor_get(x_19, 1); +lean_dec(x_2484); +x_2485 = lean_ctor_get(x_19, 0); +lean_dec(x_2485); +lean_ctor_set(x_19, 1, x_2482); +lean_ctor_set(x_19, 0, x_2474); +x_2486 = lean_array_push(x_2472, x_19); +x_2487 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2488 = lean_array_push(x_2486, x_2487); +x_2489 = lean_array_push(x_2488, x_2461); +x_2490 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2491 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2491, 0, x_2490); lean_ctor_set(x_2491, 1, x_2489); -x_2492 = lean_array_push(x_2475, x_2491); -x_2493 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2494 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2494, 0, x_2493); -lean_ctor_set(x_2494, 1, x_2492); -x_2495 = 1; -x_2496 = lean_box(x_2495); -lean_ctor_set(x_2450, 1, x_2496); -lean_ctor_set(x_2450, 0, x_2494); -lean_ctor_set(x_2459, 0, x_2449); -return x_2459; +x_2492 = lean_array_push(x_2472, x_2491); +x_2493 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2493, 0, x_2474); +lean_ctor_set(x_2493, 1, x_2492); +x_2494 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2495 = lean_array_push(x_2494, x_2493); +x_2496 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2497 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2497, 0, x_2496); +lean_ctor_set(x_2497, 1, x_2495); +x_2498 = lean_array_push(x_2481, x_2497); +x_2499 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2500 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2500, 0, x_2499); +lean_ctor_set(x_2500, 1, x_2498); +x_2501 = 1; +x_2502 = lean_box(x_2501); +lean_ctor_set(x_2456, 1, x_2502); +lean_ctor_set(x_2456, 0, x_2500); +lean_ctor_set(x_2465, 0, x_2455); +return x_2465; } else { -lean_object* x_2497; 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; uint8_t x_2513; lean_object* x_2514; +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; uint8_t x_2519; lean_object* x_2520; lean_dec(x_19); -x_2497 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2497, 0, x_2468); -lean_ctor_set(x_2497, 1, x_2476); -x_2498 = lean_array_push(x_2466, x_2497); -x_2499 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2500 = lean_array_push(x_2498, x_2499); -x_2501 = lean_array_push(x_2500, x_2455); -x_2502 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2503 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2503, 0, x_2502); -lean_ctor_set(x_2503, 1, x_2501); -x_2504 = lean_array_push(x_2466, x_2503); -x_2505 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2505, 0, x_2468); -lean_ctor_set(x_2505, 1, x_2504); -x_2506 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2507 = lean_array_push(x_2506, x_2505); -x_2508 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_ctor_set(x_2503, 0, x_2474); +lean_ctor_set(x_2503, 1, x_2482); +x_2504 = lean_array_push(x_2472, x_2503); +x_2505 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2506 = lean_array_push(x_2504, x_2505); +x_2507 = lean_array_push(x_2506, x_2461); +x_2508 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2509 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2509, 0, x_2508); lean_ctor_set(x_2509, 1, x_2507); -x_2510 = lean_array_push(x_2475, x_2509); -x_2511 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2512 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2512, 0, x_2511); -lean_ctor_set(x_2512, 1, x_2510); -x_2513 = 1; -x_2514 = lean_box(x_2513); -lean_ctor_set(x_2450, 1, x_2514); -lean_ctor_set(x_2450, 0, x_2512); -lean_ctor_set(x_2459, 0, x_2449); -return x_2459; +x_2510 = lean_array_push(x_2472, x_2509); +x_2511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2511, 0, x_2474); +lean_ctor_set(x_2511, 1, x_2510); +x_2512 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2513 = lean_array_push(x_2512, x_2511); +x_2514 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2515 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2515, 0, x_2514); +lean_ctor_set(x_2515, 1, x_2513); +x_2516 = lean_array_push(x_2481, x_2515); +x_2517 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2518 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2518, 0, x_2517); +lean_ctor_set(x_2518, 1, x_2516); +x_2519 = 1; +x_2520 = lean_box(x_2519); +lean_ctor_set(x_2456, 1, x_2520); +lean_ctor_set(x_2456, 0, x_2518); +lean_ctor_set(x_2465, 0, x_2455); +return x_2465; } } else { -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; lean_object* x_2540; lean_object* x_2541; lean_object* x_2542; lean_object* x_2543; lean_object* x_2544; lean_object* x_2545; lean_object* x_2546; lean_object* x_2547; uint8_t x_2548; lean_object* x_2549; lean_object* x_2550; -x_2515 = lean_ctor_get(x_2459, 1); -lean_inc(x_2515); -lean_dec(x_2459); -x_2516 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2517 = lean_array_push(x_2516, x_2441); -x_2518 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2519 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2519, 0, x_2518); -lean_ctor_set(x_2519, 1, x_2517); -x_2520 = l_Array_empty___closed__1; -x_2521 = lean_array_push(x_2520, x_2519); -x_2522 = l_Lean_nullKind___closed__2; -x_2523 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2523, 0, x_2522); -lean_ctor_set(x_2523, 1, x_2521); -x_2524 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2525 = lean_array_push(x_2524, x_2523); -x_2526 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2527 = lean_array_push(x_2525, x_2526); -x_2528 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2529 = lean_array_push(x_2527, x_2528); +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; lean_object* x_2540; lean_object* x_2541; lean_object* x_2542; lean_object* 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; uint8_t x_2554; lean_object* x_2555; lean_object* x_2556; +x_2521 = lean_ctor_get(x_2465, 1); +lean_inc(x_2521); +lean_dec(x_2465); +x_2522 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2523 = lean_array_push(x_2522, x_2447); +x_2524 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2525 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2525, 0, x_2524); +lean_ctor_set(x_2525, 1, x_2523); +x_2526 = l_Array_empty___closed__1; +x_2527 = lean_array_push(x_2526, x_2525); +x_2528 = l_Lean_nullKind___closed__2; +x_2529 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2529, 0, x_2528); +lean_ctor_set(x_2529, 1, x_2527); +x_2530 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2531 = lean_array_push(x_2530, x_2529); +x_2532 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2533 = lean_array_push(x_2531, x_2532); +x_2534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2535 = lean_array_push(x_2533, x_2534); lean_inc(x_19); -x_2530 = lean_array_push(x_2520, x_19); +x_2536 = lean_array_push(x_2526, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2531 = x_19; + x_2537 = x_19; } else { lean_dec_ref(x_19); - x_2531 = lean_box(0); + x_2537 = lean_box(0); } -if (lean_is_scalar(x_2531)) { - x_2532 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2537)) { + x_2538 = lean_alloc_ctor(1, 2, 0); } else { - x_2532 = x_2531; + x_2538 = x_2537; } -lean_ctor_set(x_2532, 0, x_2522); -lean_ctor_set(x_2532, 1, x_2530); -x_2533 = lean_array_push(x_2520, x_2532); -x_2534 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2535 = lean_array_push(x_2533, x_2534); -x_2536 = lean_array_push(x_2535, x_2455); -x_2537 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2538 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2538, 0, x_2537); +lean_ctor_set(x_2538, 0, x_2528); lean_ctor_set(x_2538, 1, x_2536); -x_2539 = lean_array_push(x_2520, x_2538); -x_2540 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2540, 0, x_2522); -lean_ctor_set(x_2540, 1, x_2539); -x_2541 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2542 = lean_array_push(x_2541, x_2540); -x_2543 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2539 = lean_array_push(x_2526, x_2538); +x_2540 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2541 = lean_array_push(x_2539, x_2540); +x_2542 = lean_array_push(x_2541, x_2461); +x_2543 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2544 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2544, 0, x_2543); lean_ctor_set(x_2544, 1, x_2542); -x_2545 = lean_array_push(x_2529, x_2544); -x_2546 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2547 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2547, 0, x_2546); -lean_ctor_set(x_2547, 1, x_2545); -x_2548 = 1; -x_2549 = lean_box(x_2548); -lean_ctor_set(x_2450, 1, x_2549); -lean_ctor_set(x_2450, 0, x_2547); -x_2550 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2550, 0, x_2449); -lean_ctor_set(x_2550, 1, x_2515); -return x_2550; +x_2545 = lean_array_push(x_2526, x_2544); +x_2546 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2546, 0, x_2528); +lean_ctor_set(x_2546, 1, x_2545); +x_2547 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2548 = lean_array_push(x_2547, x_2546); +x_2549 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2550 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2550, 0, x_2549); +lean_ctor_set(x_2550, 1, x_2548); +x_2551 = lean_array_push(x_2535, x_2550); +x_2552 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2553 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2553, 0, x_2552); +lean_ctor_set(x_2553, 1, x_2551); +x_2554 = 1; +x_2555 = lean_box(x_2554); +lean_ctor_set(x_2456, 1, x_2555); +lean_ctor_set(x_2456, 0, x_2553); +x_2556 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2556, 0, x_2455); +lean_ctor_set(x_2556, 1, x_2521); +return x_2556; } } else { -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; lean_object* x_2572; lean_object* x_2573; lean_object* 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; lean_object* x_2584; lean_object* x_2585; lean_object* x_2586; lean_object* x_2587; lean_object* x_2588; uint8_t x_2589; lean_object* x_2590; lean_object* x_2591; lean_object* x_2592; -x_2551 = lean_ctor_get(x_2450, 0); -lean_inc(x_2551); -lean_dec(x_2450); -x_2552 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2451); +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; lean_object* x_2572; lean_object* x_2573; lean_object* 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; 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; uint8_t x_2595; lean_object* x_2596; lean_object* x_2597; lean_object* x_2598; +x_2557 = lean_ctor_get(x_2456, 0); +lean_inc(x_2557); +lean_dec(x_2456); +x_2558 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2457); lean_dec(x_5); -x_2553 = lean_ctor_get(x_2552, 1); -lean_inc(x_2553); -lean_dec(x_2552); -x_2554 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2553); -x_2555 = lean_ctor_get(x_2554, 1); -lean_inc(x_2555); -if (lean_is_exclusive(x_2554)) { - lean_ctor_release(x_2554, 0); - lean_ctor_release(x_2554, 1); - x_2556 = x_2554; +x_2559 = lean_ctor_get(x_2558, 1); +lean_inc(x_2559); +lean_dec(x_2558); +x_2560 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2559); +x_2561 = lean_ctor_get(x_2560, 1); +lean_inc(x_2561); +if (lean_is_exclusive(x_2560)) { + lean_ctor_release(x_2560, 0); + lean_ctor_release(x_2560, 1); + x_2562 = x_2560; } else { - lean_dec_ref(x_2554); - x_2556 = lean_box(0); + lean_dec_ref(x_2560); + x_2562 = lean_box(0); } -x_2557 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2558 = lean_array_push(x_2557, x_2441); -x_2559 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2560 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2560, 0, x_2559); -lean_ctor_set(x_2560, 1, x_2558); -x_2561 = l_Array_empty___closed__1; -x_2562 = lean_array_push(x_2561, x_2560); -x_2563 = l_Lean_nullKind___closed__2; -x_2564 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2564, 0, x_2563); -lean_ctor_set(x_2564, 1, x_2562); -x_2565 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2566 = lean_array_push(x_2565, x_2564); -x_2567 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2568 = lean_array_push(x_2566, x_2567); -x_2569 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2570 = lean_array_push(x_2568, x_2569); +x_2563 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2564 = lean_array_push(x_2563, x_2447); +x_2565 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2566 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2566, 0, x_2565); +lean_ctor_set(x_2566, 1, x_2564); +x_2567 = l_Array_empty___closed__1; +x_2568 = lean_array_push(x_2567, x_2566); +x_2569 = l_Lean_nullKind___closed__2; +x_2570 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2570, 0, x_2569); +lean_ctor_set(x_2570, 1, x_2568); +x_2571 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2572 = lean_array_push(x_2571, x_2570); +x_2573 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2574 = lean_array_push(x_2572, x_2573); +x_2575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2576 = lean_array_push(x_2574, x_2575); lean_inc(x_19); -x_2571 = lean_array_push(x_2561, x_19); +x_2577 = lean_array_push(x_2567, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2572 = x_19; + x_2578 = x_19; } else { lean_dec_ref(x_19); - x_2572 = lean_box(0); + x_2578 = lean_box(0); } -if (lean_is_scalar(x_2572)) { - x_2573 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2578)) { + x_2579 = lean_alloc_ctor(1, 2, 0); } else { - x_2573 = x_2572; + x_2579 = x_2578; } -lean_ctor_set(x_2573, 0, x_2563); -lean_ctor_set(x_2573, 1, x_2571); -x_2574 = lean_array_push(x_2561, x_2573); -x_2575 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2576 = lean_array_push(x_2574, x_2575); -x_2577 = lean_array_push(x_2576, x_2551); -x_2578 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2579 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2579, 0, x_2578); +lean_ctor_set(x_2579, 0, x_2569); lean_ctor_set(x_2579, 1, x_2577); -x_2580 = lean_array_push(x_2561, x_2579); -x_2581 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2581, 0, x_2563); -lean_ctor_set(x_2581, 1, x_2580); -x_2582 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2583 = lean_array_push(x_2582, x_2581); -x_2584 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2580 = lean_array_push(x_2567, x_2579); +x_2581 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2582 = lean_array_push(x_2580, x_2581); +x_2583 = lean_array_push(x_2582, x_2557); +x_2584 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2585 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2585, 0, x_2584); lean_ctor_set(x_2585, 1, x_2583); -x_2586 = lean_array_push(x_2570, x_2585); -x_2587 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2588 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2588, 0, x_2587); -lean_ctor_set(x_2588, 1, x_2586); -x_2589 = 1; -x_2590 = lean_box(x_2589); -x_2591 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2591, 0, x_2588); -lean_ctor_set(x_2591, 1, x_2590); -lean_ctor_set(x_2449, 1, x_2591); -if (lean_is_scalar(x_2556)) { - x_2592 = lean_alloc_ctor(0, 2, 0); +x_2586 = lean_array_push(x_2567, x_2585); +x_2587 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2587, 0, x_2569); +lean_ctor_set(x_2587, 1, x_2586); +x_2588 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2589 = lean_array_push(x_2588, x_2587); +x_2590 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2591 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2591, 0, x_2590); +lean_ctor_set(x_2591, 1, x_2589); +x_2592 = lean_array_push(x_2576, x_2591); +x_2593 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2594 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2594, 0, x_2593); +lean_ctor_set(x_2594, 1, x_2592); +x_2595 = 1; +x_2596 = lean_box(x_2595); +x_2597 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2597, 0, x_2594); +lean_ctor_set(x_2597, 1, x_2596); +lean_ctor_set(x_2455, 1, x_2597); +if (lean_is_scalar(x_2562)) { + x_2598 = lean_alloc_ctor(0, 2, 0); } else { - x_2592 = x_2556; + x_2598 = x_2562; } -lean_ctor_set(x_2592, 0, x_2449); -lean_ctor_set(x_2592, 1, x_2555); -return x_2592; +lean_ctor_set(x_2598, 0, x_2455); +lean_ctor_set(x_2598, 1, x_2561); +return x_2598; } } else { -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; lean_object* x_2619; lean_object* x_2620; lean_object* x_2621; lean_object* x_2622; lean_object* x_2623; lean_object* x_2624; lean_object* x_2625; lean_object* x_2626; lean_object* x_2627; lean_object* x_2628; lean_object* x_2629; lean_object* x_2630; lean_object* x_2631; lean_object* x_2632; uint8_t x_2633; lean_object* x_2634; lean_object* x_2635; lean_object* x_2636; lean_object* x_2637; -x_2593 = lean_ctor_get(x_2449, 0); -lean_inc(x_2593); -lean_dec(x_2449); -x_2594 = lean_ctor_get(x_2450, 0); -lean_inc(x_2594); -if (lean_is_exclusive(x_2450)) { - lean_ctor_release(x_2450, 0); - lean_ctor_release(x_2450, 1); - x_2595 = x_2450; -} else { - lean_dec_ref(x_2450); - x_2595 = lean_box(0); -} -x_2596 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2451); -lean_dec(x_5); -x_2597 = lean_ctor_get(x_2596, 1); -lean_inc(x_2597); -lean_dec(x_2596); -x_2598 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2597); -x_2599 = lean_ctor_get(x_2598, 1); +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; lean_object* x_2619; lean_object* x_2620; lean_object* x_2621; lean_object* x_2622; lean_object* x_2623; lean_object* x_2624; lean_object* x_2625; lean_object* x_2626; lean_object* x_2627; lean_object* x_2628; lean_object* x_2629; lean_object* x_2630; lean_object* x_2631; lean_object* x_2632; lean_object* x_2633; lean_object* x_2634; lean_object* x_2635; lean_object* x_2636; lean_object* x_2637; lean_object* x_2638; uint8_t x_2639; lean_object* x_2640; lean_object* x_2641; lean_object* x_2642; lean_object* x_2643; +x_2599 = lean_ctor_get(x_2455, 0); lean_inc(x_2599); -if (lean_is_exclusive(x_2598)) { - lean_ctor_release(x_2598, 0); - lean_ctor_release(x_2598, 1); - x_2600 = x_2598; +lean_dec(x_2455); +x_2600 = lean_ctor_get(x_2456, 0); +lean_inc(x_2600); +if (lean_is_exclusive(x_2456)) { + lean_ctor_release(x_2456, 0); + lean_ctor_release(x_2456, 1); + x_2601 = x_2456; } else { - lean_dec_ref(x_2598); - x_2600 = lean_box(0); + lean_dec_ref(x_2456); + x_2601 = lean_box(0); } -x_2601 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2602 = lean_array_push(x_2601, x_2441); -x_2603 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2604 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2604, 0, x_2603); -lean_ctor_set(x_2604, 1, x_2602); -x_2605 = l_Array_empty___closed__1; -x_2606 = lean_array_push(x_2605, x_2604); -x_2607 = l_Lean_nullKind___closed__2; -x_2608 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2608, 0, x_2607); -lean_ctor_set(x_2608, 1, x_2606); -x_2609 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2610 = lean_array_push(x_2609, x_2608); -x_2611 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2612 = lean_array_push(x_2610, x_2611); -x_2613 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2614 = lean_array_push(x_2612, x_2613); +x_2602 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2457); +lean_dec(x_5); +x_2603 = lean_ctor_get(x_2602, 1); +lean_inc(x_2603); +lean_dec(x_2602); +x_2604 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2603); +x_2605 = lean_ctor_get(x_2604, 1); +lean_inc(x_2605); +if (lean_is_exclusive(x_2604)) { + lean_ctor_release(x_2604, 0); + lean_ctor_release(x_2604, 1); + x_2606 = x_2604; +} else { + lean_dec_ref(x_2604); + x_2606 = lean_box(0); +} +x_2607 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2608 = lean_array_push(x_2607, x_2447); +x_2609 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2610 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2610, 0, x_2609); +lean_ctor_set(x_2610, 1, x_2608); +x_2611 = l_Array_empty___closed__1; +x_2612 = lean_array_push(x_2611, x_2610); +x_2613 = l_Lean_nullKind___closed__2; +x_2614 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2614, 0, x_2613); +lean_ctor_set(x_2614, 1, x_2612); +x_2615 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2616 = lean_array_push(x_2615, x_2614); +x_2617 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2618 = lean_array_push(x_2616, x_2617); +x_2619 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2620 = lean_array_push(x_2618, x_2619); lean_inc(x_19); -x_2615 = lean_array_push(x_2605, x_19); +x_2621 = lean_array_push(x_2611, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2616 = x_19; + x_2622 = x_19; } else { lean_dec_ref(x_19); - x_2616 = lean_box(0); + x_2622 = lean_box(0); } -if (lean_is_scalar(x_2616)) { - x_2617 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2622)) { + x_2623 = lean_alloc_ctor(1, 2, 0); } else { - x_2617 = x_2616; + x_2623 = x_2622; } -lean_ctor_set(x_2617, 0, x_2607); -lean_ctor_set(x_2617, 1, x_2615); -x_2618 = lean_array_push(x_2605, x_2617); -x_2619 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2620 = lean_array_push(x_2618, x_2619); -x_2621 = lean_array_push(x_2620, x_2594); -x_2622 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2623 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2623, 0, x_2622); +lean_ctor_set(x_2623, 0, x_2613); lean_ctor_set(x_2623, 1, x_2621); -x_2624 = lean_array_push(x_2605, x_2623); -x_2625 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2625, 0, x_2607); -lean_ctor_set(x_2625, 1, x_2624); -x_2626 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2627 = lean_array_push(x_2626, x_2625); -x_2628 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2624 = lean_array_push(x_2611, x_2623); +x_2625 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2626 = lean_array_push(x_2624, x_2625); +x_2627 = lean_array_push(x_2626, x_2600); +x_2628 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2629 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2629, 0, x_2628); lean_ctor_set(x_2629, 1, x_2627); -x_2630 = lean_array_push(x_2614, x_2629); -x_2631 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2632 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2632, 0, x_2631); -lean_ctor_set(x_2632, 1, x_2630); -x_2633 = 1; -x_2634 = lean_box(x_2633); -if (lean_is_scalar(x_2595)) { - x_2635 = lean_alloc_ctor(0, 2, 0); +x_2630 = lean_array_push(x_2611, x_2629); +x_2631 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2631, 0, x_2613); +lean_ctor_set(x_2631, 1, x_2630); +x_2632 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2633 = lean_array_push(x_2632, x_2631); +x_2634 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2635 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2635, 0, x_2634); +lean_ctor_set(x_2635, 1, x_2633); +x_2636 = lean_array_push(x_2620, x_2635); +x_2637 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2638 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2638, 0, x_2637); +lean_ctor_set(x_2638, 1, x_2636); +x_2639 = 1; +x_2640 = lean_box(x_2639); +if (lean_is_scalar(x_2601)) { + x_2641 = lean_alloc_ctor(0, 2, 0); } else { - x_2635 = x_2595; + x_2641 = x_2601; } -lean_ctor_set(x_2635, 0, x_2632); -lean_ctor_set(x_2635, 1, x_2634); -x_2636 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2636, 0, x_2593); -lean_ctor_set(x_2636, 1, x_2635); -if (lean_is_scalar(x_2600)) { - x_2637 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2641, 0, x_2638); +lean_ctor_set(x_2641, 1, x_2640); +x_2642 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2642, 0, x_2599); +lean_ctor_set(x_2642, 1, x_2641); +if (lean_is_scalar(x_2606)) { + x_2643 = lean_alloc_ctor(0, 2, 0); } else { - x_2637 = x_2600; + x_2643 = x_2606; } -lean_ctor_set(x_2637, 0, x_2636); -lean_ctor_set(x_2637, 1, x_2599); -return x_2637; +lean_ctor_set(x_2643, 0, x_2642); +lean_ctor_set(x_2643, 1, x_2605); +return x_2643; } } } else { -lean_object* x_2638; lean_object* x_2639; lean_object* x_2640; lean_object* x_2641; lean_object* x_2642; lean_object* x_2643; lean_object* x_2644; lean_object* x_2645; lean_object* x_2646; lean_object* x_2647; lean_object* x_2648; lean_object* x_2649; uint8_t x_2650; +lean_object* x_2644; lean_object* x_2645; lean_object* x_2646; 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; lean_object* x_2655; uint8_t x_2656; lean_dec(x_195); lean_inc(x_5); -x_2638 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2639 = lean_ctor_get(x_2638, 0); -lean_inc(x_2639); -x_2640 = lean_ctor_get(x_2638, 1); -lean_inc(x_2640); -lean_dec(x_2638); -x_2641 = lean_unsigned_to_nat(1u); -x_2642 = lean_nat_add(x_3, x_2641); +x_2644 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2645 = lean_ctor_get(x_2644, 0); +lean_inc(x_2645); +x_2646 = lean_ctor_get(x_2644, 1); +lean_inc(x_2646); +lean_dec(x_2644); +x_2647 = lean_unsigned_to_nat(1u); +x_2648 = lean_nat_add(x_3, x_2647); lean_dec(x_3); -x_2643 = l_Lean_mkHole(x_19); -lean_inc(x_2639); -x_2644 = l_Lean_Elab_Term_mkExplicitBinder(x_2639, x_2643); -x_2645 = lean_array_push(x_4, x_2644); +x_2649 = l_Lean_mkHole(x_19); +lean_inc(x_2645); +x_2650 = l_Lean_Elab_Term_mkExplicitBinder(x_2645, x_2649); +x_2651 = lean_array_push(x_4, x_2650); lean_inc(x_5); -x_2646 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2642, x_2645, x_5, x_6, x_7, x_8, x_9, x_10, x_2640); -x_2647 = lean_ctor_get(x_2646, 0); -lean_inc(x_2647); -x_2648 = lean_ctor_get(x_2647, 1); -lean_inc(x_2648); -x_2649 = lean_ctor_get(x_2646, 1); -lean_inc(x_2649); -lean_dec(x_2646); -x_2650 = !lean_is_exclusive(x_2647); -if (x_2650 == 0) +x_2652 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2648, x_2651, x_5, x_6, x_7, x_8, x_9, x_10, x_2646); +x_2653 = lean_ctor_get(x_2652, 0); +lean_inc(x_2653); +x_2654 = lean_ctor_get(x_2653, 1); +lean_inc(x_2654); +x_2655 = lean_ctor_get(x_2652, 1); +lean_inc(x_2655); +lean_dec(x_2652); +x_2656 = !lean_is_exclusive(x_2653); +if (x_2656 == 0) { -lean_object* x_2651; uint8_t x_2652; -x_2651 = lean_ctor_get(x_2647, 1); -lean_dec(x_2651); -x_2652 = !lean_is_exclusive(x_2648); -if (x_2652 == 0) -{ -lean_object* x_2653; lean_object* x_2654; lean_object* x_2655; lean_object* x_2656; lean_object* x_2657; uint8_t x_2658; -x_2653 = lean_ctor_get(x_2648, 0); -x_2654 = lean_ctor_get(x_2648, 1); -lean_dec(x_2654); -x_2655 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2649); -lean_dec(x_5); -x_2656 = lean_ctor_get(x_2655, 1); -lean_inc(x_2656); -lean_dec(x_2655); -x_2657 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2656); -x_2658 = !lean_is_exclusive(x_2657); +lean_object* x_2657; uint8_t x_2658; +x_2657 = lean_ctor_get(x_2653, 1); +lean_dec(x_2657); +x_2658 = !lean_is_exclusive(x_2654); if (x_2658 == 0) { -lean_object* x_2659; lean_object* x_2660; lean_object* x_2661; 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; uint8_t x_2675; -x_2659 = lean_ctor_get(x_2657, 0); -lean_dec(x_2659); -x_2660 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2661 = lean_array_push(x_2660, x_2639); -x_2662 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2663 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2663, 0, x_2662); -lean_ctor_set(x_2663, 1, x_2661); -x_2664 = l_Array_empty___closed__1; -x_2665 = lean_array_push(x_2664, x_2663); -x_2666 = l_Lean_nullKind___closed__2; -x_2667 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2667, 0, x_2666); -lean_ctor_set(x_2667, 1, x_2665); -x_2668 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2669 = lean_array_push(x_2668, x_2667); -x_2670 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2671 = lean_array_push(x_2669, x_2670); -x_2672 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2673 = lean_array_push(x_2671, x_2672); -lean_inc(x_19); -x_2674 = lean_array_push(x_2664, x_19); -x_2675 = !lean_is_exclusive(x_19); -if (x_2675 == 0) +lean_object* x_2659; lean_object* x_2660; lean_object* x_2661; lean_object* x_2662; lean_object* x_2663; uint8_t x_2664; +x_2659 = lean_ctor_get(x_2654, 0); +x_2660 = lean_ctor_get(x_2654, 1); +lean_dec(x_2660); +x_2661 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2655); +lean_dec(x_5); +x_2662 = lean_ctor_get(x_2661, 1); +lean_inc(x_2662); +lean_dec(x_2661); +x_2663 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2662); +x_2664 = !lean_is_exclusive(x_2663); +if (x_2664 == 0) { -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; uint8_t x_2693; lean_object* x_2694; -x_2676 = lean_ctor_get(x_19, 1); -lean_dec(x_2676); -x_2677 = lean_ctor_get(x_19, 0); -lean_dec(x_2677); -lean_ctor_set(x_19, 1, x_2674); -lean_ctor_set(x_19, 0, x_2666); -x_2678 = lean_array_push(x_2664, x_19); -x_2679 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2680 = lean_array_push(x_2678, x_2679); -x_2681 = lean_array_push(x_2680, x_2653); -x_2682 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2683 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2683, 0, x_2682); -lean_ctor_set(x_2683, 1, x_2681); -x_2684 = lean_array_push(x_2664, x_2683); -x_2685 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2685, 0, x_2666); -lean_ctor_set(x_2685, 1, x_2684); -x_2686 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2687 = lean_array_push(x_2686, x_2685); -x_2688 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +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; uint8_t x_2681; +x_2665 = lean_ctor_get(x_2663, 0); +lean_dec(x_2665); +x_2666 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2667 = lean_array_push(x_2666, x_2645); +x_2668 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2669 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2669, 0, x_2668); +lean_ctor_set(x_2669, 1, x_2667); +x_2670 = l_Array_empty___closed__1; +x_2671 = lean_array_push(x_2670, x_2669); +x_2672 = l_Lean_nullKind___closed__2; +x_2673 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2673, 0, x_2672); +lean_ctor_set(x_2673, 1, x_2671); +x_2674 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2675 = lean_array_push(x_2674, x_2673); +x_2676 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2677 = lean_array_push(x_2675, x_2676); +x_2678 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2679 = lean_array_push(x_2677, x_2678); +lean_inc(x_19); +x_2680 = lean_array_push(x_2670, x_19); +x_2681 = !lean_is_exclusive(x_19); +if (x_2681 == 0) +{ +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; uint8_t x_2699; lean_object* x_2700; +x_2682 = lean_ctor_get(x_19, 1); +lean_dec(x_2682); +x_2683 = lean_ctor_get(x_19, 0); +lean_dec(x_2683); +lean_ctor_set(x_19, 1, x_2680); +lean_ctor_set(x_19, 0, x_2672); +x_2684 = lean_array_push(x_2670, x_19); +x_2685 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2686 = lean_array_push(x_2684, x_2685); +x_2687 = lean_array_push(x_2686, x_2659); +x_2688 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2689 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2689, 0, x_2688); lean_ctor_set(x_2689, 1, x_2687); -x_2690 = lean_array_push(x_2673, x_2689); -x_2691 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2692 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2692, 0, x_2691); -lean_ctor_set(x_2692, 1, x_2690); -x_2693 = 1; -x_2694 = lean_box(x_2693); -lean_ctor_set(x_2648, 1, x_2694); -lean_ctor_set(x_2648, 0, x_2692); -lean_ctor_set(x_2657, 0, x_2647); -return x_2657; +x_2690 = lean_array_push(x_2670, x_2689); +x_2691 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2691, 0, x_2672); +lean_ctor_set(x_2691, 1, x_2690); +x_2692 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2693 = lean_array_push(x_2692, x_2691); +x_2694 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2695 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2695, 0, x_2694); +lean_ctor_set(x_2695, 1, x_2693); +x_2696 = lean_array_push(x_2679, x_2695); +x_2697 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2698 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2698, 0, x_2697); +lean_ctor_set(x_2698, 1, x_2696); +x_2699 = 1; +x_2700 = lean_box(x_2699); +lean_ctor_set(x_2654, 1, x_2700); +lean_ctor_set(x_2654, 0, x_2698); +lean_ctor_set(x_2663, 0, x_2653); +return x_2663; } else { -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; lean_object* x_2704; lean_object* x_2705; lean_object* x_2706; lean_object* x_2707; lean_object* x_2708; lean_object* x_2709; lean_object* x_2710; uint8_t x_2711; lean_object* x_2712; +lean_object* x_2701; lean_object* x_2702; lean_object* x_2703; lean_object* x_2704; 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; lean_object* x_2713; lean_object* x_2714; lean_object* x_2715; lean_object* x_2716; uint8_t x_2717; lean_object* x_2718; lean_dec(x_19); -x_2695 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2695, 0, x_2666); -lean_ctor_set(x_2695, 1, x_2674); -x_2696 = lean_array_push(x_2664, x_2695); -x_2697 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2698 = lean_array_push(x_2696, x_2697); -x_2699 = lean_array_push(x_2698, x_2653); -x_2700 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2701 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2701, 0, x_2700); -lean_ctor_set(x_2701, 1, x_2699); -x_2702 = lean_array_push(x_2664, x_2701); -x_2703 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2703, 0, x_2666); -lean_ctor_set(x_2703, 1, x_2702); -x_2704 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2705 = lean_array_push(x_2704, x_2703); -x_2706 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_ctor_set(x_2701, 0, x_2672); +lean_ctor_set(x_2701, 1, x_2680); +x_2702 = lean_array_push(x_2670, x_2701); +x_2703 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2704 = lean_array_push(x_2702, x_2703); +x_2705 = lean_array_push(x_2704, x_2659); +x_2706 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2707 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2707, 0, x_2706); lean_ctor_set(x_2707, 1, x_2705); -x_2708 = lean_array_push(x_2673, x_2707); -x_2709 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2710 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2710, 0, x_2709); -lean_ctor_set(x_2710, 1, x_2708); -x_2711 = 1; -x_2712 = lean_box(x_2711); -lean_ctor_set(x_2648, 1, x_2712); -lean_ctor_set(x_2648, 0, x_2710); -lean_ctor_set(x_2657, 0, x_2647); -return x_2657; +x_2708 = lean_array_push(x_2670, x_2707); +x_2709 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2709, 0, x_2672); +lean_ctor_set(x_2709, 1, x_2708); +x_2710 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2711 = lean_array_push(x_2710, x_2709); +x_2712 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2713 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2713, 0, x_2712); +lean_ctor_set(x_2713, 1, x_2711); +x_2714 = lean_array_push(x_2679, x_2713); +x_2715 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2716 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2716, 0, x_2715); +lean_ctor_set(x_2716, 1, x_2714); +x_2717 = 1; +x_2718 = lean_box(x_2717); +lean_ctor_set(x_2654, 1, x_2718); +lean_ctor_set(x_2654, 0, x_2716); +lean_ctor_set(x_2663, 0, x_2653); +return x_2663; } } else { -lean_object* x_2713; lean_object* x_2714; lean_object* x_2715; lean_object* x_2716; lean_object* x_2717; lean_object* x_2718; lean_object* x_2719; lean_object* x_2720; lean_object* x_2721; lean_object* x_2722; lean_object* x_2723; lean_object* x_2724; lean_object* x_2725; lean_object* x_2726; lean_object* x_2727; lean_object* x_2728; lean_object* x_2729; lean_object* x_2730; lean_object* x_2731; lean_object* x_2732; lean_object* x_2733; lean_object* x_2734; lean_object* x_2735; lean_object* x_2736; lean_object* x_2737; lean_object* x_2738; lean_object* x_2739; lean_object* x_2740; lean_object* x_2741; lean_object* x_2742; lean_object* x_2743; lean_object* x_2744; lean_object* x_2745; uint8_t x_2746; lean_object* x_2747; lean_object* x_2748; -x_2713 = lean_ctor_get(x_2657, 1); -lean_inc(x_2713); -lean_dec(x_2657); -x_2714 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2715 = lean_array_push(x_2714, x_2639); -x_2716 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2717 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2717, 0, x_2716); -lean_ctor_set(x_2717, 1, x_2715); -x_2718 = l_Array_empty___closed__1; -x_2719 = lean_array_push(x_2718, x_2717); -x_2720 = l_Lean_nullKind___closed__2; -x_2721 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2721, 0, x_2720); -lean_ctor_set(x_2721, 1, x_2719); -x_2722 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2723 = lean_array_push(x_2722, x_2721); -x_2724 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2725 = lean_array_push(x_2723, x_2724); -x_2726 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2727 = lean_array_push(x_2725, x_2726); +lean_object* x_2719; lean_object* x_2720; lean_object* x_2721; lean_object* x_2722; lean_object* x_2723; lean_object* x_2724; lean_object* x_2725; lean_object* x_2726; lean_object* x_2727; lean_object* x_2728; lean_object* x_2729; lean_object* x_2730; lean_object* x_2731; lean_object* x_2732; lean_object* x_2733; lean_object* x_2734; lean_object* x_2735; lean_object* x_2736; lean_object* x_2737; lean_object* x_2738; lean_object* x_2739; lean_object* x_2740; lean_object* x_2741; lean_object* x_2742; lean_object* x_2743; lean_object* x_2744; lean_object* x_2745; lean_object* x_2746; lean_object* x_2747; lean_object* x_2748; lean_object* x_2749; lean_object* x_2750; lean_object* x_2751; uint8_t x_2752; lean_object* x_2753; lean_object* x_2754; +x_2719 = lean_ctor_get(x_2663, 1); +lean_inc(x_2719); +lean_dec(x_2663); +x_2720 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2721 = lean_array_push(x_2720, x_2645); +x_2722 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2723 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2723, 0, x_2722); +lean_ctor_set(x_2723, 1, x_2721); +x_2724 = l_Array_empty___closed__1; +x_2725 = lean_array_push(x_2724, x_2723); +x_2726 = l_Lean_nullKind___closed__2; +x_2727 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2727, 0, x_2726); +lean_ctor_set(x_2727, 1, x_2725); +x_2728 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2729 = lean_array_push(x_2728, x_2727); +x_2730 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2731 = lean_array_push(x_2729, x_2730); +x_2732 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2733 = lean_array_push(x_2731, x_2732); lean_inc(x_19); -x_2728 = lean_array_push(x_2718, x_19); +x_2734 = lean_array_push(x_2724, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2729 = x_19; + x_2735 = x_19; } else { lean_dec_ref(x_19); - x_2729 = lean_box(0); + x_2735 = lean_box(0); } -if (lean_is_scalar(x_2729)) { - x_2730 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2735)) { + x_2736 = lean_alloc_ctor(1, 2, 0); } else { - x_2730 = x_2729; + x_2736 = x_2735; } -lean_ctor_set(x_2730, 0, x_2720); -lean_ctor_set(x_2730, 1, x_2728); -x_2731 = lean_array_push(x_2718, x_2730); -x_2732 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2733 = lean_array_push(x_2731, x_2732); -x_2734 = lean_array_push(x_2733, x_2653); -x_2735 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2736 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2736, 0, x_2735); +lean_ctor_set(x_2736, 0, x_2726); lean_ctor_set(x_2736, 1, x_2734); -x_2737 = lean_array_push(x_2718, x_2736); -x_2738 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2738, 0, x_2720); -lean_ctor_set(x_2738, 1, x_2737); -x_2739 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2740 = lean_array_push(x_2739, x_2738); -x_2741 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2737 = lean_array_push(x_2724, x_2736); +x_2738 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2739 = lean_array_push(x_2737, x_2738); +x_2740 = lean_array_push(x_2739, x_2659); +x_2741 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2742 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2742, 0, x_2741); lean_ctor_set(x_2742, 1, x_2740); -x_2743 = lean_array_push(x_2727, x_2742); -x_2744 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2745 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2745, 0, x_2744); -lean_ctor_set(x_2745, 1, x_2743); -x_2746 = 1; -x_2747 = lean_box(x_2746); -lean_ctor_set(x_2648, 1, x_2747); -lean_ctor_set(x_2648, 0, x_2745); -x_2748 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2748, 0, x_2647); -lean_ctor_set(x_2748, 1, x_2713); -return x_2748; +x_2743 = lean_array_push(x_2724, x_2742); +x_2744 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2744, 0, x_2726); +lean_ctor_set(x_2744, 1, x_2743); +x_2745 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2746 = lean_array_push(x_2745, x_2744); +x_2747 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2748 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2748, 0, x_2747); +lean_ctor_set(x_2748, 1, x_2746); +x_2749 = lean_array_push(x_2733, x_2748); +x_2750 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2751 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2751, 0, x_2750); +lean_ctor_set(x_2751, 1, x_2749); +x_2752 = 1; +x_2753 = lean_box(x_2752); +lean_ctor_set(x_2654, 1, x_2753); +lean_ctor_set(x_2654, 0, x_2751); +x_2754 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2754, 0, x_2653); +lean_ctor_set(x_2754, 1, x_2719); +return x_2754; } } else { -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; uint8_t x_2787; lean_object* x_2788; lean_object* x_2789; lean_object* x_2790; -x_2749 = lean_ctor_get(x_2648, 0); -lean_inc(x_2749); -lean_dec(x_2648); -x_2750 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2649); +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; lean_object* x_2789; lean_object* x_2790; lean_object* x_2791; lean_object* x_2792; uint8_t x_2793; lean_object* x_2794; lean_object* x_2795; lean_object* x_2796; +x_2755 = lean_ctor_get(x_2654, 0); +lean_inc(x_2755); +lean_dec(x_2654); +x_2756 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2655); lean_dec(x_5); -x_2751 = lean_ctor_get(x_2750, 1); -lean_inc(x_2751); -lean_dec(x_2750); -x_2752 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2751); -x_2753 = lean_ctor_get(x_2752, 1); -lean_inc(x_2753); -if (lean_is_exclusive(x_2752)) { - lean_ctor_release(x_2752, 0); - lean_ctor_release(x_2752, 1); - x_2754 = x_2752; +x_2757 = lean_ctor_get(x_2756, 1); +lean_inc(x_2757); +lean_dec(x_2756); +x_2758 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2757); +x_2759 = lean_ctor_get(x_2758, 1); +lean_inc(x_2759); +if (lean_is_exclusive(x_2758)) { + lean_ctor_release(x_2758, 0); + lean_ctor_release(x_2758, 1); + x_2760 = x_2758; } else { - lean_dec_ref(x_2752); - x_2754 = lean_box(0); + lean_dec_ref(x_2758); + x_2760 = lean_box(0); } -x_2755 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2756 = lean_array_push(x_2755, x_2639); -x_2757 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2758 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2758, 0, x_2757); -lean_ctor_set(x_2758, 1, x_2756); -x_2759 = l_Array_empty___closed__1; -x_2760 = lean_array_push(x_2759, x_2758); -x_2761 = l_Lean_nullKind___closed__2; -x_2762 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2762, 0, x_2761); -lean_ctor_set(x_2762, 1, x_2760); -x_2763 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2764 = lean_array_push(x_2763, x_2762); -x_2765 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2766 = lean_array_push(x_2764, x_2765); -x_2767 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2768 = lean_array_push(x_2766, x_2767); +x_2761 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2762 = lean_array_push(x_2761, x_2645); +x_2763 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2764 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2764, 0, x_2763); +lean_ctor_set(x_2764, 1, x_2762); +x_2765 = l_Array_empty___closed__1; +x_2766 = lean_array_push(x_2765, x_2764); +x_2767 = l_Lean_nullKind___closed__2; +x_2768 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2768, 0, x_2767); +lean_ctor_set(x_2768, 1, x_2766); +x_2769 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2770 = lean_array_push(x_2769, x_2768); +x_2771 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2772 = lean_array_push(x_2770, x_2771); +x_2773 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2774 = lean_array_push(x_2772, x_2773); lean_inc(x_19); -x_2769 = lean_array_push(x_2759, x_19); +x_2775 = lean_array_push(x_2765, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2770 = x_19; + x_2776 = x_19; } else { lean_dec_ref(x_19); - x_2770 = lean_box(0); + x_2776 = lean_box(0); } -if (lean_is_scalar(x_2770)) { - x_2771 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2776)) { + x_2777 = lean_alloc_ctor(1, 2, 0); } else { - x_2771 = x_2770; + x_2777 = x_2776; } -lean_ctor_set(x_2771, 0, x_2761); -lean_ctor_set(x_2771, 1, x_2769); -x_2772 = lean_array_push(x_2759, x_2771); -x_2773 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2774 = lean_array_push(x_2772, x_2773); -x_2775 = lean_array_push(x_2774, x_2749); -x_2776 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2777 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2777, 0, x_2776); +lean_ctor_set(x_2777, 0, x_2767); lean_ctor_set(x_2777, 1, x_2775); -x_2778 = lean_array_push(x_2759, x_2777); -x_2779 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2779, 0, x_2761); -lean_ctor_set(x_2779, 1, x_2778); -x_2780 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2781 = lean_array_push(x_2780, x_2779); -x_2782 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2778 = lean_array_push(x_2765, x_2777); +x_2779 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2780 = lean_array_push(x_2778, x_2779); +x_2781 = lean_array_push(x_2780, x_2755); +x_2782 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2783 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2783, 0, x_2782); lean_ctor_set(x_2783, 1, x_2781); -x_2784 = lean_array_push(x_2768, x_2783); -x_2785 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2786 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2786, 0, x_2785); -lean_ctor_set(x_2786, 1, x_2784); -x_2787 = 1; -x_2788 = lean_box(x_2787); -x_2789 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2789, 0, x_2786); -lean_ctor_set(x_2789, 1, x_2788); -lean_ctor_set(x_2647, 1, x_2789); -if (lean_is_scalar(x_2754)) { - x_2790 = lean_alloc_ctor(0, 2, 0); +x_2784 = lean_array_push(x_2765, x_2783); +x_2785 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2785, 0, x_2767); +lean_ctor_set(x_2785, 1, x_2784); +x_2786 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2787 = lean_array_push(x_2786, x_2785); +x_2788 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2789 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2789, 0, x_2788); +lean_ctor_set(x_2789, 1, x_2787); +x_2790 = lean_array_push(x_2774, x_2789); +x_2791 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2792 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2792, 0, x_2791); +lean_ctor_set(x_2792, 1, x_2790); +x_2793 = 1; +x_2794 = lean_box(x_2793); +x_2795 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2795, 0, x_2792); +lean_ctor_set(x_2795, 1, x_2794); +lean_ctor_set(x_2653, 1, x_2795); +if (lean_is_scalar(x_2760)) { + x_2796 = lean_alloc_ctor(0, 2, 0); } else { - x_2790 = x_2754; + x_2796 = x_2760; } -lean_ctor_set(x_2790, 0, x_2647); -lean_ctor_set(x_2790, 1, x_2753); -return x_2790; +lean_ctor_set(x_2796, 0, x_2653); +lean_ctor_set(x_2796, 1, x_2759); +return x_2796; } } else { -lean_object* x_2791; lean_object* x_2792; lean_object* x_2793; lean_object* x_2794; lean_object* x_2795; lean_object* x_2796; lean_object* x_2797; lean_object* x_2798; lean_object* x_2799; lean_object* x_2800; lean_object* x_2801; lean_object* x_2802; lean_object* x_2803; lean_object* x_2804; 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; uint8_t x_2831; lean_object* x_2832; lean_object* x_2833; lean_object* x_2834; lean_object* x_2835; -x_2791 = lean_ctor_get(x_2647, 0); -lean_inc(x_2791); -lean_dec(x_2647); -x_2792 = lean_ctor_get(x_2648, 0); -lean_inc(x_2792); -if (lean_is_exclusive(x_2648)) { - lean_ctor_release(x_2648, 0); - lean_ctor_release(x_2648, 1); - x_2793 = x_2648; -} else { - lean_dec_ref(x_2648); - x_2793 = lean_box(0); -} -x_2794 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2649); -lean_dec(x_5); -x_2795 = lean_ctor_get(x_2794, 1); -lean_inc(x_2795); -lean_dec(x_2794); -x_2796 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2795); -x_2797 = lean_ctor_get(x_2796, 1); +lean_object* x_2797; lean_object* x_2798; lean_object* x_2799; lean_object* x_2800; lean_object* x_2801; lean_object* x_2802; lean_object* x_2803; lean_object* x_2804; 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; uint8_t x_2837; lean_object* x_2838; lean_object* x_2839; lean_object* x_2840; lean_object* x_2841; +x_2797 = lean_ctor_get(x_2653, 0); lean_inc(x_2797); -if (lean_is_exclusive(x_2796)) { - lean_ctor_release(x_2796, 0); - lean_ctor_release(x_2796, 1); - x_2798 = x_2796; +lean_dec(x_2653); +x_2798 = lean_ctor_get(x_2654, 0); +lean_inc(x_2798); +if (lean_is_exclusive(x_2654)) { + lean_ctor_release(x_2654, 0); + lean_ctor_release(x_2654, 1); + x_2799 = x_2654; } else { - lean_dec_ref(x_2796); - x_2798 = lean_box(0); + lean_dec_ref(x_2654); + x_2799 = lean_box(0); } -x_2799 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2800 = lean_array_push(x_2799, x_2639); -x_2801 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2802 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2802, 0, x_2801); -lean_ctor_set(x_2802, 1, x_2800); -x_2803 = l_Array_empty___closed__1; -x_2804 = lean_array_push(x_2803, x_2802); -x_2805 = l_Lean_nullKind___closed__2; -x_2806 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2806, 0, x_2805); -lean_ctor_set(x_2806, 1, x_2804); -x_2807 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2808 = lean_array_push(x_2807, x_2806); -x_2809 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2810 = lean_array_push(x_2808, x_2809); -x_2811 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2812 = lean_array_push(x_2810, x_2811); +x_2800 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2655); +lean_dec(x_5); +x_2801 = lean_ctor_get(x_2800, 1); +lean_inc(x_2801); +lean_dec(x_2800); +x_2802 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2801); +x_2803 = lean_ctor_get(x_2802, 1); +lean_inc(x_2803); +if (lean_is_exclusive(x_2802)) { + lean_ctor_release(x_2802, 0); + lean_ctor_release(x_2802, 1); + x_2804 = x_2802; +} else { + lean_dec_ref(x_2802); + x_2804 = lean_box(0); +} +x_2805 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2806 = lean_array_push(x_2805, x_2645); +x_2807 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2808 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2808, 0, x_2807); +lean_ctor_set(x_2808, 1, x_2806); +x_2809 = l_Array_empty___closed__1; +x_2810 = lean_array_push(x_2809, x_2808); +x_2811 = l_Lean_nullKind___closed__2; +x_2812 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2812, 0, x_2811); +lean_ctor_set(x_2812, 1, x_2810); +x_2813 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2814 = lean_array_push(x_2813, x_2812); +x_2815 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2816 = lean_array_push(x_2814, x_2815); +x_2817 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2818 = lean_array_push(x_2816, x_2817); lean_inc(x_19); -x_2813 = lean_array_push(x_2803, x_19); +x_2819 = lean_array_push(x_2809, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2814 = x_19; + x_2820 = x_19; } else { lean_dec_ref(x_19); - x_2814 = lean_box(0); + x_2820 = lean_box(0); } -if (lean_is_scalar(x_2814)) { - x_2815 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2820)) { + x_2821 = lean_alloc_ctor(1, 2, 0); } else { - x_2815 = x_2814; + x_2821 = x_2820; } -lean_ctor_set(x_2815, 0, x_2805); -lean_ctor_set(x_2815, 1, x_2813); -x_2816 = lean_array_push(x_2803, x_2815); -x_2817 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2818 = lean_array_push(x_2816, x_2817); -x_2819 = lean_array_push(x_2818, x_2792); -x_2820 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2821 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2821, 0, x_2820); +lean_ctor_set(x_2821, 0, x_2811); lean_ctor_set(x_2821, 1, x_2819); -x_2822 = lean_array_push(x_2803, x_2821); -x_2823 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2823, 0, x_2805); -lean_ctor_set(x_2823, 1, x_2822); -x_2824 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2825 = lean_array_push(x_2824, x_2823); -x_2826 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2822 = lean_array_push(x_2809, x_2821); +x_2823 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2824 = lean_array_push(x_2822, x_2823); +x_2825 = lean_array_push(x_2824, x_2798); +x_2826 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2827 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2827, 0, x_2826); lean_ctor_set(x_2827, 1, x_2825); -x_2828 = lean_array_push(x_2812, x_2827); -x_2829 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2830 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2830, 0, x_2829); -lean_ctor_set(x_2830, 1, x_2828); -x_2831 = 1; -x_2832 = lean_box(x_2831); -if (lean_is_scalar(x_2793)) { - x_2833 = lean_alloc_ctor(0, 2, 0); +x_2828 = lean_array_push(x_2809, x_2827); +x_2829 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2829, 0, x_2811); +lean_ctor_set(x_2829, 1, x_2828); +x_2830 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2831 = lean_array_push(x_2830, x_2829); +x_2832 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2833 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2833, 0, x_2832); +lean_ctor_set(x_2833, 1, x_2831); +x_2834 = lean_array_push(x_2818, x_2833); +x_2835 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2836 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2836, 0, x_2835); +lean_ctor_set(x_2836, 1, x_2834); +x_2837 = 1; +x_2838 = lean_box(x_2837); +if (lean_is_scalar(x_2799)) { + x_2839 = lean_alloc_ctor(0, 2, 0); } else { - x_2833 = x_2793; + x_2839 = x_2799; } -lean_ctor_set(x_2833, 0, x_2830); -lean_ctor_set(x_2833, 1, x_2832); -x_2834 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2834, 0, x_2791); -lean_ctor_set(x_2834, 1, x_2833); -if (lean_is_scalar(x_2798)) { - x_2835 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2839, 0, x_2836); +lean_ctor_set(x_2839, 1, x_2838); +x_2840 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2840, 0, x_2797); +lean_ctor_set(x_2840, 1, x_2839); +if (lean_is_scalar(x_2804)) { + x_2841 = lean_alloc_ctor(0, 2, 0); } else { - x_2835 = x_2798; + x_2841 = x_2804; } -lean_ctor_set(x_2835, 0, x_2834); -lean_ctor_set(x_2835, 1, x_2797); -return x_2835; +lean_ctor_set(x_2841, 0, x_2840); +lean_ctor_set(x_2841, 1, x_2803); +return x_2841; } } } case 2: { -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; lean_object* x_2847; uint8_t x_2848; +lean_object* x_2842; lean_object* x_2843; lean_object* x_2844; lean_object* x_2845; lean_object* x_2846; lean_object* x_2847; lean_object* x_2848; lean_object* x_2849; lean_object* x_2850; lean_object* x_2851; lean_object* x_2852; lean_object* x_2853; uint8_t x_2854; lean_inc(x_5); -x_2836 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2837 = lean_ctor_get(x_2836, 0); -lean_inc(x_2837); -x_2838 = lean_ctor_get(x_2836, 1); -lean_inc(x_2838); -lean_dec(x_2836); -x_2839 = lean_unsigned_to_nat(1u); -x_2840 = lean_nat_add(x_3, x_2839); +x_2842 = l_Lean_Elab_Term_mkFreshIdent(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_2843 = lean_ctor_get(x_2842, 0); +lean_inc(x_2843); +x_2844 = lean_ctor_get(x_2842, 1); +lean_inc(x_2844); +lean_dec(x_2842); +x_2845 = lean_unsigned_to_nat(1u); +x_2846 = lean_nat_add(x_3, x_2845); lean_dec(x_3); -x_2841 = l_Lean_mkHole(x_19); -lean_inc(x_2837); -x_2842 = l_Lean_Elab_Term_mkExplicitBinder(x_2837, x_2841); -x_2843 = lean_array_push(x_4, x_2842); +x_2847 = l_Lean_mkHole(x_19); +lean_inc(x_2843); +x_2848 = l_Lean_Elab_Term_mkExplicitBinder(x_2843, x_2847); +x_2849 = lean_array_push(x_4, x_2848); lean_inc(x_5); -x_2844 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2840, x_2843, x_5, x_6, x_7, x_8, x_9, x_10, x_2838); -x_2845 = lean_ctor_get(x_2844, 0); -lean_inc(x_2845); -x_2846 = lean_ctor_get(x_2845, 1); -lean_inc(x_2846); -x_2847 = lean_ctor_get(x_2844, 1); -lean_inc(x_2847); -lean_dec(x_2844); -x_2848 = !lean_is_exclusive(x_2845); -if (x_2848 == 0) +x_2850 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2846, x_2849, x_5, x_6, x_7, x_8, x_9, x_10, x_2844); +x_2851 = lean_ctor_get(x_2850, 0); +lean_inc(x_2851); +x_2852 = lean_ctor_get(x_2851, 1); +lean_inc(x_2852); +x_2853 = lean_ctor_get(x_2850, 1); +lean_inc(x_2853); +lean_dec(x_2850); +x_2854 = !lean_is_exclusive(x_2851); +if (x_2854 == 0) { -lean_object* x_2849; uint8_t x_2850; -x_2849 = lean_ctor_get(x_2845, 1); -lean_dec(x_2849); -x_2850 = !lean_is_exclusive(x_2846); -if (x_2850 == 0) -{ -lean_object* x_2851; lean_object* x_2852; lean_object* x_2853; lean_object* x_2854; lean_object* x_2855; uint8_t x_2856; -x_2851 = lean_ctor_get(x_2846, 0); -x_2852 = lean_ctor_get(x_2846, 1); -lean_dec(x_2852); -x_2853 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2847); -lean_dec(x_5); -x_2854 = lean_ctor_get(x_2853, 1); -lean_inc(x_2854); -lean_dec(x_2853); -x_2855 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2854); -x_2856 = !lean_is_exclusive(x_2855); +lean_object* x_2855; uint8_t x_2856; +x_2855 = lean_ctor_get(x_2851, 1); +lean_dec(x_2855); +x_2856 = !lean_is_exclusive(x_2852); if (x_2856 == 0) { -lean_object* x_2857; lean_object* x_2858; lean_object* x_2859; lean_object* x_2860; lean_object* x_2861; lean_object* x_2862; lean_object* x_2863; lean_object* x_2864; lean_object* x_2865; lean_object* x_2866; lean_object* x_2867; lean_object* x_2868; lean_object* x_2869; lean_object* x_2870; lean_object* x_2871; lean_object* x_2872; uint8_t x_2873; -x_2857 = lean_ctor_get(x_2855, 0); -lean_dec(x_2857); -x_2858 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2859 = lean_array_push(x_2858, x_2837); -x_2860 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2861 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2861, 0, x_2860); -lean_ctor_set(x_2861, 1, x_2859); -x_2862 = l_Array_empty___closed__1; -x_2863 = lean_array_push(x_2862, x_2861); -x_2864 = l_Lean_nullKind___closed__2; -x_2865 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2865, 0, x_2864); -lean_ctor_set(x_2865, 1, x_2863); -x_2866 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2867 = lean_array_push(x_2866, x_2865); -x_2868 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2869 = lean_array_push(x_2867, x_2868); -x_2870 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2871 = lean_array_push(x_2869, x_2870); -lean_inc(x_19); -x_2872 = lean_array_push(x_2862, x_19); -x_2873 = !lean_is_exclusive(x_19); -if (x_2873 == 0) +lean_object* x_2857; lean_object* x_2858; lean_object* x_2859; lean_object* x_2860; lean_object* x_2861; uint8_t x_2862; +x_2857 = lean_ctor_get(x_2852, 0); +x_2858 = lean_ctor_get(x_2852, 1); +lean_dec(x_2858); +x_2859 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2853); +lean_dec(x_5); +x_2860 = lean_ctor_get(x_2859, 1); +lean_inc(x_2860); +lean_dec(x_2859); +x_2861 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2860); +x_2862 = !lean_is_exclusive(x_2861); +if (x_2862 == 0) { -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; uint8_t x_2891; lean_object* x_2892; -x_2874 = lean_ctor_get(x_19, 1); -lean_dec(x_2874); -x_2875 = lean_ctor_get(x_19, 0); -lean_dec(x_2875); +lean_object* x_2863; lean_object* x_2864; lean_object* x_2865; lean_object* x_2866; 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; uint8_t x_2879; +x_2863 = lean_ctor_get(x_2861, 0); +lean_dec(x_2863); +x_2864 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2865 = lean_array_push(x_2864, x_2843); +x_2866 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2867 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2867, 0, x_2866); +lean_ctor_set(x_2867, 1, x_2865); +x_2868 = l_Array_empty___closed__1; +x_2869 = lean_array_push(x_2868, x_2867); +x_2870 = l_Lean_nullKind___closed__2; +x_2871 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2871, 0, x_2870); +lean_ctor_set(x_2871, 1, x_2869); +x_2872 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2873 = lean_array_push(x_2872, x_2871); +x_2874 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2875 = lean_array_push(x_2873, x_2874); +x_2876 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2877 = lean_array_push(x_2875, x_2876); +lean_inc(x_19); +x_2878 = lean_array_push(x_2868, x_19); +x_2879 = !lean_is_exclusive(x_19); +if (x_2879 == 0) +{ +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; uint8_t x_2897; lean_object* x_2898; +x_2880 = lean_ctor_get(x_19, 1); +lean_dec(x_2880); +x_2881 = lean_ctor_get(x_19, 0); +lean_dec(x_2881); lean_ctor_set_tag(x_19, 1); -lean_ctor_set(x_19, 1, x_2872); -lean_ctor_set(x_19, 0, x_2864); -x_2876 = lean_array_push(x_2862, x_19); -x_2877 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2878 = lean_array_push(x_2876, x_2877); -x_2879 = lean_array_push(x_2878, x_2851); -x_2880 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2881 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2881, 0, x_2880); -lean_ctor_set(x_2881, 1, x_2879); -x_2882 = lean_array_push(x_2862, x_2881); -x_2883 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2883, 0, x_2864); -lean_ctor_set(x_2883, 1, x_2882); -x_2884 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2885 = lean_array_push(x_2884, x_2883); -x_2886 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_ctor_set(x_19, 1, x_2878); +lean_ctor_set(x_19, 0, x_2870); +x_2882 = lean_array_push(x_2868, x_19); +x_2883 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2884 = lean_array_push(x_2882, x_2883); +x_2885 = lean_array_push(x_2884, x_2857); +x_2886 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2887 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2887, 0, x_2886); lean_ctor_set(x_2887, 1, x_2885); -x_2888 = lean_array_push(x_2871, x_2887); -x_2889 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2890 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2890, 0, x_2889); -lean_ctor_set(x_2890, 1, x_2888); -x_2891 = 1; -x_2892 = lean_box(x_2891); -lean_ctor_set(x_2846, 1, x_2892); -lean_ctor_set(x_2846, 0, x_2890); -lean_ctor_set(x_2855, 0, x_2845); -return x_2855; +x_2888 = lean_array_push(x_2868, x_2887); +x_2889 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2889, 0, x_2870); +lean_ctor_set(x_2889, 1, x_2888); +x_2890 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2891 = lean_array_push(x_2890, x_2889); +x_2892 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2893 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2893, 0, x_2892); +lean_ctor_set(x_2893, 1, x_2891); +x_2894 = lean_array_push(x_2877, x_2893); +x_2895 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2896 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2896, 0, x_2895); +lean_ctor_set(x_2896, 1, x_2894); +x_2897 = 1; +x_2898 = lean_box(x_2897); +lean_ctor_set(x_2852, 1, x_2898); +lean_ctor_set(x_2852, 0, x_2896); +lean_ctor_set(x_2861, 0, x_2851); +return x_2861; } else { -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; uint8_t x_2909; lean_object* x_2910; +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; lean_object* x_2909; lean_object* x_2910; lean_object* x_2911; lean_object* x_2912; lean_object* x_2913; lean_object* x_2914; uint8_t x_2915; lean_object* x_2916; lean_dec(x_19); -x_2893 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2893, 0, x_2864); -lean_ctor_set(x_2893, 1, x_2872); -x_2894 = lean_array_push(x_2862, x_2893); -x_2895 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2896 = lean_array_push(x_2894, x_2895); -x_2897 = lean_array_push(x_2896, x_2851); -x_2898 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2899 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2899, 0, x_2898); -lean_ctor_set(x_2899, 1, x_2897); -x_2900 = lean_array_push(x_2862, x_2899); -x_2901 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2901, 0, x_2864); -lean_ctor_set(x_2901, 1, x_2900); -x_2902 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2903 = lean_array_push(x_2902, x_2901); -x_2904 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_ctor_set(x_2899, 0, x_2870); +lean_ctor_set(x_2899, 1, x_2878); +x_2900 = lean_array_push(x_2868, x_2899); +x_2901 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2902 = lean_array_push(x_2900, x_2901); +x_2903 = lean_array_push(x_2902, x_2857); +x_2904 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2905 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2905, 0, x_2904); lean_ctor_set(x_2905, 1, x_2903); -x_2906 = lean_array_push(x_2871, x_2905); -x_2907 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2908 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2908, 0, x_2907); -lean_ctor_set(x_2908, 1, x_2906); -x_2909 = 1; -x_2910 = lean_box(x_2909); -lean_ctor_set(x_2846, 1, x_2910); -lean_ctor_set(x_2846, 0, x_2908); -lean_ctor_set(x_2855, 0, x_2845); -return x_2855; +x_2906 = lean_array_push(x_2868, x_2905); +x_2907 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2907, 0, x_2870); +lean_ctor_set(x_2907, 1, x_2906); +x_2908 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2909 = lean_array_push(x_2908, x_2907); +x_2910 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2911 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2911, 0, x_2910); +lean_ctor_set(x_2911, 1, x_2909); +x_2912 = lean_array_push(x_2877, x_2911); +x_2913 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2914 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2914, 0, x_2913); +lean_ctor_set(x_2914, 1, x_2912); +x_2915 = 1; +x_2916 = lean_box(x_2915); +lean_ctor_set(x_2852, 1, x_2916); +lean_ctor_set(x_2852, 0, x_2914); +lean_ctor_set(x_2861, 0, x_2851); +return x_2861; } } else { -lean_object* x_2911; lean_object* x_2912; lean_object* x_2913; lean_object* x_2914; lean_object* x_2915; lean_object* x_2916; lean_object* x_2917; lean_object* x_2918; lean_object* x_2919; lean_object* x_2920; 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; uint8_t x_2944; lean_object* x_2945; lean_object* x_2946; -x_2911 = lean_ctor_get(x_2855, 1); -lean_inc(x_2911); -lean_dec(x_2855); -x_2912 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2913 = lean_array_push(x_2912, x_2837); -x_2914 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2915 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2915, 0, x_2914); -lean_ctor_set(x_2915, 1, x_2913); -x_2916 = l_Array_empty___closed__1; -x_2917 = lean_array_push(x_2916, x_2915); -x_2918 = l_Lean_nullKind___closed__2; -x_2919 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2919, 0, x_2918); -lean_ctor_set(x_2919, 1, x_2917); -x_2920 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2921 = lean_array_push(x_2920, x_2919); -x_2922 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2923 = lean_array_push(x_2921, x_2922); -x_2924 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2925 = lean_array_push(x_2923, x_2924); +lean_object* x_2917; lean_object* x_2918; lean_object* x_2919; lean_object* x_2920; 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; uint8_t x_2950; lean_object* x_2951; lean_object* x_2952; +x_2917 = lean_ctor_get(x_2861, 1); +lean_inc(x_2917); +lean_dec(x_2861); +x_2918 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2919 = lean_array_push(x_2918, x_2843); +x_2920 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2921 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2921, 0, x_2920); +lean_ctor_set(x_2921, 1, x_2919); +x_2922 = l_Array_empty___closed__1; +x_2923 = lean_array_push(x_2922, x_2921); +x_2924 = l_Lean_nullKind___closed__2; +x_2925 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2925, 0, x_2924); +lean_ctor_set(x_2925, 1, x_2923); +x_2926 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2927 = lean_array_push(x_2926, x_2925); +x_2928 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2929 = lean_array_push(x_2927, x_2928); +x_2930 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2931 = lean_array_push(x_2929, x_2930); lean_inc(x_19); -x_2926 = lean_array_push(x_2916, x_19); +x_2932 = lean_array_push(x_2922, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2927 = x_19; + x_2933 = x_19; } else { lean_dec_ref(x_19); - x_2927 = lean_box(0); + x_2933 = lean_box(0); } -if (lean_is_scalar(x_2927)) { - x_2928 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2933)) { + x_2934 = lean_alloc_ctor(1, 2, 0); } else { - x_2928 = x_2927; - lean_ctor_set_tag(x_2928, 1); + x_2934 = x_2933; + lean_ctor_set_tag(x_2934, 1); } -lean_ctor_set(x_2928, 0, x_2918); -lean_ctor_set(x_2928, 1, x_2926); -x_2929 = lean_array_push(x_2916, x_2928); -x_2930 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2931 = lean_array_push(x_2929, x_2930); -x_2932 = lean_array_push(x_2931, x_2851); -x_2933 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2934 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2934, 0, x_2933); +lean_ctor_set(x_2934, 0, x_2924); lean_ctor_set(x_2934, 1, x_2932); -x_2935 = lean_array_push(x_2916, x_2934); -x_2936 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2936, 0, x_2918); -lean_ctor_set(x_2936, 1, x_2935); -x_2937 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2938 = lean_array_push(x_2937, x_2936); -x_2939 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2935 = lean_array_push(x_2922, x_2934); +x_2936 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2937 = lean_array_push(x_2935, x_2936); +x_2938 = lean_array_push(x_2937, x_2857); +x_2939 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2940 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2940, 0, x_2939); lean_ctor_set(x_2940, 1, x_2938); -x_2941 = lean_array_push(x_2925, x_2940); -x_2942 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2943 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2943, 0, x_2942); -lean_ctor_set(x_2943, 1, x_2941); -x_2944 = 1; -x_2945 = lean_box(x_2944); -lean_ctor_set(x_2846, 1, x_2945); -lean_ctor_set(x_2846, 0, x_2943); -x_2946 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2946, 0, x_2845); -lean_ctor_set(x_2946, 1, x_2911); -return x_2946; +x_2941 = lean_array_push(x_2922, x_2940); +x_2942 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2942, 0, x_2924); +lean_ctor_set(x_2942, 1, x_2941); +x_2943 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2944 = lean_array_push(x_2943, x_2942); +x_2945 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2946 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2946, 0, x_2945); +lean_ctor_set(x_2946, 1, x_2944); +x_2947 = lean_array_push(x_2931, x_2946); +x_2948 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2949 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2949, 0, x_2948); +lean_ctor_set(x_2949, 1, x_2947); +x_2950 = 1; +x_2951 = lean_box(x_2950); +lean_ctor_set(x_2852, 1, x_2951); +lean_ctor_set(x_2852, 0, x_2949); +x_2952 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2952, 0, x_2851); +lean_ctor_set(x_2952, 1, x_2917); +return x_2952; } } else { -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; lean_object* x_2963; lean_object* x_2964; lean_object* x_2965; lean_object* x_2966; lean_object* x_2967; lean_object* x_2968; lean_object* x_2969; lean_object* x_2970; lean_object* x_2971; lean_object* x_2972; lean_object* x_2973; lean_object* x_2974; lean_object* x_2975; lean_object* x_2976; lean_object* x_2977; lean_object* x_2978; lean_object* x_2979; lean_object* x_2980; lean_object* x_2981; lean_object* x_2982; lean_object* x_2983; lean_object* x_2984; uint8_t x_2985; lean_object* x_2986; lean_object* x_2987; lean_object* x_2988; -x_2947 = lean_ctor_get(x_2846, 0); -lean_inc(x_2947); -lean_dec(x_2846); -x_2948 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2847); +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; lean_object* x_2963; lean_object* x_2964; lean_object* x_2965; lean_object* x_2966; lean_object* x_2967; lean_object* x_2968; lean_object* x_2969; lean_object* x_2970; lean_object* x_2971; lean_object* x_2972; lean_object* x_2973; lean_object* x_2974; lean_object* x_2975; lean_object* x_2976; lean_object* x_2977; lean_object* x_2978; lean_object* x_2979; lean_object* x_2980; lean_object* x_2981; lean_object* x_2982; lean_object* x_2983; lean_object* x_2984; lean_object* x_2985; lean_object* x_2986; lean_object* x_2987; lean_object* x_2988; lean_object* x_2989; lean_object* x_2990; uint8_t x_2991; lean_object* x_2992; lean_object* x_2993; lean_object* x_2994; +x_2953 = lean_ctor_get(x_2852, 0); +lean_inc(x_2953); +lean_dec(x_2852); +x_2954 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2853); lean_dec(x_5); -x_2949 = lean_ctor_get(x_2948, 1); -lean_inc(x_2949); -lean_dec(x_2948); -x_2950 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2949); -x_2951 = lean_ctor_get(x_2950, 1); -lean_inc(x_2951); -if (lean_is_exclusive(x_2950)) { - lean_ctor_release(x_2950, 0); - lean_ctor_release(x_2950, 1); - x_2952 = x_2950; +x_2955 = lean_ctor_get(x_2954, 1); +lean_inc(x_2955); +lean_dec(x_2954); +x_2956 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2955); +x_2957 = lean_ctor_get(x_2956, 1); +lean_inc(x_2957); +if (lean_is_exclusive(x_2956)) { + lean_ctor_release(x_2956, 0); + lean_ctor_release(x_2956, 1); + x_2958 = x_2956; } else { - lean_dec_ref(x_2950); - x_2952 = lean_box(0); + lean_dec_ref(x_2956); + x_2958 = lean_box(0); } -x_2953 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2954 = lean_array_push(x_2953, x_2837); -x_2955 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2956 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2956, 0, x_2955); -lean_ctor_set(x_2956, 1, x_2954); -x_2957 = l_Array_empty___closed__1; -x_2958 = lean_array_push(x_2957, x_2956); -x_2959 = l_Lean_nullKind___closed__2; -x_2960 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2960, 0, x_2959); -lean_ctor_set(x_2960, 1, x_2958); -x_2961 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_2962 = lean_array_push(x_2961, x_2960); -x_2963 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_2964 = lean_array_push(x_2962, x_2963); -x_2965 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2966 = lean_array_push(x_2964, x_2965); +x_2959 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2960 = lean_array_push(x_2959, x_2843); +x_2961 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2962 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2962, 0, x_2961); +lean_ctor_set(x_2962, 1, x_2960); +x_2963 = l_Array_empty___closed__1; +x_2964 = lean_array_push(x_2963, x_2962); +x_2965 = l_Lean_nullKind___closed__2; +x_2966 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2966, 0, x_2965); +lean_ctor_set(x_2966, 1, x_2964); +x_2967 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2968 = lean_array_push(x_2967, x_2966); +x_2969 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_2970 = lean_array_push(x_2968, x_2969); +x_2971 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2972 = lean_array_push(x_2970, x_2971); lean_inc(x_19); -x_2967 = lean_array_push(x_2957, x_19); +x_2973 = lean_array_push(x_2963, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_2968 = x_19; + x_2974 = x_19; } else { lean_dec_ref(x_19); - x_2968 = lean_box(0); + x_2974 = lean_box(0); } -if (lean_is_scalar(x_2968)) { - x_2969 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2974)) { + x_2975 = lean_alloc_ctor(1, 2, 0); } else { - x_2969 = x_2968; - lean_ctor_set_tag(x_2969, 1); + x_2975 = x_2974; + lean_ctor_set_tag(x_2975, 1); } -lean_ctor_set(x_2969, 0, x_2959); -lean_ctor_set(x_2969, 1, x_2967); -x_2970 = lean_array_push(x_2957, x_2969); -x_2971 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_2972 = lean_array_push(x_2970, x_2971); -x_2973 = lean_array_push(x_2972, x_2947); -x_2974 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_2975 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2975, 0, x_2974); +lean_ctor_set(x_2975, 0, x_2965); lean_ctor_set(x_2975, 1, x_2973); -x_2976 = lean_array_push(x_2957, x_2975); -x_2977 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2977, 0, x_2959); -lean_ctor_set(x_2977, 1, x_2976); -x_2978 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_2979 = lean_array_push(x_2978, x_2977); -x_2980 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2976 = lean_array_push(x_2963, x_2975); +x_2977 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_2978 = lean_array_push(x_2976, x_2977); +x_2979 = lean_array_push(x_2978, x_2953); +x_2980 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_2981 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2981, 0, x_2980); lean_ctor_set(x_2981, 1, x_2979); -x_2982 = lean_array_push(x_2966, x_2981); -x_2983 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2984 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2984, 0, x_2983); -lean_ctor_set(x_2984, 1, x_2982); -x_2985 = 1; -x_2986 = lean_box(x_2985); -x_2987 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2987, 0, x_2984); -lean_ctor_set(x_2987, 1, x_2986); -lean_ctor_set(x_2845, 1, x_2987); -if (lean_is_scalar(x_2952)) { - x_2988 = lean_alloc_ctor(0, 2, 0); +x_2982 = lean_array_push(x_2963, x_2981); +x_2983 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2983, 0, x_2965); +lean_ctor_set(x_2983, 1, x_2982); +x_2984 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_2985 = lean_array_push(x_2984, x_2983); +x_2986 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2987 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2987, 0, x_2986); +lean_ctor_set(x_2987, 1, x_2985); +x_2988 = lean_array_push(x_2972, x_2987); +x_2989 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2990 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2990, 0, x_2989); +lean_ctor_set(x_2990, 1, x_2988); +x_2991 = 1; +x_2992 = lean_box(x_2991); +x_2993 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2993, 0, x_2990); +lean_ctor_set(x_2993, 1, x_2992); +lean_ctor_set(x_2851, 1, x_2993); +if (lean_is_scalar(x_2958)) { + x_2994 = lean_alloc_ctor(0, 2, 0); } else { - x_2988 = x_2952; + x_2994 = x_2958; } -lean_ctor_set(x_2988, 0, x_2845); -lean_ctor_set(x_2988, 1, x_2951); -return x_2988; +lean_ctor_set(x_2994, 0, x_2851); +lean_ctor_set(x_2994, 1, x_2957); +return x_2994; } } else { -lean_object* x_2989; lean_object* x_2990; lean_object* x_2991; lean_object* x_2992; lean_object* x_2993; lean_object* x_2994; lean_object* x_2995; lean_object* x_2996; lean_object* x_2997; lean_object* x_2998; lean_object* x_2999; lean_object* x_3000; lean_object* x_3001; lean_object* x_3002; lean_object* x_3003; lean_object* x_3004; lean_object* x_3005; lean_object* x_3006; 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; uint8_t x_3029; lean_object* x_3030; lean_object* x_3031; lean_object* x_3032; lean_object* x_3033; -x_2989 = lean_ctor_get(x_2845, 0); -lean_inc(x_2989); -lean_dec(x_2845); -x_2990 = lean_ctor_get(x_2846, 0); -lean_inc(x_2990); -if (lean_is_exclusive(x_2846)) { - lean_ctor_release(x_2846, 0); - lean_ctor_release(x_2846, 1); - x_2991 = x_2846; -} else { - lean_dec_ref(x_2846); - x_2991 = lean_box(0); -} -x_2992 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2847); -lean_dec(x_5); -x_2993 = lean_ctor_get(x_2992, 1); -lean_inc(x_2993); -lean_dec(x_2992); -x_2994 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2993); -x_2995 = lean_ctor_get(x_2994, 1); +lean_object* x_2995; lean_object* x_2996; lean_object* x_2997; lean_object* x_2998; lean_object* x_2999; lean_object* x_3000; lean_object* x_3001; lean_object* x_3002; lean_object* x_3003; lean_object* x_3004; lean_object* x_3005; lean_object* x_3006; 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; uint8_t x_3035; lean_object* x_3036; lean_object* x_3037; lean_object* x_3038; lean_object* x_3039; +x_2995 = lean_ctor_get(x_2851, 0); lean_inc(x_2995); -if (lean_is_exclusive(x_2994)) { - lean_ctor_release(x_2994, 0); - lean_ctor_release(x_2994, 1); - x_2996 = x_2994; +lean_dec(x_2851); +x_2996 = lean_ctor_get(x_2852, 0); +lean_inc(x_2996); +if (lean_is_exclusive(x_2852)) { + lean_ctor_release(x_2852, 0); + lean_ctor_release(x_2852, 1); + x_2997 = x_2852; } else { - lean_dec_ref(x_2994); - x_2996 = lean_box(0); + lean_dec_ref(x_2852); + x_2997 = lean_box(0); } -x_2997 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2998 = lean_array_push(x_2997, x_2837); -x_2999 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3000 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3000, 0, x_2999); -lean_ctor_set(x_3000, 1, x_2998); -x_3001 = l_Array_empty___closed__1; -x_3002 = lean_array_push(x_3001, x_3000); -x_3003 = l_Lean_nullKind___closed__2; -x_3004 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3004, 0, x_3003); -lean_ctor_set(x_3004, 1, x_3002); -x_3005 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_3006 = lean_array_push(x_3005, x_3004); -x_3007 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; -x_3008 = lean_array_push(x_3006, x_3007); -x_3009 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3010 = lean_array_push(x_3008, x_3009); +x_2998 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_2853); +lean_dec(x_5); +x_2999 = lean_ctor_get(x_2998, 1); +lean_inc(x_2999); +lean_dec(x_2998); +x_3000 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_2999); +x_3001 = lean_ctor_get(x_3000, 1); +lean_inc(x_3001); +if (lean_is_exclusive(x_3000)) { + lean_ctor_release(x_3000, 0); + lean_ctor_release(x_3000, 1); + x_3002 = x_3000; +} else { + lean_dec_ref(x_3000); + x_3002 = lean_box(0); +} +x_3003 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_3004 = lean_array_push(x_3003, x_2843); +x_3005 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3006 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3006, 0, x_3005); +lean_ctor_set(x_3006, 1, x_3004); +x_3007 = l_Array_empty___closed__1; +x_3008 = lean_array_push(x_3007, x_3006); +x_3009 = l_Lean_nullKind___closed__2; +x_3010 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3010, 0, x_3009); +lean_ctor_set(x_3010, 1, x_3008); +x_3011 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_3012 = lean_array_push(x_3011, x_3010); +x_3013 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; +x_3014 = lean_array_push(x_3012, x_3013); +x_3015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3016 = lean_array_push(x_3014, x_3015); lean_inc(x_19); -x_3011 = lean_array_push(x_3001, x_19); +x_3017 = lean_array_push(x_3007, x_19); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_3012 = x_19; + x_3018 = x_19; } else { lean_dec_ref(x_19); - x_3012 = lean_box(0); + x_3018 = lean_box(0); } -if (lean_is_scalar(x_3012)) { - x_3013 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3018)) { + x_3019 = lean_alloc_ctor(1, 2, 0); } else { - x_3013 = x_3012; - lean_ctor_set_tag(x_3013, 1); + x_3019 = x_3018; + lean_ctor_set_tag(x_3019, 1); } -lean_ctor_set(x_3013, 0, x_3003); -lean_ctor_set(x_3013, 1, x_3011); -x_3014 = lean_array_push(x_3001, x_3013); -x_3015 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; -x_3016 = lean_array_push(x_3014, x_3015); -x_3017 = lean_array_push(x_3016, x_2990); -x_3018 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_3019 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3019, 0, x_3018); +lean_ctor_set(x_3019, 0, x_3009); lean_ctor_set(x_3019, 1, x_3017); -x_3020 = lean_array_push(x_3001, x_3019); -x_3021 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3021, 0, x_3003); -lean_ctor_set(x_3021, 1, x_3020); -x_3022 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_3023 = lean_array_push(x_3022, x_3021); -x_3024 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3020 = lean_array_push(x_3007, x_3019); +x_3021 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; +x_3022 = lean_array_push(x_3020, x_3021); +x_3023 = lean_array_push(x_3022, x_2996); +x_3024 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; 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 = lean_array_push(x_3010, x_3025); -x_3027 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3028 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3028, 0, x_3027); -lean_ctor_set(x_3028, 1, x_3026); -x_3029 = 1; -x_3030 = lean_box(x_3029); -if (lean_is_scalar(x_2991)) { - x_3031 = lean_alloc_ctor(0, 2, 0); +x_3026 = lean_array_push(x_3007, x_3025); +x_3027 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3027, 0, x_3009); +lean_ctor_set(x_3027, 1, x_3026); +x_3028 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_3029 = lean_array_push(x_3028, x_3027); +x_3030 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3031 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3031, 0, x_3030); +lean_ctor_set(x_3031, 1, x_3029); +x_3032 = lean_array_push(x_3016, x_3031); +x_3033 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3034 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3034, 0, x_3033); +lean_ctor_set(x_3034, 1, x_3032); +x_3035 = 1; +x_3036 = lean_box(x_3035); +if (lean_is_scalar(x_2997)) { + x_3037 = lean_alloc_ctor(0, 2, 0); } else { - x_3031 = x_2991; + x_3037 = x_2997; } -lean_ctor_set(x_3031, 0, x_3028); -lean_ctor_set(x_3031, 1, x_3030); -x_3032 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3032, 0, x_2989); -lean_ctor_set(x_3032, 1, x_3031); -if (lean_is_scalar(x_2996)) { - x_3033 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3037, 0, x_3034); +lean_ctor_set(x_3037, 1, x_3036); +x_3038 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3038, 0, x_2995); +lean_ctor_set(x_3038, 1, x_3037); +if (lean_is_scalar(x_3002)) { + x_3039 = lean_alloc_ctor(0, 2, 0); } else { - x_3033 = x_2996; + x_3039 = x_3002; } -lean_ctor_set(x_3033, 0, x_3032); -lean_ctor_set(x_3033, 1, x_2995); -return x_3033; +lean_ctor_set(x_3039, 0, x_3038); +lean_ctor_set(x_3039, 1, x_3001); +return x_3039; } } default: { -lean_object* x_3034; lean_object* x_3035; lean_object* x_3036; lean_object* x_3037; lean_object* x_3038; -x_3034 = l_Lean_mkHole(x_19); -x_3035 = lean_unsigned_to_nat(1u); -x_3036 = lean_nat_add(x_3, x_3035); +lean_object* x_3040; lean_object* x_3041; lean_object* x_3042; lean_object* x_3043; lean_object* x_3044; +x_3040 = l_Lean_mkHole(x_19); +x_3041 = lean_unsigned_to_nat(1u); +x_3042 = lean_nat_add(x_3, x_3041); lean_dec(x_3); -x_3037 = l_Lean_Elab_Term_mkExplicitBinder(x_19, x_3034); -x_3038 = lean_array_push(x_4, x_3037); -x_3 = x_3036; -x_4 = x_3038; +x_3043 = l_Lean_Elab_Term_mkExplicitBinder(x_19, x_3040); +x_3044 = lean_array_push(x_4, x_3043); +x_3 = x_3042; +x_4 = x_3044; goto _start; } } @@ -17232,39 +17479,6 @@ lean_dec(x_1); return x_11; } } -lean_object* l_Lean_Elab_Term_expandOptType(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; -x_3 = l_Lean_Syntax_isNone(x_2); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Lean_Syntax_getArg(x_2, x_4); -x_6 = lean_unsigned_to_nat(1u); -x_7 = l_Lean_Syntax_getArg(x_5, x_6); -lean_dec(x_5); -return x_7; -} -else -{ -lean_object* x_8; -x_8 = l_Lean_mkHole(x_1); -return x_8; -} -} -} -lean_object* l_Lean_Elab_Term_expandOptType___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Elab_Term_expandOptType(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getMatchAltNumPatterns(lean_object* x_1) { _start: { @@ -19305,7 +19519,7 @@ static 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_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -20236,7 +20450,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__1; x_2 = l_Lean_Elab_Term_elabLetDeclCore___closed__7; -x_3 = lean_unsigned_to_nat(512u); +x_3 = lean_unsigned_to_nat(513u); x_4 = lean_unsigned_to_nat(24u); x_5 = l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -20454,7 +20668,7 @@ lean_ctor_set(x_103, 3, x_100); x_104 = l_Array_empty___closed__1; lean_inc(x_103); x_105 = lean_array_push(x_104, x_103); -x_106 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_106 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_107 = lean_array_push(x_105, x_106); x_108 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_109 = lean_array_push(x_108, x_89); @@ -20468,7 +20682,7 @@ x_114 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); x_115 = lean_array_push(x_107, x_114); -x_116 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_116 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_117 = lean_array_push(x_115, x_116); x_118 = lean_array_push(x_117, x_91); x_119 = lean_alloc_ctor(1, 2, 0); @@ -21015,7 +21229,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4718_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4757_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -21296,7 +21510,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetStarDecl___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabLetStarDecl(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4718_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4757_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c index b5a1a0a203..baf5e183ff 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -22,7 +22,6 @@ lean_object* l_Lean_Elab_Term_expandNot___closed__1; lean_object* l_Lean_Elab_Term_expandUnreachable___rarg___closed__6; lean_object* l___regBuiltin_Lean_Elab_Term_elabParserMacro(lean_object*); lean_object* l_Lean_mkAppStx(lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12; lean_object* l_Lean_extractMacroScopes(lean_object*); lean_object* l_Lean_Elab_Term_expandModN___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall___spec__1___rarg(lean_object*); @@ -70,6 +69,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandPow(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandModN___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabNativeRefl___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandNe___closed__3; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12; lean_object* l_Lean_Meta_whnf___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isTypeApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandEmptyC___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandBAnd(lean_object*); @@ -162,7 +162,6 @@ lean_object* l_Lean_Elab_Term_expandOrM(lean_object*, lean_object*, lean_object* lean_object* l_Lean_Elab_Term_expandIf___closed__7; lean_object* l___regBuiltin_Lean_Elab_Term_expandAndM___closed__2; lean_object* l_Lean_Elab_Term_elabParen___closed__3; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; extern lean_object* l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; lean_object* l___regBuiltin_Lean_Elab_Term_expandBNot___closed__1; lean_object* lean_expr_instantiate1(lean_object*, lean_object*); @@ -171,6 +170,7 @@ lean_object* l_Lean_Elab_Term_expandSubtype___closed__10; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Meta_mkExpectedTypeHint___at_Lean_Elab_Term_elabNativeRefl___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_object* l_Lean_Elab_Term_elabSubst___closed__5; lean_object* l___regBuiltin_Lean_Elab_Term_expandBind___closed__1; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__1; @@ -253,6 +253,7 @@ lean_object* l_Lean_Elab_Term_elabSubst___closed__3; lean_object* l_Lean_Elab_Term_expandUMinus___closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_getPropToDecide___closed__2; lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__4; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; lean_object* l_Lean_Elab_Term_elabParen___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandDiv___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandAnd(lean_object*); @@ -271,7 +272,6 @@ lean_object* l_Lean_Elab_Term_expandSeq___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabTParserMacro(lean_object*); extern lean_object* l_myMacro____x40_Init_Tactics___hyg_502____closed__3; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_expandCDot___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; lean_object* l_Lean_Elab_Term_elabPanic___closed__10; lean_object* l_Lean_Elab_Term_expandShow___closed__2; lean_object* l_Lean_Elab_Term_expandAndM___closed__1; @@ -454,7 +454,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandAnd___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabParen___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandDollar___closed__2; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10; lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars_loop(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandUMinus___closed__4; lean_object* l_Lean_Elab_Term_expandDollar___closed__1; @@ -478,6 +477,7 @@ lean_object* l_Lean_Elab_Term_expandSubtype___closed__4; lean_object* l_Lean_Elab_Term_expandAssert___closed__16; lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot___spec__1___boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__9; lean_object* l_Lean_Elab_Term_expandInfixOp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandShow(lean_object*, lean_object*, lean_object*); @@ -547,6 +547,7 @@ size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_Core_mkFreshUserName___at_Lean_Elab_Term_elabSubst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandLT___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Tactics___hyg_720____closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; lean_object* l_Lean_Elab_Term_elabDecide___boxed(lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__10; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_getPropToDecide___closed__4; @@ -591,7 +592,6 @@ extern lean_object* l_Lean_Elab_Term_termElabAttribute; extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__17; lean_object* l___regBuiltin_Lean_Elab_Term_expandSeqLeft___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandMapRev(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; lean_object* l___regBuiltin_Lean_Elab_Term_expandEquiv___closed__3; lean_object* l_Lean_Elab_Term_ExpandFComp___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); @@ -619,6 +619,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandOr___closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_getPropToDecide___closed__1; lean_object* l_Lean_Elab_Term_expandLE(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2___closed__3; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; lean_object* l___private_Lean_HeadIndex_0__Lean_Expr_headNumArgsAux(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNativeRefl_match__1(lean_object*); lean_object* l_Lean_Elab_Term_expandShow___closed__13; @@ -630,7 +631,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandSubtype___closed__1; extern lean_object* l_Lean_Elab_macroAttribute; extern lean_object* l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; lean_object* l_Lean_Elab_Term_expandSubtype___closed__2; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); @@ -3026,7 +3026,7 @@ lean_dec(x_1); x_56 = l_Array_empty___closed__1; lean_inc(x_55); x_57 = lean_array_push(x_56, x_55); -x_58 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_58 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_59 = lean_array_push(x_57, x_58); x_60 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_61 = lean_array_push(x_60, x_15); @@ -3040,7 +3040,7 @@ x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); x_67 = lean_array_push(x_59, x_66); -x_68 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_68 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_69 = lean_array_push(x_67, x_68); x_70 = lean_array_push(x_69, x_53); x_71 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -3378,7 +3378,7 @@ x_317 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_317, 0, x_183); lean_ctor_set(x_317, 1, x_316); x_318 = lean_array_push(x_311, x_317); -x_319 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_319 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_320 = lean_array_push(x_318, x_319); x_321 = lean_array_push(x_320, x_294); x_322 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -3511,7 +3511,7 @@ x_228 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_228, 0, x_183); lean_ctor_set(x_228, 1, x_227); x_229 = lean_array_push(x_222, x_228); -x_230 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_230 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_231 = lean_array_push(x_229, x_230); x_232 = lean_array_push(x_231, x_205); x_233 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -3805,7 +3805,7 @@ x_164 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_164, 0, x_25); lean_ctor_set(x_164, 1, x_163); x_165 = lean_array_push(x_158, x_164); -x_166 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_166 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_167 = lean_array_push(x_165, x_166); x_168 = lean_array_push(x_167, x_143); x_169 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -3940,7 +3940,7 @@ x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_25); lean_ctor_set(x_71, 1, x_70); x_72 = lean_array_push(x_65, x_71); -x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_74 = lean_array_push(x_72, x_73); x_75 = lean_array_push(x_74, x_50); x_76 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -5434,7 +5434,7 @@ x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_44); lean_ctor_set(x_74, 1, x_73); x_75 = lean_array_push(x_36, x_74); -x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_77 = lean_array_push(x_75, x_76); x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_41); @@ -5510,7 +5510,7 @@ x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_44); lean_ctor_set(x_113, 1, x_112); x_114 = lean_array_push(x_36, x_113); -x_115 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_115 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_116 = lean_array_push(x_114, x_115); x_117 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_117, 0, x_41); @@ -5597,7 +5597,7 @@ x_157 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_157, 0, x_44); lean_ctor_set(x_157, 1, x_156); x_158 = lean_array_push(x_36, x_157); -x_159 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_159 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_160 = lean_array_push(x_158, x_159); x_161 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_161, 0, x_41); @@ -5691,7 +5691,7 @@ x_206 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_206, 0, x_44); lean_ctor_set(x_206, 1, x_205); x_207 = lean_array_push(x_36, x_206); -x_208 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_208 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_209 = lean_array_push(x_207, x_208); x_210 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_210, 0, x_41); @@ -11864,7 +11864,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -11926,7 +11926,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandAssert___closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -12114,7 +12114,7 @@ lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = l_Array_empty___closed__1; x_36 = lean_array_push(x_35, x_34); -x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_38 = lean_array_push(x_36, x_37); x_39 = l_Lean_nullKind___closed__2; x_40 = lean_alloc_ctor(1, 2, 0); @@ -12287,7 +12287,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -12297,7 +12297,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandDbgTrace___closed__9; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -12317,7 +12317,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandDbgTrace___closed__11; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -12327,7 +12327,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandDbgTrace___closed__12; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__12; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -12450,7 +12450,7 @@ x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); x_33 = lean_array_push(x_19, x_32); -x_34 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_34 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_35 = lean_array_push(x_33, x_34); x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_28); @@ -12516,7 +12516,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_65, x_70); -x_72 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_72 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_73 = lean_array_push(x_71, x_72); x_74 = l_Lean_nullKind___closed__2; x_75 = lean_alloc_ctor(1, 2, 0); diff --git a/stage0/stdlib/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c index dbc82423e9..7a86cb3f4b 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -227,6 +227,7 @@ lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__6___boxed(lean_object* extern lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__1___closed__1; lean_object* l_Lean_Elab_Command_elabUniverses___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCheckFailure(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCheck___closed__3; @@ -244,7 +245,6 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec lean_object* l_Lean_Elab_Command_elabOpen___closed__6; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCommand___lambda__1___closed__1; -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_Command_liftTermElabM_match__1(lean_object*, lean_object*); lean_object* l_List_foldl___at_Lean_Elab_Command_elabExport___spec__2(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_runLinters___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -5627,7 +5627,7 @@ static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3099____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/DeclModifiers.c b/stage0/stdlib/Lean/Elab/DeclModifiers.c index bfc3c4b99e..e25726949e 100644 --- a/stage0/stdlib/Lean/Elab/DeclModifiers.c +++ b/stage0/stdlib/Lean/Elab/DeclModifiers.c @@ -178,11 +178,11 @@ lean_object* l_Array_toList___rarg(lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabModifiers_match__4(lean_object*); lean_object* l_Lean_Elab_elabModifiers___rarg___lambda__3___closed__7; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; lean_object* l_Lean_Elab_Lean_Elab_DeclModifiers___instance__1___closed__1; lean_object* l_Lean_Elab_Lean_Elab_DeclModifiers___instance__2___closed__2; lean_object* l_Lean_Elab_applyVisibility___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Lean_Data_Format___instance__20___closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; lean_object* lean_string_length(lean_object*); lean_object* l_Lean_Elab_Lean_Elab_DeclModifiers___instance__2_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabModifiers___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1154,7 +1154,7 @@ static lean_object* _init_l_Lean_Elab_Lean_Elab_DeclModifiers___instance__2___cl _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Lean/Elab/Declaration.c b/stage0/stdlib/Lean/Elab/Declaration.c index e809f6a3f4..35795082b1 100644 --- a/stage0/stdlib/Lean/Elab/Declaration.c +++ b/stage0/stdlib/Lean/Elab/Declaration.c @@ -79,13 +79,13 @@ lean_object* l_Lean_Elab_Command_expandInitCmd___closed__14; lean_object* l_Lean_Elab_Command_expandMutualPreamble_match__1(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_expandInitialize(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclaration(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; extern lean_object* l_Lean_mkSimpleThunkType___closed__1; lean_object* l_Lean_Elab_Command_elabAxiom_match__5___rarg(lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_elabMutualInductive___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMutualNamespace_match__3(lean_object*); lean_object* l_Lean_Elab_Command_expandInitCmd___closed__22; @@ -219,6 +219,7 @@ extern lean_object* l___regBuiltin_Lean_Elab_Command_elabUniverses___closed__2; extern lean_object* l_Lean_initFn____x40_Lean_Compiler_InitAttr___hyg_510____closed__2; size_t lean_usize_of_nat(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabAttr___closed__2; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; lean_object* l_Lean_Elab_Command_expandDeclNamespace_x3f_match__3(lean_object*); 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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabAxiom_match__2(lean_object*); @@ -235,7 +236,6 @@ lean_object* l_Lean_Elab_Command_expandInitCmd___closed__36; lean_object* l_Lean_Elab_Command_expandMutualPreamble(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_Command_expandMutualElement(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; lean_object* l___regBuiltin_Lean_Elab_Command_expandMutualElement(lean_object*); lean_object* l_Lean_Elab_Term_resetMessageLog(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMutualPreamble___closed__2; @@ -5894,7 +5894,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_expandInCmd___closed__2; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -5916,7 +5916,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_expandInCmd___closed__7; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -6922,7 +6922,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -7314,7 +7314,7 @@ lean_inc(x_111); lean_dec(x_3); x_112 = l_Array_empty___closed__1; x_113 = lean_array_push(x_112, x_11); -x_114 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_114 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_115 = lean_array_push(x_113, x_114); x_116 = l_Lean_Elab_Command_expandInitCmd___closed__32; x_117 = lean_alloc_ctor(1, 2, 0); diff --git a/stage0/stdlib/Lean/Elab/DefView.c b/stage0/stdlib/Lean/Elab/DefView.c index 96547ed901..5bcff64322 100644 --- a/stage0/stdlib/Lean/Elab/DefView.c +++ b/stage0/stdlib/Lean/Elab/DefView.c @@ -21,10 +21,10 @@ lean_object* l_Lean_Elab_DefKind_isExample_match__1___rarg___boxed(lean_object*, uint8_t l_Lean_Elab_DefKind_isDefOrAbbrevOrOpaque(uint8_t); lean_object* l_Lean_Elab_Command_mkDefViewOfConstant_match__2(lean_object*); lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; lean_object* l_Lean_Elab_Command_mkDefViewOfConstant___closed__2; lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkDefViewOfConstant___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; extern lean_object* l_Array_empty___closed__1; lean_object* lean_st_ref_get(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); @@ -45,13 +45,13 @@ uint8_t l_Lean_Elab_DefKind_isExample(uint8_t); lean_object* l_Lean_Elab_Command_mkDefView___closed__3; extern lean_object* l_Lean_Compiler_initFn____x40_Lean_Compiler_InlineAttrs___hyg_54____closed__4; extern lean_object* l_Lean_mkAppStx___closed__8; +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkDefViewOfAbbrev___closed__2; lean_object* l_Lean_Elab_Command_mkDefViewOfAbbrev_match__1(lean_object*); lean_object* l_Lean_Elab_Command_mkDefViewOfExample(lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__13; lean_object* l_Lean_Elab_Command_mkDefView___closed__2; -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_Command_isDefLike___closed__4; lean_object* l_Lean_Elab_Command_mkDefViewOfConstant___closed__3; lean_object* l_Lean_Elab_Command_isDefLike___closed__8; @@ -892,7 +892,7 @@ x_30 = l_Lean_mkAppStx___closed__8; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); -x_32 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; +x_32 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; x_33 = l_Lean_mkAtomFrom(x_2, x_32); x_34 = l_Lean_mkAppStx___closed__9; x_35 = lean_array_push(x_34, x_33); @@ -1530,7 +1530,7 @@ static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_662____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/Do.c b/stage0/stdlib/Lean/Elab/Do.c index a98a734865..cabe903e2a 100644 --- a/stage0/stdlib/Lean/Elab/Do.c +++ b/stage0/stdlib/Lean/Elab/Do.c @@ -206,7 +206,6 @@ lean_object* l_Lean_Elab_Term_Do_concat___boxed(lean_object*, lean_object*, lean extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__6; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__5; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* l_Lean_Elab_Term_Do_isMutableLet___boxed(lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode_match__4(lean_object*); @@ -217,6 +216,7 @@ uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Do_hasBreakContinue___spec__2 lean_object* l___regBuiltin_Lean_Elab_Term_expandTermFor___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__48; extern lean_object* l_Lean_Meta_assumption___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_getTryCatchUpdatedVars_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -288,6 +288,7 @@ extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor___closed__3; lean_object* l_Lean_Elab_Term_elabLiftMethod___closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_run___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_hasLiftMethod___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_Do_concat___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*); @@ -322,7 +323,6 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode_match__1___rarg(lean_ob lean_object* l_Lean_Elab_Term_Do_getPatternVarNames(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_reassignToTermCore___closed__3; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_declToTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__20; @@ -663,6 +663,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__53; lean_object* l_Lean_Elab_Term_Do_concat___closed__3; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__6; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_concatWith(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_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__42; lean_object* l_Lean_Elab_Term_Do_CodeBlock_uvars___default; extern lean_object* l_Lean_NameSet_empty; @@ -715,7 +716,6 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__20; lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux(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_Do_ToTerm_matchNestedTermResult___closed__25; lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; lean_object* l_Lean_Elab_Term_Do_mkReassignCore___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_mkForInBody___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); @@ -937,6 +937,7 @@ extern lean_object* l_Id_Init_Control_Id___instance__1; lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___at_Lean_Elab_Term_Do_convertTerminalActionIntoJmp_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3___boxed(lean_object**); +extern lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__47; lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1112,7 +1113,6 @@ extern lean_object* l_List_foldl___at_Lean_Meta_Match_Pattern_toMessageData___sp lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16; lean_object* l_Lean_Elab_Term_Do_mkTerminalAction(lean_object*); extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__9; @@ -5043,7 +5043,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -5126,7 +5126,7 @@ lean_ctor_set(x_12, 2, x_8); lean_ctor_set(x_12, 3, x_9); x_13 = l_Array_empty___closed__1; x_14 = lean_array_push(x_13, x_12); -x_15 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_15 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_16 = lean_array_push(x_14, x_15); x_17 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_18 = lean_array_push(x_16, x_17); @@ -5657,7 +5657,7 @@ x_16 = l_Lean_Syntax_getId(x_15); x_17 = l_Array_empty___closed__1; lean_inc(x_15); x_18 = lean_array_push(x_17, x_15); -x_19 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_19 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_20 = lean_array_push(x_18, x_19); x_21 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_22 = lean_array_push(x_20, x_21); @@ -5780,7 +5780,7 @@ x_64 = l_Lean_Syntax_getId(x_63); x_65 = l_Array_empty___closed__1; lean_inc(x_63); x_66 = lean_array_push(x_65, x_63); -x_67 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_67 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_68 = lean_array_push(x_66, x_67); x_69 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_70 = lean_array_push(x_68, x_69); @@ -9003,7 +9003,7 @@ lean_ctor_set(x_42, 2, x_41); lean_ctor_set(x_42, 3, x_30); x_43 = l_Array_empty___closed__1; x_44 = lean_array_push(x_43, x_42); -x_45 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_45 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_46 = lean_array_push(x_44, x_45); x_47 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_48 = lean_array_push(x_46, x_47); @@ -9174,7 +9174,7 @@ lean_ctor_set(x_113, 2, x_112); lean_ctor_set(x_113, 3, x_101); x_114 = l_Array_empty___closed__1; x_115 = lean_array_push(x_114, x_113); -x_116 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_116 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_117 = lean_array_push(x_115, x_116); x_118 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_119 = lean_array_push(x_117, x_118); @@ -9378,7 +9378,7 @@ lean_ctor_set(x_190, 2, x_189); lean_ctor_set(x_190, 3, x_178); x_191 = l_Array_empty___closed__1; x_192 = lean_array_push(x_191, x_190); -x_193 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_193 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_194 = lean_array_push(x_192, x_193); x_195 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_196 = lean_array_push(x_194, x_195); @@ -18229,7 +18229,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_20, x_34); -x_36 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_36 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_37 = lean_array_push(x_35, x_36); x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_30); @@ -18345,7 +18345,7 @@ x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); x_92 = lean_array_push(x_77, x_91); -x_93 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_93 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_94 = lean_array_push(x_92, x_93); x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_87); @@ -18459,7 +18459,7 @@ x_147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_147, 0, x_146); lean_ctor_set(x_147, 1, x_145); x_148 = lean_array_push(x_134, x_147); -x_149 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_149 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_150 = lean_array_push(x_148, x_149); x_151 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_151, 0, x_143); @@ -18531,7 +18531,7 @@ x_185 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_185, 0, x_184); lean_ctor_set(x_185, 1, x_183); x_186 = lean_array_push(x_172, x_185); -x_187 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_187 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_188 = lean_array_push(x_186, x_187); x_189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_189, 0, x_181); @@ -18631,7 +18631,7 @@ x_236 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_236, 0, x_235); lean_ctor_set(x_236, 1, x_234); x_237 = lean_array_push(x_211, x_236); -x_238 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_238 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_239 = lean_array_push(x_237, x_238); x_240 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_240, 0, x_232); @@ -18764,7 +18764,7 @@ x_307 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_307, 0, x_306); lean_ctor_set(x_307, 1, x_305); x_308 = lean_array_push(x_282, x_307); -x_309 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_309 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_310 = lean_array_push(x_308, x_309); x_311 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_311, 0, x_303); @@ -18891,7 +18891,7 @@ x_373 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_373, 0, x_372); lean_ctor_set(x_373, 1, x_371); x_374 = lean_array_push(x_359, x_373); -x_375 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_375 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_376 = lean_array_push(x_374, x_375); x_377 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_377, 0, x_369); @@ -18964,7 +18964,7 @@ x_412 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_412, 0, x_411); lean_ctor_set(x_412, 1, x_410); x_413 = lean_array_push(x_398, x_412); -x_414 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_414 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_415 = lean_array_push(x_413, x_414); x_416 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_416, 0, x_408); @@ -19041,7 +19041,7 @@ x_452 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_452, 0, x_451); lean_ctor_set(x_452, 1, x_450); x_453 = lean_array_push(x_438, x_452); -x_454 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_454 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_455 = lean_array_push(x_453, x_454); x_456 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_456, 0, x_448); @@ -19114,7 +19114,7 @@ x_491 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_491, 0, x_490); lean_ctor_set(x_491, 1, x_489); x_492 = lean_array_push(x_477, x_491); -x_493 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_493 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_494 = lean_array_push(x_492, x_493); x_495 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_495, 0, x_487); @@ -19191,7 +19191,7 @@ x_531 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_531, 0, x_530); lean_ctor_set(x_531, 1, x_529); x_532 = lean_array_push(x_517, x_531); -x_533 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_533 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_534 = lean_array_push(x_532, x_533); x_535 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_535, 0, x_527); @@ -19264,7 +19264,7 @@ x_570 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_570, 0, x_569); lean_ctor_set(x_570, 1, x_568); x_571 = lean_array_push(x_556, x_570); -x_572 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_572 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_573 = lean_array_push(x_571, x_572); x_574 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_574, 0, x_566); @@ -19882,7 +19882,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 = lean_array_push(x_22, x_35); -x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_38 = lean_array_push(x_36, x_37); x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_31); @@ -19954,7 +19954,7 @@ 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 = lean_array_push(x_60, x_73); -x_75 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_75 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_76 = lean_array_push(x_74, x_75); x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_69); @@ -20054,7 +20054,7 @@ x_124 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_124, 0, x_123); lean_ctor_set(x_124, 1, x_122); x_125 = lean_array_push(x_99, x_124); -x_126 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_126 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_127 = lean_array_push(x_125, x_126); x_128 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_128, 0, x_120); @@ -20168,7 +20168,7 @@ x_184 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_184, 0, x_183); lean_ctor_set(x_184, 1, x_182); x_185 = lean_array_push(x_159, x_184); -x_186 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_186 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_187 = lean_array_push(x_185, x_186); x_188 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_188, 0, x_180); @@ -20262,7 +20262,7 @@ x_233 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_233, 0, x_232); lean_ctor_set(x_233, 1, x_231); x_234 = lean_array_push(x_220, x_233); -x_235 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_235 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_236 = lean_array_push(x_234, x_235); x_237 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_237, 0, x_229); @@ -20334,7 +20334,7 @@ x_271 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_271, 0, x_270); lean_ctor_set(x_271, 1, x_269); x_272 = lean_array_push(x_258, x_271); -x_273 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_273 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_274 = lean_array_push(x_272, x_273); x_275 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_275, 0, x_267); @@ -20422,7 +20422,7 @@ x_315 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_315, 0, x_314); lean_ctor_set(x_315, 1, x_313); x_316 = lean_array_push(x_302, x_315); -x_317 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_317 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_318 = lean_array_push(x_316, x_317); x_319 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_319, 0, x_311); @@ -20494,7 +20494,7 @@ x_353 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_353, 0, x_352); lean_ctor_set(x_353, 1, x_351); x_354 = lean_array_push(x_340, x_353); -x_355 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_355 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_356 = lean_array_push(x_354, x_355); x_357 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_357, 0, x_349); @@ -20570,7 +20570,7 @@ x_392 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_392, 0, x_391); lean_ctor_set(x_392, 1, x_390); x_393 = lean_array_push(x_379, x_392); -x_394 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_394 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_395 = lean_array_push(x_393, x_394); x_396 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_396, 0, x_388); @@ -20642,7 +20642,7 @@ x_430 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_430, 0, x_429); lean_ctor_set(x_430, 1, x_428); x_431 = lean_array_push(x_417, x_430); -x_432 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_432 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_433 = lean_array_push(x_431, x_432); x_434 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_434, 0, x_426); @@ -21169,7 +21169,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 = lean_array_push(x_22, x_35); -x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_37 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_38 = lean_array_push(x_36, x_37); x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_31); @@ -21241,7 +21241,7 @@ 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 = lean_array_push(x_60, x_73); -x_75 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_75 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_76 = lean_array_push(x_74, x_75); x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_69); @@ -21341,7 +21341,7 @@ x_124 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_124, 0, x_123); lean_ctor_set(x_124, 1, x_122); x_125 = lean_array_push(x_99, x_124); -x_126 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_126 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_127 = lean_array_push(x_125, x_126); x_128 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_128, 0, x_120); @@ -21455,7 +21455,7 @@ x_184 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_184, 0, x_183); lean_ctor_set(x_184, 1, x_182); x_185 = lean_array_push(x_159, x_184); -x_186 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_186 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_187 = lean_array_push(x_185, x_186); x_188 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_188, 0, x_180); @@ -21549,7 +21549,7 @@ x_233 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_233, 0, x_232); lean_ctor_set(x_233, 1, x_231); x_234 = lean_array_push(x_220, x_233); -x_235 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_235 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_236 = lean_array_push(x_234, x_235); x_237 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_237, 0, x_229); @@ -21621,7 +21621,7 @@ x_271 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_271, 0, x_270); lean_ctor_set(x_271, 1, x_269); x_272 = lean_array_push(x_258, x_271); -x_273 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_273 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_274 = lean_array_push(x_272, x_273); x_275 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_275, 0, x_267); @@ -21709,7 +21709,7 @@ x_315 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_315, 0, x_314); lean_ctor_set(x_315, 1, x_313); x_316 = lean_array_push(x_302, x_315); -x_317 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_317 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_318 = lean_array_push(x_316, x_317); x_319 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_319, 0, x_311); @@ -21781,7 +21781,7 @@ x_353 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_353, 0, x_352); lean_ctor_set(x_353, 1, x_351); x_354 = lean_array_push(x_340, x_353); -x_355 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_355 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_356 = lean_array_push(x_354, x_355); x_357 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_357, 0, x_349); @@ -21857,7 +21857,7 @@ x_392 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_392, 0, x_391); lean_ctor_set(x_392, 1, x_390); x_393 = lean_array_push(x_379, x_392); -x_394 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_394 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_395 = lean_array_push(x_393, x_394); x_396 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_396, 0, x_388); @@ -21929,7 +21929,7 @@ x_430 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_430, 0, x_429); lean_ctor_set(x_430, 1, x_428); x_431 = lean_array_push(x_417, x_430); -x_432 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_432 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_433 = lean_array_push(x_431, x_432); x_434 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_434, 0, x_426); @@ -22452,7 +22452,7 @@ x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); x_53 = lean_array_push(x_23, x_52); -x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_55 = lean_array_push(x_53, x_54); x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_31); @@ -22587,7 +22587,7 @@ x_118 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_118, 0, x_117); lean_ctor_set(x_118, 1, x_116); x_119 = lean_array_push(x_89, x_118); -x_120 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_120 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_121 = lean_array_push(x_119, x_120); x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_97); @@ -22744,7 +22744,7 @@ x_199 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_199, 0, x_198); lean_ctor_set(x_199, 1, x_197); x_200 = lean_array_push(x_154, x_199); -x_201 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_201 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_202 = lean_array_push(x_200, x_201); x_203 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_203, 0, x_167); @@ -22881,7 +22881,7 @@ x_275 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_275, 0, x_274); lean_ctor_set(x_275, 1, x_273); x_276 = lean_array_push(x_230, x_275); -x_277 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_277 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_278 = lean_array_push(x_276, x_277); x_279 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_279, 0, x_243); @@ -23047,7 +23047,7 @@ x_364 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_364, 0, x_363); lean_ctor_set(x_364, 1, x_362); x_365 = lean_array_push(x_307, x_364); -x_366 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_366 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_367 = lean_array_push(x_365, x_366); x_368 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_368, 0, x_320); @@ -23226,7 +23226,7 @@ x_462 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_462, 0, x_461); lean_ctor_set(x_462, 1, x_460); x_463 = lean_array_push(x_405, x_462); -x_464 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_464 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_465 = lean_array_push(x_463, x_464); x_466 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_466, 0, x_418); @@ -23379,7 +23379,7 @@ x_539 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_539, 0, x_538); lean_ctor_set(x_539, 1, x_537); x_540 = lean_array_push(x_510, x_539); -x_541 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_541 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_542 = lean_array_push(x_540, x_541); x_543 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_543, 0, x_518); @@ -23507,7 +23507,7 @@ 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_580, x_609); -x_611 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_611 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_612 = lean_array_push(x_610, x_611); x_613 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_613, 0, x_588); @@ -23640,7 +23640,7 @@ x_680 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_680, 0, x_679); lean_ctor_set(x_680, 1, x_678); x_681 = lean_array_push(x_651, x_680); -x_682 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_682 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_683 = lean_array_push(x_681, x_682); x_684 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_684, 0, x_659); @@ -23768,7 +23768,7 @@ x_750 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_750, 0, x_749); lean_ctor_set(x_750, 1, x_748); x_751 = lean_array_push(x_721, x_750); -x_752 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_752 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_753 = lean_array_push(x_751, x_752); x_754 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_754, 0, x_729); @@ -23901,7 +23901,7 @@ x_821 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_821, 0, x_820); lean_ctor_set(x_821, 1, x_819); x_822 = lean_array_push(x_792, x_821); -x_823 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_823 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_824 = lean_array_push(x_822, x_823); x_825 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_825, 0, x_800); @@ -24029,7 +24029,7 @@ x_891 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_891, 0, x_890); lean_ctor_set(x_891, 1, x_889); x_892 = lean_array_push(x_862, x_891); -x_893 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_893 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_894 = lean_array_push(x_892, x_893); x_895 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_895, 0, x_870); @@ -24203,7 +24203,7 @@ x_972 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_972, 0, x_971); lean_ctor_set(x_972, 1, x_970); x_973 = lean_array_push(x_943, x_972); -x_974 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_974 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_975 = lean_array_push(x_973, x_974); x_976 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_976, 0, x_951); @@ -24374,7 +24374,7 @@ x_1054 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1054, 0, x_1053); lean_ctor_set(x_1054, 1, x_1052); x_1055 = lean_array_push(x_1009, x_1054); -x_1056 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1056 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1057 = lean_array_push(x_1055, x_1056); x_1058 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1058, 0, x_1022); @@ -24550,7 +24550,7 @@ x_1144 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1144, 0, x_1143); lean_ctor_set(x_1144, 1, x_1142); x_1145 = lean_array_push(x_1087, x_1144); -x_1146 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1146 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1147 = lean_array_push(x_1145, x_1146); x_1148 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1148, 0, x_1100); @@ -24713,7 +24713,7 @@ x_1222 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1222, 0, x_1221); lean_ctor_set(x_1222, 1, x_1220); x_1223 = lean_array_push(x_1193, x_1222); -x_1224 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1224 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1225 = lean_array_push(x_1223, x_1224); x_1226 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1226, 0, x_1201); @@ -24856,7 +24856,7 @@ x_1294 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1294, 0, x_1293); lean_ctor_set(x_1294, 1, x_1292); x_1295 = lean_array_push(x_1265, x_1294); -x_1296 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1296 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1297 = lean_array_push(x_1295, x_1296); x_1298 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1298, 0, x_1273); @@ -24999,7 +24999,7 @@ x_1366 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1366, 0, x_1365); lean_ctor_set(x_1366, 1, x_1364); x_1367 = lean_array_push(x_1337, x_1366); -x_1368 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1368 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1369 = lean_array_push(x_1367, x_1368); x_1370 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1370, 0, x_1345); @@ -25294,7 +25294,7 @@ 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 = lean_array_push(x_19, x_29); -x_31 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_31 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_32 = lean_array_push(x_30, x_31); x_33 = l_Lean_nullKind___closed__2; x_34 = lean_alloc_ctor(1, 2, 0); @@ -25501,7 +25501,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__6; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -25685,7 +25685,7 @@ x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); x_83 = lean_array_push(x_52, x_82); -x_84 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_84 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_85 = lean_array_push(x_83, x_84); x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_61); @@ -25915,7 +25915,7 @@ x_181 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_181, 0, x_180); lean_ctor_set(x_181, 1, x_179); x_182 = lean_array_push(x_151, x_181); -x_183 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_183 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_184 = lean_array_push(x_182, x_183); x_185 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_185, 0, x_160); @@ -26644,7 +26644,7 @@ x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_32); lean_ctor_set(x_40, 1, x_39); x_41 = lean_array_push(x_34, x_40); -x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_43 = lean_array_push(x_41, x_42); x_44 = lean_array_push(x_43, x_3); x_45 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -26707,7 +26707,7 @@ x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_69); lean_ctor_set(x_77, 1, x_76); x_78 = lean_array_push(x_71, x_77); -x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_80 = lean_array_push(x_78, x_79); x_81 = lean_array_push(x_80, x_3); x_82 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -26828,7 +26828,7 @@ x_127 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_127, 0, x_119); lean_ctor_set(x_127, 1, x_126); x_128 = lean_array_push(x_121, x_127); -x_129 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_129 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_130 = lean_array_push(x_128, x_129); x_131 = lean_array_push(x_130, x_3); x_132 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -28668,7 +28668,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__25; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -28752,7 +28752,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__33; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -29019,7 +29019,7 @@ lean_ctor_set(x_30, 3, x_27); x_31 = l_Array_empty___closed__1; lean_inc(x_30); x_32 = lean_array_push(x_31, x_30); -x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_34 = lean_array_push(x_32, x_33); x_35 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_36 = lean_array_push(x_34, x_35); @@ -29105,7 +29105,7 @@ x_83 = lean_array_push(x_81, x_82); x_84 = lean_array_push(x_31, x_22); x_85 = lean_array_push(x_84, x_33); x_86 = lean_array_push(x_85, x_33); -x_87 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_87 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_88 = lean_array_push(x_86, x_87); x_89 = lean_array_push(x_88, x_73); x_90 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -29244,7 +29244,7 @@ lean_ctor_set(x_162, 3, x_159); x_163 = l_Array_empty___closed__1; lean_inc(x_162); x_164 = lean_array_push(x_163, x_162); -x_165 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_165 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_166 = lean_array_push(x_164, x_165); x_167 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_168 = lean_array_push(x_166, x_167); @@ -29330,7 +29330,7 @@ x_215 = lean_array_push(x_213, x_214); x_216 = lean_array_push(x_163, x_153); x_217 = lean_array_push(x_216, x_165); x_218 = lean_array_push(x_217, x_165); -x_219 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_219 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_220 = lean_array_push(x_218, x_219); x_221 = lean_array_push(x_220, x_205); x_222 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -29477,7 +29477,7 @@ lean_ctor_set(x_296, 2, x_292); lean_ctor_set(x_296, 3, x_293); x_297 = l_Array_empty___closed__1; x_298 = lean_array_push(x_297, x_296); -x_299 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_299 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_inc(x_298); x_300 = lean_array_push(x_298, x_299); x_301 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; @@ -29509,7 +29509,7 @@ x_318 = lean_array_push(x_297, x_317); x_319 = lean_array_push(x_297, x_287); x_320 = lean_array_push(x_319, x_299); x_321 = lean_array_push(x_320, x_299); -x_322 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_322 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_323 = lean_array_push(x_321, x_322); x_324 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__16; x_325 = lean_array_push(x_298, x_324); @@ -29599,7 +29599,7 @@ lean_ctor_set(x_371, 2, x_367); lean_ctor_set(x_371, 3, x_368); x_372 = l_Array_empty___closed__1; x_373 = lean_array_push(x_372, x_371); -x_374 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_374 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_inc(x_373); x_375 = lean_array_push(x_373, x_374); x_376 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; @@ -29695,7 +29695,7 @@ lean_ctor_set(x_424, 2, x_420); lean_ctor_set(x_424, 3, x_421); x_425 = l_Array_empty___closed__1; x_426 = lean_array_push(x_425, x_424); -x_427 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_427 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_inc(x_426); x_428 = lean_array_push(x_426, x_427); x_429 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; @@ -29727,7 +29727,7 @@ x_446 = lean_array_push(x_425, x_445); x_447 = lean_array_push(x_425, x_414); x_448 = lean_array_push(x_447, x_427); x_449 = lean_array_push(x_448, x_427); -x_450 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_450 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_451 = lean_array_push(x_449, x_450); x_452 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__16; x_453 = lean_array_push(x_426, x_452); @@ -29819,7 +29819,7 @@ lean_ctor_set(x_500, 2, x_496); lean_ctor_set(x_500, 3, x_497); x_501 = l_Array_empty___closed__1; x_502 = lean_array_push(x_501, x_500); -x_503 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_503 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_inc(x_502); x_504 = lean_array_push(x_502, x_503); x_505 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; @@ -29917,7 +29917,7 @@ lean_ctor_set(x_553, 3, x_550); x_554 = l_Array_empty___closed__1; lean_inc(x_553); x_555 = lean_array_push(x_554, x_553); -x_556 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_556 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_557 = lean_array_push(x_555, x_556); x_558 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_559 = lean_array_push(x_557, x_558); @@ -30014,7 +30014,7 @@ x_611 = lean_array_push(x_609, x_610); x_612 = lean_array_push(x_554, x_545); x_613 = lean_array_push(x_612, x_556); x_614 = lean_array_push(x_613, x_556); -x_615 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_615 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_616 = lean_array_push(x_614, x_615); lean_inc(x_601); x_617 = lean_array_push(x_616, x_601); @@ -30210,7 +30210,7 @@ lean_ctor_set(x_720, 3, x_717); x_721 = l_Array_empty___closed__1; lean_inc(x_720); x_722 = lean_array_push(x_721, x_720); -x_723 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_723 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_724 = lean_array_push(x_722, x_723); x_725 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_726 = lean_array_push(x_724, x_725); @@ -30307,7 +30307,7 @@ x_778 = lean_array_push(x_776, x_777); x_779 = lean_array_push(x_721, x_711); x_780 = lean_array_push(x_779, x_723); x_781 = lean_array_push(x_780, x_723); -x_782 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_782 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_783 = lean_array_push(x_781, x_782); lean_inc(x_768); x_784 = lean_array_push(x_783, x_768); @@ -30516,7 +30516,7 @@ lean_ctor_set(x_889, 2, x_885); lean_ctor_set(x_889, 3, x_886); x_890 = l_Array_empty___closed__1; x_891 = lean_array_push(x_890, x_889); -x_892 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_892 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_inc(x_891); x_893 = lean_array_push(x_891, x_892); x_894 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; @@ -30548,7 +30548,7 @@ x_911 = lean_array_push(x_890, x_910); x_912 = lean_array_push(x_890, x_880); x_913 = lean_array_push(x_912, x_892); x_914 = lean_array_push(x_913, x_892); -x_915 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_915 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_916 = lean_array_push(x_914, x_915); x_917 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__16; x_918 = lean_array_push(x_891, x_917); @@ -30642,7 +30642,7 @@ x_967 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_967, 0, x_966); lean_ctor_set(x_967, 1, x_965); x_968 = lean_array_push(x_964, x_967); -x_969 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_969 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_970 = lean_array_push(x_968, x_969); x_971 = l_Lean_nullKind___closed__2; x_972 = lean_alloc_ctor(1, 2, 0); @@ -30703,7 +30703,7 @@ lean_ctor_set(x_995, 2, x_991); lean_ctor_set(x_995, 3, x_992); x_996 = l_Array_empty___closed__1; x_997 = lean_array_push(x_996, x_995); -x_998 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_998 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_inc(x_997); x_999 = lean_array_push(x_997, x_998); x_1000 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; @@ -30735,7 +30735,7 @@ x_1017 = lean_array_push(x_996, x_1016); x_1018 = lean_array_push(x_996, x_985); x_1019 = lean_array_push(x_1018, x_998); x_1020 = lean_array_push(x_1019, x_998); -x_1021 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_1021 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_1022 = lean_array_push(x_1020, x_1021); x_1023 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__16; x_1024 = lean_array_push(x_997, x_1023); @@ -30831,7 +30831,7 @@ x_1074 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1074, 0, x_1073); lean_ctor_set(x_1074, 1, x_1072); x_1075 = lean_array_push(x_1071, x_1074); -x_1076 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1076 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1077 = lean_array_push(x_1075, x_1076); x_1078 = l_Lean_nullKind___closed__2; x_1079 = lean_alloc_ctor(1, 2, 0); @@ -30892,7 +30892,7 @@ lean_ctor_set(x_1102, 3, x_1099); x_1103 = l_Array_empty___closed__1; lean_inc(x_1102); x_1104 = lean_array_push(x_1103, x_1102); -x_1105 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1105 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1106 = lean_array_push(x_1104, x_1105); x_1107 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_1108 = lean_array_push(x_1106, x_1107); @@ -30989,7 +30989,7 @@ x_1160 = lean_array_push(x_1158, x_1159); x_1161 = lean_array_push(x_1103, x_1094); x_1162 = lean_array_push(x_1161, x_1105); x_1163 = lean_array_push(x_1162, x_1105); -x_1164 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_1164 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_1165 = lean_array_push(x_1163, x_1164); lean_inc(x_1150); x_1166 = lean_array_push(x_1165, x_1150); @@ -31199,7 +31199,7 @@ lean_ctor_set(x_1275, 3, x_1272); x_1276 = l_Array_empty___closed__1; lean_inc(x_1275); x_1277 = lean_array_push(x_1276, x_1275); -x_1278 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1278 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1279 = lean_array_push(x_1277, x_1278); x_1280 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_1281 = lean_array_push(x_1279, x_1280); @@ -31296,7 +31296,7 @@ x_1333 = lean_array_push(x_1331, x_1332); x_1334 = lean_array_push(x_1276, x_1266); x_1335 = lean_array_push(x_1334, x_1278); x_1336 = lean_array_push(x_1335, x_1278); -x_1337 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_1337 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_1338 = lean_array_push(x_1336, x_1337); lean_inc(x_1323); x_1339 = lean_array_push(x_1338, x_1323); @@ -31513,7 +31513,7 @@ lean_ctor_set(x_1449, 3, x_1446); x_1450 = l_Array_empty___closed__1; lean_inc(x_1449); x_1451 = lean_array_push(x_1450, x_1449); -x_1452 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1452 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1453 = lean_array_push(x_1451, x_1452); x_1454 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_1455 = lean_array_push(x_1453, x_1454); @@ -31610,7 +31610,7 @@ x_1507 = lean_array_push(x_1505, x_1506); x_1508 = lean_array_push(x_1450, x_1441); x_1509 = lean_array_push(x_1508, x_1452); x_1510 = lean_array_push(x_1509, x_1452); -x_1511 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_1511 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_1512 = lean_array_push(x_1510, x_1511); lean_inc(x_1497); x_1513 = lean_array_push(x_1512, x_1497); @@ -31806,7 +31806,7 @@ lean_ctor_set(x_1613, 3, x_1610); x_1614 = l_Array_empty___closed__1; lean_inc(x_1613); x_1615 = lean_array_push(x_1614, x_1613); -x_1616 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1616 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1617 = lean_array_push(x_1615, x_1616); x_1618 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_1619 = lean_array_push(x_1617, x_1618); @@ -31903,7 +31903,7 @@ x_1671 = lean_array_push(x_1669, x_1670); x_1672 = lean_array_push(x_1614, x_1604); x_1673 = lean_array_push(x_1672, x_1616); x_1674 = lean_array_push(x_1673, x_1616); -x_1675 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_1675 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_1676 = lean_array_push(x_1674, x_1675); lean_inc(x_1661); x_1677 = lean_array_push(x_1676, x_1661); @@ -32102,7 +32102,7 @@ lean_ctor_set(x_1778, 3, x_1775); x_1779 = l_Array_empty___closed__1; lean_inc(x_1778); x_1780 = lean_array_push(x_1779, x_1778); -x_1781 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1781 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1782 = lean_array_push(x_1780, x_1781); x_1783 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_1784 = lean_array_push(x_1782, x_1783); @@ -32200,7 +32200,7 @@ x_1836 = lean_array_push(x_1834, x_1835); x_1837 = lean_array_push(x_1779, x_1770); x_1838 = lean_array_push(x_1837, x_1781); x_1839 = lean_array_push(x_1838, x_1781); -x_1840 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_1840 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_1841 = lean_array_push(x_1839, x_1840); lean_inc(x_1826); x_1842 = lean_array_push(x_1841, x_1826); @@ -32459,7 +32459,7 @@ lean_ctor_set(x_1978, 3, x_1975); x_1979 = l_Array_empty___closed__1; lean_inc(x_1978); x_1980 = lean_array_push(x_1979, x_1978); -x_1981 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_1981 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_1982 = lean_array_push(x_1980, x_1981); x_1983 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_1984 = lean_array_push(x_1982, x_1983); @@ -32557,7 +32557,7 @@ x_2036 = lean_array_push(x_2034, x_2035); x_2037 = lean_array_push(x_1979, x_1969); x_2038 = lean_array_push(x_2037, x_1981); x_2039 = lean_array_push(x_2038, x_1981); -x_2040 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_2040 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_2041 = lean_array_push(x_2039, x_2040); lean_inc(x_2026); x_2042 = lean_array_push(x_2041, x_2026); @@ -34087,7 +34087,7 @@ lean_ctor_set(x_57, 3, x_54); x_58 = l_Array_empty___closed__1; lean_inc(x_57); x_59 = lean_array_push(x_58, x_57); -x_60 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_60 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_61 = lean_array_push(x_59, x_60); x_62 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_63 = lean_array_push(x_61, x_62); @@ -34135,7 +34135,7 @@ lean_ctor_set(x_82, 3, x_79); x_83 = l_Array_empty___closed__1; lean_inc(x_82); x_84 = lean_array_push(x_83, x_82); -x_85 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_85 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_86 = lean_array_push(x_84, x_85); x_87 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_88 = lean_array_push(x_86, x_87); @@ -34198,7 +34198,7 @@ lean_ctor_set(x_111, 3, x_108); x_112 = l_Array_empty___closed__1; lean_inc(x_111); x_113 = lean_array_push(x_112, x_111); -x_114 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_114 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_115 = lean_array_push(x_113, x_114); x_116 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_117 = lean_array_push(x_115, x_116); @@ -34321,7 +34321,7 @@ lean_ctor_set(x_152, 3, x_149); x_153 = l_Array_empty___closed__1; lean_inc(x_152); x_154 = lean_array_push(x_153, x_152); -x_155 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_155 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_156 = lean_array_push(x_154, x_155); x_157 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_158 = lean_array_push(x_156, x_157); @@ -34564,7 +34564,7 @@ lean_ctor_set(x_221, 3, x_218); x_222 = l_Array_empty___closed__1; lean_inc(x_221); x_223 = lean_array_push(x_222, x_221); -x_224 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_224 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_225 = lean_array_push(x_223, x_224); x_226 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_227 = lean_array_push(x_225, x_226); @@ -35207,7 +35207,7 @@ lean_ctor_set(x_41, 3, x_38); x_42 = l_Array_empty___closed__1; lean_inc(x_41); x_43 = lean_array_push(x_42, x_41); -x_44 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_44 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_45 = lean_array_push(x_43, x_44); x_46 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_47 = lean_array_push(x_45, x_46); @@ -35573,7 +35573,7 @@ lean_ctor_set(x_61, 3, x_58); x_62 = l_Array_empty___closed__1; lean_inc(x_61); x_63 = lean_array_push(x_62, x_61); -x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_65 = lean_array_push(x_63, x_64); x_66 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_67 = lean_array_push(x_65, x_66); @@ -35598,7 +35598,7 @@ x_79 = lean_array_push(x_62, x_78); x_80 = lean_array_push(x_62, x_22); x_81 = lean_array_push(x_80, x_64); x_82 = lean_array_push(x_81, x_64); -x_83 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_83 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_84 = lean_array_push(x_82, x_83); x_85 = lean_array_push(x_84, x_61); x_86 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -35667,7 +35667,7 @@ lean_ctor_set(x_118, 3, x_115); x_119 = l_Array_empty___closed__1; lean_inc(x_118); x_120 = lean_array_push(x_119, x_118); -x_121 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_121 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_122 = lean_array_push(x_120, x_121); x_123 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_124 = lean_array_push(x_122, x_123); @@ -35692,7 +35692,7 @@ x_136 = lean_array_push(x_119, x_135); x_137 = lean_array_push(x_119, x_22); x_138 = lean_array_push(x_137, x_121); x_139 = lean_array_push(x_138, x_121); -x_140 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_140 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_141 = lean_array_push(x_139, x_140); x_142 = lean_array_push(x_141, x_118); x_143 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -35794,7 +35794,7 @@ lean_ctor_set(x_186, 3, x_183); x_187 = l_Array_empty___closed__1; lean_inc(x_186); x_188 = lean_array_push(x_187, x_186); -x_189 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_189 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_190 = lean_array_push(x_188, x_189); x_191 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_192 = lean_array_push(x_190, x_191); @@ -35819,7 +35819,7 @@ x_204 = lean_array_push(x_187, x_203); x_205 = lean_array_push(x_187, x_22); x_206 = lean_array_push(x_205, x_189); x_207 = lean_array_push(x_206, x_189); -x_208 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_208 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_209 = lean_array_push(x_207, x_208); x_210 = lean_array_push(x_209, x_186); x_211 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -35888,7 +35888,7 @@ lean_ctor_set(x_243, 3, x_240); x_244 = l_Array_empty___closed__1; lean_inc(x_243); x_245 = lean_array_push(x_244, x_243); -x_246 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_246 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_247 = lean_array_push(x_245, x_246); x_248 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_249 = lean_array_push(x_247, x_248); @@ -35913,7 +35913,7 @@ x_261 = lean_array_push(x_244, x_260); x_262 = lean_array_push(x_244, x_22); x_263 = lean_array_push(x_262, x_246); x_264 = lean_array_push(x_263, x_246); -x_265 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_265 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_266 = lean_array_push(x_264, x_265); x_267 = lean_array_push(x_266, x_243); x_268 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -36053,7 +36053,7 @@ lean_ctor_set(x_321, 3, x_318); x_322 = l_Array_empty___closed__1; lean_inc(x_321); x_323 = lean_array_push(x_322, x_321); -x_324 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_324 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_325 = lean_array_push(x_323, x_324); x_326 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_327 = lean_array_push(x_325, x_326); @@ -36078,7 +36078,7 @@ x_339 = lean_array_push(x_322, x_338); x_340 = lean_array_push(x_322, x_22); x_341 = lean_array_push(x_340, x_324); x_342 = lean_array_push(x_341, x_324); -x_343 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_343 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_344 = lean_array_push(x_342, x_343); x_345 = lean_array_push(x_344, x_321); x_346 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -36147,7 +36147,7 @@ lean_ctor_set(x_378, 3, x_375); x_379 = l_Array_empty___closed__1; lean_inc(x_378); x_380 = lean_array_push(x_379, x_378); -x_381 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_381 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_382 = lean_array_push(x_380, x_381); x_383 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_384 = lean_array_push(x_382, x_383); @@ -36172,7 +36172,7 @@ x_396 = lean_array_push(x_379, x_395); x_397 = lean_array_push(x_379, x_22); x_398 = lean_array_push(x_397, x_381); x_399 = lean_array_push(x_398, x_381); -x_400 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_400 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_401 = lean_array_push(x_399, x_400); x_402 = lean_array_push(x_401, x_378); x_403 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -37240,7 +37240,7 @@ lean_ctor_set(x_51, 3, x_48); x_52 = l_Array_empty___closed__1; lean_inc(x_51); x_53 = lean_array_push(x_52, x_51); -x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_55 = lean_array_push(x_53, x_54); x_56 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_57 = lean_array_push(x_55, x_56); @@ -37265,7 +37265,7 @@ x_69 = lean_array_push(x_52, x_68); x_70 = lean_array_push(x_52, x_21); x_71 = lean_array_push(x_70, x_54); x_72 = lean_array_push(x_71, x_54); -x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_74 = lean_array_push(x_72, x_73); x_75 = lean_array_push(x_74, x_51); x_76 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -37360,7 +37360,7 @@ lean_ctor_set(x_118, 3, x_115); x_119 = l_Array_empty___closed__1; lean_inc(x_118); x_120 = lean_array_push(x_119, x_118); -x_121 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_121 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_122 = lean_array_push(x_120, x_121); x_123 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_124 = lean_array_push(x_122, x_123); @@ -37385,7 +37385,7 @@ x_136 = lean_array_push(x_119, x_135); x_137 = lean_array_push(x_119, x_21); x_138 = lean_array_push(x_137, x_121); x_139 = lean_array_push(x_138, x_121); -x_140 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_140 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_141 = lean_array_push(x_139, x_140); x_142 = lean_array_push(x_141, x_118); x_143 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -37518,7 +37518,7 @@ lean_ctor_set(x_195, 3, x_192); x_196 = l_Array_empty___closed__1; lean_inc(x_195); x_197 = lean_array_push(x_196, x_195); -x_198 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_198 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_199 = lean_array_push(x_197, x_198); x_200 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_201 = lean_array_push(x_199, x_200); @@ -37543,7 +37543,7 @@ x_213 = lean_array_push(x_196, x_212); x_214 = lean_array_push(x_196, x_21); x_215 = lean_array_push(x_214, x_198); x_216 = lean_array_push(x_215, x_198); -x_217 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_217 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_218 = lean_array_push(x_216, x_217); x_219 = lean_array_push(x_218, x_195); x_220 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -37618,7 +37618,7 @@ lean_ctor_set(x_255, 3, x_252); x_256 = l_Array_empty___closed__1; lean_inc(x_255); x_257 = lean_array_push(x_256, x_255); -x_258 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_258 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_259 = lean_array_push(x_257, x_258); x_260 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_261 = lean_array_push(x_259, x_260); @@ -37643,7 +37643,7 @@ x_273 = lean_array_push(x_256, x_272); x_274 = lean_array_push(x_256, x_243); x_275 = lean_array_push(x_274, x_258); x_276 = lean_array_push(x_275, x_258); -x_277 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_277 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_278 = lean_array_push(x_276, x_277); x_279 = lean_array_push(x_278, x_255); x_280 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -38346,7 +38346,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -38604,7 +38604,7 @@ lean_ctor_set(x_86, 2, x_84); lean_ctor_set(x_86, 3, x_48); lean_inc(x_86); x_87 = lean_array_push(x_42, x_86); -x_88 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_88 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_89 = lean_array_push(x_87, x_88); x_90 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_91 = lean_array_push(x_89, x_90); @@ -38633,7 +38633,7 @@ lean_ctor_set(x_105, 1, x_104); x_106 = lean_array_push(x_42, x_105); x_107 = lean_array_push(x_56, x_88); x_108 = lean_array_push(x_107, x_88); -x_109 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_109 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_110 = lean_array_push(x_108, x_109); x_111 = lean_array_push(x_110, x_86); x_112 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -38700,7 +38700,7 @@ lean_ctor_set(x_142, 2, x_140); lean_ctor_set(x_142, 3, x_48); lean_inc(x_142); x_143 = lean_array_push(x_42, x_142); -x_144 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_144 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_145 = lean_array_push(x_143, x_144); x_146 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__7; x_147 = lean_array_push(x_145, x_146); @@ -38729,7 +38729,7 @@ lean_ctor_set(x_161, 1, x_160); x_162 = lean_array_push(x_42, x_161); x_163 = lean_array_push(x_56, x_144); x_164 = lean_array_push(x_163, x_144); -x_165 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_165 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_166 = lean_array_push(x_164, x_165); x_167 = lean_array_push(x_166, x_142); x_168 = l_Lean_Elab_Term_elabLetDeclCore___closed__2; @@ -38898,7 +38898,7 @@ 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 = lean_array_push(x_228, x_259); -x_261 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_261 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_262 = lean_array_push(x_260, x_261); x_263 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_263, 0, x_255); @@ -39012,7 +39012,7 @@ x_327 = lean_array_push(x_228, x_326); x_328 = lean_array_push(x_228, x_32); x_329 = lean_array_push(x_328, x_261); x_330 = lean_array_push(x_329, x_261); -x_331 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_331 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_332 = lean_array_push(x_330, x_331); x_333 = lean_array_push(x_309, x_230); x_334 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__39; @@ -40324,7 +40324,7 @@ lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); x_69 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__13; x_70 = lean_array_push(x_69, x_68); -x_71 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_71 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_72 = lean_array_push(x_70, x_71); x_73 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_74 = lean_array_push(x_72, x_73); @@ -40977,7 +40977,7 @@ x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); x_63 = lean_array_push(x_45, x_62); -x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_65 = lean_array_push(x_63, x_64); x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_51); @@ -41055,7 +41055,7 @@ x_106 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_106, 0, x_105); lean_ctor_set(x_106, 1, x_104); x_107 = lean_array_push(x_90, x_106); -x_108 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_108 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_109 = lean_array_push(x_107, x_108); x_110 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_110, 0, x_95); @@ -47104,7 +47104,7 @@ static lean_object* _init_l_Lean_Elab_Term_Do_elabDo___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -47644,7 +47644,7 @@ x_5 = l_Lean_Syntax_setKind(x_2, x_1); x_6 = l_Array_empty___closed__1; lean_inc(x_5); x_7 = lean_array_push(x_6, x_5); -x_8 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_8 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_9 = lean_array_push(x_7, x_8); x_10 = l_Lean_nullKind___closed__2; x_11 = lean_alloc_ctor(1, 2, 0); diff --git a/stage0/stdlib/Lean/Elab/Import.c b/stage0/stdlib/Lean/Elab/Import.c index a3d90aac90..ddf36c7f2e 100644 --- a/stage0/stdlib/Lean/Elab/Import.c +++ b/stage0/stdlib/Lean/Elab/Import.c @@ -31,8 +31,8 @@ lean_object* l_Lean_Elab_parseImports_match__1___rarg(lean_object*, lean_object* lean_object* l_Lean_Elab_headerToImports___closed__3; lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10; lean_object* l_Lean_Elab_processHeader___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10; lean_object* lean_print_deps(lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); lean_object* l_Lean_FileMap_ofString(lean_object*); @@ -154,7 +154,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__10; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Elab/Inductive.c b/stage0/stdlib/Lean/Elab/Inductive.c index b754f40866..b9ec015d44 100644 --- a/stage0/stdlib/Lean/Elab/Inductive.c +++ b/stage0/stdlib/Lean/Elab/Inductive.c @@ -147,6 +147,7 @@ lean_object* l_List_mapM___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command lean_object* l___private_Lean_Meta_LevelDefEq_0__Lean_Meta_processPostponed(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_checkLevelNames(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkResultingUniverse___closed__1; lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_getResultingUniverse___closed__5; @@ -164,7 +165,6 @@ lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_levelMVarToPar lean_object* l_Array_contains___at_Lean_Elab_Command_accLevelAtCtor___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_checkParamsAndResultType___closed__2; -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_Command_checkResultingUniverse___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_checkUnsafe___spec__1___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_applyInferMod___spec__1(lean_object*, lean_object*, lean_object*); @@ -561,7 +561,7 @@ static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_4____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/LetRec.c b/stage0/stdlib/Lean/Elab/LetRec.c index cb2593b8a0..42540ddd44 100644 --- a/stage0/stdlib/Lean/Elab/LetRec.c +++ b/stage0/stdlib/Lean/Elab/LetRec.c @@ -146,6 +146,7 @@ lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__4; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__3___closed__3; uint8_t l_Lean_Syntax_isNone(lean_object*); +extern lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); @@ -162,7 +163,6 @@ lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_T extern lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__2; lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1; lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallFVars___at_Lean_Elab_Term_elabForall___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__2___closed__2; @@ -2690,7 +2690,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__6; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Elab/Log.c b/stage0/stdlib/Lean/Elab/Log.c index 443b0f6344..bb923bdd5d 100644 --- a/stage0/stdlib/Lean/Elab/Log.c +++ b/stage0/stdlib/Lean/Elab/Log.c @@ -32,9 +32,9 @@ lean_object* l_Lean_Elab_logInfoAt___rarg(lean_object*, lean_object*, lean_objec lean_object* l_Lean_Elab_logAt___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logException___rarg___lambda__1___closed__1; lean_object* l_Lean_Elab_logException(lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* l_Lean_Elab_logDbgTrace___rarg___closed__1; lean_object* l_Lean_Elab_getRefPosition___rarg___lambda__1(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_logAt___rarg___lambda__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_trace___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_log(lean_object*); @@ -950,7 +950,7 @@ static lean_object* _init_l_Lean_Elab_logDbgTrace___rarg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_516____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index 2178694145..de0d691be4 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -88,7 +88,6 @@ lean_object* l_Lean_Elab_Term_CollectPatternVars_CtorApp_processCtorApp_match__1 lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_finalizePatternDecls___spec__2___closed__5; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_loop___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasOptAutoParams___spec__2___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshTypeMVar___at___private_Lean_Elab_Term_0__Lean_Elab_Term_exceptionToSorry___spec__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNoMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -121,6 +120,7 @@ lean_object* l_Lean_Elab_Term_expandMacrosInPatterns___boxed__const__1; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_CtorApp_processCtorAppAux_match__3(lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl___at_Lean_Elab_Term_CollectPatternVars_CtorApp_processCtorApp___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind___closed__2; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; lean_object* l_Lean_Elab_Term_withDepElimPatterns(lean_object*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__1; lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); @@ -181,7 +181,6 @@ lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1248____closed lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withExistingLocalDecls___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__3(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_elabMatch___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_loop___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__9; @@ -192,6 +191,7 @@ lean_object* lean_array_get_size(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_tryPostponeIfDiscrTypeIsMVar_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprMVarWithIdImpl(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_getNumExplicitCtorParams___spec__2(lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__4; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__13; @@ -244,6 +244,7 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_isAuxDiscrName___clos extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___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_Array_forInUnsafe_loop___at_Lean_Elab_Term_finalizePatternDecls___spec__2___closed__3; +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandNonAtomicDiscrs_x3f_loop(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_Meta_whnf___at_Lean_Elab_Term_ToDepElimPattern_main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -272,7 +273,6 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_thro lean_object* l_Lean_Elab_Term_getPatternVars_match__1(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_loop___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateLocalDeclMVars___at_Lean_Elab_Term_finalizePatternDecls___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_throwInvalidPattern___rarg___closed__3; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkLocalDeclFor___spec__2___rarg(lean_object*, lean_object*); @@ -511,6 +511,7 @@ size_t lean_usize_of_nat(lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_ToDepElimPattern_main___spec__6(lean_object*, lean_object*, size_t, size_t); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars_loop___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* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__11; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; lean_object* l_Lean_Elab_Term_CollectPatternVars_CtorApp_processCtorApp_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_NameSet_empty; lean_object* l_Lean_ConstantInfo_type(lean_object*); @@ -545,7 +546,6 @@ lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_Lean_Meta_Basic___insta lean_object* l_Lean_Elab_Term_elabMatch___closed__2; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_tryPostponeIfDiscrTypeIsMVar___spec__1___closed__1; extern lean_object* l_Lean_Elab_Term_termElabAttribute; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_waitExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandMacrosInPatterns___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -785,6 +785,7 @@ extern lean_object* l_Lean_Meta_CheckAssignment_checkFVar___closed__2; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns_match__3(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars_loop_match__2___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_System_FilePath_dirName___closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___lambda__1___boxed__const__1; @@ -814,7 +815,6 @@ lean_object* l_Lean_Elab_Term_reportMatcherResultErrors___closed__2; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabDiscrsWitMatchType_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabMVarWithIdKind___closed__1; lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__4___closed__3; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; lean_object* l_List_mapM___at_Lean_Elab_Term_ToDepElimPattern_main___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_CtorApp_processCtorAppAux_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); @@ -934,10 +934,10 @@ lean_inc(x_16); lean_dec(x_15); x_17 = l_Array_empty___closed__1; x_18 = lean_array_push(x_17, x_3); -x_19 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_19 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_20 = lean_array_push(x_18, x_19); x_21 = lean_array_push(x_20, x_19); -x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_23 = lean_array_push(x_21, x_22); x_24 = lean_array_push(x_23, x_2); x_25 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -1035,7 +1035,7 @@ lean_inc(x_17); lean_dec(x_16); x_18 = l_Array_empty___closed__1; x_19 = lean_array_push(x_18, x_3); -x_20 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_20 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_21 = lean_array_push(x_19, x_20); x_22 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__4; x_23 = lean_array_push(x_22, x_4); @@ -1049,7 +1049,7 @@ x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); x_29 = lean_array_push(x_21, x_28); -x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_31 = lean_array_push(x_29, x_30); x_32 = lean_array_push(x_31, x_2); x_33 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -1259,7 +1259,7 @@ static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Matc _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9857,7 +9857,7 @@ x_32 = lean_name_eq(x_10, x_31); if (x_32 == 0) { lean_object* x_33; uint8_t x_34; -x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_33 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_34 = lean_name_eq(x_10, x_33); if (x_34 == 0) { @@ -11255,7 +11255,7 @@ x_371 = lean_name_eq(x_10, x_370); if (x_371 == 0) { lean_object* x_372; uint8_t x_373; -x_372 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_372 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_373 = lean_name_eq(x_10, x_372); if (x_373 == 0) { @@ -12190,7 +12190,7 @@ x_566 = lean_name_eq(x_10, x_565); if (x_566 == 0) { lean_object* x_567; uint8_t x_568; -x_567 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_567 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_568 = lean_name_eq(x_10, x_567); if (x_568 == 0) { @@ -13156,7 +13156,7 @@ x_775 = lean_name_eq(x_10, x_774); if (x_775 == 0) { lean_object* x_776; uint8_t x_777; -x_776 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_776 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_777 = lean_name_eq(x_10, x_776); if (x_777 == 0) { @@ -14185,7 +14185,7 @@ x_994 = lean_name_eq(x_10, x_993); if (x_994 == 0) { lean_object* x_995; uint8_t x_996; -x_995 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_995 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_996 = lean_name_eq(x_10, x_995); if (x_996 == 0) { @@ -25521,10 +25521,10 @@ lean_ctor_set(x_36, 1, x_8); lean_ctor_set(x_36, 2, x_35); lean_ctor_set(x_36, 3, x_9); x_37 = lean_array_push(x_33, x_36); -x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_39 = lean_array_push(x_37, x_38); x_40 = lean_array_push(x_39, x_38); -x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; +x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; lean_inc(x_6); x_42 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_42, 0, x_6); @@ -25582,10 +25582,10 @@ lean_ctor_set(x_67, 1, x_8); lean_ctor_set(x_67, 2, x_66); lean_ctor_set(x_67, 3, x_9); x_68 = lean_array_push(x_64, x_67); -x_69 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_69 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_70 = lean_array_push(x_68, x_69); x_71 = lean_array_push(x_70, x_69); -x_72 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; +x_72 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; lean_inc(x_6); x_73 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_73, 0, x_6); diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index a3dcae3f26..2936fddb4b 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -101,13 +101,13 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__27; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__65; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabStxQuot___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getPatternVarsAux(lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__2(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__23; @@ -298,6 +298,7 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); uint8_t l_Lean_Syntax_isAntiquot(lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__2; @@ -318,7 +319,6 @@ lean_object* l_Lean_Elab_Term_Quotation_elabTermQuot(lean_object*, lean_object*, extern lean_object* l_Lean_Elab_Term_termElabAttribute; extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__17; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__3(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot(lean_object*); @@ -2879,7 +2879,7 @@ x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_129); lean_ctor_set(x_130, 1, x_128); x_131 = lean_array_push(x_111, x_130); -x_132 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_132 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_133 = lean_array_push(x_131, x_132); x_134 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_134, 0, x_127); @@ -2964,7 +2964,7 @@ x_174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_174, 0, x_173); lean_ctor_set(x_174, 1, x_172); x_175 = lean_array_push(x_155, x_174); -x_176 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_176 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_177 = lean_array_push(x_175, x_176); x_178 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_178, 0, x_171); @@ -3075,7 +3075,7 @@ x_226 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_226, 0, x_225); lean_ctor_set(x_226, 1, x_224); x_227 = lean_array_push(x_206, x_226); -x_228 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_228 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_229 = lean_array_push(x_227, x_228); x_230 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_230, 0, x_222); @@ -3201,7 +3201,7 @@ x_286 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_286, 0, x_285); lean_ctor_set(x_286, 1, x_284); x_287 = lean_array_push(x_266, x_286); -x_288 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_288 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_289 = lean_array_push(x_287, x_288); x_290 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_290, 0, x_282); @@ -3356,7 +3356,7 @@ x_368 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_368, 0, x_367); lean_ctor_set(x_368, 1, x_366); x_369 = lean_array_push(x_348, x_368); -x_370 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_370 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_371 = lean_array_push(x_369, x_370); x_372 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_372, 0, x_364); @@ -3552,7 +3552,7 @@ x_465 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_465, 0, x_464); lean_ctor_set(x_465, 1, x_463); x_466 = lean_array_push(x_445, x_465); -x_467 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_467 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_468 = lean_array_push(x_466, x_467); x_469 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_469, 0, x_461); @@ -4138,7 +4138,7 @@ x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_76); lean_ctor_set(x_77, 1, x_75); x_78 = lean_array_push(x_28, x_77); -x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_80 = lean_array_push(x_78, x_79); x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_41); @@ -4301,7 +4301,7 @@ x_164 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_164, 0, x_163); lean_ctor_set(x_164, 1, x_162); x_165 = lean_array_push(x_115, x_164); -x_166 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_166 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_167 = lean_array_push(x_165, x_166); x_168 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_168, 0, x_128); @@ -5127,10 +5127,10 @@ lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean x_15 = lean_ctor_get(x_13, 0); x_16 = l_Array_empty___closed__1; x_17 = lean_array_push(x_16, x_1); -x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_19 = lean_array_push(x_17, x_18); x_20 = lean_array_push(x_19, x_18); -x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_22 = lean_array_push(x_20, x_21); x_23 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; x_24 = l_Lean_addMacroScope(x_15, x_23, x_11); @@ -5174,10 +5174,10 @@ lean_inc(x_42); lean_dec(x_13); x_44 = l_Array_empty___closed__1; x_45 = lean_array_push(x_44, x_1); -x_46 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_46 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_47 = lean_array_push(x_45, x_46); x_48 = lean_array_push(x_47, x_46); -x_49 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_49 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_50 = lean_array_push(x_48, x_49); x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; x_52 = l_Lean_addMacroScope(x_42, x_51, x_11); @@ -5478,10 +5478,10 @@ lean_inc(x_1); x_23 = lean_name_mk_string(x_1, x_22); x_24 = l_Array_empty___closed__1; x_25 = lean_array_push(x_24, x_2); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_27 = lean_array_push(x_25, x_26); x_28 = lean_array_push(x_27, x_26); -x_29 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_29 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_30 = lean_array_push(x_28, x_29); x_31 = l_Lean_mkAppStx___closed__7; x_32 = lean_name_mk_string(x_1, x_31); @@ -5563,10 +5563,10 @@ lean_inc(x_1); x_72 = lean_name_mk_string(x_1, x_71); x_73 = l_Array_empty___closed__1; x_74 = lean_array_push(x_73, x_2); -x_75 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_75 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_76 = lean_array_push(x_74, x_75); x_77 = lean_array_push(x_76, x_75); -x_78 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_78 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_79 = lean_array_push(x_77, x_78); x_80 = l_Lean_mkAppStx___closed__7; x_81 = lean_name_mk_string(x_1, x_80); @@ -5712,10 +5712,10 @@ lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean x_15 = lean_ctor_get(x_13, 0); x_16 = l_Array_empty___closed__1; x_17 = lean_array_push(x_16, x_1); -x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_18 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_19 = lean_array_push(x_17, x_18); x_20 = lean_array_push(x_19, x_18); -x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_22 = lean_array_push(x_20, x_21); x_23 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; x_24 = l_Lean_addMacroScope(x_15, x_23, x_11); @@ -5759,10 +5759,10 @@ lean_inc(x_42); lean_dec(x_13); x_44 = l_Array_empty___closed__1; x_45 = lean_array_push(x_44, x_1); -x_46 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_46 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_47 = lean_array_push(x_45, x_46); x_48 = lean_array_push(x_47, x_46); -x_49 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_49 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_50 = lean_array_push(x_48, x_49); x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; x_52 = l_Lean_addMacroScope(x_42, x_51, x_11); @@ -7819,7 +7819,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -7947,10 +7947,10 @@ lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_1); x_24 = l_Array_empty___closed__1; x_25 = lean_array_push(x_24, x_23); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_27 = lean_array_push(x_25, x_26); x_28 = lean_array_push(x_27, x_26); -x_29 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_29 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_30 = lean_array_push(x_28, x_29); x_31 = lean_array_push(x_30, x_2); x_32 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -8032,10 +8032,10 @@ lean_ctor_set(x_73, 2, x_70); lean_ctor_set(x_73, 3, x_1); x_74 = l_Array_empty___closed__1; x_75 = lean_array_push(x_74, x_73); -x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_77 = lean_array_push(x_75, x_76); x_78 = lean_array_push(x_77, x_76); -x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_80 = lean_array_push(x_78, x_79); x_81 = lean_array_push(x_80, x_2); x_82 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -8483,10 +8483,10 @@ lean_ctor_set(x_52, 2, x_49); lean_ctor_set(x_52, 3, x_13); x_53 = l_Array_empty___closed__1; x_54 = lean_array_push(x_53, x_52); -x_55 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_55 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_56 = lean_array_push(x_54, x_55); x_57 = lean_array_push(x_56, x_55); -x_58 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_58 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_59 = lean_array_push(x_57, x_58); x_60 = lean_array_push(x_59, x_4); x_61 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -8529,10 +8529,10 @@ lean_ctor_set(x_79, 2, x_76); lean_ctor_set(x_79, 3, x_13); x_80 = l_Array_empty___closed__1; x_81 = lean_array_push(x_80, x_79); -x_82 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_82 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_83 = lean_array_push(x_81, x_82); x_84 = lean_array_push(x_83, x_82); -x_85 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_85 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_86 = lean_array_push(x_84, x_85); x_87 = lean_array_push(x_86, x_4); x_88 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -8772,7 +8772,7 @@ x_193 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_193, 0, x_174); lean_ctor_set(x_193, 1, x_192); x_194 = lean_array_push(x_162, x_193); -x_195 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_195 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_196 = lean_array_push(x_194, x_195); x_197 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_197, 0, x_171); @@ -9055,7 +9055,7 @@ x_312 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_312, 0, x_293); lean_ctor_set(x_312, 1, x_311); x_313 = lean_array_push(x_281, x_312); -x_314 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_314 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_315 = lean_array_push(x_313, x_314); x_316 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_316, 0, x_290); @@ -9303,10 +9303,10 @@ lean_ctor_set(x_383, 2, x_380); lean_ctor_set(x_383, 3, x_13); x_384 = l_Array_empty___closed__1; x_385 = lean_array_push(x_384, x_383); -x_386 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_386 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_387 = lean_array_push(x_385, x_386); x_388 = lean_array_push(x_387, x_386); -x_389 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_389 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_390 = lean_array_push(x_388, x_389); x_391 = lean_array_push(x_390, x_4); x_392 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -9570,7 +9570,7 @@ x_501 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_501, 0, x_482); lean_ctor_set(x_501, 1, x_500); x_502 = lean_array_push(x_470, x_501); -x_503 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_503 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_504 = lean_array_push(x_502, x_503); x_505 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_505, 0, x_479); @@ -10308,7 +10308,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Tactics___hyg_720____closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -10544,10 +10544,10 @@ lean_ctor_set(x_68, 1, x_31); lean_ctor_set(x_68, 2, x_67); lean_ctor_set(x_68, 3, x_29); x_69 = lean_array_push(x_33, x_68); -x_70 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_70 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_71 = lean_array_push(x_69, x_70); x_72 = lean_array_push(x_71, x_70); -x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_73 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_74 = lean_array_push(x_72, x_73); x_75 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__17; x_76 = lean_array_push(x_75, x_18); @@ -10598,10 +10598,10 @@ lean_ctor_set(x_99, 1, x_31); lean_ctor_set(x_99, 2, x_98); lean_ctor_set(x_99, 3, x_29); x_100 = lean_array_push(x_33, x_99); -x_101 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_101 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_102 = lean_array_push(x_100, x_101); x_103 = lean_array_push(x_102, x_101); -x_104 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_104 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_105 = lean_array_push(x_103, x_104); x_106 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__17; x_107 = lean_array_push(x_106, x_18); @@ -10766,10 +10766,10 @@ lean_ctor_set(x_162, 1, x_31); lean_ctor_set(x_162, 2, x_161); lean_ctor_set(x_162, 3, x_29); x_163 = lean_array_push(x_33, x_162); -x_164 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_164 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_165 = lean_array_push(x_163, x_164); x_166 = lean_array_push(x_165, x_164); -x_167 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_167 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_168 = lean_array_push(x_166, x_167); x_169 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__17; x_170 = lean_array_push(x_169, x_18); @@ -10987,7 +10987,7 @@ x_253 = lean_array_push(x_252, x_251); x_254 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; x_255 = lean_array_push(x_253, x_254); x_256 = lean_array_push(x_255, x_254); -x_257 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_257 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_258 = lean_array_push(x_256, x_257); x_259 = lean_array_push(x_258, x_209); x_260 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -11030,7 +11030,7 @@ x_277 = lean_array_push(x_276, x_275); x_278 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; x_279 = lean_array_push(x_277, x_278); x_280 = lean_array_push(x_279, x_278); -x_281 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_281 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_282 = lean_array_push(x_280, x_281); x_283 = lean_array_push(x_282, x_209); x_284 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -11187,7 +11187,7 @@ x_333 = lean_array_push(x_332, x_331); x_334 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; x_335 = lean_array_push(x_333, x_334); x_336 = lean_array_push(x_335, x_334); -x_337 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_337 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_338 = lean_array_push(x_336, x_337); x_339 = lean_array_push(x_338, x_209); x_340 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -11409,7 +11409,7 @@ x_415 = lean_array_push(x_414, x_413); x_416 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; x_417 = lean_array_push(x_415, x_416); x_418 = lean_array_push(x_417, x_416); -x_419 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_419 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_420 = lean_array_push(x_418, x_419); x_421 = lean_array_push(x_420, x_365); x_422 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -11635,10 +11635,10 @@ lean_ctor_set(x_497, 1, x_454); lean_ctor_set(x_497, 2, x_496); lean_ctor_set(x_497, 3, x_452); x_498 = lean_array_push(x_456, x_497); -x_499 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_499 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_500 = lean_array_push(x_498, x_499); x_501 = lean_array_push(x_500, x_499); -x_502 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_502 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_503 = lean_array_push(x_501, x_502); x_504 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__17; x_505 = lean_array_push(x_504, x_441); @@ -11890,7 +11890,7 @@ x_593 = lean_array_push(x_592, x_591); x_594 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; x_595 = lean_array_push(x_593, x_594); x_596 = lean_array_push(x_595, x_594); -x_597 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_597 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_598 = lean_array_push(x_596, x_597); x_599 = lean_array_push(x_598, x_542); x_600 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -12132,10 +12132,10 @@ lean_ctor_set(x_678, 1, x_634); lean_ctor_set(x_678, 2, x_677); lean_ctor_set(x_678, 3, x_632); x_679 = lean_array_push(x_636, x_678); -x_680 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_680 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_681 = lean_array_push(x_679, x_680); x_682 = lean_array_push(x_681, x_680); -x_683 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_683 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_684 = lean_array_push(x_682, x_683); x_685 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__17; x_686 = lean_array_push(x_685, x_620); @@ -12390,7 +12390,7 @@ x_774 = lean_array_push(x_773, x_772); x_775 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; x_776 = lean_array_push(x_774, x_775); x_777 = lean_array_push(x_776, x_775); -x_778 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_778 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_779 = lean_array_push(x_777, x_778); x_780 = lean_array_push(x_779, x_723); x_781 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; diff --git a/stage0/stdlib/Lean/Elab/StructInst.c b/stage0/stdlib/Lean/Elab/StructInst.c index 3e2dfa8bd6..55def840c6 100644 --- a/stage0/stdlib/Lean/Elab/StructInst.c +++ b/stage0/stdlib/Lean/Elab/StructInst.c @@ -112,7 +112,7 @@ extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructName___rarg___closed__5; lean_object* l_Lean_Elab_Term_StructInst_Lean_Elab_StructInst___instance__8; -lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_6287_(lean_object*); +lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_6285_(lean_object*); lean_object* l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkFieldMap___spec__10(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_mkDefaultValueAux_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_isModifyOp_x3f___spec__1___closed__5; @@ -140,7 +140,6 @@ lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getHierarchyDepth_match__1(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_ref(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* l_Lean_Elab_Term_getMVarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_reduce___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandParentFields_match__1(lean_object*); @@ -152,6 +151,7 @@ lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_expandStructInstExpectedType(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStructInstAux___closed__4; lean_object* l_Lean_Elab_Term_StructInst_Struct_setFields(lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__4; lean_object* l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_Position_Lean_Data_Position___instance__2___spec__1(lean_object*); @@ -200,6 +200,7 @@ lean_object* l_Lean_Elab_Term_StructInst_Field_toSyntax___closed__1; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkCtorHeaderAux_match__3(lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_List_foldl___at_Lean_Elab_Term_StructInst_DefaultFields_collectStructNames___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Environment_getProjectionStructureName_x3f(lean_object*, lean_object*); @@ -221,7 +222,6 @@ lean_object* l_Lean_Elab_Term_StructInst_FieldLHS_toSyntax___boxed(lean_object*, lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkStructView(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_Term_StructInst_Source_isNone___boxed(lean_object*); extern lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___closed__1; lean_object* l_Lean_Elab_Term_StructInst_Struct_structName(lean_object*); @@ -436,6 +436,7 @@ extern lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; size_t lean_usize_of_nat(lean_object*); lean_object* l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct___spec__1___closed__1; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_step___closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; lean_object* l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct___spec__1___closed__2; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getFieldIdx(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_isLambda(lean_object*); @@ -470,14 +471,14 @@ extern lean_object* l_Lean_Format_sbracket___closed__3; lean_object* l_fix1___rarg___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct_match__3(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getForallBody_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getForallBody_match__1(lean_object*); lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNumLitFields(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_fields_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Lean_Elab_StructInst___instance__5___closed__1; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; lean_object* l_Lean_ConstantInfo_lparams(lean_object*); uint8_t l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefault_loop___lambda__1(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_findField_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -618,7 +619,6 @@ lean_object* lean_mk_array(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_setStructSourceSyntax_match__1(lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkStructView___closed__2; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; uint8_t l_Lean_Elab_Term_StructInst_Source_isNone(lean_object*); lean_object* l_List_mapM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandParentFields___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_Std_AssocList_find_x3f___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkFieldMap___spec__2___boxed(lean_object*, lean_object*); @@ -633,6 +633,7 @@ extern lean_object* l_Lean_Lean_Data_Format___instance__20___closed__1; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_propagateExpectedType_match__2___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Init_Core___instance__49; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandParentFields_match__3___rarg(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; extern lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkIdImp___closed__2; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructName(lean_object*); lean_object* l_Std_AssocList_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandStruct___spec__7___boxed(lean_object*, lean_object*); @@ -669,10 +670,10 @@ extern lean_object* l_Lean_Meta_CheckAssignment_checkFVar___closed__2; extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__16; lean_object* l_Lean_Elab_Term_StructInst_formatStruct___closed__1; extern lean_object* l_System_FilePath_dirName___closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; lean_object* l_List_mapM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandParentFields___spec__2___closed__3; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructName_match__3(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_isSimpleField_x3f___boxed(lean_object*); extern lean_object* l_myMacro____x40_Init_Tactics___hyg_720____closed__10; @@ -692,7 +693,6 @@ lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_StructInst_DefaultFields_pr lean_object* l_Lean_Elab_Term_StructInst_FieldLHS_toSyntax_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_Init_Control_Reader___instance__4___rarg(lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabModifyOp___closed__10; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_formatField___closed__4; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getFieldIdx___closed__1; @@ -836,7 +836,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_StructInst_expandStructInstExpectedType___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -1033,10 +1033,10 @@ lean_ctor_set(x_48, 2, x_47); lean_ctor_set(x_48, 3, x_35); x_49 = l_Array_empty___closed__1; x_50 = lean_array_push(x_49, x_48); -x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_52 = lean_array_push(x_50, x_51); x_53 = lean_array_push(x_52, x_51); -x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_55 = lean_array_push(x_53, x_54); x_56 = lean_array_push(x_55, x_23); x_57 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -1078,10 +1078,10 @@ lean_ctor_set(x_73, 2, x_72); lean_ctor_set(x_73, 3, x_35); x_74 = l_Array_empty___closed__1; x_75 = lean_array_push(x_74, x_73); -x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_77 = lean_array_push(x_75, x_76); x_78 = lean_array_push(x_77, x_76); -x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_80 = lean_array_push(x_78, x_79); x_81 = lean_array_push(x_80, x_23); x_82 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -1240,10 +1240,10 @@ lean_ctor_set(x_139, 2, x_138); lean_ctor_set(x_139, 3, x_125); x_140 = l_Array_empty___closed__1; x_141 = lean_array_push(x_140, x_139); -x_142 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_142 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_143 = lean_array_push(x_141, x_142); x_144 = lean_array_push(x_143, x_142); -x_145 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_145 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_146 = lean_array_push(x_144, x_145); x_147 = lean_array_push(x_146, x_113); x_148 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -1474,10 +1474,10 @@ lean_ctor_set(x_218, 2, x_217); lean_ctor_set(x_218, 3, x_204); x_219 = l_Array_empty___closed__1; x_220 = lean_array_push(x_219, x_218); -x_221 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_221 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_222 = lean_array_push(x_220, x_221); x_223 = lean_array_push(x_222, x_221); -x_224 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_224 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_225 = lean_array_push(x_223, x_224); x_226 = lean_array_push(x_225, x_192); x_227 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -2550,7 +2550,7 @@ static lean_object* _init_l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_Str _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabModifyOp___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2984,7 +2984,7 @@ lean_ctor_set(x_75, 2, x_73); lean_ctor_set(x_75, 3, x_24); x_76 = l_myMacro____x40_Init_Tactics___hyg_720____closed__6; x_77 = lean_array_push(x_76, x_75); -x_78 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_78 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_79 = lean_array_push(x_77, x_78); x_80 = lean_array_push(x_79, x_52); x_81 = l_myMacro____x40_Init_Tactics___hyg_720____closed__10; @@ -3020,7 +3020,7 @@ x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); x_101 = lean_array_push(x_60, x_100); -x_102 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_102 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_103 = lean_array_push(x_101, x_102); x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_89); @@ -3284,7 +3284,7 @@ lean_ctor_set(x_230, 2, x_228); lean_ctor_set(x_230, 3, x_219); x_231 = l_myMacro____x40_Init_Tactics___hyg_720____closed__6; x_232 = lean_array_push(x_231, x_230); -x_233 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_233 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_234 = lean_array_push(x_232, x_233); x_235 = lean_array_push(x_234, x_205); x_236 = l_myMacro____x40_Init_Tactics___hyg_720____closed__10; @@ -3322,7 +3322,7 @@ x_257 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_257, 0, x_256); lean_ctor_set(x_257, 1, x_255); x_258 = lean_array_push(x_213, x_257); -x_259 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_259 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_260 = lean_array_push(x_258, x_259); x_261 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_261, 0, x_246); @@ -5621,7 +5621,7 @@ static lean_object* _init_l_Lean_Elab_Term_StructInst_formatStruct___closed__2() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -6846,7 +6846,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; size_t x_10; x_6 = lean_array_uget(x_1, x_2); lean_inc(x_6); x_7 = l_Lean_Syntax_getKind(x_6); -x_8 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_8 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_9 = lean_name_eq(x_7, x_8); lean_dec(x_7); x_10 = 1; @@ -11827,7 +11827,7 @@ x_38 = l_Id_Init_Control_Id___instance__1; x_39 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_groupFields___lambda__2___closed__3; x_40 = l_Array_mapMUnsafe_map___rarg(x_38, x_39, x_35, x_36, x_37); x_41 = x_40; -x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_43 = l_Lean_mkAtomFrom(x_5, x_42); lean_dec(x_5); x_44 = l_Lean_mkSepStx(x_41, x_43); @@ -12067,7 +12067,7 @@ x_120 = l_Id_Init_Control_Id___instance__1; x_121 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_groupFields___lambda__2___closed__3; x_122 = l_Array_mapMUnsafe_map___rarg(x_120, x_121, x_117, x_118, x_119); x_123 = x_122; -x_124 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_124 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_125 = l_Lean_mkAtomFrom(x_5, x_124); lean_dec(x_5); x_126 = l_Lean_mkSepStx(x_123, x_125); @@ -13716,7 +13716,7 @@ x_37 = 0; x_38 = x_34; x_39 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandStruct___spec__4(x_36, x_37, x_38); x_40 = x_39; -x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_41 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_42 = l_Lean_mkAtomFrom(x_5, x_41); x_43 = l_Lean_mkSepStx(x_40, x_42); lean_dec(x_40); @@ -14240,7 +14240,7 @@ x_161 = 0; x_162 = x_158; x_163 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandStruct___spec__4(x_160, x_161, x_162); x_164 = x_163; -x_165 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_165 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_166 = l_Lean_mkAtomFrom(x_5, x_165); x_167 = l_Lean_mkSepStx(x_164, x_166); lean_dec(x_164); @@ -27286,13 +27286,13 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_6287_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_6285_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -27625,7 +27625,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_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_6287_(lean_io_mk_world()); +res = l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_6285_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Structure.c b/stage0/stdlib/Lean/Elab/Structure.c index fbaf49e385..481fa5a5cb 100644 --- a/stage0/stdlib/Lean/Elab/Structure.c +++ b/stage0/stdlib/Lean/Elab/Structure.c @@ -148,6 +148,7 @@ lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Structure_0__Lean lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addCtorFields___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_Structure_0__Lean_Elab_Command_withFields___rarg___closed__2; +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__3___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addProjections___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -171,7 +172,6 @@ lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_updateResultin lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkParentIsStructure___closed__2; uint8_t l_Lean_Elab_Command_StructFieldInfo_inferMod___default; lean_object* l_Lean_mkAppN(lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___closed__8; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkParentIsStructure___closed__4; @@ -446,7 +446,7 @@ lean_object* l_Lean_Elab_Command_StructFieldInfo_isFromParent_match__1___rarg(ui lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_collectUsed___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_Structure_0__Lean_Elab_Command_withFields___rarg___closed__10; lean_object* l_Array_toList___rarg(lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_3516_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_3515_(lean_object*); extern lean_object* l_Lean_Elab_elabModifiers___rarg___lambda__3___closed__7; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__1___closed__1; lean_object* lean_expr_abstract(lean_object*, lean_object*); @@ -13363,7 +13363,7 @@ static lean_object* _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_e _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -15617,7 +15617,7 @@ lean_dec(x_4); return x_6; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_3516_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_3515_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -15853,7 +15853,7 @@ l_Lean_Elab_Command_elabStructure___closed__10 = _init_l_Lean_Elab_Command_elabS lean_mark_persistent(l_Lean_Elab_Command_elabStructure___closed__10); l_Lean_Elab_Command_elabStructure___closed__11 = _init_l_Lean_Elab_Command_elabStructure___closed__11(); lean_mark_persistent(l_Lean_Elab_Command_elabStructure___closed__11); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_3516_(lean_io_mk_world()); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_3515_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index c96d23f54a..5707743c19 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -187,7 +187,6 @@ lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__52; extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__14; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29; lean_object* l_Lean_Elab_Command_elabSyntax___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_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__5; @@ -195,6 +194,7 @@ lean_object* l_Array_toSubarray___rarg(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_toParserDescrAux___closed__160; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; extern lean_object* l_Lean_charLitKind___closed__1; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5; lean_object* l_Lean_Elab_Command_withExpectedType___closed__3; @@ -255,6 +255,7 @@ extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__42; lean_object* l_Lean_Elab_Command_expandMixfix___closed__13; +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; extern lean_object* l_Lean_mkAppStx___closed__7; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2(lean_object*); @@ -273,19 +274,18 @@ lean_object* l_Lean_Elab_Command_expandMixfix___closed__21; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; lean_object* l_Lean_Elab_Command_expandElab___closed__28; lean_object* l_Lean_Elab_Command_expandElab___closed__14; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__37; lean_object* l_Lean_Elab_Term_checkLeftRec___closed__1; uint8_t l_Lean_Parser_leadingIdentAsSymbol(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__53; lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9650____closed__1; -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__115; lean_object* l_Lean_throwError___at_Lean_Elab_Term_checkLeftRec___spec__2___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_Elab_Command_expandMixfix___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__85; lean_object* l_Lean_Elab_Command_expandElab___closed__3; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOptPrecedence___boxed(lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__15; @@ -442,7 +442,6 @@ lean_object* l_List_map___at_Lean_Elab_Term_toParserDescrAux___spec__7(lean_obje extern lean_object* l_Lean_Parser_categoryParserFnImpl___closed__4; lean_object* l_Nat_repr(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__45; lean_object* l_Lean_Elab_Term_checkLeftRec___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withExpectedType___closed__1; @@ -475,6 +474,7 @@ lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__1; extern lean_object* l_Init_Data_Repr___instance__15___closed__1; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_Elab_Term_checkLeftRec___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__154; extern lean_object* l_Lean_Parser_maxPrec; @@ -550,6 +550,7 @@ size_t lean_usize_of_nat(lean_object*); lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; lean_object* l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Tactics___hyg_720____closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandOptPrio(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__86; @@ -582,7 +583,6 @@ lean_object* l_Lean_Elab_Command_expandElab___closed__41; lean_object* l_Lean_Elab_Term_checkLeftRec___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__74; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__89; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__157; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__43; @@ -914,7 +914,7 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabElab___closed__3; lean_object* l___regBuiltin_Lean_Elab_Command_elabMacro___closed__1; extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; lean_object* l_Lean_Elab_Command_expandElab___closed__29; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -11897,7 +11897,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__17; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__17; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -12254,7 +12254,7 @@ lean_ctor_set(x_23, 2, x_19); lean_ctor_set(x_23, 3, x_20); x_24 = l_Array_empty___closed__1; x_25 = lean_array_push(x_24, x_23); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_27 = lean_array_push(x_25, x_26); x_28 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; x_29 = lean_alloc_ctor(1, 2, 0); @@ -12645,7 +12645,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -13335,7 +13335,7 @@ lean_dec(x_27); x_29 = lean_ctor_get(x_28, 2); lean_inc(x_29); lean_dec(x_28); -x_30 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_30 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_31 = l_Lean_checkTraceOption(x_29, x_30); lean_dec(x_29); if (x_31 == 0) @@ -13940,7 +13940,7 @@ lean_ctor_set(x_62, 0, x_48); lean_ctor_set(x_62, 1, x_61); x_63 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_64 = lean_array_push(x_63, x_62); -x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_66 = lean_array_push(x_64, x_65); x_67 = lean_array_push(x_66, x_65); x_68 = lean_array_push(x_67, x_65); @@ -14078,7 +14078,7 @@ lean_ctor_set(x_147, 0, x_133); lean_ctor_set(x_147, 1, x_146); x_148 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_149 = lean_array_push(x_148, x_147); -x_150 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_150 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_151 = lean_array_push(x_149, x_150); x_152 = lean_array_push(x_151, x_150); x_153 = lean_array_push(x_152, x_150); @@ -14388,7 +14388,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -14398,7 +14398,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_elabSyntaxAbbrev___closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -14408,7 +14408,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_elabSyntaxAbbrev___closed__2; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -14418,7 +14418,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_elabSyntaxAbbrev___closed__3; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -14428,7 +14428,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_elabSyntaxAbbrev___closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -15500,7 +15500,7 @@ lean_ctor_set(x_40, 0, x_26); lean_ctor_set(x_40, 1, x_39); x_41 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_42 = lean_array_push(x_41, x_40); -x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_43 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_44 = lean_array_push(x_42, x_43); x_45 = lean_array_push(x_44, x_43); x_46 = lean_array_push(x_45, x_43); @@ -15712,7 +15712,7 @@ lean_ctor_set(x_163, 0, x_149); lean_ctor_set(x_163, 1, x_162); x_164 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_165 = lean_array_push(x_164, x_163); -x_166 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_166 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_167 = lean_array_push(x_165, x_166); x_168 = lean_array_push(x_167, x_166); x_169 = lean_array_push(x_168, x_166); @@ -18839,7 +18839,7 @@ else { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_dec(x_4); -x_16 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_16 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_17 = l_Lean_mkIdentFrom(x_1, x_16); x_18 = lean_unsigned_to_nat(1u); x_19 = l_Lean_Syntax_getArg(x_1, x_18); @@ -19255,7 +19255,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -19265,7 +19265,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -19297,7 +19297,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -19315,7 +19315,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; size_t x_13; size_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_8 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_8 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_inc(x_6); x_9 = l_Lean_Elab_Command_mkFreshKind(x_8, x_6, x_7); x_10 = lean_ctor_get(x_9, 0); @@ -21002,7 +21002,7 @@ x_61 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___clo x_62 = lean_array_push(x_61, x_60); x_63 = l_Lean_mkIdentFrom(x_2, x_20); x_64 = lean_array_push(x_57, x_63); -x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_66 = lean_array_push(x_64, x_65); x_67 = l_Nat_repr(x_10); x_68 = l_Lean_numLitKind; @@ -21099,7 +21099,7 @@ x_124 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___cl x_125 = lean_array_push(x_124, x_123); x_126 = l_Lean_mkIdentFrom(x_2, x_20); x_127 = lean_array_push(x_120, x_126); -x_128 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_128 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_129 = lean_array_push(x_127, x_128); x_130 = l_Nat_repr(x_10); x_131 = l_Lean_numLitKind; @@ -21213,7 +21213,7 @@ x_193 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___cl x_194 = lean_array_push(x_193, x_192); x_195 = l_Lean_mkIdentFrom(x_2, x_20); x_196 = lean_array_push(x_189, x_195); -x_197 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_197 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_198 = lean_array_push(x_196, x_197); x_199 = l_Nat_repr(x_10); x_200 = l_Lean_numLitKind; @@ -21312,7 +21312,7 @@ x_257 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___cl x_258 = lean_array_push(x_257, x_256); x_259 = l_Lean_mkIdentFrom(x_2, x_20); x_260 = lean_array_push(x_253, x_259); -x_261 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_261 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; x_262 = lean_array_push(x_260, x_261); x_263 = l_Nat_repr(x_10); x_264 = l_Lean_numLitKind; @@ -21791,7 +21791,7 @@ static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___h _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Lean_Parser_categoryParserFnImpl___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -22574,7 +22574,7 @@ if (x_58 == 0) { lean_object* x_59; uint8_t x_60; lean_dec(x_19); -x_59 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_59 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_60 = lean_name_eq(x_22, x_59); if (x_60 == 0) { @@ -22628,7 +22628,7 @@ lean_ctor_set(x_77, 1, x_75); x_78 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; x_79 = lean_array_push(x_78, x_77); x_80 = lean_array_push(x_74, x_57); -x_81 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_81 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_inc(x_80); x_82 = lean_array_push(x_80, x_81); x_83 = l_Nat_repr(x_10); @@ -22881,7 +22881,7 @@ lean_ctor_set(x_228, 1, x_226); x_229 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; x_230 = lean_array_push(x_229, x_228); x_231 = lean_array_push(x_225, x_57); -x_232 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_232 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_inc(x_231); x_233 = lean_array_push(x_231, x_232); x_234 = l_Nat_repr(x_10); @@ -23135,7 +23135,7 @@ lean_ctor_set(x_380, 1, x_378); x_381 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; x_382 = lean_array_push(x_381, x_380); x_383 = lean_array_push(x_377, x_57); -x_384 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_384 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_inc(x_383); x_385 = lean_array_push(x_383, x_384); x_386 = l_Nat_repr(x_10); @@ -23375,7 +23375,7 @@ else { lean_object* x_529; uint8_t x_530; lean_dec(x_2); -x_529 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_529 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_530 = lean_name_eq(x_22, x_529); if (x_530 == 0) { @@ -23420,7 +23420,7 @@ lean_ctor_set(x_544, 1, x_542); x_545 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; x_546 = lean_array_push(x_545, x_544); x_547 = lean_array_push(x_541, x_57); -x_548 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_548 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_inc(x_547); x_549 = lean_array_push(x_547, x_548); x_550 = l_Nat_repr(x_10); @@ -23725,7 +23725,7 @@ if (x_723 == 0) { lean_object* x_724; uint8_t x_725; lean_dec(x_19); -x_724 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_724 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_725 = lean_name_eq(x_22, x_724); if (x_725 == 0) { @@ -23778,7 +23778,7 @@ lean_ctor_set(x_742, 1, x_740); x_743 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; x_744 = lean_array_push(x_743, x_742); x_745 = lean_array_push(x_739, x_722); -x_746 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_746 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_inc(x_745); x_747 = lean_array_push(x_745, x_746); x_748 = l_Nat_repr(x_10); @@ -24033,7 +24033,7 @@ lean_ctor_set(x_894, 1, x_892); x_895 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; x_896 = lean_array_push(x_895, x_894); x_897 = lean_array_push(x_891, x_722); -x_898 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_898 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_inc(x_897); x_899 = lean_array_push(x_897, x_898); x_900 = l_Nat_repr(x_10); @@ -24289,7 +24289,7 @@ lean_ctor_set(x_1047, 1, x_1045); x_1048 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; x_1049 = lean_array_push(x_1048, x_1047); x_1050 = lean_array_push(x_1044, x_722); -x_1051 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_1051 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_inc(x_1050); x_1052 = lean_array_push(x_1050, x_1051); x_1053 = l_Nat_repr(x_10); @@ -24531,7 +24531,7 @@ else { lean_object* x_1197; uint8_t x_1198; lean_dec(x_2); -x_1197 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1197 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_1198 = lean_name_eq(x_22, x_1197); if (x_1198 == 0) { @@ -24575,7 +24575,7 @@ lean_ctor_set(x_1212, 1, x_1210); x_1213 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; x_1214 = lean_array_push(x_1213, x_1212); x_1215 = lean_array_push(x_1209, x_722); -x_1216 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__9; +x_1216 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__9; lean_inc(x_1215); x_1217 = lean_array_push(x_1215, x_1216); x_1218 = l_Nat_repr(x_10); diff --git a/stage0/stdlib/Lean/Elab/SyntheticMVars.c b/stage0/stdlib/Lean/Elab/SyntheticMVars.c index 9c2388cfcb..fa448b47bb 100644 --- a/stage0/stdlib/Lean/Elab/SyntheticMVars.c +++ b/stage0/stdlib/Lean/Elab/SyntheticMVars.c @@ -56,12 +56,12 @@ lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, lean_object*, le lean_object* l_List_forIn_loop___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_reportStuckSyntheticMVars___spec__1___lambda__1___closed__2; lean_object* l_List_filterAuxM___at_Lean_Elab_Term_synthesizeUsingDefault___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_instantiateMVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeSyntheticMVarsStep___closed__5; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_List_forIn_loop___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_reportStuckSyntheticMVars___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*, lean_object*); lean_object* l_Lean_Elab_Term_ensureHasType(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_SyntheticMVars_0__Lean_Elab_Term_synthesizeSyntheticMVarsStep___closed__3; -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizePendingCoeInstMVar_match__1(lean_object*); lean_object* l_List_filterAuxM___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeSyntheticMVarsStep___spec__1___closed__5; lean_object* l_Lean_Elab_Term_synthesizeUsingDefault(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3136,7 +3136,7 @@ static lean_object* _init_l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeSyntheticMVarsStep___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3327,7 +3327,7 @@ x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); x_25 = l_List_reverse___rarg(x_14); -x_26 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_26 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_inc(x_4); x_27 = l_List_filterAuxM___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeSyntheticMVarsStep___spec__1(x_1, x_2, x_26, x_25, x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_24); if (lean_obj_tag(x_27) == 0) @@ -3526,7 +3526,7 @@ x_80 = lean_ctor_get(x_79, 1); lean_inc(x_80); lean_dec(x_79); x_81 = l_List_reverse___rarg(x_14); -x_82 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_82 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_inc(x_4); x_83 = l_List_filterAuxM___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeSyntheticMVarsStep___spec__1(x_1, x_2, x_82, x_81, x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_80); if (lean_obj_tag(x_83) == 0) diff --git a/stage0/stdlib/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index 006fe33f45..fe1d9a7e9f 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -154,8 +154,8 @@ lean_object* l_Lean_Elab_Tactic_evalIntro___closed__7; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_MessageData_joinSep(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTraceState___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; lean_object* l_Lean_Elab_Tactic_getCurrMacroScope___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTactic___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_throwTacticEx___rarg___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -175,6 +175,7 @@ lean_object* l_Lean_Elab_Tactic_evalRevert_match__1(lean_object*); lean_object* l_Lean_Elab_Tactic_evalClear_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTactic_match__2(lean_object*); lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux___rarg___lambda__1(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*); @@ -186,7 +187,6 @@ lean_object* l_Lean_Elab_Tactic_tryCatch___rarg(lean_object*, lean_object*, lean 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; -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_Tactic_Lean_Elab_Tactic_Basic___instance__2___closed__1; lean_object* l_Lean_Meta_intro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals___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*); @@ -3609,7 +3609,7 @@ if (x_32 == 0) { lean_object* x_33; uint8_t x_34; lean_free_object(x_24); -x_33 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; +x_33 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; x_34 = l_Lean_checkTraceOption(x_16, x_33); lean_dec(x_16); if (x_34 == 0) @@ -3840,7 +3840,7 @@ if (x_95 == 0) { lean_object* x_96; uint8_t x_97; lean_free_object(x_24); -x_96 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; +x_96 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; x_97 = l_Lean_checkTraceOption(x_16, x_96); lean_dec(x_16); if (x_97 == 0) @@ -4091,7 +4091,7 @@ lean_dec(x_158); if (x_160 == 0) { lean_object* x_161; uint8_t x_162; -x_161 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; +x_161 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; x_162 = l_Lean_checkTraceOption(x_16, x_161); lean_dec(x_16); if (x_162 == 0) @@ -4368,7 +4368,7 @@ if (x_235 == 0) { lean_object* x_236; uint8_t x_237; lean_dec(x_221); -x_236 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; +x_236 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; x_237 = l_Lean_checkTraceOption(x_16, x_236); lean_dec(x_16); if (x_237 == 0) @@ -4687,7 +4687,7 @@ if (x_318 == 0) { lean_object* x_319; uint8_t x_320; lean_dec(x_304); -x_319 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; +x_319 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; x_320 = l_Lean_checkTraceOption(x_288, x_319); lean_dec(x_288); if (x_320 == 0) @@ -15346,7 +15346,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basi _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/Tactic/Binders.c b/stage0/stdlib/Lean/Elab/Tactic/Binders.c index b53cb155d4..641b3b0f57 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Binders.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Binders.c @@ -31,9 +31,9 @@ lean_object* l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tactic_liftTermBi lean_object* l_Lean_Elab_Tactic_expandLetTactic___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_expandSufficesTactic___closed__1; extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__1; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* l___regBuiltin_Lean_Elab_Tactic_expandHaveTactic(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; lean_object* l___regBuiltin_Lean_Elab_Tactic_expandLetBangTactic___closed__2; extern lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__3; lean_object* l_Lean_Elab_Tactic_expandShowTactic___closed__6; @@ -78,6 +78,7 @@ lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_expandShowTactic___closed__2; extern lean_object* l_Lean_Init_LeanInit___instance__8___closed__1; extern lean_object* l_Lean_mkAppStx___closed__9; +extern lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1; lean_object* l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tactic_liftTermBinderSyntax___closed__2; extern lean_object* l_Lean_Level_LevelToFormat_toResult___closed__4; extern lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__9; @@ -91,7 +92,6 @@ extern lean_object* l___regBuiltin_Lean_Elab_Term_elabSyntheticHole___closed__2; lean_object* l_Lean_Elab_Tactic_expandShowTactic___closed__4; lean_object* l___regBuiltin_Lean_Elab_Tactic_expandLetBangTactic(lean_object*); lean_object* l_Lean_Elab_Tactic_expandShowTactic___closed__9; -extern lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1; lean_object* l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tactic_liftTermBinderSyntax___closed__6; lean_object* l_Lean_Elab_Tactic_expandShowTactic___closed__2; lean_object* l_Lean_Elab_Tactic_expandShowTactic___boxed(lean_object*, lean_object*, lean_object*); @@ -557,7 +557,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -707,7 +707,7 @@ lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); x_12 = l_Array_empty___closed__1; x_13 = lean_array_push(x_12, x_11); -x_14 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_14 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_15 = lean_array_push(x_13, x_14); x_16 = l_Lean_nullKind___closed__2; x_17 = lean_alloc_ctor(1, 2, 0); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c index 97baf1e3d6..23496ec818 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -164,6 +164,7 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTagg lean_object* l_Lean_Meta_appendTag(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltCtorNames___spec__2___closed__2; +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; 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*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getRecInfoDefault___spec__1___closed__2; @@ -176,7 +177,6 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getRecIn lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Tactic_getRecFromUsing___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_processResult___spec__2(lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop_match__2(lean_object*); -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__3(lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalInduction___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___regBuiltin_Lean_Elab_Tactic_evalInduction(lean_object*); @@ -7493,7 +7493,7 @@ static lean_object* _init_l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Ta _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l___private_Lean_Meta_Tactic_Induction_0__Lean_Meta_addRecParams___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8571,7 +8571,7 @@ static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tact _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltCtorNames___spec__2___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index 16577279f7..c51bea8e27 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -38,6 +38,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabTypeStx___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Lean_Elab_Term___instance__13___spec__11(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwIllFormedSyntax___at_Lean_Elab_Term_elabStrLit___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_extractMacroScopes(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2; lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___closed__6; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_exceptionToSorry(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); @@ -120,6 +121,7 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_liftAttrM(lean_object* lean_object* l_Lean_Elab_Term_throwErrorIfErrors___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__2; +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7331____closed__1; lean_object* l_Lean_Elab_Term_expandArrayLit___closed__10; lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Term_traceAtCmdPos___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_Elab_throwUnsupportedSyntax___rarg___closed__1; @@ -127,7 +129,6 @@ lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_mkConst___spec__1___boxed(l lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__12___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__13___rarg___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveLocalName_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7332____closed__1; lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__3___closed__4; lean_object* l_Lean_Elab_Term_elabNumLit___lambda__2___closed__1; @@ -277,10 +278,10 @@ lean_object* l_Lean_Elab_Term_elabStrLit_match__1___rarg(lean_object*, lean_obje lean_object* l___regBuiltin_Lean_Elab_Term_elabByTactic(lean_object*); lean_object* l_Lean_mkAtom(lean_object*); lean_object* l_Lean_Elab_Term_withLevelNames(lean_object*); +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___closed__6; lean_object* l_Lean_Elab_Term_withLevelNames___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVars___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabTypeStx(lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -301,6 +302,7 @@ extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l_Lean_Elab_Term_elabNumLit_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_decLevel___rarg___lambda__1___closed__2; extern lean_object* l_Lean_levelZero; +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* l_Lean_Elab_Term_elabStrLit___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_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort___closed__6; @@ -331,7 +333,6 @@ lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__1; lean_object* l_Lean_Elab_log___at___private_Lean_Elab_Term_0__Lean_Elab_Term_exceptionToSorry___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_liftMetaM(lean_object*); lean_object* l_Lean_Elab_Term_saveAllState___boxed(lean_object*); -extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Elab_Term_expandListLit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_foldlM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_mkConsts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -526,7 +527,7 @@ lean_object* l_Lean_Elab_Term_mkTypeMismatchError_match__1___rarg(lean_object*, lean_object* l___regBuiltin_Lean_Elab_Term_elabCharLit(lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabOptLevel___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFnsAux_match__2___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566_(lean_object*); lean_object* l_Lean_Elab_Term_setElabConfig(lean_object*); lean_object* l_Lean_Elab_Term_getLetRecsToLift(lean_object*); lean_object* l_Lean_Elab_Term_liftLevelM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -726,6 +727,7 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isMonad_x3f___closed__ lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__8; extern lean_object* l_Lean_mkAppStx___closed__5; lean_object* l_Lean_Syntax_getSepArgs(lean_object*); +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; lean_object* l_Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__12___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_String_splitAux___closed__1; @@ -741,7 +743,6 @@ extern lean_object* l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec_ lean_object* l_Lean_Elab_Term_isLetRecAuxMVar___closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambdaAux___closed__2; lean_object* l_Lean_mkLevelSucc(lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; lean_object* l_Lean_Elab_Term_traceAtCmdPos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_postponeExceptionId; lean_object* l_Lean_Elab_throwPostpone___at_Lean_Elab_Term_tryPostpone___spec__1___rarg(lean_object*); @@ -869,7 +870,6 @@ lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__11; lean_object* l_Lean_Meta_decLevel___at_Lean_Meta_getDecLevel___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__11___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabQuotedName(lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2; extern lean_object* l_Lean_Elab_abortExceptionId; lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___closed__8; @@ -891,6 +891,7 @@ lean_object* l_Lean_Elab_Term_TermElabM_toIO_match__1(lean_object*, lean_object* lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__1___closed__1; uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__13___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Lean_Elab_Term___instance__13___spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); extern lean_object* l_Lean_Init_LeanInit___instance__22___rarg___closed__2; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__11; @@ -979,7 +980,7 @@ lean_object* l_Lean_Elab_Term_logUnassignedUsingErrorInfos_match__2___rarg(lean_ lean_object* l_Lean_Elab_Term_throwErrorIfErrors(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_NameSet_contains(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isLevelDefEq___rarg___lambda__2___closed__4; -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7332_(lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7331_(lean_object*); lean_object* l_Lean_Elab_Term_elabByTactic_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__3(lean_object*, size_t, size_t, lean_object*); extern lean_object* l_Lean_Expr_Lean_Expr___instance__11___closed__1; @@ -1066,7 +1067,6 @@ lean_object* l_Lean_Elab_Term_Lean_Elab_Term___instance__8___closed__5; lean_object* l_Lean_Elab_Term_elabEnsureTypeOf_match__1(lean_object*); lean_object* l_Lean_Elab_Term_resolveName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1; lean_object* l_Lean_Elab_throwIllFormedSyntax___at_Lean_Elab_Term_elabQuotedName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__6; lean_object* l_Lean_Elab_Term_resolveName___closed__1; @@ -3677,7 +3677,7 @@ x_3 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__5; x_4 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; x_5 = l_Lean_mkAppStx___closed__6; x_6 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -x_7 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; +x_7 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; x_8 = l_Lean_Elab_mkElabAttribute___rarg(x_2, x_3, x_4, x_5, x_6, x_7, x_1); return x_8; } @@ -21151,7 +21151,7 @@ static lean_object* _init_l___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeE _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Exception___hyg_3____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -23494,7 +23494,7 @@ static lean_object* _init_l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImpli _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambdaAux___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -27597,7 +27597,7 @@ lean_dec(x_24); if (x_25 == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; +x_26 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; x_27 = lean_box(0); x_28 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__3(x_23, x_4, x_1, x_2, x_3, x_26, x_27, x_5, x_6, x_7, x_8, x_9, x_10, x_20); lean_dec(x_23); @@ -27676,7 +27676,7 @@ lean_dec(x_46); if (x_47 == 0) { lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; +x_48 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; x_49 = lean_box(0); x_50 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__3(x_45, x_4, x_1, x_2, x_3, x_48, x_49, x_44, x_6, x_7, x_8, x_9, x_10, x_20); lean_dec(x_45); @@ -27795,7 +27795,7 @@ lean_dec(x_78); if (x_79 == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_80 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; +x_80 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; x_81 = lean_box(0); x_82 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__3(x_77, x_4, x_1, x_2, x_3, x_80, x_81, x_76, x_6, x_7, x_8, x_9, x_10, x_65); lean_dec(x_77); @@ -29334,7 +29334,7 @@ lean_dec(x_3); return x_9; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1() { _start: { lean_object* x_1; @@ -29342,21 +29342,21 @@ x_1 = lean_mk_string("letrec"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -29523,7 +29523,7 @@ lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean x_89 = lean_ctor_get(x_83, 1); lean_inc(x_89); lean_dec(x_83); -x_90 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2; +x_90 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2; x_91 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(x_90, x_2, x_3, x_4, x_5, x_6, x_7, x_89); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); @@ -29565,7 +29565,7 @@ lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean x_49 = lean_ctor_get(x_43, 1); lean_inc(x_49); lean_dec(x_43); -x_50 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2; +x_50 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2; x_51 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_49); x_52 = lean_ctor_get(x_51, 0); lean_inc(x_52); @@ -29642,7 +29642,7 @@ x_37 = l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__ x_38 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_38, 0, x_36); lean_ctor_set(x_38, 1, x_37); -x_39 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2; +x_39 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2; x_40 = l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(x_39, x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_32); x_41 = lean_ctor_get(x_40, 1); lean_inc(x_41); @@ -29700,7 +29700,7 @@ x_73 = l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__ x_74 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_74, 0, x_72); lean_ctor_set(x_74, 1, x_73); -x_75 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2; +x_75 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2; x_76 = l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(x_75, x_74, x_2, x_3, x_4, x_5, x_6, x_7, x_57); x_77 = lean_ctor_get(x_76, 1); lean_inc(x_77); @@ -36936,17 +36936,17 @@ x_8 = l_Lean_Elab_Term_Lean_Elab_Term___instance__13___rarg(x_1, x_2, x_3, x_4, return x_8; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7332____closed__1() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7331____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_2 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7332_(lean_object* x_1) { +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7331_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -36958,7 +36958,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_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7332____closed__1; +x_5 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7331____closed__1; x_6 = l_Lean_registerTraceClass(x_5, x_4); if (lean_obj_tag(x_6) == 0) { @@ -37409,11 +37409,11 @@ l_Lean_Elab_Term_mkAuxName___closed__2 = _init_l_Lean_Elab_Term_mkAuxName___clos lean_mark_persistent(l_Lean_Elab_Term_mkAuxName___closed__2); l_Lean_Elab_Term_mkAuxName___closed__3 = _init_l_Lean_Elab_Term_mkAuxName___closed__3(); lean_mark_persistent(l_Lean_Elab_Term_mkAuxName___closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567____closed__2); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5567_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566____closed__2); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_5566_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_isLetRecAuxMVar___closed__1 = _init_l_Lean_Elab_Term_isLetRecAuxMVar___closed__1(); @@ -37632,9 +37632,9 @@ l_Lean_Elab_Term_Lean_Elab_Term___instance__13___rarg___closed__2 = _init_l_Lean lean_mark_persistent(l_Lean_Elab_Term_Lean_Elab_Term___instance__13___rarg___closed__2); l_Lean_Elab_Term_Lean_Elab_Term___instance__13___rarg___closed__3 = _init_l_Lean_Elab_Term_Lean_Elab_Term___instance__13___rarg___closed__3(); lean_mark_persistent(l_Lean_Elab_Term_Lean_Elab_Term___instance__13___rarg___closed__3); -l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7332____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7332____closed__1(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7332____closed__1); -res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7332_(lean_io_mk_world()); +l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7331____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7331____closed__1(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7331____closed__1); +res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_7331_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Util.c b/stage0/stdlib/Lean/Elab/Util.c index 244c64b157..a8ca02ab66 100644 --- a/stage0/stdlib/Lean/Elab/Util.c +++ b/stage0/stdlib/Lean/Elab/Util.c @@ -52,20 +52,20 @@ lean_object* l_Lean_Elab_syntaxNodeKindOfAttrParam_match__1(lean_object*); lean_object* l_Lean_Elab_adaptMacro___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_136____closed__2; size_t l_USize_shiftRight(size_t, size_t); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; lean_object* l_Array_findSomeM_x3f___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; lean_object* l_Lean_Elab_getMacroStackOption___closed__2; lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_136____closed__1; lean_object* l_Lean_Elab_addMacroStack___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; extern lean_object* l_Lean_mkAttributeImplOfConstant___closed__1; lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__3(lean_object*, size_t, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__6; lean_object* l_Lean_Elab_checkSyntaxNodeKind___closed__2; lean_object* lean_array_fget(lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; lean_object* l_Lean_Elab_checkSyntaxNodeKindAtNamespaces(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_evalSyntaxConstant___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_getBetterRef___lambda__1(lean_object*); @@ -86,7 +86,7 @@ size_t l_Lean_Name_hash(lean_object*); lean_object* l_Lean_Elab_checkSyntaxNodeKindAtNamespacesAux_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_467_(lean_object*); lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_136_(lean_object*); -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834_(lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833_(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*); @@ -2541,7 +2541,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_adaptMacro___rarg), 9, 0); return x_2; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2551,21 +2551,21 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834_(lean_object* x_1) { +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -2573,7 +2573,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_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2; +x_5 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2; x_6 = l_Lean_registerTraceClass(x_5, x_4); return x_6; } @@ -2699,11 +2699,11 @@ 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_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1); -l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__2); -res = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834_(lean_io_mk_world()); +l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__1); +l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833____closed__2); +res = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_833_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Exception.c b/stage0/stdlib/Lean/Exception.c index ac96a2d538..2fd49b9775 100644 --- a/stage0/stdlib/Lean/Exception.c +++ b/stage0/stdlib/Lean/Exception.c @@ -40,20 +40,20 @@ lean_object* l_Lean_withRef___rarg(lean_object*, lean_object*, lean_object*, lea lean_object* l_Lean_throwUnknownConstant___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__9; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; extern lean_object* l_Lean_interpolatedStrKind; lean_object* l_Lean_throwKernelException(lean_object*); lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_637____closed__9; lean_object* l_Lean_Lean_Exception___instance__4___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_1877____closed__3; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_637____closed__4; extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__4; lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_725____closed__6; lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_678____closed__5; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_throwUnknownConstant___rarg___closed__2; @@ -77,10 +77,10 @@ lean_object* l_Lean_Lean_Exception___instance__1___closed__1; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* l_Lean_Lean_Exception___instance__4___rarg___lambda__3(lean_object*, lean_object*); lean_object* l_Lean_Lean_Exception___instance__2(lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; extern lean_object* l_Lean_MessageData_nil___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_Init_Data_Repr___instance__15___closed__1; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_725____closed__7; lean_object* l_Lean_replaceRef_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_withRef___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1060,7 +1060,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__11; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -1133,7 +1133,7 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Exception___hyg_678____ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(1024u); x_3 = lean_alloc_ctor(20, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -1395,7 +1395,7 @@ 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 = lean_array_push(x_44, x_49); -x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_52 = lean_array_push(x_50, x_51); x_53 = l_Lean_nullKind___closed__2; x_54 = lean_alloc_ctor(1, 2, 0); @@ -1617,7 +1617,7 @@ x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); x_54 = lean_array_push(x_47, x_53); -x_55 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_55 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_56 = lean_array_push(x_54, x_55); x_57 = l_Lean_nullKind___closed__2; x_58 = lean_alloc_ctor(1, 2, 0); diff --git a/stage0/stdlib/Lean/Message.c b/stage0/stdlib/Lean/Message.c index 7d361d63f1..2ea51c7cb3 100644 --- a/stage0/stdlib/Lean/Message.c +++ b/stage0/stdlib/Lean/Message.c @@ -94,6 +94,7 @@ lean_object* l_Lean_Lean_Message___instance__26(lean_object*); extern lean_object* l_Lean_formatKVMap___closed__1; lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_1877____closed__3; lean_object* l_Lean_KernelException_toMessageData_match__2(lean_object*); +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; lean_object* l_Lean_Lean_Message___instance__27(lean_object*); lean_object* l_Lean_MessageData_Lean_Message___instance__5(lean_object*); uint8_t l_Lean_Message_severity___default; @@ -112,7 +113,6 @@ lean_object* l_Lean_MessageData_Lean_Message___instance__6(lean_object*); lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__4; lean_object* l_Lean_addMessageContextFull___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; extern lean_object* l_Lean_mkAppStx___closed__7; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_KernelException_toMessageData___closed__22; @@ -120,12 +120,12 @@ extern lean_object* l___private_Init_Util_0__mkPanicMessage___closed__3; lean_object* l_Lean_KernelException_toMessageData___closed__37; lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); extern lean_object* l_Lean_Format_sbracket___closed__2; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; lean_object* lean_message_string(lean_object*); lean_object* l_Lean_MessageData_Lean_Message___instance__2(lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_1877____closed__6; lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_MessageLog_getInfoMessages___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; lean_object* l_Lean_MessageLog_toList(lean_object*); lean_object* l_Lean_ppGoal(lean_object*, lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_MessageLog_getInfoMessages___spec__3(lean_object*, lean_object*); @@ -269,10 +269,10 @@ lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_Lean_addMessageContextPartial___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KernelException_toMessageData___closed__8; extern lean_object* l_Lean_mkAppStx___closed__5; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; lean_object* l_Lean_MessageLog_empty; extern lean_object* l_String_splitAux___closed__1; lean_object* l_Lean_KernelException_toMessageData___closed__4; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; lean_object* l_Lean_MessageData_ofList_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_nestD(lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_MessageLog_toList___spec__3___boxed(lean_object*, lean_object*); @@ -7445,7 +7445,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkAppStx___closed__2; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -7455,7 +7455,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__1; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__7; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -7540,7 +7540,7 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____c _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; x_2 = lean_alloc_ctor(18, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Lean/Meta/ExprDefEq.c b/stage0/stdlib/Lean/Meta/ExprDefEq.c index 2093733e89..8c2ab3326e 100644 --- a/stage0/stdlib/Lean/Meta/ExprDefEq.c +++ b/stage0/stdlib/Lean/Meta/ExprDefEq.c @@ -245,9 +245,9 @@ lean_object* l_Lean_Meta_isDefEqBindingDomain_loop(lean_object*, lean_object*, l lean_object* l_Std_AssocList_replace___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_trySynthPending(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_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; lean_object* l_Lean_Meta_CheckAssignment_checkMVar___lambda__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqQuickOther___closed__3; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; extern lean_object* l_Lean_Meta_isExprDefEq___rarg___closed__2; lean_object* l_Lean_Meta_isExprDefEqAuxImpl___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_updateLambdaE_x21___closed__2; @@ -60430,7 +60430,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Meta_isExprDefEq___rarg___closed__2; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Meta/LevelDefEq.c b/stage0/stdlib/Lean/Meta/LevelDefEq.c index b95853b43a..d2ee530e13 100644 --- a/stage0/stdlib/Lean/Meta/LevelDefEq.c +++ b/stage0/stdlib/Lean/Meta/LevelDefEq.c @@ -112,7 +112,7 @@ lean_object* l_Lean_Meta_isReadOnlyLevelMVar___at___private_Lean_Meta_LevelDefEq lean_object* l_Lean_Meta_setPostponed___rarg(lean_object*, lean_object*); lean_object* l_Std_PersistentArray_forIn___at___private_Lean_Meta_LevelDefEq_0__Lean_Meta_postponedToMessageData___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_LevelDefEq_0__Lean_Meta_postponedToMessageData___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; lean_object* l_Lean_Meta_isExprDefEq___rarg___closed__2; lean_object* l_Lean_Meta_isLevelDefEqAux___closed__6; lean_object* l___private_Lean_Meta_LevelDefEq_0__Lean_Meta_restore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3296,7 +3296,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Meta_isLevelDefEqAux___closed__2; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -18592,7 +18592,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Meta_LevelDefEq_0__Lean_Meta_processPostponedStep___closed__2; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_852____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Meta/RecursorInfo.c b/stage0/stdlib/Lean/Meta/RecursorInfo.c index 2f4ca58e00..3aa2e6238c 100644 --- a/stage0/stdlib/Lean/Meta/RecursorInfo.c +++ b/stage0/stdlib/Lean/Meta/RecursorInfo.c @@ -325,9 +325,9 @@ lean_object* l_Lean_Meta_RecursorInfo_Lean_Meta_RecursorInfo___instance__2___clo lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getParamsPos___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_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_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoAux___spec__2___closed__2; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getProduceMotiveAndRecursive___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; lean_object* l_Lean_Meta_mkRecOnName(lean_object*); extern lean_object* l_Lean_getConstInfoRec___rarg___lambda__1___closed__2; lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoAux___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*); @@ -1518,7 +1518,7 @@ x_82 = lean_string_append(x_80, x_81); x_83 = lean_string_append(x_82, x_40); lean_dec(x_40); x_84 = lean_string_append(x_83, x_7); -x_85 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_85 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_86 = lean_string_append(x_84, x_85); return x_86; } diff --git a/stage0/stdlib/Lean/Meta/SynthInstance.c b/stage0/stdlib/Lean/Meta/SynthInstance.c index 88179fad95..bc6237b2a0 100644 --- a/stage0/stdlib/Lean/Meta/SynthInstance.c +++ b/stage0/stdlib/Lean/Meta/SynthInstance.c @@ -24,7 +24,6 @@ lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_preprocessArgs___c lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x3f___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Meta_SynthInstance_mkGeneratorNode_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__1; uint8_t lean_is_out_param(lean_object*); lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_addAnswer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -61,7 +60,7 @@ lean_object* l_Lean_Meta_SynthInstance_tryAnswer___lambda__1___boxed(lean_object lean_object* l_Lean_Meta_SynthInstance_MkTableKey_State_emap___default; lean_object* l_Std_PersistentHashMap_insertAux___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x3f___spec__6___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_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__4; +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__3; lean_object* l_Lean_Meta_SynthInstance_initFn____x40_Lean_Meta_SynthInstance___hyg_5____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_preprocessArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withMCtx___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_mkAnswer___spec__1(lean_object*); @@ -77,6 +76,7 @@ lean_object* l_Lean_Meta_SynthInstance_resume___lambda__1___boxed(lean_object*, lean_object* l_Lean_Meta_SynthInstance_getEntry_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___closed__5; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__5; lean_object* l_Lean_Meta_SynthInstance_getResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_sub(size_t, size_t); lean_object* l_Std_HashMapImp_insert___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___spec__3(lean_object*, lean_object*, lean_object*); @@ -137,7 +137,6 @@ lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x 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*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__2; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_SynthInstance_tryResolve___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x3f___lambda__1___closed__1; lean_object* l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__2; @@ -160,13 +159,14 @@ lean_object* l_Lean_Meta_hasAssignableMVar___at___private_Lean_Meta_SynthInstanc lean_object* l_Lean_Meta_mkForallFVars___at___private_Lean_Meta_InferType_0__Lean_Meta_inferLambdaType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_HashMap_Std_Data_HashMap___instance__1___closed__1; lean_object* l_Lean_MetavarContext_instantiateLevelMVars___at_Lean_Meta_instantiateLevelMVarsImp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3863____closed__1; lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_getMaxSteps___boxed(lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__2; lean_object* l_Lean_Meta_SynthInstance_State_result___default; lean_object* l_Lean_Meta_SynthInstance_findEntry_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getInstances_match__1(lean_object*); lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp_match__3___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth___closed__4; -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3864____closed__1; lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_preprocessOutParam___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_mkAnswer___closed__2; lean_object* l_Lean_mkAppN(lean_object*, lean_object*); @@ -212,7 +212,6 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_getSubgoals(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_0__Lean_Meta_synthInstanceImp_x3f___lambda__3___closed__2; lean_object* l_Lean_addTrace___at_Lean_Meta_isLevelDefEqAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__6; lean_object* l_Lean_Meta_getConfig___at___private_Lean_Meta_WHNF_0__Lean_Meta_whnfCoreImp___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_synth_match__2(lean_object*); lean_object* l_Lean_Meta_hasAssignableMVar___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x3f___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -333,9 +332,9 @@ lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_S size_t lean_usize_of_nat(lean_object*); lean_object* l_Std_AssocList_find_x3f___at_Lean_Meta_SynthInstance_findEntry_x3f___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_Lean_Meta_SynthInstance___instance__3___closed__1; -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3873_(lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3864_(lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267_(lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3872_(lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3863_(lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266_(lean_object*); lean_object* l_Lean_Meta_SynthInstance_MkTableKey_State_lmap___default___closed__1; lean_object* l_Lean_Meta_SynthInstance_getNextToResume___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_MkTableKey_normExpr_match__2(lean_object*); @@ -370,6 +369,7 @@ lean_object* l_ReaderT_bind___at_Lean_Meta_SynthInstance_newSubgoal___spec__2(le lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_preprocess___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Std_AssocList_contains___at_Lean_Meta_SynthInstance_newSubgoal___spec__5(lean_object*, lean_object*); lean_object* l_Lean_Meta_DiscrTree_getUnify___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__6; lean_object* l_Lean_Meta_SynthInstance_wakeUp___closed__2; lean_object* lean_level_update_imax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_synthInstance(lean_object*); @@ -460,6 +460,7 @@ lean_object* l_ReaderT_bind___at_Lean_Meta_SynthInstance_newSubgoal___spec__2___ lean_object* l_Lean_Meta_openAbstractMVarsResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_mkAnswer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__1; lean_object* l_Lean_Meta_SynthInstance_synth_match__1(lean_object*); lean_object* l_Lean_Meta_SynthInstance_modifyTop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -517,7 +518,6 @@ lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Met lean_object* l_Lean_Meta_SynthInstance_tryResolveCore___lambda__1___closed__1; lean_object* l_Std_AssocList_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___spec__2(lean_object*, lean_object*); lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___spec__1___boxed(lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__3; lean_object* l_Lean_Meta_SynthInstance_resume___lambda__1___closed__2; lean_object* l_Std_HashMapImp_insert___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); @@ -527,7 +527,6 @@ lean_object* l_Lean_Meta_SynthInstance_getInstances___lambda__1___closed__3; lean_object* l_Std_PersistentHashMap_insertAux___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x3f___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_MkTableKey_normExpr(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__5; lean_object* l_Std_AssocList_foldlM___at_Lean_Meta_SynthInstance_newSubgoal___spec__8(lean_object*, lean_object*); lean_object* l_Lean_Meta_SynthInstance_main___closed__2; lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -546,6 +545,7 @@ lean_object* l_Lean_Meta_SynthInstance_generate___closed__4; lean_object* l_Lean_Meta_SynthInstance_main___closed__1; lean_object* l_Lean_Meta_SynthInstance_newSubgoal___closed__3; lean_object* l_Lean_Meta_SynthInstance_resume___closed__1; +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__4; lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Meta_SynthInstance_MkTableKey_normExpr___spec__1(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x3f_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -18432,7 +18432,7 @@ x_1 = lean_unsigned_to_nat(1000u); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__1() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18442,7 +18442,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__2() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__2() { _start: { lean_object* x_1; @@ -18450,17 +18450,17 @@ x_1 = lean_mk_string("maxSteps"); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__3() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__1; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__2; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__1; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__4() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -18470,7 +18470,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__5() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__5() { _start: { lean_object* x_1; @@ -18478,13 +18478,13 @@ x_1 = lean_mk_string("maximum steps for the type class instance synthesis proced return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__6() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__4; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__4; x_2 = l_String_splitAux___closed__1; -x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__5; +x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____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); @@ -18492,12 +18492,12 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267_(lean_object* x_1) { +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__3; -x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__6; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__3; +x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__6; x_4 = lean_register_option(x_2, x_3, x_1); return x_4; } @@ -18506,7 +18506,7 @@ lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_getMaxSteps(lean_o _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__3; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__3; x_3 = l_Lean_Meta_maxStepsDefault; x_4 = l_Lean_KVMap_getNat(x_1, x_2, x_3); return x_4; @@ -23308,7 +23308,7 @@ lean_dec(x_2); return x_7; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3864____closed__1() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3863____closed__1() { _start: { lean_object* x_1; @@ -23316,12 +23316,12 @@ x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_SynthInstance_0__Lean_Met return x_1; } } -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3864_(lean_object* x_1) { +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3863_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; x_2 = l_Lean_Meta_synthPendingRef; -x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3864____closed__1; +x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3863____closed__1; x_4 = lean_st_ref_set(x_2, x_3, x_1); x_5 = !lean_is_exclusive(x_4); if (x_5 == 0) @@ -23343,7 +23343,7 @@ return x_8; } } } -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3873_(lean_object* x_1) { +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3872_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -23769,19 +23769,19 @@ l___private_Lean_Meta_SynthInstance_0__Lean_Meta_preprocessArgs___closed__3 = _i lean_mark_persistent(l___private_Lean_Meta_SynthInstance_0__Lean_Meta_preprocessArgs___closed__3); l_Lean_Meta_maxStepsDefault = _init_l_Lean_Meta_maxStepsDefault(); lean_mark_persistent(l_Lean_Meta_maxStepsDefault); -l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__1(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__1); -l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__2(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__3(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__3); -l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__4(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__4); -l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__5 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__5(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__5); -l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__6 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__6(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267____closed__6); -res = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3267_(lean_io_mk_world()); +l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__1(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__1); +l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__2(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__2); +l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__3(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__3); +l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__4(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__4); +l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__5 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__5(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__5); +l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__6 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__6(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266____closed__6); +res = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3266_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x3f___lambda__1___closed__1 = _init_l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp_x3f___lambda__1___closed__1(); @@ -23806,12 +23806,12 @@ l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp___closed__1 = lean_mark_persistent(l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp___closed__1); l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp___closed__2 = _init_l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp___closed__2(); lean_mark_persistent(l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthInstanceImp___closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3864____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3864____closed__1(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3864____closed__1); -res = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3864_(lean_io_mk_world()); +l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3863____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3863____closed__1(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3863____closed__1); +res = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3863_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3873_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_3872_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Induction.c b/stage0/stdlib/Lean/Meta/Tactic/Induction.c index 0b9b7d853b..79f239ace8 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Induction.c @@ -74,7 +74,7 @@ lean_object* l___private_Lean_Meta_Tactic_Induction_0__Lean_Meta_addRecParams___ lean_object* l_Array_mapMUnsafe_map___at_Lean_LocalContext_getFVars___spec__1(size_t, size_t, lean_object*); lean_object* l___private_Lean_Meta_Tactic_Induction_0__Lean_Meta_addRecParams___closed__4; lean_object* l_Lean_Meta_induction_match__8(lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Induction___hyg_2180_(lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Induction___hyg_2179_(lean_object*); uint8_t l_USize_decLt(size_t, size_t); lean_object* l_Lean_Expr_withAppAux___at_Lean_Meta_induction___spec__11___closed__7; lean_object* l_Lean_Meta_checkNotAssigned___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -7662,7 +7662,7 @@ x_12 = l_Lean_Meta_induction(x_1, x_2, x_3, x_4, x_11, x_6, x_7, x_8, x_9, x_10) return x_12; } } -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Induction___hyg_2180_(lean_object* x_1) { +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Induction___hyg_2179_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -7796,7 +7796,7 @@ l_Lean_Expr_withAppAux___at_Lean_Meta_induction___spec__12___closed__2 = _init_l lean_mark_persistent(l_Lean_Expr_withAppAux___at_Lean_Meta_induction___spec__12___closed__2); l_Lean_Expr_withAppAux___at_Lean_Meta_induction___spec__12___boxed__const__1 = _init_l_Lean_Expr_withAppAux___at_Lean_Meta_induction___spec__12___boxed__const__1(); lean_mark_persistent(l_Lean_Expr_withAppAux___at_Lean_Meta_induction___spec__12___boxed__const__1); -res = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Induction___hyg_2180_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Induction___hyg_2179_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Parser/Basic.c b/stage0/stdlib/Lean/Parser/Basic.c index 5bd2ce1a11..b1ea44f94b 100644 --- a/stage0/stdlib/Lean/Parser/Basic.c +++ b/stage0/stdlib/Lean/Parser/Basic.c @@ -232,7 +232,6 @@ extern lean_object* l_Init_Data_Repr___instance__11___rarg___closed__1; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_Parser_ParserState_mkErrorsAt(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkStackTopFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_IO_mkRef___at_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____spec__1(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_binNumberFn___closed__2; lean_object* l_Lean_Parser_Lean_Parser_Basic___instance__11___boxed(lean_object*); @@ -242,6 +241,7 @@ lean_object* l_Lean_Parser_setExpected___elambda__1___rarg(lean_object*, lean_ob lean_object* l_Lean_Parser_strLitFnAux___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameLitKind; lean_object* l_Lean_Parser_strLit___closed__1; +lean_object* l_IO_mkRef___at_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_Lean_Parser_Basic___instance__3; lean_object* l_Lean_Parser_indexed_match__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_suppressInsideQuotFn(lean_object*, lean_object*, lean_object*); @@ -426,7 +426,6 @@ lean_object* l_Lean_Parser_checkTailWs___boxed(lean_object*); lean_object* l_Lean_Parser_longestMatchFnAux_parse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_charLitNoAntiquot___closed__2; lean_object* l_Lean_Parser_longestMatchStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_tryAnti_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -437,6 +436,7 @@ lean_object* l_Lean_Parser_mkAntiquot___closed__12; lean_object* l_Lean_Parser_ParserState_mkErrorAt_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit___closed__3; extern lean_object* l___private_Init_Util_0__mkPanicMessage___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_FirstTokens_seq_match__1(lean_object*); lean_object* l_Lean_Parser_ParserContext_savedPos_x3f___default; size_t l_Lean_Name_hash(lean_object*); @@ -447,7 +447,6 @@ lean_object* l_Lean_Parser_antiquotExpr___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__5; lean_object* l_Lean_Parser_categoryParserOfStack(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__20; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l_Lean_Parser_checkWsBefore(lean_object*); lean_object* l_Lean_Parser_checkNoWsBeforeFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_setCache(lean_object*, lean_object*); @@ -472,6 +471,7 @@ 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_Init_Data_Repr___instance__15___closed__1; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_Parser_errorFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_maxPrec; lean_object* l_Lean_Parser_Lean_Parser_Basic___instance__6(lean_object*); @@ -481,7 +481,6 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_foldArgsM___spec__1(lean lean_object* l_Lean_Parser_mergeOrElseErrors_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdent; lean_object* l_Lean_Parser_checkLineEqFn_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____closed__1; lean_object* l_Std_RBNode_ins___at_Lean_Parser_TokenMap_insert___spec__6(lean_object*); lean_object* l_Lean_Parser_FirstTokens_merge(lean_object*, lean_object*); lean_object* l_Lean_Parser_many1Unbox___closed__1; @@ -495,6 +494,7 @@ lean_object* l_Lean_Parser_ParserState_mkUnexpectedErrorAt_match__1(lean_object* lean_object* l_Lean_Parser_symbolInfo___elambda__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_checkColGtFn_match__1(lean_object*); lean_object* l_Lean_Parser_charLit___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____closed__1; 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*); @@ -504,7 +504,7 @@ lean_object* l_Lean_Parser_nonReservedSymbolInfo___elambda__1___boxed(lean_objec lean_object* l_Lean_Parser_FirstTokens_Lean_Parser_Basic___instance__7; uint32_t lean_string_utf8_get(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mergeErrors_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916____closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915____closed__1; lean_object* l_Lean_Parser_mkAntiquot___closed__13; lean_object* l_Lean_Parser_errorAtSavedPosFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -513,7 +513,7 @@ lean_object* l_Lean_Parser_ParserState_hasError___boxed(lean_object*); lean_object* l_Std_RBNode_find___at_Lean_Parser_indexed___spec__3(lean_object*); lean_object* l_Lean_Parser_unicodeSymbol___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_nodeInfo___elambda__2(lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916____lambda__1(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915____lambda__1(lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__23; lean_object* l_Lean_Parser_identFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLitNoAntiquot___closed__3; @@ -596,7 +596,6 @@ lean_object* l_Lean_Parser_categoryParserFn(lean_object*, lean_object*, lean_obj lean_object* l_Lean_Parser_ParserState_keepPrevError_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_checkInsideQuot___closed__1; lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_updateCache(lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____lambda__1___boxed(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; @@ -644,6 +643,7 @@ lean_object* l_Lean_Parser_FirstTokens_toStr_match__1(lean_object*); lean_object* l_Lean_Parser_hexDigitFn(lean_object*, lean_object*); lean_object* l_List_redLength___rarg(lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__16; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkNoImmediateColon___elambda__1___boxed(lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAux_traverse___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkLineEq(lean_object*); @@ -796,8 +796,8 @@ lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_tokenFnAux_match__1(le lean_object* l_Lean_Parser_mkAntiquot___closed__6; lean_object* l_Lean_Parser_rawIdent___closed__1; lean_object* l_Lean_Parser_Lean_Parser_Basic___instance__10___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897_(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916_(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896_(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915_(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_Lean_Parser_optionaInfo___elambda__1(lean_object*, lean_object*); @@ -25927,7 +25927,7 @@ lean_dec(x_1); return x_6; } } -lean_object* l_IO_mkRef___at_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_mkRef___at_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -25952,7 +25952,7 @@ return x_7; } } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -25960,34 +25960,34 @@ x_4 = l_Lean_Parser_whitespace(x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____lambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____lambda__1___boxed), 3, 0); return x_1; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897_(lean_object* x_1) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____closed__1; -x_3 = l_IO_mkRef___at_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____spec__1(x_2, x_1); +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____closed__1; +x_3 = l_IO_mkRef___at_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____spec__1(x_2, x_1); return x_3; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____lambda__1(x_1, x_2, x_3); +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____lambda__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916____lambda__1(lean_object* x_1) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915____lambda__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -26013,19 +26013,19 @@ return x_7; } } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916____lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915____lambda__1), 1, 0); return x_1; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916_(lean_object* x_1) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915____closed__1; x_3 = l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(x_2, x_1); return x_3; } @@ -26153,7 +26153,7 @@ lean_object* l_Lean_Parser_termParser(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_categoryParser(x_2, x_1); return x_3; } @@ -26601,7 +26601,7 @@ static lean_object* _init_l_Lean_Parser_antiquotNestedExpr___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -26724,7 +26724,7 @@ static lean_object* _init_l_Lean_Parser_antiquotNestedExpr___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Parser_categoryParser(x_1, x_2); return x_3; @@ -29577,16 +29577,16 @@ l_Lean_Parser_Lean_Parser_Basic___instance__15___closed__1 = _init_l_Lean_Parser lean_mark_persistent(l_Lean_Parser_Lean_Parser_Basic___instance__15___closed__1); l_Lean_Parser_Lean_Parser_Basic___instance__15 = _init_l_Lean_Parser_Lean_Parser_Basic___instance__15(); lean_mark_persistent(l_Lean_Parser_Lean_Parser_Basic___instance__15); -l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897____closed__1); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5897_(lean_io_mk_world()); +l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896____closed__1); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5896_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Parser_categoryParserFnRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Parser_categoryParserFnRef); lean_dec_ref(res); -l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916____closed__1); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5916_(lean_io_mk_world()); +l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915____closed__1); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_5915_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Parser_categoryParserFnExtension = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Parser_categoryParserFnExtension); diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 5dbbd9afba..c74eeaf7f7 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -1173,7 +1173,6 @@ lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_export___closed__1; lean_object* l_Lean_Parser_Command_set__option___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_formatter(lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l_Lean_Parser_Command_exit_parenthesizer___closed__2; lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_formatter___closed__1; lean_object* l_Lean_Parser_Command_section___closed__2; @@ -1244,6 +1243,7 @@ lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__1; extern lean_object* l_Init_Data_Repr___instance__15___closed__1; lean_object* l_Lean_Parser_Command_eval; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_Parser_Command_end_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_visibility___closed__3; lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__22; @@ -2943,7 +2943,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_quot(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_quot___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Term_quot; diff --git a/stage0/stdlib/Lean/Parser/Do.c b/stage0/stdlib/Lean/Parser/Do.c index c3fbce902f..3fbcfb739a 100644 --- a/stage0/stdlib/Lean/Parser/Do.c +++ b/stage0/stdlib/Lean/Parser/Do.c @@ -685,7 +685,6 @@ lean_object* l_Lean_Parser_doElemParser_parenthesizer(lean_object*, lean_object* lean_object* l_Lean_Parser_Term_termTry___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_doReassign___closed__3; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Do___hyg_14____closed__2; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l_Lean_Parser_Term_doSeqIndent___closed__5; lean_object* l_Lean_Parser_Term_doFor_formatter___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_doFor_formatter(lean_object*); @@ -724,6 +723,7 @@ extern lean_object* l_Lean_Parser_Term_match___closed__2; lean_object* l_Lean_Parser_Term_doPatDecl_formatter___closed__4; extern lean_object* l_Init_Data_Repr___instance__15___closed__1; lean_object* l_Lean_Parser_Term_doReturn_formatter___closed__3; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_Parser_Term_doTry___closed__11; lean_object* l_Lean_Parser_Term_doSeqBracketed___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_termTry___elambda__1___closed__3; @@ -1956,7 +1956,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_liftMethod(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_liftMethod; @@ -7644,7 +7644,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Parser_Term_if___elambda__1___closed__6; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_if___elambda__1___closed__9; x_4 = l_Lean_Parser_Term_doIf___elambda__1___closed__12; x_5 = l_Lean_Parser_Term_doIf___elambda__1___closed__16; @@ -9193,7 +9193,7 @@ static lean_object* _init_l_Lean_Parser_Term_doUnless___elambda__1___closed__8() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_Term_doUnless___elambda__1___lambda__1), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -15721,7 +15721,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_do(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_do___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Term_do; @@ -16080,7 +16080,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_doElem_quot(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_doElem_quot___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_doElem_quot; @@ -16433,7 +16433,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_termUnless(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_termUnless___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_termUnless; @@ -16698,7 +16698,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_termFor(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_termFor___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_termFor; @@ -16963,7 +16963,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_termTry(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_termTry___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_termTry; @@ -17228,7 +17228,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_termReturn(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_termReturn___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_termReturn; diff --git a/stage0/stdlib/Lean/Parser/Extension.c b/stage0/stdlib/Lean/Parser/Extension.c index e4cd74ee26..e95644fb9a 100644 --- a/stage0/stdlib/Lean/Parser/Extension.c +++ b/stage0/stdlib/Lean/Parser/Extension.c @@ -287,7 +287,6 @@ lean_object* l_Lean_Parser_addToken(lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserFnImpl___closed__4; lean_object* l_Lean_Parser_notFollowedByCategoryToken(lean_object*); lean_object* l_Nat_repr(lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l_Lean_Parser_registerBuiltinParserAttribute___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_compileParserDescr_visit_match__3(lean_object*); lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_ParserExtension_addImported(lean_object*, lean_object*, lean_object*); @@ -303,6 +302,7 @@ lean_object* l_Lean_Parser_compileParserDescr_visit___closed__13; extern lean_object* l_Lean_charLitKind; lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2(lean_object*, lean_object*, lean_object*); extern lean_object* l_Init_Data_Repr___instance__15___closed__1; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Parser_getCategory___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_throwParserCategoryAlreadyDefined___rarg___closed__2; lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_ParserAttribute_add___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -14506,7 +14506,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3079____closed__2; -x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_4 = 0; x_5 = l_Lean_Parser_registerBuiltinParserAttribute(x_2, x_3, x_4, x_1); return x_5; @@ -14535,7 +14535,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3089____closed__2; -x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_4 = l_Lean_Parser_registerBuiltinDynamicParserAttribute(x_2, x_3, x_1); return x_4; } @@ -15012,7 +15012,7 @@ static lean_object* _init_l_Lean_Parser_notFollowedByTermToken___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_notFollowedByCategoryTokenFn), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Lean/Parser/Extra.c b/stage0/stdlib/Lean/Parser/Extra.c index 84eea09d82..aebc0e875d 100644 --- a/stage0/stdlib/Lean/Parser/Extra.c +++ b/stage0/stdlib/Lean/Parser/Extra.c @@ -108,7 +108,6 @@ lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__6; extern lean_object* l___private_Init_Util_0__mkPanicMessage___closed__2; lean_object* l_Lean_Parser_manyIndent(lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__15___closed__3; lean_object* l_Lean_Parser_ppSpace; lean_object* l_Lean_Parser_ppHardSpace; @@ -116,6 +115,7 @@ lean_object* l_Lean_Parser_termParser_formatter___rarg(lean_object*, lean_object lean_object* l_Lean_Parser_ppIndent(lean_object*); lean_object* l_Lean_Parser_commandParser_formatter___boxed(lean_object*); lean_object* l_Lean_Parser_manyIndent___lambda__1(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ppDedent(lean_object*); @@ -269,7 +269,7 @@ lean_object* l_Lean_Parser_termParser_formatter___rarg(lean_object* x_1, lean_ob _start: { lean_object* x_6; lean_object* x_7; -x_6 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_6 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_7 = l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(x_6, x_1, x_2, x_3, x_4, x_5); return x_7; } @@ -295,7 +295,7 @@ lean_object* l_Lean_Parser_termParser_parenthesizer(lean_object* x_1, lean_objec _start: { lean_object* x_7; lean_object* x_8; -x_7 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_7 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_8 = l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(x_7, x_1, x_2, x_3, x_4, x_5, x_6); return x_8; } diff --git a/stage0/stdlib/Lean/Parser/Syntax.c b/stage0/stdlib/Lean/Parser/Syntax.c index 1b7e0608d5..5ec1af1deb 100644 --- a/stage0/stdlib/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Lean/Parser/Syntax.c @@ -164,7 +164,6 @@ lean_object* l_Lean_Parser_Command_macroTailDefault___closed__8; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__9; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_stx_quot_formatter___closed__2; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__1; lean_object* l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_infixl_parenthesizer___closed__1; @@ -219,6 +218,7 @@ lean_object* l_Lean_Parser_Syntax_paren_formatter___closed__4; lean_object* l_Lean_Parser_Syntax_sepBy1_formatter___closed__2; lean_object* l_Lean_Parser_Command_elab__rules_formatter___closed__8; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__5; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; lean_object* l_Lean_Parser_Syntax_ident_formatter___closed__1; lean_object* l_Lean_Parser_Syntax_many1___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_macro_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -900,7 +900,6 @@ extern lean_object* l_Lean_Parser_mkAntiquot___closed__20; lean_object* l_Lean_Parser_precedence_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_infixl___closed__6; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_stx_quot___closed__6; @@ -949,6 +948,7 @@ lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__11; lean_object* l_Lean_Parser_Command_macroTailDefault_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__9; extern lean_object* l_Init_Data_Repr___instance__15___closed__1; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_Parser_Command_infix___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_precedence_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_mixfix_formatter___closed__1; @@ -6570,7 +6570,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_allowTrailingSep___elambda__1___c _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; x_2 = l_String_trim(x_1); return x_2; } @@ -7092,7 +7092,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_allowTrailingSep_formatter___clos _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -7323,7 +7323,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_allowTrailingSep_parenthesizer___ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__16; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__16; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_symbol_parenthesizer___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -10512,7 +10512,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_stx_quot(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_stx_quot___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_stx_quot; @@ -20079,7 +20079,7 @@ lean_inc(x_7); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_8 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_9 = lean_unsigned_to_nat(0u); x_10 = l_Lean_Parser_categoryParser___elambda__1(x_8, x_9, x_1, x_6); return x_10; diff --git a/stage0/stdlib/Lean/Parser/Tactic.c b/stage0/stdlib/Lean/Parser/Tactic.c index eb3771c6f7..4ac74ed016 100644 --- a/stage0/stdlib/Lean/Parser/Tactic.c +++ b/stage0/stdlib/Lean/Parser/Tactic.c @@ -875,7 +875,6 @@ extern lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__1; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l_Lean_Parser_Tactic_intro___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_revert___closed__6; lean_object* l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer___closed__1; @@ -921,6 +920,7 @@ lean_object* l___regBuiltin_Lean_Parser_Tactic_intros_parenthesizer(lean_object* lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__12; extern lean_object* l_Init_Data_Repr___instance__15___closed__1; lean_object* l_Lean_Parser_Tactic_change_formatter___closed__4; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_Parser_Tactic_location___closed__4; lean_object* l_Lean_Parser_Tactic_location_formatter___closed__4; lean_object* l_Lean_Parser_Tactic_show_parenthesizer___closed__1; @@ -8898,7 +8898,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(51u); x_3 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -9014,7 +9014,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_generalize___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(51u); x_3 = l_Lean_Parser_categoryParser(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index e01d0e9539..22040de0d5 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -79,7 +79,6 @@ extern lean_object* l_Lean_mkRecName___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__13; -lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__11; lean_object* l___regBuiltin_Lean_Parser_Term_map_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_let_x2a_formatter___closed__2; @@ -413,7 +412,6 @@ lean_object* l_Lean_Parser_Term_app_formatter___closed__6; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_typeOf___closed__4; lean_object* l_Lean_Parser_Term_mod_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__6; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -534,7 +532,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_nativeRefl_parenthesizer___closed__ lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_seqLeft___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_le_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_append_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_letDecl_formatter___closed__8; @@ -776,7 +773,6 @@ extern lean_object* l_myMacro____x40_Init_Tactics___hyg_502____closed__9; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_paren_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__5; lean_object* l_Lean_Parser_Tactic_seq1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_listLit_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_nativeDecide_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -848,7 +844,6 @@ lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_ensureTypeOf_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_let_x2a_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_letrec(lean_object*); lean_object* l_Lean_Parser_Term_decide; lean_object* l___regBuiltin_Lean_Parser_Term_subst_formatter___closed__1; @@ -870,7 +865,6 @@ lean_object* l_Lean_Parser_Term_fun_formatter___closed__6; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_dollar_formatter___closed__4; extern lean_object* l_Lean_Expr_ctorName___closed__4; -lean_object* l_Lean_Parser_Term_simpleBinder___closed__9; lean_object* l___regBuiltin_Lean_Parser_Term_dollarProj_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_prod_formatter___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_let_x21(lean_object*); @@ -930,7 +924,6 @@ lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_structInst_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_nativeRefl_formatter(lean_object*); lean_object* l_Lean_Parser_Term_show___closed__6; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkOutsideQuot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_prod_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer___closed__3; @@ -1098,7 +1091,6 @@ lean_object* l_Lean_Parser_Term_funImplicitBinder_formatter(lean_object*, lean_o lean_object* l_Lean_Parser_Term_eq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_have___closed__7; lean_object* l_Lean_Parser_Term_typeAscription_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_funBinder_formatter___closed__5; lean_object* l_Lean_Parser_Term_prop_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedArgument_formatter___closed__1; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__3; @@ -1209,7 +1201,6 @@ lean_object* l_Lean_Parser_Term_match___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_funBinder___closed__5; lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_panic_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Term_funBinder_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_typeOf_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__10; @@ -1381,7 +1372,6 @@ lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__17; lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__1; -lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__15; extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; lean_object* l_Lean_Parser_Term_suffices___closed__4; @@ -1423,7 +1413,6 @@ lean_object* l_Lean_Parser_Term_binderDefault; lean_object* l_Lean_Parser_Term_assert___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__5; -extern lean_object* l_Lean_Parser_checkOutsideQuot___closed__1; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_letDecl___closed__6; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; @@ -1564,7 +1553,6 @@ lean_object* l_Lean_Parser_Term_structInstLVal_formatter___closed__8; lean_object* l_Lean_Parser_Term_show___closed__1; lean_object* l_Lean_Parser_Term_attributes___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__8; -lean_object* l_Lean_Parser_Term_simpleBinder___closed__8; lean_object* l_Lean_Parser_Term_not_formatter___closed__1; lean_object* l_Lean_Parser_Term_modN___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__16; @@ -1598,7 +1586,6 @@ lean_object* l_Lean_Parser_Term_funImplicitBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_assert___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_ge_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__11; -lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_sufficesDecl___closed__3; lean_object* l_Lean_Parser_darrow_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_band___elambda__1___closed__2; @@ -1652,7 +1639,6 @@ lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_decide_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__13; lean_object* l___regBuiltin_Lean_Parser_Term_let_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__5; lean_object* l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_attributes___closed__5; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__10; @@ -1683,7 +1669,6 @@ lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___closed__10; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_mod_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_typeSpec___closed__2; lean_object* l_Lean_Parser_Term_attributes___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1705,7 +1690,6 @@ lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_letDecl; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__8; -lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_haveDecl_formatter___closed__2; lean_object* l_Lean_Parser_Term_type_formatter___closed__4; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__6; @@ -1793,7 +1777,6 @@ lean_object* l_Lean_Parser_Term_beq_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_funImplicitBinder___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_dollar(lean_object*); -lean_object* l_Lean_Parser_Term_funBinder___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_funImplicitBinder___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_explicitUniv___closed__5; @@ -2032,7 +2015,6 @@ lean_object* l_Lean_Parser_Term_explicitBinder___closed__5; lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_structInstField_formatter___closed__1; -lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_typeOf___closed__1; lean_object* l_Lean_Parser_Term_structInstLVal; @@ -2098,13 +2080,11 @@ lean_object* l_Lean_Parser_Term_mod___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_ge_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_seqRight(lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l_Lean_Parser_Term_funImplicitBinder_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_match__syntax_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__5; -lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__8; lean_object* l_Lean_Parser_checkNoWsBeforeFn(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_dbgTrace_formatter(lean_object*); lean_object* l_Lean_Parser_Term_seqLeft; @@ -2121,7 +2101,6 @@ lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer(lean_object*, lean_obje lean_object* l_Lean_Parser_Term_fun___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__8; -lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__7; extern lean_object* l_Lean_Parser_mkAntiquot___closed__10; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__9; @@ -2193,7 +2172,6 @@ lean_object* l_Lean_Parser_Term_structInst___closed__3; lean_object* l_Lean_Parser_Term_attributes; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_let_x21_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letIdDecl_formatter___closed__1; @@ -2221,6 +2199,7 @@ extern lean_object* l_Init_Data_Repr___instance__15___closed__1; lean_object* l_Lean_Parser_Term_subst_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__9; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_Parser_Term_ensureExpectedType_formatter___closed__3; lean_object* l_Lean_Parser_Term_arrayLit_formatter___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_append_formatter___closed__1; @@ -2332,7 +2311,6 @@ lean_object* l_Lean_Parser_Term_haveDecl___closed__5; lean_object* l_Lean_Parser_Term_ge_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_orelse_formatter(lean_object*); lean_object* l_Lean_Parser_Term_match__syntax; -lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__7; lean_object* l_Lean_Parser_Term_paren_formatter___closed__4; lean_object* l_Lean_Parser_Term_if___closed__1; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__6; @@ -2499,7 +2477,6 @@ lean_object* l_Lean_Parser_Term_explicit___closed__7; lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_namedPattern___closed__5; lean_object* l_Lean_Parser_Term_mod___closed__1; -lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter___closed__4; lean_object* l_Lean_Parser_Term_app_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_explicitBinder(uint8_t); @@ -2580,7 +2557,6 @@ lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_letEqnsDecl; lean_object* l_Lean_Parser_Term_cons___closed__2; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__1; -lean_object* l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_iff_formatter___closed__1; lean_object* l_Lean_Parser_Term_dollarProj___closed__2; lean_object* l_Lean_Parser_Term_bnot___elambda__1___closed__9; @@ -2656,7 +2632,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_cons_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_cdot_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_str(lean_object*); lean_object* l_Lean_Parser_Term_matchDiscr_formatter___closed__6; -lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__8; lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_let_x2a___elambda__1___closed__3; @@ -2722,7 +2697,6 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_show_formatter___closed__1; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__9; -lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__6; lean_object* l_Lean_Parser_Level_quot___closed__7; lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__13; lean_object* l___regBuiltinParser_Lean_Parser_Term_fun(lean_object*); @@ -2759,7 +2733,6 @@ lean_object* l_Lean_Parser_Term_unreachable_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_let_x21_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeq___closed__1; -lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__4; lean_object* l_Lean_Parser_Term_equiv_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_beq(lean_object*); lean_object* l_Lean_Parser_Term_borrowed_parenthesizer___closed__4; @@ -2790,7 +2763,6 @@ lean_object* l_Lean_Parser_Term_binderType_formatter(uint8_t, lean_object*, lean lean_object* l_Lean_Parser_Term_let_x2a_formatter___closed__6; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__7; lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__1; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1; lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_borrowed_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_andM; @@ -2828,7 +2800,6 @@ lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__5; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_have_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_checkInsideQuot___closed__1; lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_cdot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__1; @@ -2860,6 +2831,7 @@ lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_let_x2a___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_basicFun_parenthesizer___closed__2; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; lean_object* l_Lean_Parser_Term_or_formatter___closed__1; lean_object* l_Lean_Parser_Term_fcomp___closed__1; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__10; @@ -2882,6 +2854,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__7; lean_object* l_Lean_Parser_Term_not___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_if_parenthesizer___closed__4; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1; lean_object* l_Lean_Parser_Term_if___elambda__1___closed__19; lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_match__syntax___closed__1; @@ -2891,6 +2864,7 @@ 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_ensureExpectedType___closed__5; lean_object* l_Lean_Parser_Term_forall_formatter___closed__11; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; lean_object* l_Lean_Parser_Term_emptyC___closed__4; lean_object* l_Lean_Parser_Term_decide_parenthesizer___closed__1; lean_object* l_Lean_Parser_ppLine_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -2901,7 +2875,6 @@ lean_object* l_Lean_Parser_Term_mapRev; lean_object* l_Lean_Parser_Term_let_formatter___closed__4; lean_object* l_Lean_Parser_Term_cons___closed__3; lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__3; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; lean_object* l_Lean_Parser_Term_dollarProj___closed__3; lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_formatter(lean_object*); @@ -3382,7 +3355,6 @@ lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__1; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_emptyC___closed__3; lean_object* l_Lean_Parser_Term_append___closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_ppDedent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3442,7 +3414,6 @@ lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_fun___closed__5; lean_object* l_Lean_Parser_Term_seqRight___elambda__1___closed__4; lean_object* l_Lean_Parser_sepBy1Fn(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__3; lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__13; lean_object* l_Lean_Parser_Term_bor___closed__4; @@ -3517,7 +3488,6 @@ lean_object* l_Lean_Parser_Term_forall___closed__4; lean_object* l_Lean_Parser_Term_add___closed__1; lean_object* l_Lean_Parser_categoryParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstLVal___closed__8; -lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_letIdDecl___closed__3; lean_object* l_Lean_Parser_Term_explicit_formatter___closed__2; lean_object* l_Lean_Parser_Term_le___closed__2; @@ -3532,7 +3502,6 @@ lean_object* l_Lean_Parser_Term_cons_formatter___closed__1; lean_object* l_Lean_Parser_Term_let_x2a; lean_object* l_Lean_Parser_Term_unicodeInfixL_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_pow___closed__1; -lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_seq_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_quot_formatter___closed__1; @@ -3555,7 +3524,6 @@ lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__8; lean_object* l_Lean_Parser_Term_attributes_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bne___closed__2; lean_object* l_Lean_Parser_Term_seqLeft_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__7; lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__15; @@ -3648,7 +3616,6 @@ lean_object* l_Lean_Parser_Term_haveAssign_formatter___closed__4; lean_object* l_Lean_Parser_Term_letIdLhs___closed__6; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__3; -lean_object* l_Lean_PrettyPrinter_Formatter_checkOutsideQuot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_cdot_formatter(lean_object*); lean_object* l_Lean_Parser_Term_explicit_formatter___closed__3; @@ -3836,7 +3803,7 @@ lean_object* l_Lean_Parser_Term_basicFun_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_if_formatter___closed__9; lean_object* l_Lean_Parser_Term_macroDollarArg_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter___closed__6; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7; lean_object* l_Lean_Parser_nameLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_tparser_x21___closed__1; lean_object* l_Lean_Parser_Term_proj_parenthesizer___closed__2; @@ -3863,7 +3830,6 @@ lean_object* l_Lean_Parser_Term_ne___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_heq___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_ensureExpectedType_formatter(lean_object*); lean_object* l_Lean_Parser_Term_tparser_x21_formatter___closed__4; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; lean_object* l_Lean_Parser_Term_borrowed___closed__6; lean_object* l_Lean_Parser_Term_byTactic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_mapRev___closed__3; @@ -3910,7 +3876,6 @@ lean_object* l_Lean_Parser_Term_structInstField_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_fcomp___closed__3; lean_object* l_Lean_Parser_Term_sort_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_basicFun_formatter___closed__2; lean_object* l_Lean_Parser_Term_anonymousCtor_parenthesizer___closed__2; extern lean_object* l_Lean_mkHole___closed__2; @@ -3940,6 +3905,7 @@ extern lean_object* l_Lean_Parser_mkAntiquot___closed__6; lean_object* l_Lean_Parser_Term_equiv___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_subtype_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__10; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; lean_object* l_Lean_Parser_Tactic_quotSeq___closed__1; lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_panic___elambda__1___closed__6; @@ -4155,7 +4121,6 @@ lean_object* l_Lean_Parser_Term_iff___closed__2; lean_object* l_Lean_Parser_Term_orelse___closed__4; extern lean_object* l_Lean_Expr_ctorName___closed__11; lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__4; -lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__5; lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_fun_formatter___closed__1; @@ -4191,6 +4156,7 @@ lean_object* l_Lean_Parser_Term_app___closed__2; lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_panic___closed__7; lean_object* l_Lean_PrettyPrinter_Formatter_ppLine_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_heq_formatter(lean_object*); lean_object* l_Lean_Parser_Term_explicit___closed__5; lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__5; @@ -4221,7 +4187,6 @@ lean_object* l_Lean_Parser_Term_nativeDecide_formatter___closed__1; lean_object* l_Lean_Parser_Term_borrowed___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type___elambda__1___closed__1; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; lean_object* l_Lean_Parser_Term_anonymousCtor_formatter___closed__7; lean_object* l_Lean_Parser_Term_borrowed___closed__2; lean_object* l_Lean_Parser_Term_emptyC___closed__6; @@ -4293,12 +4258,10 @@ lean_object* l_Lean_Parser_Term_matchDiscr_formatter___closed__4; lean_object* l_Lean_Parser_Term_macroLastArg_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_letDecl_formatter___closed__2; lean_object* l_Lean_Parser_Term_let___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_simpleBinder___closed__7; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_orM_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_uminus_parenthesizer___closed__5; extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__8; -lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__10; lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_subtype___closed__4; lean_object* l_Lean_Parser_Term_inaccessible_formatter___closed__1; @@ -4327,7 +4290,6 @@ lean_object* l_Lean_Parser_Term_match___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__13; lean_object* l_Lean_Parser_Term_binderIdent___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_parser_x21_formatter___closed__5; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; lean_object* l_Lean_Parser_Term_simpleBinder___closed__6; lean_object* l_Lean_Parser_Term_ensureTypeOf___closed__6; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__6; @@ -4401,7 +4363,6 @@ lean_object* l_Lean_Parser_Term_bindOp___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_quotSeq___closed__2; lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_notFollowedBy_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkInsideQuot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match__syntax_formatter___closed__2; lean_object* l_Lean_Parser_Term_byTactic___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_type_parenthesizer(lean_object*); @@ -4410,7 +4371,6 @@ extern lean_object* l_Lean_Parser_many1Indent___closed__1; lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_letrec_formatter___closed__1; lean_object* l_Lean_Parser_Term_if___closed__7; -lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_match___closed__10; lean_object* l_Lean_Parser_Term_match__syntax_formatter___closed__1; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__4; @@ -4466,7 +4426,6 @@ lean_object* l_Lean_Parser_Term_modN___closed__4; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_not_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Term_funBinder___closed__6; lean_object* l_Lean_Parser_Term_fromTerm___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_andM___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1(lean_object*, lean_object*); @@ -4545,7 +4504,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_pow_formatter(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_or_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_optType_formatter___closed__1; lean_object* l_Lean_Parser_Term_forall_formatter___closed__9; -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7; lean_object* l_Lean_Parser_Term_letIdLhs_formatter___closed__2; lean_object* l___regBuiltin_Lean_Parser_Tactic_quot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bnot___elambda__1(lean_object*, lean_object*); @@ -4648,7 +4606,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__5; lean_object* l_Lean_Parser_Term_namedArgument_formatter___closed__3; lean_object* l_Lean_Parser_Term_letrec_formatter___closed__8; -lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__6; lean_object* l_Lean_Parser_Term_let_x21___closed__4; lean_object* l_Lean_Parser_Tactic_seq1___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_match_formatter___closed__5; @@ -5539,7 +5496,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_2 = l_String_trim(x_1); return x_2; } @@ -6026,7 +5983,7 @@ x_7 = l_Lean_Parser_unicodeSymbolInfo(x_5, x_6); x_8 = lean_alloc_closure((void*)(l_Lean_Parser_unicodeSymbolFn___boxed), 4, 2); lean_closure_set(x_8, 0, x_5); lean_closure_set(x_8, 1, x_6); -x_9 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_9 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_inc(x_3); x_10 = l_Lean_Parser_categoryParser(x_9, x_3); x_11 = lean_ctor_get(x_10, 0); @@ -6095,7 +6052,7 @@ lean_inc(x_4); x_5 = l_Lean_Parser_symbolInfo(x_4); x_6 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); lean_closure_set(x_6, 0, x_4); -x_7 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_7 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_inc(x_2); x_8 = l_Lean_Parser_categoryParser(x_7, x_2); x_9 = lean_ctor_get(x_8, 0); @@ -6169,7 +6126,7 @@ lean_closure_set(x_8, 1, x_6); x_9 = lean_unsigned_to_nat(1u); x_10 = lean_nat_add(x_3, x_9); lean_dec(x_3); -x_11 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_11 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_inc(x_10); x_12 = l_Lean_Parser_categoryParser(x_11, x_10); x_13 = lean_ctor_get(x_12, 0); @@ -6241,7 +6198,7 @@ lean_closure_set(x_6, 0, x_4); x_7 = lean_unsigned_to_nat(1u); x_8 = lean_nat_add(x_2, x_7); lean_dec(x_2); -x_9 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_9 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_inc(x_8); x_10 = l_Lean_Parser_categoryParser(x_9, x_8); x_11 = lean_ctor_get(x_10, 0); @@ -6486,7 +6443,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_byTactic(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_byTactic___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_byTactic; @@ -6630,7 +6587,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___cl _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -7002,7 +6959,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer_ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_symbol_parenthesizer___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -7367,7 +7324,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_ident(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l___regBuiltinParser_Lean_Parser_Term_ident___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Term_ident; @@ -7498,7 +7455,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_num(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l___regBuiltinParser_Lean_Parser_Term_num___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Term_num; @@ -7649,7 +7606,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_str(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l___regBuiltinParser_Lean_Parser_Term_str___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_str; @@ -7816,7 +7773,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_char(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l___regBuiltinParser_Lean_Parser_Term_char___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_char; @@ -8172,7 +8129,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_type(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_type___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_type; @@ -8625,7 +8582,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_sort(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_sort___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Term_sort; @@ -8970,7 +8927,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_prop(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_prop___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_prop; @@ -9237,7 +9194,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_hole(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_mkHole___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_hole; @@ -9578,7 +9535,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_syntheticHole(lean_object* x_ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_syntheticHole___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_syntheticHole; @@ -9921,7 +9878,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_sorry(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_sorry; @@ -10242,7 +10199,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_cdot(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_cdot___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_cdot; @@ -10607,7 +10564,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_emptyC(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_emptyC___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_emptyC; @@ -11563,7 +11520,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_paren(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_40____closed__3; x_4 = 1; x_5 = l_Lean_Parser_Term_paren; @@ -12465,7 +12422,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_anonymousCtor(lean_object* x_ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_anonymousCtor; @@ -13170,7 +13127,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_if(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_if___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_if; @@ -13966,7 +13923,7 @@ lean_inc(x_4); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_5 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_5 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_6 = lean_unsigned_to_nat(0u); lean_inc(x_1); x_7 = l_Lean_Parser_categoryParser___elambda__1(x_5, x_6, x_1, x_3); @@ -14453,7 +14410,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_have(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_have___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Term_have; @@ -15110,7 +15067,7 @@ lean_inc(x_4); if (lean_obj_tag(x_4) == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_5 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_5 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_6 = lean_unsigned_to_nat(0u); lean_inc(x_1); x_7 = l_Lean_Parser_categoryParser___elambda__1(x_5, x_6, x_1, x_3); @@ -15570,7 +15527,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_suffices(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_suffices___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_suffices; @@ -16053,7 +16010,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_show(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_show___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_show; @@ -16699,7 +16656,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInstField___elambda__1___clos _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -16709,7 +16666,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInstField___elambda__1___clos _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7; x_2 = l_Lean_Parser_Term_structInstField___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -16732,7 +16689,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInstField___elambda__1___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_2 = l_Lean_Parser_Term_structInstField___elambda__1___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -16781,7 +16738,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInstField___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_2 = l_Lean_Parser_Term_structInstField___closed__1; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -16841,7 +16798,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst___elambda__1___closed__1 _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -16851,7 +16808,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst___elambda__1___closed__2 _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1; x_2 = l_Lean_Parser_Term_structInst___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -17086,7 +17043,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst___elambda__1___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_2 = l_Lean_Parser_Term_structInst___elambda__1___closed__23; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -17273,7 +17230,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_2 = l_Lean_Parser_Term_structInst___closed__15; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -17333,8 +17290,8 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_structInst(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; +x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_structInst; x_6 = lean_unsigned_to_nat(0u); @@ -17545,7 +17502,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInstField_formatter___closed_ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7; x_2 = l_Lean_Parser_Term_structInstField___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -17580,7 +17537,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInstField_formatter___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_structInstField_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -17615,7 +17572,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst_formatter___closed__1() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1; x_2 = l_Lean_Parser_Term_structInst___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -17812,7 +17769,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst_formatter___closed__19() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_structInst_formatter___closed__18; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -17845,7 +17802,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_structInst_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -18054,7 +18011,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInstField_parenthesizer___clo _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__7; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__7; x_2 = l_Lean_Parser_Term_structInstField___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -18089,7 +18046,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInstField_parenthesizer___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__8; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_structInstField_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -18113,7 +18070,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__1; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__1; x_2 = l_Lean_Parser_Term_structInst___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -18322,7 +18279,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_structInst_parenthesizer___closed__19; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -18355,7 +18312,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__2; +x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -18873,7 +18830,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_subtype(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_subtype___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_subtype; @@ -19329,7 +19286,7 @@ static lean_object* _init_l_Lean_Parser_Term_listLit___elambda__1___closed__5() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_2 = l_String_trim(x_1); return x_2; } @@ -19525,7 +19482,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_listLit(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_listLit___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_listLit; @@ -19553,7 +19510,7 @@ static lean_object* _init_l_Lean_Parser_Term_listLit_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -19657,7 +19614,7 @@ static lean_object* _init_l_Lean_Parser_Term_listLit_parenthesizer___closed__2() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_548____closed__8; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_547____closed__8; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_symbol_parenthesizer___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -19932,7 +19889,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_arrayLit(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_arrayLit___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_arrayLit; @@ -20171,7 +20128,7 @@ static lean_object* _init_l_Lean_Parser_Term_explicit___elambda__1___closed__8() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = l_Lean_Parser_maxPrec; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -20241,7 +20198,7 @@ static lean_object* _init_l_Lean_Parser_Term_explicit___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = l_Lean_Parser_maxPrec; x_3 = l_Lean_Parser_categoryParser(x_1, x_2); return x_3; @@ -20323,7 +20280,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_explicit(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_explicit___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_explicit; @@ -20724,7 +20681,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_inaccessible(lean_object* x_1 _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_inaccessible; @@ -21002,7 +20959,7 @@ lean_inc(x_8); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_9 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_9 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_10 = lean_unsigned_to_nat(0u); x_11 = l_Lean_Parser_categoryParser___elambda__1(x_9, x_10, x_1, x_7); x_12 = l_Lean_nullKind; @@ -22291,7 +22248,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_depArrow(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_depArrow___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_depArrow; @@ -23494,9 +23451,9 @@ static lean_object* _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_checkInsideQuot___closed__1; +x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; x_2 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -23506,44 +23463,8 @@ static lean_object* _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_checkOutsideQuot___closed__1; -x_2 = l_Lean_Parser_Term_explicitBinder___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__6; -x_2 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; -x_2 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__9; +x_2 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -23557,7 +23478,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_3 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__4; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__10; +x_5 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__7; x_6 = 1; x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); return x_7; @@ -23581,67 +23502,35 @@ static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; +x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; x_2 = l_Lean_Parser_Term_simpleBinder___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__3() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_binderIdent; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_epsilonInfo; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder___closed__2; -x_2 = l_Lean_Parser_Term_simpleBinder___closed__3; -x_3 = l_Lean_Parser_orelseInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; -x_2 = l_Lean_Parser_Term_simpleBinder___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__6() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Term_simpleBinder___closed__5; +x_2 = l_Lean_Parser_Term_simpleBinder___closed__2; x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__7() { +static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__4; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Term_simpleBinder___closed__6; +x_3 = l_Lean_Parser_Term_simpleBinder___closed__3; x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__8() { +static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__5() { _start: { lean_object* x_1; @@ -23649,12 +23538,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_simpleBinder___elambda__1), return x_1; } } -static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__9() { +static lean_object* _init_l_Lean_Parser_Term_simpleBinder___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder___closed__7; -x_2 = l_Lean_Parser_Term_simpleBinder___closed__8; +x_1 = l_Lean_Parser_Term_simpleBinder___closed__4; +x_2 = l_Lean_Parser_Term_simpleBinder___closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -23665,7 +23554,7 @@ static lean_object* _init_l_Lean_Parser_Term_simpleBinder() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Term_simpleBinder___closed__9; +x_1 = l_Lean_Parser_Term_simpleBinder___closed__6; return x_1; } } @@ -23762,7 +23651,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_forall___elambda__1___closed__9; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_3 = l_Lean_Parser_Term_simpleBinder___closed__8; +x_3 = l_Lean_Parser_Term_simpleBinder___closed__5; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); lean_closure_set(x_4, 0, x_3); lean_closure_set(x_4, 1, x_2); @@ -23994,7 +23883,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_forall(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_forall___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_forall; @@ -24033,62 +23922,10 @@ return x_3; static lean_object* _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_formatter___closed__3; -x_2 = l_Lean_Parser_Term_simpleBinder_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkOutsideQuot_formatter___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_formatter___closed__5; -x_2 = l_Lean_Parser_Term_explicitBinder_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_formatter___closed__4; -x_2 = l_Lean_Parser_Term_simpleBinder_formatter___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__8() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_simpleBinder_formatter___closed__7; +x_3 = l_Lean_Parser_Term_simpleBinder_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -24101,7 +23938,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Term_simpleBinder_formatter___closed__1; -x_7 = l_Lean_Parser_Term_simpleBinder_formatter___closed__8; +x_7 = l_Lean_Parser_Term_simpleBinder_formatter___closed__3; x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -24303,62 +24140,10 @@ return x_3; static lean_object* _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkInsideQuot_parenthesizer___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkOutsideQuot_parenthesizer___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__5; -x_2 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__8() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__7; +x_3 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -24371,7 +24156,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__8; +x_7 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__3; x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -25656,7 +25441,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_match(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_match___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_match; @@ -26976,7 +26761,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_nomatch(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_nomatch___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_nomatch; @@ -27302,45 +27087,6 @@ return x_1; static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("funSimpleBinder"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__6; -x_2 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__5() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_explicitBinder___closed__1; x_2 = l_Lean_Parser_Term_typeAscription___elambda__1___closed__4; @@ -27350,73 +27096,37 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__6() { +static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__5; +x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_lookaheadFn), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_tryFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__7; -x_2 = l_Lean_Parser_Term_simpleBinder___elambda__1___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2; -x_2 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__10; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2; +lean_inc(x_1); +x_4 = l_Lean_Parser_tryFn(x_3, x_1, x_2); +x_5 = lean_ctor_get(x_4, 3); +lean_inc(x_5); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; +x_6 = l_Lean_Parser_Term_simpleBinder___elambda__1(x_1, x_4); +return x_6; +} +else +{ +lean_dec(x_5); +lean_dec(x_1); +return x_4; +} } } static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___closed__1() { @@ -27434,46 +27144,16 @@ return x_4; static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funSimpleBinder___closed__1; -x_2 = l_Lean_Parser_Term_simpleBinder___closed__1; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2; -x_2 = l_Lean_Parser_Term_funSimpleBinder___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Term_funSimpleBinder___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___closed__5() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__4; +x_1 = l_Lean_Parser_Term_simpleBinder; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Term_funSimpleBinder___closed__4; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); +x_3 = l_Lean_Parser_Term_funSimpleBinder___closed__1; +x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___closed__6() { +static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___closed__3() { _start: { lean_object* x_1; @@ -27481,12 +27161,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_funSimpleBinder___elambda__1 return x_1; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___closed__7() { +static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funSimpleBinder___closed__5; -x_2 = l_Lean_Parser_Term_funSimpleBinder___closed__6; +x_1 = l_Lean_Parser_Term_funSimpleBinder___closed__2; +x_2 = l_Lean_Parser_Term_funSimpleBinder___closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -27497,7 +27177,7 @@ static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Term_funSimpleBinder___closed__7; +x_1 = l_Lean_Parser_Term_funSimpleBinder___closed__4; return x_1; } } @@ -27505,9 +27185,9 @@ static lean_object* _init_l_Lean_Parser_Term_funBinder___elambda__1___closed__1( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_checkInsideQuot___closed__1; -x_2 = l_Lean_Parser_Term_funSimpleBinder___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +x_1 = l_Lean_Parser_Term_funSimpleBinder___closed__3; +x_2 = l_Lean_Parser_Term_explicit___elambda__1___closed__8; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -27517,20 +27197,8 @@ static lean_object* _init_l_Lean_Parser_Term_funBinder___elambda__1___closed__2( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funBinder___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_explicit___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funBinder___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_instBinder___closed__6; -x_2 = l_Lean_Parser_Term_funBinder___elambda__1___closed__2; +x_2 = l_Lean_Parser_Term_funBinder___elambda__1___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -27542,7 +27210,7 @@ _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; x_3 = l_Lean_Parser_Term_funImplicitBinder___closed__5; -x_4 = l_Lean_Parser_Term_funBinder___elambda__1___closed__3; +x_4 = l_Lean_Parser_Term_funBinder___elambda__1___closed__2; x_5 = 1; x_6 = l_Lean_Parser_orelseFnCore(x_3, x_4, x_5, x_1, x_2); return x_6; @@ -27551,24 +27219,26 @@ return x_6; static lean_object* _init_l_Lean_Parser_Term_funBinder___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Parser_Term_funSimpleBinder; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_epsilonInfo; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; +x_3 = l_Lean_Parser_Term_explicit___closed__2; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = l_Lean_Parser_orelseInfo(x_2, x_4); +return x_5; } } static lean_object* _init_l_Lean_Parser_Term_funBinder___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_explicit___closed__2; +x_1 = l_Lean_Parser_Term_instBinder; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Term_funBinder___closed__1; -x_4 = l_Lean_Parser_orelseInfo(x_3, x_2); +x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); return x_4; } } @@ -27576,7 +27246,7 @@ static lean_object* _init_l_Lean_Parser_Term_funBinder___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_instBinder; +x_1 = l_Lean_Parser_Term_funImplicitBinder; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Term_funBinder___closed__2; @@ -27587,29 +27257,17 @@ return x_4; static lean_object* _init_l_Lean_Parser_Term_funBinder___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_funImplicitBinder; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_funBinder___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Term_funBinder___closed__5() { -_start: -{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_funBinder___elambda__1), 2, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_Term_funBinder___closed__6() { +static lean_object* _init_l_Lean_Parser_Term_funBinder___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funBinder___closed__4; -x_2 = l_Lean_Parser_Term_funBinder___closed__5; +x_1 = l_Lean_Parser_Term_funBinder___closed__3; +x_2 = l_Lean_Parser_Term_funBinder___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); @@ -27620,7 +27278,7 @@ static lean_object* _init_l_Lean_Parser_Term_funBinder() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Term_funBinder___closed__6; +x_1 = l_Lean_Parser_Term_funBinder___closed__5; return x_1; } } @@ -27641,7 +27299,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Lean_Parser_Basic___instance__8___closed__2; -x_2 = l_Lean_Parser_Term_funBinder___closed__5; +x_2 = l_Lean_Parser_Term_funBinder___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -27966,7 +27624,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_fun(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_955____closed__7; x_4 = 1; x_5 = l_Lean_Parser_Term_fun; @@ -28055,21 +27713,6 @@ return x_8; static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_explicitBinder_formatter___closed__3; x_2 = l_Lean_Parser_Term_typeAscription_formatter___closed__2; @@ -28079,59 +27722,33 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__3() { +static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_funSimpleBinder_formatter___closed__2; +x_1 = l_Lean_Parser_Term_funSimpleBinder_formatter___closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_lookahead_formatter___boxed), 5, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__4() { +static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_funSimpleBinder_formatter___closed__3; +x_1 = l_Lean_Parser_Term_funSimpleBinder_formatter___closed__2; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_try_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funSimpleBinder_formatter___closed__4; -x_2 = l_Lean_Parser_Term_simpleBinder_formatter___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_funSimpleBinder_formatter___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Term_funSimpleBinder_formatter___closed__1; -x_7 = l_Lean_Parser_Term_funSimpleBinder_formatter___closed__6; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_Parser_Term_funSimpleBinder_formatter___closed__3; +x_7 = l_Lean_Parser_Term_forall_formatter___closed__4; +x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } } @@ -28147,9 +27764,9 @@ static lean_object* _init_l_Lean_Parser_Term_funBinder_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_formatter___closed__3; -x_2 = l_Lean_Parser_Term_funBinder_formatter___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +x_1 = l_Lean_Parser_Term_funBinder_formatter___closed__1; +x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -28159,8 +27776,8 @@ static lean_object* _init_l_Lean_Parser_Term_funBinder_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funBinder_formatter___closed__2; -x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; +x_1 = l_Lean_Parser_Term_bracketedBinder_formatter___closed__1; +x_2 = l_Lean_Parser_Term_funBinder_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -28170,18 +27787,6 @@ return x_3; static lean_object* _init_l_Lean_Parser_Term_funBinder_formatter___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_bracketedBinder_formatter___closed__1; -x_2 = l_Lean_Parser_Term_funBinder_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funBinder_formatter___closed__5() { -_start: -{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_funImplicitBinder_formatter), 5, 0); return x_1; @@ -28191,8 +27796,8 @@ lean_object* l_Lean_Parser_Term_funBinder_formatter(lean_object* x_1, lean_objec _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Term_funBinder_formatter___closed__5; -x_7 = l_Lean_Parser_Term_funBinder_formatter___closed__4; +x_6 = l_Lean_Parser_Term_funBinder_formatter___closed__4; +x_7 = l_Lean_Parser_Term_funBinder_formatter___closed__3; x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -28443,21 +28048,6 @@ return x_8; static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3; x_2 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; @@ -28467,59 +28057,33 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__3() { +static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_lookahead_parenthesizer___boxed), 5, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__4() { +static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__3; +x_1 = l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__2; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_try_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__5; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} lean_object* l_Lean_Parser_Term_funSimpleBinder_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__6; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__3; +x_7 = l_Lean_Parser_Term_forall_parenthesizer___closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } } @@ -28535,9 +28099,9 @@ static lean_object* _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__1; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +x_1 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_explicit_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -28547,8 +28111,8 @@ static lean_object* _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__3 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Term_explicit_parenthesizer___closed__3; +x_1 = l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -28558,18 +28122,6 @@ return x_3; static lean_object* _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_bracketedBinder_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__5() { -_start: -{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_funImplicitBinder_parenthesizer), 5, 0); return x_1; @@ -28579,8 +28131,8 @@ lean_object* l_Lean_Parser_Term_funBinder_parenthesizer(lean_object* x_1, lean_o _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__5; -x_7 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__4; +x_6 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__4; +x_7 = l_Lean_Parser_Term_funBinder_parenthesizer___closed__3; x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -29055,7 +28607,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_parser_x21(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_parser_x21___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_parser_x21; @@ -29524,7 +29076,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_tparser_x21(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_tparser_x21___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_tparser_x21; @@ -29763,7 +29315,7 @@ static lean_object* _init_l_Lean_Parser_Term_borrowed___elambda__1___closed__8() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = l_Lean_Parser_leadPrec; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -29833,7 +29385,7 @@ static lean_object* _init_l_Lean_Parser_Term_borrowed___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_categoryParser(x_1, x_2); return x_3; @@ -29915,7 +29467,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_borrowed(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_borrowed___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_borrowed; @@ -30236,7 +29788,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_quotedName(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_quotedName___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_quotedName; @@ -30591,7 +30143,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_match__syntax(lean_object* x_ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_match__syntax___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_match__syntax; @@ -30975,7 +30527,7 @@ lean_inc(x_7); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_8 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_8 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_9 = lean_unsigned_to_nat(0u); x_10 = l_Lean_Parser_categoryParser___elambda__1(x_8, x_9, x_1, x_6); x_11 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__8; @@ -31125,7 +30677,7 @@ lean_inc(x_7); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_8 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_8 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_9 = lean_unsigned_to_nat(0u); x_10 = l_Lean_Parser_categoryParser___elambda__1(x_8, x_9, x_1, x_6); x_11 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; @@ -31835,7 +31387,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_let(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_474____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_let; @@ -32863,7 +32415,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_let_x21(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_let_x21___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_let_x21; @@ -33294,7 +32846,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_let_x2a(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_let_x2a___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_let_x2a; @@ -34663,7 +34215,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_letrec(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_letrec___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_letrec; @@ -35658,7 +35210,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_nativeRefl(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_nativeRefl___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_nativeRefl; @@ -36003,7 +35555,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_nativeDecide(lean_object* x_1 _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_nativeDecide___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_nativeDecide; @@ -36298,7 +35850,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_decide(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_decide; @@ -36643,7 +36195,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_typeOf(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_typeOf___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_typeOf; @@ -37060,7 +36612,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_ensureTypeOf(lean_object* x_1 _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_ensureTypeOf; @@ -37501,7 +37053,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_ensureExpectedType(lean_objec _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_ensureExpectedType; @@ -37752,7 +37304,7 @@ static lean_object* _init_l_Lean_Parser_Term_not___elambda__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(40u); x_3 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -37822,7 +37374,7 @@ static lean_object* _init_l_Lean_Parser_Term_not___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(40u); x_3 = l_Lean_Parser_categoryParser(x_1, x_2); return x_3; @@ -37904,7 +37456,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_not(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_not___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_not; @@ -38283,7 +37835,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_bnot(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_bnot___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_bnot; @@ -38514,7 +38066,7 @@ static lean_object* _init_l_Lean_Parser_Term_uminus___elambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(100u); x_3 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -38594,7 +38146,7 @@ static lean_object* _init_l_Lean_Parser_Term_uminus___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(100u); x_3 = l_Lean_Parser_categoryParser(x_1, x_2); return x_3; @@ -38676,7 +38228,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_uminus(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_uminus___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_uminus; @@ -39515,7 +39067,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_app(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_mkAppStx___closed__8; x_4 = 0; x_5 = l_Lean_Parser_Term_app; @@ -40164,7 +39716,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_proj(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_proj___elambda__1___closed__1; x_4 = 0; x_5 = l_Lean_Parser_Term_proj; @@ -40394,7 +39946,7 @@ lean_inc(x_14); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_15 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_16 = lean_unsigned_to_nat(0u); lean_inc(x_1); x_17 = l_Lean_Parser_categoryParser___elambda__1(x_15, x_16, x_1, x_13); @@ -40514,7 +40066,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_arrayRef(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_arrayRef; @@ -40723,7 +40275,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_arrow(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_arrow___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_arrow; @@ -41223,7 +40775,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_explicitUniv(lean_object* x_1 _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_explicitUniv; @@ -41542,7 +41094,7 @@ lean_inc(x_20); if (lean_obj_tag(x_20) == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_21 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_21 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_22 = l_Lean_Parser_maxPrec; x_23 = l_Lean_Parser_categoryParser___elambda__1(x_21, x_22, x_1, x_19); x_24 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; @@ -41653,7 +41205,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_namedPattern(lean_object* x_1 _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_namedPattern; @@ -41850,7 +41402,7 @@ lean_inc(x_10); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_11 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_12 = l_Lean_Parser_categoryParser___elambda__1(x_11, x_3, x_1, x_9); x_13 = l_Lean_Parser_Term_dollar___elambda__1___closed__2; x_14 = l_Lean_Parser_ParserState_mkTrailingNode(x_12, x_13, x_7); @@ -41959,7 +41511,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_dollar(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_dollar___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_dollar; @@ -42294,7 +41846,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_dollarProj(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_dollarProj___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_dollarProj; @@ -42530,7 +42082,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_fcomp(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_fcomp___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_fcomp; @@ -42788,7 +42340,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_prod(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_prod___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_prod; @@ -42996,7 +42548,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_add(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_add___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_add; @@ -43257,7 +42809,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_sub(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_sub___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_sub; @@ -43473,7 +43025,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_mul(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_mul___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_mul; @@ -43689,7 +43241,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_div(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_div___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_div; @@ -43905,7 +43457,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_mod(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_mod___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_mod; @@ -44121,7 +43673,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_modN(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_modN___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_modN; @@ -44337,7 +43889,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_pow(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_pow___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_pow; @@ -44562,7 +44114,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_le(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_le___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_le; @@ -44838,7 +44390,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_ge(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_ge___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_ge; @@ -45058,7 +44610,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_lt(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_lt___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_lt; @@ -45274,7 +44826,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_gt(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_gt___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_gt; @@ -45490,7 +45042,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_eq(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_eq___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_eq; @@ -45706,7 +45258,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_ne(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_ne___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_ne; @@ -45922,7 +45474,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_beq(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_beq___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_beq; @@ -46138,7 +45690,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_bne(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_bne___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_bne; @@ -46363,7 +45915,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_heq(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_heq___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_heq; @@ -46583,7 +46135,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_equiv(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_equiv___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_equiv; @@ -46725,7 +46277,7 @@ static lean_object* _init_l_Lean_Parser_Term_subst___elambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(75u); x_3 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -46818,7 +46370,7 @@ static 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_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(75u); x_3 = l_Lean_Parser_categoryParser(x_1, x_2); return x_3; @@ -46898,7 +46450,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_subst(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_subst___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_subst; @@ -47177,7 +46729,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_and(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_and___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_and; @@ -47406,7 +46958,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_or(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_or___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_or; @@ -47635,7 +47187,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_iff(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_iff___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_iff; @@ -47855,7 +47407,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_band(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_band___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_band; @@ -48071,7 +47623,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_bor(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_bor___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_bor; @@ -48269,7 +47821,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_append(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____lambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_append; @@ -48477,7 +48029,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_cons(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_cons___elambda__1___closed__1; x_4 = 0; x_5 = l_Lean_Parser_Term_cons; @@ -48685,7 +48237,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_orelse(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_orelse___elambda__1___closed__1; x_4 = 0; x_5 = l_Lean_Parser_Term_orelse; @@ -48901,7 +48453,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_orM(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_orM___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_orM; @@ -49117,7 +48669,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_andM(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_andM___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_andM; @@ -49333,7 +48885,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_andthen(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_andthen___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_andthen; @@ -49549,7 +49101,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_bindOp(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_bindOp___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_bindOp; @@ -49765,7 +49317,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_mapRev(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_mapRev___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_mapRev; @@ -49981,7 +49533,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_seq(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_seq___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_seq; @@ -50197,7 +49749,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_seqLeft(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_seqLeft___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_seqLeft; @@ -50413,7 +49965,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_seqRight(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_seqRight___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_seqRight; @@ -50629,7 +50181,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_map(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_map___elambda__1___closed__2; x_4 = 0; x_5 = l_Lean_Parser_Term_map; @@ -50802,7 +50354,7 @@ static lean_object* _init_l_Lean_Parser_Term_funBinder_quot___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_funBinder___closed__5; +x_1 = l_Lean_Parser_Term_funBinder___closed__4; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_toggleInsideQuotFn), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -50964,7 +50516,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_funBinder_quot(lean_object* x _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__3; x_4 = 1; x_5 = l_Lean_Parser_Term_funBinder_quot; @@ -51377,7 +50929,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_panic(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_panic___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_panic; @@ -51722,7 +51274,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_unreachable(lean_object* x_1) _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_unreachable___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_unreachable; @@ -52281,7 +51833,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_dbgTrace(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_dbgTrace___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_dbgTrace; @@ -52760,7 +52312,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_assert___elambda__1___closed__6; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_Term_assert___elambda__1___lambda__1___boxed), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -52924,7 +52476,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_assert(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_assert___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_assert; @@ -53586,7 +53138,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_stateRefT(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Term_stateRefT___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_stateRefT; @@ -54190,7 +53742,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_quot(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Tactic_quot___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Tactic_quot; @@ -54599,7 +54151,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_quotSeq(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_quotSeq; @@ -55096,7 +54648,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Level_quot(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_3 = l_Lean_Parser_Level_quot___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Level_quot; @@ -58253,12 +57805,6 @@ l_Lean_Parser_Term_simpleBinder___elambda__1___closed__6 = _init_l_Lean_Parser_T lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___elambda__1___closed__6); l_Lean_Parser_Term_simpleBinder___elambda__1___closed__7 = _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed__7(); lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___elambda__1___closed__7); -l_Lean_Parser_Term_simpleBinder___elambda__1___closed__8 = _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___elambda__1___closed__8); -l_Lean_Parser_Term_simpleBinder___elambda__1___closed__9 = _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___elambda__1___closed__9); -l_Lean_Parser_Term_simpleBinder___elambda__1___closed__10 = _init_l_Lean_Parser_Term_simpleBinder___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___elambda__1___closed__10); l_Lean_Parser_Term_simpleBinder___closed__1 = _init_l_Lean_Parser_Term_simpleBinder___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___closed__1); l_Lean_Parser_Term_simpleBinder___closed__2 = _init_l_Lean_Parser_Term_simpleBinder___closed__2(); @@ -58271,12 +57817,6 @@ l_Lean_Parser_Term_simpleBinder___closed__5 = _init_l_Lean_Parser_Term_simpleBin lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___closed__5); l_Lean_Parser_Term_simpleBinder___closed__6 = _init_l_Lean_Parser_Term_simpleBinder___closed__6(); lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___closed__6); -l_Lean_Parser_Term_simpleBinder___closed__7 = _init_l_Lean_Parser_Term_simpleBinder___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___closed__7); -l_Lean_Parser_Term_simpleBinder___closed__8 = _init_l_Lean_Parser_Term_simpleBinder___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___closed__8); -l_Lean_Parser_Term_simpleBinder___closed__9 = _init_l_Lean_Parser_Term_simpleBinder___closed__9(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder___closed__9); l_Lean_Parser_Term_simpleBinder = _init_l_Lean_Parser_Term_simpleBinder(); lean_mark_persistent(l_Lean_Parser_Term_simpleBinder); l_Lean_Parser_Term_forall___elambda__1___closed__1 = _init_l_Lean_Parser_Term_forall___elambda__1___closed__1(); @@ -58346,16 +57886,6 @@ l_Lean_Parser_Term_simpleBinder_formatter___closed__2 = _init_l_Lean_Parser_Term lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_formatter___closed__2); l_Lean_Parser_Term_simpleBinder_formatter___closed__3 = _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__3(); lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_formatter___closed__3); -l_Lean_Parser_Term_simpleBinder_formatter___closed__4 = _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_formatter___closed__4); -l_Lean_Parser_Term_simpleBinder_formatter___closed__5 = _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_formatter___closed__5); -l_Lean_Parser_Term_simpleBinder_formatter___closed__6 = _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_formatter___closed__6); -l_Lean_Parser_Term_simpleBinder_formatter___closed__7 = _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_formatter___closed__7); -l_Lean_Parser_Term_simpleBinder_formatter___closed__8 = _init_l_Lean_Parser_Term_simpleBinder_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_formatter___closed__8); l_Lean_Parser_Term_forall_formatter___closed__1 = _init_l_Lean_Parser_Term_forall_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_forall_formatter___closed__1); l_Lean_Parser_Term_forall_formatter___closed__2 = _init_l_Lean_Parser_Term_forall_formatter___closed__2(); @@ -58391,16 +57921,6 @@ l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2 = _init_l_Lean_Parser_ lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2); l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__3(); lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__3); -l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__4); -l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__5); -l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__6); -l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__7 = _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__7); -l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__8 = _init_l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__8); l_Lean_Parser_Term_forall_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_forall_parenthesizer___closed__1); l_Lean_Parser_Term_forall_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_forall_parenthesizer___closed__2(); @@ -58848,22 +58368,6 @@ l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__1 = _init_l_Lean_Parse lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__1); l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2 = _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2(); lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2); -l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__3 = _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__3); -l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__4 = _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__4); -l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__5 = _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__5); -l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__6 = _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__6); -l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__7 = _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__7); -l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__8 = _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__8); -l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__9 = _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__9); -l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__10 = _init_l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__10); l_Lean_Parser_Term_funSimpleBinder___closed__1 = _init_l_Lean_Parser_Term_funSimpleBinder___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___closed__1); l_Lean_Parser_Term_funSimpleBinder___closed__2 = _init_l_Lean_Parser_Term_funSimpleBinder___closed__2(); @@ -58872,20 +58376,12 @@ l_Lean_Parser_Term_funSimpleBinder___closed__3 = _init_l_Lean_Parser_Term_funSim lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___closed__3); l_Lean_Parser_Term_funSimpleBinder___closed__4 = _init_l_Lean_Parser_Term_funSimpleBinder___closed__4(); lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___closed__4); -l_Lean_Parser_Term_funSimpleBinder___closed__5 = _init_l_Lean_Parser_Term_funSimpleBinder___closed__5(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___closed__5); -l_Lean_Parser_Term_funSimpleBinder___closed__6 = _init_l_Lean_Parser_Term_funSimpleBinder___closed__6(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___closed__6); -l_Lean_Parser_Term_funSimpleBinder___closed__7 = _init_l_Lean_Parser_Term_funSimpleBinder___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder___closed__7); l_Lean_Parser_Term_funSimpleBinder = _init_l_Lean_Parser_Term_funSimpleBinder(); lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder); l_Lean_Parser_Term_funBinder___elambda__1___closed__1 = _init_l_Lean_Parser_Term_funBinder___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_funBinder___elambda__1___closed__1); l_Lean_Parser_Term_funBinder___elambda__1___closed__2 = _init_l_Lean_Parser_Term_funBinder___elambda__1___closed__2(); lean_mark_persistent(l_Lean_Parser_Term_funBinder___elambda__1___closed__2); -l_Lean_Parser_Term_funBinder___elambda__1___closed__3 = _init_l_Lean_Parser_Term_funBinder___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Term_funBinder___elambda__1___closed__3); l_Lean_Parser_Term_funBinder___closed__1 = _init_l_Lean_Parser_Term_funBinder___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_funBinder___closed__1); l_Lean_Parser_Term_funBinder___closed__2 = _init_l_Lean_Parser_Term_funBinder___closed__2(); @@ -58896,8 +58392,6 @@ l_Lean_Parser_Term_funBinder___closed__4 = _init_l_Lean_Parser_Term_funBinder___ lean_mark_persistent(l_Lean_Parser_Term_funBinder___closed__4); l_Lean_Parser_Term_funBinder___closed__5 = _init_l_Lean_Parser_Term_funBinder___closed__5(); lean_mark_persistent(l_Lean_Parser_Term_funBinder___closed__5); -l_Lean_Parser_Term_funBinder___closed__6 = _init_l_Lean_Parser_Term_funBinder___closed__6(); -lean_mark_persistent(l_Lean_Parser_Term_funBinder___closed__6); l_Lean_Parser_Term_funBinder = _init_l_Lean_Parser_Term_funBinder(); lean_mark_persistent(l_Lean_Parser_Term_funBinder); l_Lean_Parser_Term_basicFun___closed__1 = _init_l_Lean_Parser_Term_basicFun___closed__1(); @@ -58981,12 +58475,6 @@ l_Lean_Parser_Term_funSimpleBinder_formatter___closed__2 = _init_l_Lean_Parser_T lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_formatter___closed__2); l_Lean_Parser_Term_funSimpleBinder_formatter___closed__3 = _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__3(); lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_formatter___closed__3); -l_Lean_Parser_Term_funSimpleBinder_formatter___closed__4 = _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_formatter___closed__4); -l_Lean_Parser_Term_funSimpleBinder_formatter___closed__5 = _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_formatter___closed__5); -l_Lean_Parser_Term_funSimpleBinder_formatter___closed__6 = _init_l_Lean_Parser_Term_funSimpleBinder_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_formatter___closed__6); l_Lean_Parser_Term_funBinder_formatter___closed__1 = _init_l_Lean_Parser_Term_funBinder_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_funBinder_formatter___closed__1); l_Lean_Parser_Term_funBinder_formatter___closed__2 = _init_l_Lean_Parser_Term_funBinder_formatter___closed__2(); @@ -58995,8 +58483,6 @@ l_Lean_Parser_Term_funBinder_formatter___closed__3 = _init_l_Lean_Parser_Term_fu lean_mark_persistent(l_Lean_Parser_Term_funBinder_formatter___closed__3); l_Lean_Parser_Term_funBinder_formatter___closed__4 = _init_l_Lean_Parser_Term_funBinder_formatter___closed__4(); lean_mark_persistent(l_Lean_Parser_Term_funBinder_formatter___closed__4); -l_Lean_Parser_Term_funBinder_formatter___closed__5 = _init_l_Lean_Parser_Term_funBinder_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Term_funBinder_formatter___closed__5); l_Lean_Parser_Term_basicFun_formatter___closed__1 = _init_l_Lean_Parser_Term_basicFun_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_basicFun_formatter___closed__1); l_Lean_Parser_Term_basicFun_formatter___closed__2 = _init_l_Lean_Parser_Term_basicFun_formatter___closed__2(); @@ -59042,12 +58528,6 @@ l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__2 = _init_l_Lean_Pars lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__2); l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__3 = _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__3(); lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__3); -l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__4); -l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__5); -l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__6 = _init_l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__6); l_Lean_Parser_Term_funBinder_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_funBinder_parenthesizer___closed__1); l_Lean_Parser_Term_funBinder_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__2(); @@ -59056,8 +58536,6 @@ l_Lean_Parser_Term_funBinder_parenthesizer___closed__3 = _init_l_Lean_Parser_Ter lean_mark_persistent(l_Lean_Parser_Term_funBinder_parenthesizer___closed__3); l_Lean_Parser_Term_funBinder_parenthesizer___closed__4 = _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__4(); lean_mark_persistent(l_Lean_Parser_Term_funBinder_parenthesizer___closed__4); -l_Lean_Parser_Term_funBinder_parenthesizer___closed__5 = _init_l_Lean_Parser_Term_funBinder_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Term_funBinder_parenthesizer___closed__5); l_Lean_Parser_Term_basicFun_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_basicFun_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_basicFun_parenthesizer___closed__1); l_Lean_Parser_Term_basicFun_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_basicFun_parenthesizer___closed__2(); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c index 7520a42403..54a576359d 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c @@ -247,7 +247,6 @@ lean_object* l_Lean_PrettyPrinter_Formatter_checkOutsideQuot_formatter(lean_obje lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkLineEq_formatter___rarg(lean_object*); lean_object* l_ReaderT_map___at_Lean_PrettyPrinter_Formatter_Lean_PrettyPrinter_Formatter___instance__2___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l_Lean_PrettyPrinter_Formatter_visitAtom_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__3; @@ -261,6 +260,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_skip_formatter(lean_object*, lean_ob extern lean_object* l_Lean_charLitKind; lean_object* l_Lean_PrettyPrinter_Formatter_withoutForbidden_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Init_Data_Repr___instance__15___closed__1; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_PrettyPrinter_Formatter_checkColGt_formatter(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_lookahead_formatter___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_combinatorFormatterAttribute; @@ -10828,7 +10828,7 @@ static lean_object* _init_l_Lean_PrettyPrinter_formatTerm___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_categoryParser_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c index 719efe2602..456f81d99e 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c @@ -108,7 +108,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_throwBacktrack___rarg(lean_objec lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__15; lean_object* l_Lean_PrettyPrinter_ParenthesizerM_orelse(lean_object*); lean_object* l_ReaderT_lift___rarg___boxed(lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__1___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkLineEq_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitToken(lean_object*); @@ -119,6 +118,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_nameLitNoAntiquot_parenthesizer_ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_errorAtSavedPos_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; extern lean_object* l_Lean_charLitKind___closed__1; extern lean_object* l_Lean_Parser_leadPrec___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___closed__1; @@ -267,7 +267,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__ lean_object* l_Lean_PrettyPrinter_Parenthesizer_charLitNoAntiquot_parenthesizer___boxed(lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goDown___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_withoutForbidden_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__15___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__16___closed__2; lean_object* lean_st_mk_ref(lean_object*, lean_object*); @@ -277,6 +276,7 @@ lean_object* l_Lean_PrettyPrinter_parenthesize(lean_object*, lean_object*, lean_ lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_nameLitNoAntiquot_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Init_Data_Repr___instance__15___closed__1; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__22; lean_object* l_Lean_PrettyPrinter_Parenthesizer_liftCoreM(lean_object*); extern lean_object* l_Lean_Parser_maxPrec; @@ -7126,7 +7126,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_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__5; +x_7 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__5; x_8 = lean_array_push(x_6, x_7); x_9 = l_Lean_nullKind___closed__2; x_10 = lean_alloc_ctor(1, 2, 0); @@ -7185,7 +7185,7 @@ lean_dec(x_10); if (x_12 == 0) { lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; -x_13 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_13 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; lean_inc(x_1); x_14 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizeCategoryCore___boxed), 7, 2); lean_closure_set(x_14, 0, x_13); @@ -7231,7 +7231,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_categoryParenthesizerAttribute; -x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_3 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_4 = l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -12820,7 +12820,7 @@ static lean_object* _init_l_Lean_PrettyPrinter_parenthesizeTerm___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__20; +x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__20; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); diff --git a/stage0/stdlib/Lean/Util/Trace.c b/stage0/stdlib/Lean/Util/Trace.c index 827bfae6df..dcad97a2ce 100644 --- a/stage0/stdlib/Lean/Util/Trace.c +++ b/stage0/stdlib/Lean/Util/Trace.c @@ -67,6 +67,7 @@ extern lean_object* l_Lean_interpolatedStrKind; lean_object* l_Lean_getTraces(lean_object*); lean_object* l_Lean___kind_term____x40_Lean_Util_Trace___hyg_1251____closed__7; extern lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_1877____closed__3; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; lean_object* l_Lean_isTracingEnabledFor___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__5___rarg___lambda__1(lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -83,7 +84,6 @@ lean_object* l_Lean_traceM___rarg___lambda__1___boxed(lean_object*, lean_object* uint8_t l_USize_decLt(size_t, size_t); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__4; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_withNestedTraces___spec__3___boxed(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); @@ -2608,7 +2608,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean___kind_term____x40_Lean_Util_Trace___hyg_889____closed__9; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__21; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_108____closed__21; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); diff --git a/stage0/stdlib/Std/Data/PersistentArray.c b/stage0/stdlib/Std/Data/PersistentArray.c index 91049ebb85..fad81f0f80 100644 --- a/stage0/stdlib/Std/Data/PersistentArray.c +++ b/stage0/stdlib/Std/Data/PersistentArray.c @@ -508,7 +508,6 @@ lean_object* l_Std_PersistentArray_findSomeMAux___rarg___lambda__2(lean_object*, lean_object* l_Std_PersistentArray_forInAux(lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_Stats_toString___closed__3; lean_object* l_Array_toPArray(lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; lean_object* l_Array_foldlMUnsafe_fold___at_Std_PersistentArray_toArray___spec__8___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_foldAux___at_Std_mkPersistentArray___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_setAux_match__1(lean_object*, lean_object*); @@ -520,6 +519,7 @@ lean_object* l_Std_PersistentArray_popLeaf_match__2___rarg(lean_object*, lean_ob lean_object* l_Array_foldlMUnsafe_fold___at_Std_PersistentArray_toArray___spec__9___rarg(lean_object*, size_t, size_t, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Std_PersistentArray_any___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Std_PersistentArray_filter___spec__2(lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; lean_object* l_Std_PersistentArray_set(lean_object*); lean_object* l_Std_PersistentArray_findSomeRevMAux___at_Std_PersistentArray_findSomeRev_x3f___spec__3(lean_object*, lean_object*); lean_object* l_Std_PersistentArray_mapM(lean_object*, lean_object*); @@ -12687,7 +12687,7 @@ lean_dec(x_1); x_14 = l_Nat_repr(x_13); x_15 = lean_string_append(x_12, x_14); lean_dec(x_14); -x_16 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_16 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_17 = lean_string_append(x_15, x_16); return x_17; } diff --git a/stage0/stdlib/Std/Data/PersistentHashMap.c b/stage0/stdlib/Std/Data/PersistentHashMap.c index 8b8908132e..eab57a9679 100644 --- a/stage0/stdlib/Std/Data/PersistentHashMap.c +++ b/stage0/stdlib/Std/Data/PersistentHashMap.c @@ -228,7 +228,6 @@ lean_object* lean_mk_array(lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_findAux_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_Std_PersistentHashMap_insertAux___rarg___closed__2; lean_object* l_Std_PersistentHashMap_insertAux_traverse___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; lean_object* l_Std_PersistentHashMap_forM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_findAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_foldlMAux_traverse(lean_object*, lean_object*, lean_object*); @@ -236,6 +235,7 @@ lean_object* l_Std_PersistentHashMap_find_x21___rarg(lean_object*, lean_object*, lean_object* l_Std_PersistentHashMap_getCollisionNodeSize_match__2(lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_foldl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_isUnaryEntries_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; lean_object* l_Std_PersistentHashMap_insert_match__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_eraseAux_match__5(lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_eraseAux_match__4(lean_object*, lean_object*, lean_object*); @@ -5010,7 +5010,7 @@ lean_dec(x_1); x_19 = l_Nat_repr(x_18); x_20 = lean_string_append(x_17, x_19); lean_dec(x_19); -x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_315____closed__25; +x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_314____closed__25; x_22 = lean_string_append(x_20, x_21); return x_22; }